/* klēn prebiotic , scroll-experience prototype (2026-07-03)
   Palette pulled from the final label art:
   berry  #f6dede bg / #e58a8a accents / ink #171214
   grape  #f2915c bg / #ef7422 accents / cream #f7ead8 */

@font-face {
  font-family: "Archivo Black";
  src: url("fonts/ArchivoBlack.ttf") format("truetype");
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/SpaceGrotesk.ttf") format("truetype");
  font-weight: 300 700; font-display: swap;
}

:root {
  --ink: #171214;
  --cream: #f9f1e7;
  --berry-bg: #f6dede;
  --berry-deep: #e58a8a;
  --berry-pop: #e2574b;
  --grape-bg: #f2915c;
  --grape-deep: #ef7422;
  --grape-pop: #b64708;
  --bg: var(--berry-bg);
  --pop: var(--berry-pop);
  --deep: var(--berry-deep);
  --pop-text: #b13022;           /* AA-safe accent for TEXT on the pink ground */
  --display: "Archivo Black", Arial Black, sans-serif;
  --body: "Space Grotesk", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  transition: background-color .8s ease;
}
body[data-theme="grape"] { --bg: var(--grape-bg); --pop: var(--grape-pop); --deep: var(--grape-deep); --pop-text: var(--ink); }
img { max-width: 100%; display: block; }
.macron { letter-spacing: 0; }

/* film grain over every ground (award-site texture, 4%) */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .045;
}

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 60;
  background: var(--berry-bg);
  display: grid; place-items: center;
  transition: transform .7s cubic-bezier(.77,0,.18,1);
}
.loader.done { transform: translateY(-101%); }
.loader-inner { text-align: center; }
.loader-word {
  font-family: var(--display);
  font-size: clamp(64px, 14vw, 180px);
  line-height: .9; letter-spacing: -.02em;
}
.loader-sub { font-size: clamp(14px, 2vw, 20px); margin-top: 10px; letter-spacing: .18em; text-transform: uppercase; }
.loader-count {
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 34px);
  margin-top: 26px; color: #b13022;
}

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 40px);
  mix-blend-mode: normal;
}
.nav-word { font-family: var(--display); font-size: 26px; line-height: 1.2; transition: color .4s; }
.nav-tag { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; opacity: .9; transition: opacity .4s, color .4s; }
.nav-cta {
  font-family: var(--body); font-weight: 700; font-size: 14px;
  color: var(--cream); background: var(--ink);
  text-decoration: none; padding: 10px 18px; border-radius: 999px;
  transition: background .3s, color .3s;
}
.nav-cta:hover { background: #b13022; }
body.on-dark .nav-word, body.on-dark .nav-tag { color: var(--cream); }
body.on-dark .nav-cta { background: var(--cream); color: var(--ink); }
body.tagline-on .nav-tag { opacity: 0; }
@media (max-width: 720px) { .nav-tag { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: center;
  overflow: clip;
}
.hero-type {
  position: absolute; inset: 0;
  display: grid; place-content: center; gap: 0;
  text-align: center; z-index: 1;
  user-select: none;
}
.hero-line {
  font-family: var(--display);
  line-height: .82; letter-spacing: -.03em;
  display: block;
}
.hero-line-1 { font-size: clamp(120px, 30vw, 420px); color: var(--ink); }
.hero-line-2 {
  font-size: clamp(46px, 11.5vw, 160px);
  margin-top: .12em;
  -webkit-text-stroke: 0.015em var(--ink); color: transparent;
}
.hero-can {
  position: relative; z-index: 2;
  width: clamp(220px, 29vw, 430px);
  transform: translateX(3vw);
  filter: drop-shadow(0 44px 54px rgba(23,18,20,.32));
}
.hero-foot {
  position: absolute; bottom: 26px; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: flex-end; align-items: flex-end;
  padding: 0 clamp(16px, 4vw, 40px);
  font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
}
.hero-scrollcue { display: flex; gap: 8px; align-items: center; font-weight: 700; }
.cue-arrow { display: inline-block; animation: cue 1.4s ease-in-out infinite; }
@keyframes cue { 50% { transform: translateY(6px); } }

/* ---------- marquee ---------- */
.marquee {
  background: var(--ink); color: var(--cream);
  overflow: hidden; white-space: nowrap;
  padding: 14px 0; font-family: var(--display);
  font-size: clamp(16px, 2.6vw, 28px);
  position: relative; z-index: 5;
}
.marquee-track { display: inline-block; animation: marquee 22s linear infinite; }
.marquee-track span { padding-right: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- scrub sections ---------- */
.scrub { position: relative; height: 420svh; }
.scrub-stage { position: sticky; top: 0; height: 100svh; overflow: clip; }
.scrub-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 2;
  filter: drop-shadow(0 38px 48px rgba(23,18,20,.26));
  transition: transform .6s cubic-bezier(.33,1,.68,1);
}
/* subtle vignette so the pale grapefruit label pops off the orange ground */
.scrub.grape .scrub-stage::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 62% 60% at 50% 48%, rgba(255,244,230,.20), transparent 62%);
}
.scrub-stage[data-shift="right"] .scrub-canvas { transform: translateX(11vw); }
.scrub-stage[data-shift="left"] .scrub-canvas { transform: translateX(-11vw); }
@media (max-width: 720px) {
  .scrub-stage[data-shift] .scrub-canvas { transform: none; }
}
.scrub-panel {
  position: absolute; z-index: 3;
  top: 50%; left: clamp(20px, 6vw, 90px);
  transform: translateY(-50%) translateY(26px);
  opacity: 0; transition: opacity .45s ease, transform .45s ease;
  max-width: min(46vw, 560px);
  pointer-events: none;
}
.scrub-panel.right { left: auto; right: clamp(20px, 6vw, 90px); text-align: right; }
.scrub-panel.center {
  left: 50%; right: auto; text-align: center;
  width: max-content; max-width: 96vw;
  transform: translate(-50%,-50%) translateY(26px);
  z-index: 1; /* the giant tagline sits BEHIND the can for depth */
}
.scrub-panel.on { opacity: 1; transform: translateY(-50%) translateY(0); }
.scrub-panel.center.on { transform: translate(-50%,-50%) translateY(0); }
.scrub-panel h2 {
  font-family: var(--display);
  font-size: clamp(44px, 8.5vw, 128px);
  line-height: .92; letter-spacing: -.02em;
  text-transform: lowercase;
}
.scrub-panel h2 .unit {
  display: block; font-size: clamp(18px, 2.4vw, 32px);
  letter-spacing: .06em; color: var(--pop-text); margin-top: .2em;
}
.scrub-panel p { margin-top: 14px; font-size: clamp(15px, 1.8vw, 21px); font-weight: 500; }
.tagline-h { font-size: min(13vw, 210px) !important; line-height: .9 !important; }
.tagline-h span { white-space: nowrap; }
.tagline-sub { font-size: clamp(15px, 1.6vw, 20px); font-weight: 500; margin-top: 20px; }

@media (max-width: 720px) {
  .scrub-panel { max-width: 86vw; top: auto; bottom: 9svh; transform: translateY(26px); }
  .scrub-panel.on { transform: translateY(0); }
  .scrub-panel.right { text-align: left; right: auto; left: clamp(20px,6vw,90px); }
  .scrub-panel.center { left: 50%; transform: translate(-50%, 26px); bottom: 9svh; top: auto; }
  .scrub-panel.center.on { transform: translate(-50%, 0); }
  /* the number IS the message: keep STAT panels display-scale on phones,
     but flavor names (long words) stay fit-to-viewport */
  .scrub-panel h2 { font-size: clamp(36px, 11vw, 128px); }
  .scrub-panel h2:has(.unit) { font-size: clamp(64px, 20vw, 128px); }
  .tagline-h { font-size: 15vw !important; }
}

/* ---------- collage (flavor-split duotone, cans overlapping, type in front) ---------- */
.collage { position: relative; text-align: center; }
.collage-band {
  position: relative; height: 96svh; overflow: clip;
  background: linear-gradient(90deg, var(--berry-bg) 0 50%, var(--grape-bg) 50% 100%);
}
.collage-can {
  position: absolute; top: 50%; width: auto; height: 78%;
  filter: drop-shadow(0 46px 52px rgba(23,18,20,.34));
}
.collage-can-berry { left: 50%; transform: translate(-92%, -54%) rotate(-7deg); z-index: 1; }
.collage-can-grape { left: 50%; transform: translate(-8%, -46%) rotate(6deg); z-index: 2; }
.collage-type {
  position: absolute; left: 0; right: 0; bottom: 5vh; z-index: 3;
  font-family: var(--display);
  font-size: min(12vw, 210px);
  padding-inline: clamp(10px, 3vw, 40px);
  line-height: .9; letter-spacing: -.03em;
  color: var(--ink);
  white-space: nowrap; user-select: none;
}
.collage-copy { max-width: 520px; margin: 46px auto; font-size: clamp(16px, 2vw, 21px); font-weight: 500; padding: 0 20px; }
@media (max-width: 720px) {
  .collage-band { height: 78svh; }
  .collage-can { height: 56%; }
  .collage-can-berry { transform: translate(-96%, -60%) rotate(-7deg); }
  .collage-can-grape { transform: translate(-4%, -42%) rotate(6deg); }
  .collage-type { white-space: normal; font-size: 16vw; line-height: .88; bottom: 4vh; }
}

/* ---------- first drop ---------- */
.firstdrop {
  background: var(--ink); color: var(--cream);
  text-align: center; padding: 10vh 20px;
  min-height: 100svh;
  display: grid; place-content: center;
}
.firstdrop h2 {
  font-family: var(--display);
  font-size: clamp(44px, 9vw, 130px);
  line-height: .92; text-transform: lowercase;
}
.firstdrop-sub { margin: 18px auto 34px; max-width: 460px; font-size: clamp(15px, 1.8vw, 19px); opacity: .85; }
#dropForm { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
#dropEmail {
  font-family: var(--body); font-size: 17px;
  padding: 15px 22px; border-radius: 999px; border: 2px solid var(--cream);
  background: transparent; color: var(--cream); min-width: min(340px, 80vw);
}
#dropEmail::placeholder { color: rgba(249,241,231,.55); }
#dropForm button {
  font-family: var(--body); font-weight: 700; font-size: 17px;
  padding: 15px 30px; border-radius: 999px; border: 0;
  background: var(--berry-pop); color: var(--ink); cursor: pointer;
}
#dropForm button:hover { transform: translateY(-2px); }
.firstdrop-note { margin-top: 20px; font-size: 13px; opacity: .6; letter-spacing: .06em; }

/* ---------- footer ---------- */
.foot { text-align: center; padding: 60px 20px 40px; }
.foot-word { font-family: var(--display); font-size: 34px; }
.foot-line { margin-top: 10px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }

/* ---------- announcement ticker ---------- */
.ticker {
  position: fixed; top: 0; left: 0; right: 0; z-index: 45;
  background: var(--ink); color: var(--cream);
  overflow: hidden; white-space: nowrap;
  font-family: var(--body); font-weight: 700;
  font-size: 12.5px; letter-spacing: .08em; text-transform: lowercase;
  padding: 8px 0;
}
.ticker-track { display: inline-block; animation: marquee 26s linear infinite; }
.nav { top: 31px; }

/* ---------- shared section chrome ---------- */
.section-h {
  font-family: var(--display);
  font-size: clamp(40px, 7.5vw, 110px);
  line-height: .92; letter-spacing: -.02em; text-transform: lowercase;
  margin-bottom: .4em;
}
.shop, .inside, .merch, .wall, .findus { padding: 14vh clamp(18px, 5vw, 70px); text-align: center; position: relative; }

/* ---------- wet band ---------- */
.wetband { position: relative; height: 92svh; overflow: clip; background: var(--ink); }
.wetband-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.wetband-type {
  position: absolute; left: 0; right: 0; bottom: 5vh;
  font-family: var(--display); color: var(--cream);
  font-size: min(11vw, 190px); line-height: .9; letter-spacing: -.02em;
  text-shadow: 0 10px 44px rgba(0,0,0,.55);
}

/* ---------- shop cards ---------- */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 90vw), 1fr)); gap: 22px; max-width: 1200px; margin: 0 auto; }
.shop-card {
  border-radius: 26px; padding: 30px 24px 28px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform .35s cubic-bezier(.33,1,.68,1);
}
.shop-card:hover { transform: translateY(-8px) rotate(-.5deg); }
.berrycard { background: #fdeef0; }
.grapecard { background: #ffd9bd; }
.mysterycard { background: transparent; border: 3px dashed var(--ink); }
.shop-card img { height: 300px; width: auto; filter: drop-shadow(0 18px 22px rgba(23,18,20,.25)); }
.mystery-can {
  height: 300px; aspect-ratio: 11/14; display: grid; place-items: center;
  font-family: var(--display); font-size: 120px; color: var(--ink); opacity: .55;
}
.chip {
  align-self: flex-start; font-weight: 700; font-size: 13px; letter-spacing: .06em;
  background: var(--ink); color: var(--cream); border-radius: 999px; padding: 6px 14px;
}
.shop-card h3 { font-family: var(--display); font-size: clamp(24px, 2.6vw, 36px); text-transform: lowercase; }
.shop-card p { font-size: 15px; font-weight: 500; max-width: 300px; }
.card-cta {
  margin-top: 6px; font-weight: 700; font-size: 15px; text-decoration: none;
  background: var(--ink); color: var(--cream); padding: 12px 24px; border-radius: 999px;
}
.card-cta:hover { background: #b13022; }

/* ---------- what's inside ---------- */
.inside { background: var(--ink); color: var(--cream); }
.inside .section-h { color: var(--cream); }
.inside-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 88vw), 1fr)); gap: 18px; max-width: 1100px; margin: 0 auto; }
.stat { display: grid; gap: 6px; padding: 34px 18px; border: 2px solid rgba(249,241,231,.28); border-radius: 22px; }
.stat-n { font-family: var(--display); font-size: clamp(44px, 5.5vw, 84px); line-height: .9; }
.stat-l { font-weight: 700; font-size: 16px; color: var(--berry-pop); }
.stat-s { font-size: 13.5px; opacity: .75; }
.inside-line { margin-top: 40px; font-family: var(--display); font-size: clamp(20px, 3vw, 40px); text-transform: lowercase; }

/* ---------- merch ---------- */
.merch-sub { font-weight: 500; margin: -10px 0 34px; font-size: clamp(15px, 1.8vw, 20px); }
.merch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 86vw), 1fr)); gap: 20px; max-width: 1150px; margin: 0 auto; }
.merch-card { border-radius: 24px; padding: 18px 18px 22px; display: grid; gap: 12px; transition: transform .35s cubic-bezier(.33,1,.68,1); }
.merch-card:hover { transform: translateY(-8px) rotate(.6deg); }
.mc1 { background: #fdeef0; } .mc2 { background: #ffe3cf; } .mc3 { background: #fbe6ea; } .mc4 { background: var(--berry-bg); }
.merch-art { border-radius: 16px; background: rgba(255,255,255,.45); }
.merch-art svg { width: 100%; height: auto; display: block; }
.merch-mark { font-family: var(--display); font-size: 30px; fill: var(--ink); }
.merch-card h3 { font-family: var(--display); font-size: 22px; text-transform: lowercase; }

/* ---------- review wall (honest empty state) ---------- */
.wall-sub { font-family: var(--display); font-size: clamp(20px, 3vw, 40px); margin: -14px 0 36px; }
.wall-bubbles { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; max-width: 900px; margin: 0 auto; }
.bubble {
  background: var(--cream); border-radius: 22px 22px 22px 6px;
  padding: 18px 26px; font-weight: 500; font-size: clamp(15px, 1.9vw, 20px);
}
.bubble.ghost { opacity: .62; border: 2px dashed var(--ink); background: transparent; }
.wall-note { margin-top: 34px; font-size: 14px; opacity: .75; letter-spacing: .04em; }

/* ---------- word-stat scrub panel (non-numeric big stat) ---------- */
.scrub-panel h2.wordstat { font-size: clamp(38px, 6.6vw, 96px); }
.scrub-panel h2.wordstat .unit { color: var(--pop-text); }
@media (max-width: 720px) { .scrub-panel h2.wordstat { font-size: clamp(34px, 9vw, 96px); } }

/* ---------- why different ---------- */
.different { background: var(--ink); color: var(--cream); }
.different-h { font-family: var(--display); font-size: clamp(40px, 8vw, 128px); line-height: .9; letter-spacing: -.02em; text-transform: lowercase; }
.different-body { max-width: 640px; margin: 30px auto 40px; font-size: clamp(16px, 2vw, 22px); line-height: 1.55; opacity: .9; }
.different-body em { color: var(--berry-pop); font-style: normal; }
.vs-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 88vw), 1fr)); gap: 16px; max-width: 860px; margin: 0 auto; }
.vs { border: 2px solid rgba(249,241,231,.28); border-radius: 20px; padding: 26px 22px; text-align: left; }
.vs-name { display: block; font-family: var(--display); font-size: 24px; text-transform: lowercase; margin-bottom: 8px; }
.vs-desc { font-size: 15px; opacity: .78; }
.klen-vs { border-color: var(--berry-pop); background: rgba(226,87,75,.1); }
.klen-vs .vs-name { color: var(--berry-pop); }

/* ---------- built in public ---------- */
.bip-sub { font-weight: 500; margin: -8px 0 40px; font-size: clamp(15px, 1.9vw, 21px); }
.bip-list { list-style: none; max-width: 720px; margin: 0 auto; display: grid; gap: 4px; text-align: left; }
.bip-list li { display: flex; align-items: baseline; gap: 20px; padding: 22px 8px; border-top: 2px solid rgba(23,18,20,.14); }
.bip-list li:last-child { border-bottom: 2px solid rgba(23,18,20,.14); }
.bip-n { font-family: var(--display); font-size: clamp(22px, 3vw, 34px); color: var(--pop); min-width: 54px; }
.bip-t { font-size: clamp(16px, 2.1vw, 24px); font-weight: 500; }

/* ---------- campus ---------- */
.campus-body { max-width: 620px; margin: 0 auto 30px; font-size: clamp(16px, 2vw, 22px); line-height: 1.55; font-weight: 500; }
.campus-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.campus-tags span { background: var(--ink); color: var(--cream); border-radius: 999px; padding: 10px 20px; font-weight: 700; font-size: 14px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 0 auto; text-align: left; }
.faq-list details { border-bottom: 2px solid rgba(23,18,20,.14); padding: 8px 4px; }
.faq-list summary { font-family: var(--display); font-size: clamp(18px, 2.4vw, 28px); text-transform: lowercase; padding: 18px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 1.1em; color: var(--pop); }
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details p { font-size: clamp(15px, 1.8vw, 19px); font-weight: 500; padding: 0 0 20px; max-width: 620px; }

/* ---------- segmented control + alt CTAs ---------- */
.segmented { border: 0; margin: 0 0 18px; padding: 0; text-align: center; }
.segmented legend { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; opacity: .7; margin-bottom: 12px; }
.segmented label { display: inline-block; margin: 5px; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented span { display: inline-block; border: 2px solid rgba(249,241,231,.4); border-radius: 999px; padding: 9px 18px; font-weight: 700; font-size: 14px; cursor: pointer; transition: background .2s, color .2s; }
.segmented input:checked + span { background: var(--berry-pop); border-color: var(--berry-pop); color: var(--ink); }
.segmented label:focus-within span { outline: 2px solid var(--cream); outline-offset: 2px; }
.drop-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.drop-alts { margin-top: 14px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.drop-alts .alt { background: transparent; border: 2px solid rgba(249,241,231,.4); color: var(--cream); border-radius: 999px; padding: 11px 20px; font-family: var(--body); font-weight: 700; font-size: 14px; cursor: pointer; }
.drop-alts .alt:hover { border-color: var(--cream); }

/* ---------- find us ---------- */
.findus p { font-size: clamp(16px, 2vw, 22px); font-weight: 500; max-width: 560px; margin: 0 auto; }

@media (max-width: 720px) {
  .shop-card img, .mystery-can { height: 220px; }
  .wetband { height: 64svh; }
}

/* ============================================================
   REFINE 2026-07-04 , art-direction pass (Forrest: "make it not suck")
   Diagnosis: every section was a giant black headline on a flat block.
   Fix: restrain type, add whitespace + eyebrows, calm color rhythm,
   editorial cards, kill the amateur merch clip-art, fix collisions.
   ============================================================ */

/* 1. TYPE RESTRAINT , stop shouting in every section */
.section-h, .different-h { font-size: clamp(30px, 4.4vw, 64px) !important; letter-spacing: -.015em; }
.eyebrow { display:block; font-family:var(--body); font-weight:700; font-size:12.5px; letter-spacing:.24em; text-transform:uppercase; color:var(--pop-text); margin-bottom:16px; }
.inside .eyebrow, .campus .eyebrow, .firstdrop .eyebrow { color:var(--berry-pop); }

/* 2. WHITESPACE */
.shop, .inside, .merch, .wall, .campus, .faq, .different, .bip { padding:18vh clamp(20px,5vw,80px); }

/* 3. CALM BACKGROUND RHYTHM , reserve loud orange for the wet band only */
.shop { background:#f7f0e6; }
.bip  { background:#f7f0e6; color:var(--ink); }
.bip .section-h { color:var(--ink); }
.merch{ background:#f7f0e6; }
.wall { background:#fbe9ec; }
.faq  { background:#f7f0e6; }
.campus { background:var(--ink); color:var(--cream); }
.campus .section-h { color:var(--cream); }
.campus .campus-tags span { background:var(--cream); color:var(--ink); }

/* 4. EDITORIAL STAT CARDS (no weak thin boxes) */
.inside-grid { gap:0; border-top:1.5px solid rgba(249,241,231,.22); max-width:1100px; margin:0 auto; }
.stat { border:0 !important; border-right:1.5px solid rgba(249,241,231,.2); border-bottom:1.5px solid rgba(249,241,231,.2); border-radius:0 !important; padding:42px 22px; text-align:left; gap:8px; }
.stat-n { font-size:clamp(46px,6vw,88px); line-height:.9; }
.stat-l { color:var(--berry-pop); }
@media (max-width:720px){ .stat { border-right:0 !important; } }

/* 5. MERCH LOOKBOOK , clean color fields with screenprinted mark, no clip-art */
.merch-grid { gap:16px; }
.merch-card { position:relative; aspect-ratio:4/5; border-radius:20px; padding:0 !important; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.merch-card:hover { transform:translateY(-6px) rotate(0deg); }
.mk-mark { font-family:var(--display); font-size:clamp(26px,3vw,40px); text-transform:lowercase; }
.mk-cream { background:#eadfce; color:var(--ink); }
.mk-orange { background:var(--grape-deep); color:var(--cream); }
.mk-pink { background:var(--berry-deep); color:var(--ink); }
.mk-ink { background:var(--ink); color:var(--cream); }
.mk-foot { position:absolute; left:0; right:0; bottom:0; display:flex; justify-content:space-between; align-items:center; padding:14px 16px; font-family:var(--body); }
.mk-name { font-weight:700; font-size:14px; text-transform:lowercase; }
.mk-tag { font-size:10.5px; letter-spacing:.16em; text-transform:uppercase; opacity:.65; border:1px solid currentColor; border-radius:999px; padding:3px 9px; }

/* 6. WET BAND , scrim + bottom-left caption so type stops bisecting the can */
.wetband-img { position:relative; z-index:1; }
.wetband::after { content:""; position:absolute; inset:0; z-index:2; pointer-events:none; background:linear-gradient(180deg, transparent 42%, rgba(23,18,20,.6)); }
.wetband-type { z-index:3; text-align:left; left:clamp(20px,5vw,70px); right:auto; bottom:6vh; font-size:min(8.5vw,140px); }
@media (max-width:720px){ .wetband-type { font-size:15vw; } }

/* 7. WHY-DIFFERENT , calmer body */
.different-body { font-size:clamp(16px,1.7vw,20px); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .cue-arrow { animation: none; }
  .scrub { height: auto; }
  .scrub-stage { position: relative; height: auto; padding: 12vh 0; }
  .scrub-canvas { position: relative; height: 70svh; }
  .scrub-panel { position: relative; opacity: 1; transform: none; top: auto; left: auto; right: auto; margin: 30px auto; text-align: center; }
  .loader { display: none; }
}
