/* ==========================================================================
   BackstageIV — design system
   Black stage, crimson + amber light, road-case stencil type.
   ========================================================================== */

:root {
  --ink: #070709;
  --ink-2: #0e0d11;
  --ink-3: #16141a;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --paper: #f5f0ea;
  --muted: #a59e97;
  --dim: #6f6964;
  --red: #ff2d46;
  --red-deep: #b3102a;
  --amber: #ffb03b;
  --heat: linear-gradient(100deg, var(--red) 0%, #ff6a3d 55%, var(--amber) 100%);

  --f-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --f-stencil: "Big Shoulders Stencil Display", "Big Shoulders Display", sans-serif;
  --f-body: "Inter Tight", system-ui, -apple-system, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --gutter: clamp(16px, 4vw, 48px);
  --max: 1320px;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bar-h: 0px; /* mobile action bar height, set in media query */
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-bottom: var(--bar-h);
}

[hidden] { display: none !important; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--red); color: #fff; }

/* Film grain over everything — subtle, keeps the black from looking flat */
body::after {
  content: "";
  position: fixed; inset: -50%;
  pointer-events: none; z-index: 90;
  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='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -1%); }
  80% { transform: translate(3%, 3%); }
  100% { transform: translate(0, 0); }
}

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Type ---------- */
.display, h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin: 0;
}
h1 { font-size: clamp(64px, 23vw, 210px); }
h2 { font-size: clamp(46px, 9vw, 132px); }
h3 { font-size: clamp(28px, 4.2vw, 46px); line-height: 0.95; }
p { margin: 0 0 1em; }
.lede { font-size: clamp(18px, 2.1vw, 22px); color: #d9d2cb; max-width: 38ch; line-height: 1.5; }
.muted { color: var(--muted); }
.heat { background: var(--heat); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stencil { font-family: var(--f-stencil); }
.outline { color: transparent; -webkit-text-stroke: 1.5px rgba(245, 240, 234, 0.85); }

.tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.tag::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 0 4px rgba(255, 45, 70, 0.18), 0 0 18px var(--red);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(255, 45, 70, 0), 0 0 8px var(--red); } }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 56px; padding: 0 28px; border-radius: 999px;
  font-family: var(--f-display); font-weight: 800; font-size: 19px; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--heat); color: #120406;
  overflow: hidden; isolation: isolate;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 10px 40px -10px rgba(255, 45, 70, 0.7);
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.55) 50%, transparent 80%);
  transform: translateX(-120%); transition: transform 0.8s var(--ease);
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 50px -10px rgba(255, 45, 70, 0.9); }
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--paper); border: 1px solid var(--line-2); box-shadow: none; }
.btn--ghost:hover { border-color: var(--paper); box-shadow: none; }
.btn--block { width: 100%; }

/* ---------- Loader (first visit only) ---------- */
.loader {
  position: fixed; inset: 0; z-index: 200; background: var(--ink);
  display: grid; place-items: center;
}
.loader__inner { display: grid; justify-items: center; gap: 22px; }
.loader__drop {
  width: 16px; height: 22px; background: var(--heat);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  clip-path: path("M8 0 C8 0 16 11 16 15 A8 8 0 0 1 0 15 C0 11 8 0 8 0Z");
  animation: drop 0.9s var(--ease) infinite;
}
@keyframes drop {
  0% { transform: translateY(-30px) scaleY(1.2); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(30px) scaleY(0.9); opacity: 0; }
}
.loader__mark { width: 64px; height: auto; animation: beat 1.1s var(--ease) infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 15% { transform: scale(1.12); } 30% { transform: scale(0.97); } 45% { transform: scale(1.06); } }
.loader__word { width: 220px; height: auto; }
.loader__ecg { width: 220px; height: 40px; }
.loader__ecg path { stroke: var(--red); stroke-width: 2.5; fill: none; stroke-dasharray: 400; stroke-dashoffset: 400; animation: ecg 1.4s linear infinite; }
@keyframes ecg { to { stroke-dashoffset: 0; } }
html:not(.first-visit) .loader { display: none; }

/* ---------- Header ---------- */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  padding: 14px 0;
  transition: background 0.4s, backdrop-filter 0.4s, transform 0.5s var(--ease);
}
.hdr.is-scrolled { background: rgba(7, 7, 9, 0.72); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.hdr.is-hidden { transform: translateY(-100%); }
.hdr .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: inline-flex; align-items: center; }
.logo img { height: 38px; width: auto; }
.logo--full img { height: 70px; }
.logo__mark {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: var(--heat); color: #120406; font-size: 17px; letter-spacing: 0;
}
.logo b { color: var(--red); font-weight: 900; }

.nav { display: none; gap: 30px; align-items: center; }
.nav a, .nav .btn { white-space: nowrap; flex: none; }
.nav a { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); transition: color 0.3s; position: relative; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--paper); }
.nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--heat); }
.nav .btn { min-height: 44px; font-size: 16px; padding: 0 20px; }

.burger { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; }
.burger span { display: block; width: 18px; height: 2px; background: var(--paper); position: relative; transition: background 0.3s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--paper); transition: transform 0.4s var(--ease); }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.menu-open .burger span { background: transparent; }
.menu-open .burger span::before { transform: translateY(6px) rotate(45deg); }
.menu-open .burger span::after { transform: translateY(-6px) rotate(-45deg); }

/* Full-screen mobile menu */
.mnav {
  position: fixed; inset: 0; z-index: 70; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px var(--gutter) calc(40px + var(--bar-h));
  clip-path: circle(0% at calc(100% - 40px) 38px);
  transition: clip-path 0.8s var(--ease);
  visibility: hidden;
}
.menu-open .mnav { clip-path: circle(150% at calc(100% - 40px) 38px); visibility: visible; }
.mnav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(90% 60% at 100% 100%, rgba(255, 45, 70, 0.28), transparent 70%);
}
.mnav a.big {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(46px, 13vw, 90px); line-height: 1; padding: 6px 0;
  transform: translateY(40px); opacity: 0;
  transition: transform 0.7s var(--ease), opacity 0.7s var(--ease), color 0.3s;
}
.mnav a.big small { font-family: var(--f-mono); font-size: 12px; color: var(--red); letter-spacing: 0.1em; }
.mnav a.big[aria-current="page"] { color: var(--red); }
.menu-open .mnav a.big { transform: none; opacity: 1; }
.menu-open .mnav a.big:nth-child(2) { transition-delay: 0.05s; }
.menu-open .mnav a.big:nth-child(3) { transition-delay: 0.1s; }
.menu-open .mnav a.big:nth-child(4) { transition-delay: 0.15s; }
.menu-open .mnav a.big:nth-child(5) { transition-delay: 0.2s; }
.menu-open .mnav a.big:nth-child(6) { transition-delay: 0.25s; }
.menu-open .mnav a.big:nth-child(7) { transition-delay: 0.3s; }
.mnav__foot { margin-top: 30px; display: flex; gap: 20px; flex-wrap: wrap; font-family: var(--f-mono); font-size: 13px; color: var(--muted); }
.menu-open { overflow: hidden; }

/* ---------- Mobile action bar ---------- */
.actbar {
  position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 85;
  display: grid; grid-template-columns: 1fr 1fr 1.6fr; gap: 8px;
  padding: 8px; border-radius: 22px;
  background: rgba(14, 13, 17, 0.82); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border: 1px solid var(--line-2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: translateY(140%); transition: transform 0.6s var(--ease);
  padding-bottom: calc(8px + env(safe-area-inset-bottom) * 0.5);
}
.actbar.is-in { transform: none; }
.actbar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  min-height: 52px; border-radius: 15px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--ink-3);
}
.actbar a svg { width: 20px; height: 20px; }
.actbar a.primary { background: var(--heat); color: #120406; font-family: var(--f-display); font-weight: 900; font-size: 19px; letter-spacing: 0.06em; flex-direction: row; gap: 8px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding: 120px 0 calc(48px + var(--bar-h)); overflow: hidden; isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media picture { width: 100%; height: 100%; object-fit: cover; }
.hero__media img { transform: scale(1.12); animation: kenburns 22s var(--ease) forwards; }
@keyframes kenburns { to { transform: scale(1); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 7, 9, 0.55) 0%, rgba(7, 7, 9, 0) 30%, rgba(7, 7, 9, 0.35) 55%, var(--ink) 100%),
    linear-gradient(90deg, rgba(7, 7, 9, 0.85) 0%, rgba(7, 7, 9, 0) 65%);
}
.hero__haze {
  position: absolute; inset: auto -20% -10% -20%; height: 60%; z-index: -1; pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 45, 70, 0.28), transparent 70%);
  filter: blur(40px); animation: haze 9s ease-in-out infinite alternate;
}
@keyframes haze { to { transform: translate3d(8%, -6%, 0) scale(1.15); opacity: 0.7; } }
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero h1 .line > span { display: inline-block; }
.hero__row { display: grid; gap: 28px; margin-top: 26px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.hero--page { min-height: 78svh; }
.hero--page h1 { font-size: clamp(58px, 13vw, 170px); }

/* All-access laminate badge */
.laminate {
  position: absolute; right: var(--gutter); top: 110px; z-index: 2;
  width: 132px; height: 132px; display: grid; place-items: center;
}
.laminate svg { position: absolute; inset: 0; animation: spin 18s linear infinite; }
.laminate svg text { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 3.2px; fill: var(--paper); text-transform: uppercase; }
.laminate__core { width: 62px; height: 62px; border-radius: 50%; background: var(--ink); border: 1px solid var(--line-2); display: grid; place-items: center; box-shadow: 0 0 40px rgba(255, 45, 70, 0.45); }
.laminate__core img { width: 42%; height: auto; }
@keyframes spin { to { transform: rotate(360deg); } }

.scrollcue { display: none; }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding: 18px 0; background: var(--ink-2); }
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span {
  font-family: var(--f-display); font-weight: 900; font-size: clamp(30px, 5vw, 58px); text-transform: uppercase;
  padding-right: 40px; display: inline-flex; align-items: center; gap: 40px; white-space: nowrap;
}
.marquee__track span::after { content: "✚"; color: var(--red); font-size: 0.5em; }
.marquee__track span:nth-child(even) { color: transparent; -webkit-text-stroke: 1.2px rgba(245, 240, 234, 0.6); }
.marquee--red { background: var(--red); color: #120406; border: 0; transform: rotate(-2deg) scale(1.04); }
.marquee--red .marquee__track span::after { color: #120406; }
.marquee--red .marquee__track span:nth-child(even) { -webkit-text-stroke-color: #120406; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.sec { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.sec--tight { padding: clamp(56px, 8vw, 100px) 0; }
.sec__head { display: grid; gap: 22px; margin-bottom: clamp(40px, 6vw, 72px); }
.sec__head .tag { margin-bottom: 4px; }

/* ECG divider */
.ecg { width: 100%; height: 60px; display: block; }
.ecg path { fill: none; stroke: var(--red); stroke-width: 2; filter: drop-shadow(0 0 6px var(--red)); }

/* ---------- Audience cards (home) ---------- */
.aud { display: grid; gap: 16px; }
.aud__card {
  position: relative; min-height: 460px; border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
  border: 1px solid var(--line); isolation: isolate;
}
.aud__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.2s var(--ease); }
.aud__card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 25%, rgba(7, 7, 9, 0.95) 88%); }
.aud__card:hover img { transform: scale(1.06); }
.aud__num { position: absolute; top: 22px; left: 26px; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--muted); }
.aud__card h3 { margin-bottom: 10px; }
.aud__card p { color: #cfc8c1; max-width: 34ch; }
.aud__go { display: inline-flex; gap: 10px; align-items: center; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); }

/* ---------- Split feature ---------- */
.split { display: grid; gap: 40px; align-items: center; }
.split__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.split__media img { width: 100%; height: 118%; object-fit: cover; }
.split__media--wide { aspect-ratio: 16 / 11; }
.split__body > * + * { margin-top: 22px; }

.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.ticks li { display: grid; grid-template-columns: 26px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.ticks li::before { content: "✚"; color: var(--red); font-size: 14px; line-height: 1.8; }
.ticks b { display: block; font-weight: 600; }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 14px; counter-reset: step; }
.step {
  position: relative; padding: 30px 26px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2)); border: 1px solid var(--line);
  overflow: hidden;
}
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-family: var(--f-stencil); font-weight: 900; font-size: 88px; line-height: 0.8;
  background: var(--heat); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 18px;
}
.step h3 { font-size: 30px; margin-bottom: 10px; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Drip menu ---------- */
.drips { display: grid; gap: 14px; }
.drip {
  position: relative; border-radius: var(--radius); padding: 28px 24px 24px;
  background: var(--ink-2); border: 1px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.4s, transform 0.5s var(--ease);
}
.drip::before {
  content: ""; position: absolute; width: 260px; height: 260px; right: -110px; top: -110px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 70, 0.3), transparent 65%); transition: transform 0.8s var(--ease);
}
.drip:hover { border-color: rgba(255, 45, 70, 0.5); transform: translateY(-4px); }
.drip:hover::before { transform: scale(1.4); }
.drip__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.drip__label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); }
.drip h3 { font-size: 40px; }
.drip__price { font-family: var(--f-display); font-weight: 900; font-size: 34px; line-height: 1; white-space: nowrap; }
.drip__price small { display: block; font-family: var(--f-mono); font-size: 10px; font-weight: 400; letter-spacing: 0.12em; color: var(--muted); text-align: right; }
.drip p { color: #cfc8c1; margin: 0; }
.drip__for { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 6px; }
.chip { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--muted); }
.drip .btn { min-height: 48px; font-size: 16px; }

.addons { display: grid; gap: 0; border-top: 1px solid var(--line); }
.addon { display: flex; justify-content: space-between; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.addon b { font-weight: 600; }
.addon span { color: var(--muted); font-size: 15px; display: block; }
.addon em { font-style: normal; font-family: var(--f-display); font-weight: 800; font-size: 24px; white-space: nowrap; }

/* ---------- Packages (events) ---------- */
.pkgs { display: grid; gap: 14px; }
.pkg { border-radius: var(--radius); padding: 30px 26px; border: 1px solid var(--line); background: var(--ink-2); display: flex; flex-direction: column; gap: 18px; }
.pkg--hot { background: linear-gradient(160deg, rgba(255, 45, 70, 0.22), rgba(255, 176, 59, 0.06) 60%, var(--ink-2)); border-color: rgba(255, 45, 70, 0.5); }
.pkg h3 { font-size: 44px; }
.pkg .ticks li { padding: 11px 0; font-size: 15.5px; }
.pkg .btn { margin-top: auto; }

/* ---------- Stat strip (facts, not invented numbers) ---------- */
.facts { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.fact { padding: 26px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact b { display: block; font-family: var(--f-display); font-weight: 900; font-size: clamp(40px, 6vw, 72px); line-height: 0.9; margin-bottom: 8px; }
.fact span { display: block; line-height: 1.45; font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ---------- Big CTA (laminate) ---------- */
.pass {
  position: relative; border-radius: 28px; overflow: hidden; isolation: isolate;
  padding: clamp(40px, 7vw, 90px) clamp(24px, 5vw, 70px);
  border: 1px solid var(--line-2);
}
.pass__bg { position: absolute; inset: 0; z-index: -2; }
.pass__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.pass::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(7, 7, 9, 0.95) 20%, rgba(7, 7, 9, 0.3)); }
.pass__lanyard { position: absolute; top: 0; right: clamp(24px, 8vw, 110px); width: 34px; height: 60px; background: repeating-linear-gradient(45deg, var(--red) 0 8px, #8e0c20 8px 16px); }
.pass h2 { max-width: 12ch; }
.pass p { max-width: 44ch; color: #d9d2cb; margin: 22px 0 30px; }
.pass__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Bio ---------- */
.bio { display: grid; gap: 40px; }
.bio__photo {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden;
  border: 1px dashed var(--line-2); background: repeating-linear-gradient(135deg, var(--ink-2) 0 14px, var(--ink-3) 14px 28px);
  display: grid; place-items: center; text-align: center; padding: 30px;
}
.bio__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bio__photo .ph { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.bio__photo .ph b { display: block; font-family: var(--f-display); font-size: 44px; color: var(--paper); letter-spacing: 0; margin-bottom: 8px; }
.creds { display: flex; flex-wrap: wrap; gap: 8px; }
.quote { font-family: var(--f-display); font-weight: 800; font-size: clamp(30px, 4.6vw, 54px); line-height: 1.02; text-transform: uppercase; }
.quote::before { content: "“"; color: var(--red); }
.quote::after { content: "”"; color: var(--red); }

/* ---------- FAQ ---------- */
.faq__group + .faq__group { margin-top: 56px; }
.faq__group > .tag { margin-bottom: 14px; }
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 0; font-family: var(--f-display); font-weight: 800; font-size: clamp(22px, 3vw, 30px); text-transform: uppercase; line-height: 1.05;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary i { flex: none; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); position: relative; transition: transform 0.5s var(--ease), background 0.3s; }
.qa summary i::before, .qa summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; background: var(--paper); transform: translate(-50%, -50%); }
.qa summary i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.4s var(--ease); }
.qa[open] summary i { background: var(--red); border-color: var(--red); transform: rotate(180deg); }
.qa[open] summary i::after { transform: translate(-50%, -50%) rotate(0deg); }
.qa__a { padding: 0 0 26px; color: #cfc8c1; max-width: 70ch; }
.qa__a a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Booking wizard ---------- */
.book { display: grid; gap: 40px; }
.wiz { border-radius: 24px; border: 1px solid var(--line-2); background: var(--ink-2); padding: clamp(22px, 4vw, 44px); position: relative; overflow: hidden; }
.wiz__bar { height: 4px; border-radius: 4px; background: var(--ink-3); margin-bottom: 26px; overflow: hidden; }
.wiz__bar i { display: block; height: 100%; width: 20%; background: var(--heat); transition: width 0.6s var(--ease); }
.wiz__count { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 10px; text-transform: uppercase; }
.wiz__step { display: none; }
.wiz__step.is-active { display: block; animation: stepin 0.6s var(--ease); }
@keyframes stepin { from { opacity: 0; transform: translateX(24px); } }
.wiz h3 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 24px; }
.opts { display: grid; gap: 10px; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt label {
  display: flex; gap: 16px; align-items: center; cursor: pointer;
  padding: 18px; border-radius: 16px; border: 1px solid var(--line-2); background: var(--ink);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.opt label:active { transform: scale(0.985); }
.opt label .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--ink-3); font-size: 22px; }
.opt label b { display: block; font-family: var(--f-display); font-weight: 800; font-size: 22px; text-transform: uppercase; line-height: 1.05; }
.opt label span { display: block; font-size: 14.5px; line-height: 1.35; color: var(--muted); margin-top: 3px; }
.opt label em { margin-left: auto; font-style: normal; font-family: var(--f-display); font-weight: 800; font-size: 20px; white-space: nowrap; }
.opt input:checked + label { border-color: var(--red); background: linear-gradient(120deg, rgba(255, 45, 70, 0.18), rgba(255, 176, 59, 0.05)); }
.opt input:checked + label .ic { background: var(--heat); }
.opt input:focus-visible + label { outline: 2px solid var(--amber); outline-offset: 2px; }

.fields { display: grid; gap: 14px; }
.field label { display: block; font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 56px; padding: 14px 16px; border-radius: 14px;
  background: var(--ink); border: 1px solid var(--line-2); color: var(--paper);
  font: inherit; font-size: 16px; /* 16px stops iOS zoom */
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(255, 45, 70, 0.18); }
.field input[type="date"], .field input[type="time"] { color-scheme: dark; }
.field.is-bad input, .field.is-bad select { border-color: var(--red); }
.row2 { display: grid; gap: 14px; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: #cfc8c1; }
.check input { width: 22px; height: 22px; accent-color: var(--red); flex: none; margin-top: 2px; }
.wiz__nav { display: flex; gap: 10px; margin-top: 28px; }
.wiz__nav .btn { flex: 1; }
.wiz__nav .btn--ghost { flex: 0 0 auto; }
.wiz__err { color: var(--red); font-size: 14.5px; min-height: 22px; margin-top: 10px; }
.summary { display: grid; gap: 0; border-top: 1px solid var(--line); margin-bottom: 20px; }
.summary div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.summary dt { color: var(--muted); font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; padding-top: 3px; }
.summary dd { margin: 0; text-align: right; }
.done { text-align: center; padding: 30px 0; }
.done__icon { width: 90px; height: 90px; border-radius: 50%; background: var(--heat); display: grid; place-items: center; margin: 0 auto 26px; box-shadow: 0 0 60px rgba(255, 45, 70, 0.5); }
.done__icon svg { width: 44px; height: 44px; stroke: #120406; stroke-width: 3; fill: none; stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw 0.8s 0.2s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.side { display: grid; gap: 14px; align-content: start; }
.side__card { border-radius: var(--radius); border: 1px solid var(--line); padding: 24px; background: var(--ink-2); }
.side__card h3 { font-size: 28px; margin-bottom: 12px; }
.side__card p { color: var(--muted); font-size: 15.5px; }
.side__card--alert { border-color: rgba(255, 45, 70, 0.55); background: linear-gradient(160deg, rgba(255, 45, 70, 0.16), var(--ink-2) 70%); }

/* ---------- Notice / disclaimer ---------- */
.notice {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; border-radius: 14px; border: 1px solid rgba(255, 45, 70, 0.45); background: rgba(255, 45, 70, 0.08);
  font-size: 15px; color: #e8e0d9;
}
.notice b { color: var(--red); font-family: var(--f-display); font-size: 19px; letter-spacing: 0.04em; text-transform: uppercase; }
.fine { font-size: 13px; color: var(--dim); line-height: 1.55; }

/* ---------- Footer ---------- */
.ftr { border-top: 1px solid var(--line); padding: 80px 0 40px; background: var(--ink-2); position: relative; overflow: hidden; }
.ftr__big {
  font-family: var(--f-display); font-weight: 900; text-transform: uppercase; line-height: 0.8;
  font-size: clamp(64px, 19vw, 300px); letter-spacing: -0.02em;
  background: linear-gradient(180deg, rgba(245, 240, 234, 0.14), rgba(245, 240, 234, 0)); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-top: 60px; white-space: nowrap;
}
.ftr__grid { display: grid; gap: 36px; }
.ftr h4 { font-family: var(--f-mono); font-weight: 400; font-size: 12px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; margin: 0 0 14px; }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.ftr a:hover { color: var(--red); }
.ftr__legal { margin-top: 40px; display: grid; gap: 14px; }

/* ---------- Reveal primitives (JS adds .js to html) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(40px); }
.js [data-clip] { clip-path: inset(100% 0 0 0); }

/* ---------- Tablet / desktop ---------- */
@media (min-width: 720px) {
  .aud { grid-template-columns: repeat(3, 1fr); }
  .aud__card { min-height: 560px; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .drips { grid-template-columns: repeat(2, 1fr); }
  .pkgs { grid-template-columns: repeat(3, 1fr); }
  .facts { grid-template-columns: repeat(4, 1fr); }
  .row2 { grid-template-columns: 1fr 1fr; }
  .opts--2 { grid-template-columns: 1fr 1fr; }
  .ftr__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
@media (min-width: 1000px) {
  .actbar { display: none; }
  .split { grid-template-columns: 1fr 1fr; gap: 80px; }
  .split--rev .split__media { order: 2; }
  .drips { grid-template-columns: repeat(3, 1fr); }
  .bio { grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
  .book { grid-template-columns: 7fr 4fr; gap: 40px; align-items: start; }
  .hero__row { grid-template-columns: 1fr auto; align-items: end; }
  .hero h1 { font-size: clamp(96px, 11vw, 176px); }
  .hero--page h1 { font-size: clamp(90px, 10vw, 160px); }
  .scrollcue { display: flex; align-items: center; gap: 12px; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; }
  .scrollcue i { width: 1px; height: 54px; background: linear-gradient(var(--red), transparent); animation: cue 1.8s ease-in-out infinite; transform-origin: top; }
  @keyframes cue { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }
  .laminate { width: 170px; height: 170px; top: 130px; }
  .laminate__core { width: 80px; height: 80px; font-size: 28px; }
}
@media (max-width: 999px) {
  :root { --bar-h: 92px; }
  .mnav { padding-bottom: calc(40px + var(--bar-h)); }
}
@media (max-width: 719px) {
  .laminate { width: 96px; height: 96px; top: 84px; }
  .hero .tag { max-width: 60%; }
  .laminate svg text { font-size: 12px; }
  .laminate__core { width: 48px; height: 48px; font-size: 17px; }
  /* Drip cards become a swipeable rail on phones */
  .drips--rail { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; margin: 0 calc(var(--gutter) * -1); padding: 0 var(--gutter) 10px; scrollbar-width: none; }
  .drips--rail::-webkit-scrollbar { display: none; }
  .drips--rail .drip { flex: 0 0 84%; scroll-snap-align: center; }
  .aud__card { min-height: 420px; }
}

/* Full nav only when it truly fits on one line; hamburger below that */
@media (min-width: 1220px) {
  .nav { display: flex; gap: clamp(20px, 2.1vw, 34px); }
  .burger { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js [data-clip] { clip-path: none; }
  body::after { display: none; }
}

/* Booking page: the action bar is just Call / Text */
[data-page="book"] .actbar { grid-template-columns: 1fr 1fr; }
[data-page="book"] .actbar .primary { display: none; }
@media (min-width: 1000px) { .drips--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 720px) { .steps--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps--4 { grid-template-columns: repeat(4, 1fr); } }
