/* =========================================================
   SAVAGE SQUAD STRAINS — landing page styles
   Aesthetic: Chicago streetwear × cannabis × chain drip
   Palette:   matte black base, fire gradient, antique gold
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Core */
  --black:        #0a0a0a;
  --black-2:      #141414;
  --ink:          #1a1a1a;
  --bone:         #f4f1ea;
  --white:        #ffffff;

  /* Fire ramp (matches your banner) */
  --fire-1:       #ffd84d;   /* yellow core */
  --fire-2:       #ff7a00;   /* orange */
  --fire-3:       #ff2d1a;   /* red */
  --fire-4:       #9b0d00;   /* deep red base */

  /* Chain gold */
  --gold-1:       #f4d67a;
  --gold-2:       #b8892b;
  --gold-3:       #7a5715;

  /* Accents */
  --danger:       #ff3838;
  --muted:        #8a8a8a;
  --line:         #2a2a2a;

  /* Type */
  --ff-display:   'Rubik Mono One', 'Archivo Black', system-ui, sans-serif;
  --ff-heavy:     'Archivo Black', 'Rubik Mono One', sans-serif;
  --ff-cond:      'Barlow Condensed', 'Bebas Neue', sans-serif;
  --ff-mono:      'Space Mono', ui-monospace, monospace;

  /* Radii & motion */
  --r-1:          6px;
  --r-2:          14px;
  --easing:       cubic-bezier(.2,.8,.2,1);

  /* Layout */
  --pad-x:        clamp(20px, 5vw, 80px);
  --max:          1360px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--ff-cond);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Reusable grain texture - subtle film noise over the base */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
}

/* ---------- UTILITIES ---------- */
.flame-text {
  background-image: linear-gradient(180deg,
    var(--fire-1) 0%, var(--fire-2) 45%, var(--fire-3) 80%, var(--fire-4) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(255, 80, 20, .35));
}

.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fire-2);
  margin-right: 10px;
  box-shadow: 0 0 0 3px rgba(255,122,0,.22), 0 0 16px rgba(255,122,0,.8);
  animation: pulse 1.6s var(--easing) infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1);    opacity: 1; }
  50%     { transform: scale(1.35); opacity: .75; }
}

/* ---------- BUTTONS ---------- */
.btn {
  --_bg: var(--bone);
  --_c:  var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--ff-cond);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--_c);
  background: var(--_bg);
  border-radius: 4px;
  position: relative;
  isolation: isolate;
  transition: transform .25s var(--easing), box-shadow .25s var(--easing);
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.5); }
.btn:active { transform: translateY(0); }

.btn--primary {
  --_bg: linear-gradient(90deg, var(--fire-1), var(--fire-2) 50%, var(--fire-3));
  --_c: var(--black);
  box-shadow: 0 0 0 1px rgba(255, 120, 20, .4), 0 10px 30px rgba(255, 60, 10, .25);
}
.btn--primary::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--fire-3), var(--fire-1), var(--fire-3));
  background-size: 200% 100%;
  z-index: -1;
  filter: blur(10px);
  opacity: .55;
  animation: shiftFire 4s linear infinite;
}
@keyframes shiftFire { to { background-position: 200% 0; } }

.btn--ghost {
  --_bg: transparent;
  --_c: var(--bone);
  border-color: var(--bone);
}
.btn--ghost:hover { background: var(--bone); color: var(--black); }

.btn--large { padding: 18px 30px; font-size: 16px; }
.btn--compact { padding: 10px 16px; font-size: 12px; letter-spacing: .14em; }

/* ==========================================================
   AGE GATE
   ========================================================== */
.age-gate {
  position: fixed; inset: 0;
  z-index: 1000;
  background: radial-gradient(ellipse at 50% 0%, #2a0a00 0%, #0a0a0a 55%);
  display: grid;
  place-items: center;
  padding: var(--pad-x);
  overflow: hidden;
  animation: gateIn .5s var(--easing);
}
body.gate-pass .age-gate { animation: gateOut .6s var(--easing) forwards; }

@keyframes gateIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes gateOut { to   { opacity: 0; visibility: hidden; } }

.age-gate__inner {
  position: relative;
  max-width: 620px;
  width: 100%;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 5vw, 48px);
  background: #0d0d0d;
  border: 1px solid rgba(255, 120, 20, .22);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(255, 160, 40, .08),
    0 30px 80px rgba(0,0,0,.8),
    inset 0 0 120px rgba(255, 50, 10, .08);
}
.age-gate__noise {
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 120%, rgba(255,70,10,.25), transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='.8' numOctaves='2'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 .3 0 0 0 0 0 0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .5;
  mix-blend-mode: screen;
}
.age-gate__content {
  position: relative;
  text-align: center;
}
.age-gate__logo {
  width: 120px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 4px 24px rgba(255,122,0,.4));
  animation: floatLogo 4s var(--easing) infinite;
}
@keyframes floatLogo {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(-6px) rotate(1deg); }
}
.age-gate__eyebrow {
  margin: 0;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--fire-2);
  text-transform: uppercase;
}
.age-gate__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(32px, 5.5vw, 48px);
  line-height: .95;
  letter-spacing: -.01em;
  margin: 14px 0 18px;
  color: var(--bone);
}
.age-gate__copy {
  font-size: 15px;
  color: #b5b5b5;
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.age-gate__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  margin: 0 auto;
}
.age-gate__legal {
  margin-top: 26px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: #666;
  text-transform: uppercase;
}

/* "Denied" state - if user clicks Under 21 */
body.gate-denied .age-gate__inner {
  border-color: rgba(255, 56, 56, .4);
}
body.gate-denied .age-gate__content > *:not(.age-gate__denied) { display: none; }
.age-gate__denied {
  color: var(--danger);
  font-family: var(--ff-heavy);
  font-size: 22px;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* ==========================================================
   TICKER
   ========================================================== */
.ticker {
  position: relative;
  z-index: 20;
  background: linear-gradient(90deg, var(--fire-3), var(--fire-2), var(--fire-1), var(--fire-2), var(--fire-3));
  background-size: 300% 100%;
  color: var(--black);
  overflow: hidden;
  padding: 10px 0;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  animation: shiftFire 10s linear infinite;
}
.ticker__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  will-change: transform;
}
.ticker__item {
  font-family: var(--ff-heavy);
  font-size: 14px;
  letter-spacing: .2em;
  padding-right: 40px;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================
   NAV
   ========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  padding: 14px var(--pad-x);
  background: rgba(10,10,10,.72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__brand {
  display: flex; align-items: center; gap: 12px;
}
.nav__brand img { width: 42px; height: 42px; object-fit: contain; }
.nav__brand-text {
  font-family: var(--ff-heavy);
  font-size: 10px;
  letter-spacing: .2em;
  line-height: 1.1;
  color: var(--bone);
}
.nav__links {
  display: flex;
  gap: clamp(16px, 2.5vw, 34px);
  justify-self: end;
  margin-right: 14px;
}
.nav__links a {
  font-family: var(--ff-cond);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bone);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--fire-1), var(--fire-3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--easing);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__burger span {
  display: block; width: 100%; height: 2px; background: var(--bone);
  transition: transform .3s var(--easing), opacity .3s var(--easing);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,10,10,.98);
    padding: 24px var(--pad-x);
    gap: 18px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--easing), transform .25s var(--easing);
    justify-self: stretch;
    margin-right: 0;
  }
  .nav__links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__burger { display: flex; }
  .btn--compact { display: none; }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0;
  isolation: isolate;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(255,50,10,.15), transparent 60%),
    linear-gradient(180deg, rgba(10,10,10,.4) 0%, rgba(10,10,10,.2) 40%, rgba(10,10,10,.92) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  z-index: 3;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .45 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .12;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0 var(--pad-x) clamp(40px, 8vh, 100px);
  max-width: var(--max);
  margin: 0 auto;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #e8e8e8;
  margin: 0 0 20px;
  animation: riseIn .9s var(--easing) both;
}
.hero__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(54px, 13vw, 180px);
  line-height: .82;
  letter-spacing: -.02em;
  margin: 0 0 26px;
  color: var(--bone);
  text-shadow:
    0 2px 0 rgba(0,0,0,.5),
    0 10px 40px rgba(0,0,0,.8);
  text-transform: uppercase;
}
.hero__title .line {
  display: block;
  animation: riseIn 1s var(--easing) both;
}
.hero__title .line--1 { animation-delay: .1s; }
.hero__title .line--2 {
  animation-delay: .25s;
  background: linear-gradient(180deg, var(--fire-1), var(--fire-3));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(255,80,20,.4));
}
.hero__title .line--3 { animation-delay: .4s; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(30px) skewY(2deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0); }
}

.hero__tagline {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 18px);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--fire-1);
  margin: 0 0 28px;
  animation: riseIn 1s var(--easing) .55s both;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: riseIn 1s var(--easing) .7s both;
}

.hero__sound {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(40px, 8vh, 100px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--bone);
  text-transform: uppercase;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
  transition: border-color .3s;
}
.hero__sound:hover { border-color: var(--fire-2); }

@media (max-width: 720px) {
  .hero__sound { bottom: 20px; right: 20px; font-size: 10px; padding: 8px 12px; }
}

.hero__scroll {
  position: absolute;
  left: var(--pad-x);
  bottom: clamp(40px, 8vh, 100px);
  z-index: 5;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .3em;
  color: #c0c0c0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}
.hero__scroll-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--bone), transparent);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--fire-2);
  transform: translateX(-100%);
  animation: scrollPulse 2.5s var(--easing) infinite;
}
@keyframes scrollPulse { to { transform: translateX(100%); } }

@media (max-width: 720px) { .hero__scroll { display: none; } }

/* ==========================================================
   INTRO STRIP
   ========================================================== */
.strip {
  padding: clamp(60px, 10vw, 120px) var(--pad-x);
  background: var(--black);
  border-top: 1px solid var(--line);
}
.strip__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: end;
}
.strip__big {
  font-family: var(--ff-heavy);
  font-size: clamp(32px, 5.5vw, 76px);
  line-height: .95;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--bone);
  text-transform: uppercase;
}
.strip__fire {
  display: inline-block;
  background: linear-gradient(180deg, var(--fire-1), var(--fire-3));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  position: relative;
}
.strip__small {
  font-size: 17px;
  color: #c4c4c4;
  margin: 0;
  line-height: 1.7;
}
@media (max-width: 820px) {
  .strip__inner { grid-template-columns: 1fr; }
}

/* ==========================================================
   SECTION HEAD (shared)
   ========================================================== */
.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}
.section-head__eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--fire-2);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.section-head__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 96px);
  line-height: .92;
  letter-spacing: -.01em;
  margin: 0 0 16px;
  color: var(--bone);
  text-transform: uppercase;
}
.section-head__sub {
  font-size: 17px;
  color: #b5b5b5;
  max-width: 560px;
  margin: 0 auto;
}

/* ==========================================================
   PRODUCTS
   ========================================================== */
.products {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(180deg, var(--black) 0%, #111 100%);
  position: relative;
}
.products__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
@media (max-width: 900px) { .products__grid { grid-template-columns: 1fr; } }

.product {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  padding: clamp(24px, 3vw, 38px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,80,10,.08), transparent 70%),
    #0e0e0e;
  transition: transform .5s var(--easing), border-color .5s var(--easing), box-shadow .5s var(--easing);
  overflow: hidden;
}
.product::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, var(--fire-3) 60deg, transparent 120deg);
  opacity: 0;
  z-index: -1;
  transition: opacity .5s;
  filter: blur(22px);
}
.product:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 120, 20, .4);
  box-shadow: 0 30px 60px rgba(0,0,0,.6);
}
.product:hover::before { opacity: .4; }

.product__media {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
}
.product__media::before {
  content: "";
  position: absolute; inset: 15% 15% 0;
  background: radial-gradient(ellipse at center, rgba(255,120,20,.15), transparent 70%);
  filter: blur(20px);
}
.product__media img {
  position: relative;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.8));
  transition: transform .6s var(--easing);
}
.product:hover .product__media img { transform: scale(1.04) rotate(-1deg); }

.product__tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--fire-2);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.product__name {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  letter-spacing: -.01em;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.product__net {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: #888;
  margin: 0 0 14px;
}
.product__copy {
  font-size: 15px;
  color: #bababa;
  margin: 0 0 22px;
  line-height: 1.6;
}
.product__link {
  font-family: var(--ff-cond);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.3);
  transition: color .3s, border-color .3s, gap .3s var(--easing);
}
.product__link:hover {
  color: var(--fire-1);
  border-color: var(--fire-2);
  gap: 14px;
}

/* ==========================================================
   STORY
   ========================================================== */
.story {
  position: relative;
  padding: clamp(90px, 12vw, 160px) 0;
  overflow: hidden;
}
.story__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(255, 80, 10, .12), transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(184, 137, 43, .08), transparent 55%),
    var(--black);
  z-index: 0;
}
.story__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.story__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(44px, 8vw, 110px);
  line-height: .9;
  margin: 12px 0 60px;
  text-transform: uppercase;
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 60px;
}
@media (max-width: 780px) { .story__grid { grid-template-columns: 1fr; } }

.story__lead {
  font-family: var(--ff-heavy);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  color: var(--bone);
  margin: 0;
  letter-spacing: -.005em;
}
.story__col p { color: #c0c0c0; line-height: 1.75; margin: 0 0 14px; font-size: 16px; }
.story__stamp {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--fire-2);
  text-transform: uppercase;
  margin-top: 20px !important;
}

.story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
@media (max-width: 640px) { .story__stats { grid-template-columns: 1fr; } }

.story__stats li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat__num {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  background: linear-gradient(180deg, var(--fire-1), var(--fire-3));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.stat__label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .26em;
  color: #9a9a9a;
  text-transform: uppercase;
}

/* ==========================================================
   MERCH
   ========================================================== */
.merch {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #0c0c0c;
}
.merch__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}
@media (max-width: 900px) { .merch__grid { grid-template-columns: 1fr; } }

.merch__card {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  overflow: hidden;
  background: var(--black-2);
  transition: transform .5s var(--easing), border-color .5s var(--easing);
}
.merch__card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 214, 122, .4);
}
.merch__media {
  aspect-ratio: 4 / 3;
  background: #151515;
  overflow: hidden;
}
.merch__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform .6s var(--easing);
}
.merch__card:hover .merch__media img { transform: scale(1.06); }

.merch__card figcaption {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
}
.merch__card h3 {
  font-family: var(--ff-heavy);
  font-size: 18px;
  letter-spacing: .04em;
  margin: 0 0 4px;
  text-transform: uppercase;
}
.merch__card p {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .16em;
  color: #888;
  margin: 0;
  text-transform: uppercase;
}

/* ==========================================================
   FIND US
   ========================================================== */
.find {
  padding: clamp(90px, 12vw, 160px) 0;
  position: relative;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(255, 80, 10, .18), transparent 55%),
    var(--black);
}
.find__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}
.find__title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 72px);
  line-height: .95;
  margin: 16px 0 20px;
  text-transform: uppercase;
}
.find__copy { color: #c0c0c0; margin: 0 auto 36px; max-width: 540px; }

.find__card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: clamp(28px, 4vw, 44px) clamp(40px, 6vw, 70px);
  border: 1px solid rgba(255, 120, 20, .3);
  border-radius: var(--r-2);
  background: linear-gradient(180deg, rgba(255, 80, 10, .05), transparent);
  position: relative;
  overflow: hidden;
}
.find__card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 80, 10, .15), transparent 60%);
  pointer-events: none;
}
.find__store {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 34px);
  margin: 0;
  text-transform: uppercase;
  color: var(--bone);
}
.find__addr {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: .26em;
  color: #a0a0a0;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.find__note {
  margin-top: 36px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .22em;
  color: #7a7a7a;
  text-transform: uppercase;
}
.find__socials {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.find__socials a {
  font-family: var(--ff-cond);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bone);
  padding-bottom: 3px;
  border-bottom: 2px solid var(--fire-2);
  transition: color .3s;
}
.find__socials a:hover { color: var(--fire-1); }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  padding: clamp(50px, 7vw, 80px) var(--pad-x) 40px;
  background: #050505;
  border-top: 1px solid var(--line);
}
.footer__top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer__logo { width: 56px; height: 56px; object-fit: contain; }
.footer__tag {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2vw, 26px);
  margin: 0;
  letter-spacing: .04em;
  color: var(--bone);
  text-transform: uppercase;
}
.footer__legal p {
  max-width: 900px;
  font-family: var(--ff-mono);
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: .04em;
  color: #7a7a7a;
  margin: 0 0 32px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .22em;
  color: #666;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.footer__bottom p { margin: 0; }

/* ==========================================================
   MOTION / A11Y
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__video { display: none; }
  .hero { background: var(--black) url("assets/images/hero-poster.jpg") center/cover no-repeat; }
}

:focus-visible {
  outline: 2px solid var(--fire-1);
  outline-offset: 3px;
  border-radius: 4px;
}
