:root {
  color-scheme: dark;
  --bg: oklch(13.5% 0.027 172);
  --night: oklch(4.8% 0.018 226);
  --surface: oklch(12.8% 0.019 166);
  --line: oklch(22% 0.022 144);
  --lime: oklch(91% 0.225 125);
  --green: oklch(76% 0.214 143);
  --teal: oklch(78% 0.155 171);
  --gold: oklch(73% 0.139 83);
  --bronze: oklch(42% 0.08 76);
  --ink: oklch(95% 0.035 118);
  --muted: oklch(77% 0.035 128);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: "Rajdhani", system-ui, sans-serif;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 5px;
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 5, 9, 0.96) 0%, rgba(3, 20, 17, 0.68) 36%, rgba(3, 20, 17, 0.16) 66%, rgba(0, 5, 9, 0.66) 100%),
    linear-gradient(180deg, rgba(0, 5, 9, 0.16) 0%, rgba(0, 5, 9, 0.06) 58%, rgba(0, 5, 9, 0.92) 100%),
    url("assets/hero-background.png") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background: repeating-linear-gradient(0deg, rgba(234, 247, 216, 0.08) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
}

.site-nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
  padding: clamp(50px, 5vw, 68px) clamp(36px, 5vw, 70px) 28px;
  font-family: "Oxanium", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-width: 0;
  color: var(--lime);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-shadow: 0 0 18px rgba(189, 245, 36, 0.38);
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 0 22px rgba(189, 245, 36, 0.26);
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
  color: rgba(234, 247, 216, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--gold);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 58vw);
  min-height: calc(100svh - 136px);
  display: grid;
  align-content: end;
  padding: clamp(52px, 8vw, 110px) clamp(32px, 5vw, 72px) clamp(54px, 7vw, 88px);
}

.kicker,
.section-kicker {
  margin: 0;
  color: var(--gold);
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(0, 214, 163, 0.8);
}

h1,
h2 {
  font-family: "Oxanium", system-ui, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.86;
  text-shadow: 0 0 32px rgba(189, 245, 36, 0.18);
}

h1 span {
  display: block;
  color: var(--lime);
  text-shadow: 0 0 18px rgba(189, 245, 36, 0.38), 0 0 40px rgba(46, 213, 76, 0.22);
}

.hero-text {
  max-width: 56ch;
  margin: 24px 0 30px;
  color: rgba(234, 247, 216, 0.72);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
}

.primary-action {
  min-height: 54px;
  width: fit-content;
  padding: 0 24px;
  background: var(--lime);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  font-family: "Oxanium", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  box-shadow: 0 0 34px rgba(189, 245, 36, 0.28);
}

main {
  background: linear-gradient(180deg, var(--night), var(--bg));
}

.collection-section,
.brand-section,
.stores-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.collection-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1.16fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) 0 clamp(56px, 8vw, 104px);
}

.section-copy h2,
.brand-section h2,
.stores-section h2 {
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.96;
}

.section-copy p,
.brand-section p,
.stores-section p {
  max-width: 64ch;
  color: rgba(234, 247, 216, 0.72);
  font-size: 20px;
  line-height: 1.5;
}

.asset-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.asset-list li {
  border: 1px solid rgba(217, 168, 59, 0.34);
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(10, 22, 19, 0.66);
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-art {
  margin: 0;
  border: 1px solid rgba(217, 168, 59, 0.42);
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(0, 5, 9, 0.46);
}

.product-art img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-section {
  padding: clamp(48px, 7vw, 92px) 0;
  border-top: 1px solid rgba(217, 168, 59, 0.22);
  border-bottom: 1px solid rgba(217, 168, 59, 0.22);
}

.stores-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 32px;
  align-items: start;
  padding: clamp(54px, 8vw, 100px) 0;
}

.store-links {
  display: grid;
  gap: 12px;
}

.store-links span {
  border: 1px solid rgba(217, 168, 59, 0.32);
  padding: 16px 18px;
  color: rgba(234, 247, 216, 0.68);
  background: rgba(10, 22, 19, 0.62);
  font-family: "Oxanium", system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(22px, 5vw, 72px);
  border-top: 1px solid rgba(217, 168, 59, 0.22);
  background: var(--night);
  color: rgba(234, 247, 216, 0.7);
  font-family: "Oxanium", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.site-footer a {
  color: var(--lime);
  text-decoration: none;
}

@media (max-width: 940px) {
  .site-nav {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero-copy {
    width: min(760px, 94vw);
  }

  .collection-section,
  .stores-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-nav {
    padding: 36px 22px 18px;
  }

  .brand span {
    display: none;
  }

  .hero-copy {
    min-height: calc(100svh - 98px);
    padding: 38px 22px 72px;
  }

  .kicker,
  .section-kicker {
    letter-spacing: 0.16em;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
