/* ============================================================
   JZ CREATES — 2026 homepage
   Dark luxury · crimson accent · cinematic scroll
   Type: Fraunces (display serif) + Inter (body)
   ============================================================ */

:root {
  --bg: #0c0c0e;         /* warm charcoal base (not pure black) */
  --bg-2: #16161a;
  --ink: #f6f3ef;
  --muted: #c0bbb2;
  --line: rgba(246, 243, 239, 0.09);
  --crimson: #ff2438;
  --gold: #e8c47c;
  --grad: linear-gradient(92deg, #ff0000 0%, #d600ed 100%);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-logo: "Crimson Pro", Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  /* shared layout container — 1600px max, 5% side padding (offer-page convention) */
  --maxw: 1600px;
  --pad: 5%;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* MUST be auto — CSS smooth-scroll fights ScrollTrigger's scroll management
   and is a known cause of pin/scrub breakage. Anchor links get smooth scroll
   via JS instead. */
html { scroll-behavior: auto !important; }

body {
  background: var(--bg);          /* solid warm charcoal — no viewport-fixed banding */
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* lighter warmth at the true top of the page only (hero/intro), not per-viewport */
body::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1500px;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(ellipse 130% 100% at 50% 0%, var(--bg-2), transparent 72%);
}

::selection { background: var(--crimson); color: #fff; }

img { display: block; max-width: 100%; }
video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;   /* thin strokes vanish on mobile — keep headlines at 500 */
  font-variation-settings: "opsz" 90;
  letter-spacing: 0.005em;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}

/* ---------- utilities ---------- */

.grad {
  font-style: italic;
  font-weight: 500;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* extend the background box so italic overhangs and descenders (g, y, p) aren't cut */
  padding-right: 0.08em;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 1rem;            /* body-text size — identical on desktop and mobile */
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
/* the eyebrow is a <p>; section sub-paragraph rules would otherwise out-specify it */
.section-head p.eyebrow,
.services__head p.eyebrow,
.gpt__copy p.eyebrow { margin-top: 0; font-size: 1rem; }

.section-head {
  max-width: var(--maxw);
  margin: 0 auto 4rem;
  padding: 0 var(--pad);
}
.section-head h2 {
  font-size: clamp(2.4rem, 5.4vw, 4.8rem);
  line-height: 1.06;
  max-width: 18ch;
}
.section-head__sub {
  margin-top: 1.2rem;
  color: var(--muted);
  max-width: 48ch;
  font-size: clamp(1.15rem, 1.35vw, 1.35rem);
  line-height: 1.55;
}

/* split-letter animation targets */
.split .ch {
  display: inline-block;
  will-change: transform, filter, opacity;
}
.split .wd { display: inline-block; white-space: nowrap; }

/* generic reveal */
.reveal { opacity: 0; transform: translateY(28px); }
html.no-js .reveal, html.reduced .reveal { opacity: 1; transform: none; }

/* film grain */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 200;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ---------- loading screen ---------- */

.loader {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.6rem;
  padding: 0 8vw;
  transition: opacity 0.7s var(--ease-out), visibility 0.7s;
}
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 380;
  font-size: clamp(1rem, 2.9vw, 2.4rem);
  text-align: center;
  white-space: nowrap;        /* keep the quote on one line */
  max-width: 96vw;
  line-height: 1.3;
  opacity: 0;
  animation: loaderQuote 1.1s var(--ease-out) 0.15s forwards;
}
@keyframes loaderQuote {
  from { opacity: 0; transform: translateY(18px); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
.loader__fun {
  background-size: 220% 100%;
  animation: funSweep 1.6s linear infinite;
}
.loader__attr {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(246, 243, 239, 0.6);
  margin-top: -1rem;
  opacity: 0;
  animation: loaderQuote 1.1s var(--ease-out) 0.55s forwards;
}
@keyframes funSweep {
  from { background-position: 120% 0; }
  to { background-position: -120% 0; }
}
.loader__bar {
  width: min(300px, 55vw);
  height: 1px;
  background: rgba(246, 243, 239, 0.12);
  overflow: hidden;
}
.loader__bar i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease-out;
}

/* background glow that follows the cursor (pink) — lightweight, no canvas */
#bgglow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(560px circle at var(--gx, 50%) var(--gy, 20%),
              rgba(255, 0, 0, 0.15), rgba(255, 40, 60, 0.05) 34%, transparent 62%);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s;
  will-change: transform;
  border: none;
  cursor: pointer;
}
.btn--primary {
  background: var(--grad);
  color: #fff !important; /* force over theme link-hover color when ported to WP */
  box-shadow: 0 0 0 rgba(255, 36, 56, 0);
}
.btn--primary:hover,
.btn--primary:focus {
  transform: translateY(-2px);
  color: #fff !important;
  box-shadow: 0 12px 40px rgba(255, 36, 56, 0.35);
}
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink) !important;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover,
.btn--ghost:focus { border-color: rgba(246, 243, 239, 0.3); color: var(--ink) !important; transform: translateY(-2px); }
.btn--big { padding: 1.15rem 2.6rem; font-size: 1rem; }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;            /* always above content + film grain */
  padding: 1.1rem 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, border-color 0.4s;
  /* solid bar visible from first paint (not only after scroll) */
  background: rgba(12, 12, 14, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.is-scrolled {
  background: rgba(12, 12, 14, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: var(--line);
  padding: 0.8rem 0;
}
.nav__logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}
/* logo lockup — Crimson Pro; "JZ" white upright, "CREATES" italic gradient; same size */
.nav__logo-jz {
  font-family: var(--font-logo);
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;      /* ~2pt larger than CREATES */
  line-height: 1;
  color: var(--ink);
}
.nav__logo-creates {
  font-family: var(--font-logo);
  font-style: italic;
  font-weight: 600;
  font-size: 1.35rem;                    /* same size as JZ */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 0.1em 0.06em 0;             /* room for italic overhang */
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.nav__links { display: flex; gap: 2.4rem; }
.nav__links a {
  font-size: 0.98rem;
  font-weight: 450;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__cta { padding: 0.6rem 1.35rem; font-size: 0.84rem; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.nav__burger span { width: 24px; height: 1.5px; background: var(--ink); transition: transform 0.35s, opacity 0.35s; }
.nav__burger.is-open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.menu {
  position: fixed;
  inset: 0;
  z-index: 250;   /* above grain; nav (300) stays on top so the close button works */
  background: rgba(6, 6, 7, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.menu.is-open { opacity: 1; pointer-events: auto; }
.menu__links { display: flex; flex-direction: column; gap: 1.8rem; text-align: center; }
.menu__links a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
}
.menu__cta {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  color: var(--crimson);
  margin-top: 1rem;
}

/* ---------- intro (scroll cinema) ---------- */

.intro { height: 420vh; position: relative; background: var(--bg); }
.intro__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.intro__layer {
  position: absolute;
  inset: 0;
}
.intro__layer img,
.intro__layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.intro__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 90% at 50% 45%, transparent 45%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 22%, transparent 72%, rgba(0, 0, 0, 0.6));
  pointer-events: none;
}
.intro__flash {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
}
.intro__fade {
  position: absolute;
  inset: 0;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
}

.intro__line2, .intro__brand {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 7vw;
  pointer-events: none;
}
.intro__line2 p {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.8vw, 3.2rem);
  font-weight: 400;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.7);
}
.intro__brand-mark {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(2.8rem, 8vw, 7.5rem);
  letter-spacing: 0.1em;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.8);
}
.intro__brand-sub {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: rgba(246, 243, 239, 0.7);
  opacity: 0;
}

.intro__hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(246, 243, 239, 0.6);
}
.intro__hint i {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(246, 243, 239, 0.7), transparent);
  animation: hint 2s var(--ease-out) infinite;
}
@keyframes hint {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.intro__skip {
  position: absolute;
  bottom: 2.2rem;
  right: 3vw;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 243, 239, 0.5);
  border-bottom: 1px solid rgba(246, 243, 239, 0.25);
  padding-bottom: 0.2rem;
  transition: color 0.3s;
}
.intro__skip:hover { color: var(--ink); }

/* ---------- mid scroll video (interlude) ---------- */

.scrollvid { height: 300vh; position: relative; background: var(--bg); }
.scrollvid__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.scrollvid__stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.scrollvid__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 90% at 50% 45%, transparent 45%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 22%, transparent 74%, rgba(0, 0, 0, 0.55));
}

/* headlines over the scroll videos (fade out on scroll via JS) */
.intro__headline, .scrollvid__headline {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 7vw;
  pointer-events: none;
  z-index: 3;
  /* shadow on the wrapper so the text's own `filter` is free to animate blur */
  filter: drop-shadow(0 3px 16px rgba(0, 0, 0, 0.7));
}
/* mid header sits below the panther's head (a little higher than centered-low) */
.scrollvid__headline { align-items: flex-end; padding-bottom: 26vh; }
.intro__headline-text, .scrollvid__headline-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 8vw, 7rem);
  line-height: 1.03;
  color: var(--ink);
  max-width: 20ch;
}
/* hero headline a touch larger */
.intro__headline-text { font-size: clamp(3rem, 9.6vw, 9rem); }
/* mid headline is a longer line — bigger, but still ONE line on desktop/tablet */
.scrollvid__headline-text { max-width: none; white-space: nowrap; font-size: clamp(2.2rem, 5.5vw, 6.5rem); }
.intro__headline-text em, .scrollvid__headline-text em { font-style: italic; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 16vh var(--pad) 0;
}
.hero__grid {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;   /* give the showreel much more room */
  gap: clamp(1.5rem, 3.5vw, 3.5rem);
  align-items: center;
}
.hero__content { width: 100%; }
.hero__title {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.04;
  max-width: 15ch;
}
/* hero showreel (click-to-load YouTube) */
.hero__media { width: 100%; }
.hero__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  cursor: pointer;
}
.hero__video img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.hero__video:hover img { transform: scale(1.04); }
.hero__video iframe { width: 100%; height: 100%; border: none; display: block; }
.hero__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid rgba(246, 243, 239, 0.4);
  background: rgba(6, 6, 7, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), background 0.4s, border-color 0.4s;
}
.hero__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-left: 18px solid var(--ink);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}
.hero__video:hover .hero__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 36, 56, 0.55);
  border-color: transparent;
}
.hero__sub {
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  max-width: 46ch;
}
.hero__ctas { display: flex; gap: 1rem; margin-top: 2.6rem; flex-wrap: wrap; }

.marquee {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 243, 239, 0.55);
  white-space: nowrap;
}
.marquee__track i { color: var(--crimson); font-style: normal; font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- manifesto ---------- */

.manifesto {
  position: relative;
  min-height: 100vh;          /* full screen height so the video fills it */
  display: flex;
  align-items: center;
  padding: 12vh 0;
  overflow: hidden;
}
/* faded YouTube background video, obscured behind the text */
.manifesto__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.3;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 50%, black 22%, transparent 82%);
  mask-image: radial-gradient(ellipse 95% 85% at 50% 50%, black 22%, transparent 82%);
}
.manifesto__bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;            /* 16:9 from width */
  min-width: 177.78vh;        /* 16:9 from height */
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
}
/* desktop shows the landscape bg; mobile swaps in the vertical short (9:16 cover) */
.manifesto__bg--mobile { display: none; }
.manifesto__bg--mobile iframe {
  width: 56.25vh;             /* 9:16 from height */
  height: 100vh;
  min-width: 100vw;          /* 9:16 from width */
  min-height: 177.78vw;
}
.manifesto__inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.manifesto__text {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.28;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.7);   /* readable over the video */
}

/* ---------- services ---------- */

.services { padding: 10vh 0 12vh; }
.services__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  align-items: start;
}
.services__head { margin-bottom: 3rem; }
.services__head h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
  line-height: 1.08;
  max-width: 16ch;
}
.services__note {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--muted);
}
.services__cards {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.services__media { align-self: stretch; }
.services__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;      /* center the phone between the nav and the bottom */
  justify-content: center;
  padding-top: 64px;        /* clear the fixed nav bar */
}
/* double class beats the base .phone width rule that comes later in the sheet */
.phone.phone--services {
  /* width drives a 9:16 media (height ≈ width*1.78), so keep width modest
     to avoid cutting off the top/bottom; scales with viewport height */
  width: min(40vh, 90%);
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.6rem 2.4rem 2.2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(140, 50, 230, 0.18), transparent 45%);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: rgba(214, 0, 237, 0.4); }
.card:hover::before { opacity: 1; }
.card__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.1rem;
  color: var(--crimson);
  margin-bottom: 2.2rem;
}
.card h3 { font-size: 1.7rem; font-weight: 500; margin-bottom: 0.9rem; }
.card p { color: var(--muted); font-size: 1.05rem; line-height: 1.55; margin-bottom: 1.6rem; }
.card ul { margin-bottom: 2rem; }
.card ul li {
  font-size: 0.98rem;
  color: rgba(246, 243, 239, 0.8);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.card ul li:last-child { border-bottom: none; }
.card__link {
  margin-top: auto;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  transition: color 0.3s;
}
.card:hover .card__link { color: var(--crimson); }

/* full studio mini-cards */
.stack {
  max-width: var(--maxw);
  margin: 3.8rem auto 0;
  padding: 0 var(--pad);
}
.stack__label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
/* auto-scrolling + click/drag carousel of studio disciplines */
.stack__marquee {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.stack__marquee::-webkit-scrollbar { display: none; }
.stack__marquee.is-drag { cursor: grabbing; }
.stack__track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
}
.ministack {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 2.4rem 2.2rem 2rem;
  min-height: 260px;
  width: 360px;
  flex-shrink: 0;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  transition: border-color 0.4s;
}
/* purple glow that follows the cursor (same as the service cards) — no lift */
.ministack::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(140, 50, 230, 0.18), transparent 45%);
  opacity: 0;
  transition: opacity 0.45s;
  pointer-events: none;
}
.ministack:hover { border-color: rgba(214, 0, 237, 0.4); }
.ministack:hover::before { opacity: 1; }
.ministack > * { position: relative; }
.ministack h3 { font-size: 1.5rem; font-weight: 500; }
.ministack p { font-size: 1.02rem; color: var(--muted); line-height: 1.55; }
.ministack span {
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(246, 243, 239, 0.7);
  transition: color 0.3s;
}
.ministack:hover span { color: var(--crimson); }

/* ---------- work (horizontal gallery) ---------- */

.work { position: relative; }
/* sticky panel holds the gallery in view while JS translates the track */
.work__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}
.section-head--work { margin-bottom: 0; }
.work__track {
  display: flex;
  gap: 2.2vw;
  padding: 0 var(--pad);
  width: max-content;
  will-change: transform;
}
.work__item {
  position: relative;
  width: 58vw;
  max-width: 900px;
  flex-shrink: 0;
}
.work__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}
.work__item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1);          /* full 16:9 on load — not zoomed */
  transition: transform 1.2s var(--ease-out);
  display: block;
}
.work__item:hover img { transform: scale(1.08); }   /* zoom in on rollover */
.work__item--video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}
.work__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(246, 243, 239, 0.35);
  background: rgba(6, 6, 7, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), background 0.4s, border-color 0.4s;
}
.work__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
  border-left: 20px solid var(--ink);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.work__item:hover .work__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 36, 56, 0.55);
  border-color: transparent;
}
.work__view {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 243, 239, 0.85);
  border-bottom: 1px solid rgba(246, 243, 239, 0.3);
  padding-bottom: 0.15rem;
  transition: color 0.3s, border-color 0.3s;
}
.work__view:hover { color: var(--gold); border-color: var(--gold); }
.work__item figcaption {
  padding: 1.15rem 0.3rem 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.work__item figcaption span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
}
.work__item figcaption em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(246, 243, 239, 0.65);
}

/* ---------- reviews ---------- */

.reviews { padding: 8vh 0 12vh; }
.reviews__layout {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
/* testimonials: constant upward auto-scroll (paused on hover) */
.reviews__marquee {
  position: relative;
  height: 560px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}
.reviews__track {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  animation: reviewsScroll 26s linear infinite;
  will-change: transform;
}
.reviews__marquee:hover .reviews__track { animation-play-state: paused; }
@keyframes reviewsScroll { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.reviews__media { display: flex; justify-content: center; align-items: center; }
.reviews__media img {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.55));
  will-change: transform;
}
.review {
  position: relative;
  padding: 2.4rem 2.4rem 2.2rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.review__stars {
  color: #ffd98a;
  letter-spacing: 0.32em;
  font-size: 1.35rem;
  margin-bottom: 1.3rem;
  text-shadow: 0 0 18px rgba(255, 210, 130, 0.55), 0 0 40px rgba(255, 190, 90, 0.25);
}
.review p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 380;
  line-height: 1.4;
  margin-bottom: 1.6rem;
}
.review footer { display: flex; flex-direction: column; gap: 0.15rem; }
.review footer strong { font-size: 1.02rem; font-weight: 600; }
.review footer span { font-size: 0.92rem; color: var(--muted); }

.reviews__badges {
  max-width: var(--maxw);
  margin: 2.8rem auto 0;
  padding: 0 var(--pad);
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}
.reviews__badges a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  border-bottom: 1px solid rgba(246, 243, 239, 0.25);
  padding-bottom: 0.1rem;
  transition: color 0.3s, border-color 0.3s;
}
.reviews__badges a:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- verticals ---------- */

.verticals { padding: 8vh 0 14vh; overflow: hidden; }
.verticals__scroll {
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 0 1.5rem;
}
.verticals__scroll::-webkit-scrollbar { display: none; }
/* desktop: 5 across, filling the 1600 container with 5% padding */
.verticals__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.8rem;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.phone {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;             /* the bezel is ALWAYS a true 9:16 frame,
                                       so swapping img→iframe never collapses it */
  border-radius: 34px;
  border: 1px solid rgba(246, 243, 239, 0.14);
  background: #0a0a0c;
  padding: 10px;
  overflow: hidden;                 /* clip the oversized autoplay iframe */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.4s var(--ease-out), border-color 0.4s;
}
/* glow that traces the phone shape on hover (no position shift — the shift
   caused a jitter loop when re-hovering a playing reel) */
.phone:hover {
  border-color: rgba(214, 0, 237, 0.55);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 42px rgba(214, 0, 237, 0.45);
}
.phone video,
.phone img {
  /* fill the bezel interior (inside the 10px padding), center-cropped 9:16 */
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  border: none;
  display: block;
}
/* played YouTube reel: YouTube renders a Short as a true 9:16 player when the
   iframe itself is 9:16, so just fill the bezel exactly (no oversize/crop).
   This keeps the vertical player, its title/logo and the controls intact. */
.phone iframe {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  max-width: none;
  border: 0;
  border-radius: 24px;
  transform: scale(1.04);     /* slight overscan crops any residual letterbox */
}
/* custom (non-YouTube) reel play button */
.phone__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(246, 243, 239, 0.35);
  background: rgba(6, 6, 7, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  z-index: 3;
  transition: transform 0.4s var(--ease-out), background 0.4s, border-color 0.4s;
}
.phone__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-left: 14px solid var(--ink);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.phone:hover .phone__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 36, 56, 0.55);
  border-color: transparent;
}

/* ---------- system ---------- */

.system { padding: 8vh 0 14vh; }
.system__steps {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.6rem;
}
.system__step { position: relative; padding-top: 2rem; border-top: 1px solid var(--line); }
.system__num {
  position: absolute;
  top: -0.9rem;
  left: 0;
  background: transparent;          /* no black box — let the glow show through */
  padding-right: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--crimson);
  text-shadow: 0 0 18px rgba(255, 36, 56, 0.65), 0 0 42px rgba(214, 0, 237, 0.35);
}
.system__step h3 { font-size: 1.35rem; font-weight: 500; margin-bottom: 0.7rem; }
.system__step p { color: var(--muted); font-size: 1.05rem; line-height: 1.55; }

/* ---------- journal ---------- */

.journal { padding: 8vh 0 12vh; }
.journal__layout {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.journal__list {
  border-top: 1px solid var(--line);
}
.journal__media { display: flex; justify-content: center; align-items: center; }
.journal__media img {
  width: 100%;
  max-width: 440px;               /* match the reviews phone image */
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.55));
  will-change: transform;
}
.journal__row {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 2.4rem;
  padding: 1.8rem 0.5rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s, padding 0.35s;
}
.journal__row:hover { background: rgba(255, 255, 255, 0.02); }
.journal__thumb {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.journal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.9s var(--ease-out);
}
.journal__row:hover .journal__thumb img { transform: scale(1.12); }
.journal__row time {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.journal__row h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.3;
}
.journal__arrow { font-size: 1.3rem; color: var(--crimson); transition: transform 0.35s var(--ease-out); }
.journal__row:hover .journal__arrow { transform: translateX(8px); }
.journal__more {
  margin: 2.4rem 0 0;
}

/* ---------- custom GPT ---------- */

.gpt { padding: 6vh var(--pad) 10vh; }
.gpt__card {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.4rem, 5vw, 4.5rem);
  border-radius: 26px;
  border: 1px solid rgba(255, 36, 56, 0.25);
  background:
    radial-gradient(ellipse 70% 90% at 85% 10%, rgba(210, 75, 255, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(255, 36, 56, 0.12), transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
.gpt__copy h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.12; max-width: 18ch; }
.gpt__sub { margin-top: 1.1rem; color: var(--muted); font-size: 1.1rem; line-height: 1.55; max-width: 44ch; }
.gpt__form {
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.gpt__form iframe { min-height: 320px; }

/* ---------- cta + contact ---------- */

.cta {
  position: relative;
  padding: 18vh var(--pad) 14vh;
  overflow: hidden;
  /* transparent — shares the body's continuous charcoal with the closing below */
}
.cta__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.cta__left { text-align: left; }
.cta__title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  max-width: 16ch;
}
.cta__actions {
  margin-top: 2.4rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.contact {
  position: relative;
  z-index: 2;
  margin: 2.4rem 0 0;
  text-align: left;
  overflow: hidden;
  background: transparent;   /* no white card — GHL fields sit on the dark section */
}
/* GoHighLevel's loader.js auto-resizes this iframe to the form's real height a
   moment after load. Keep this floor BELOW that height so it never forces extra
   blank space (the old 760px floor was taller than the form → the bottom gap). */
.contact iframe { min-height: 560px; width: 100%; display: block; overflow: hidden; }

/* floating transparent phone image — fills the column */
.cta__media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta__media img {
  width: 100%;
  max-width: 440px;          /* match the reviews phone image */
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.55));
  will-change: transform;
}

.cta__direct { margin-top: 0.6rem; font-size: 1.05rem; color: var(--muted); }
.cta__direct a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.1rem;
  transition: color 0.3s;
}
.cta__direct a:hover { color: var(--gold); }

/* ---------- closing (plain text, no pin/scrub) ---------- */

.finale {
  position: relative;
  padding: 22vh var(--pad);
  overflow: hidden;
  /* transparent — continuous with the CTA above (both are the body charcoal) */
}
.finale__dim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 90% at 50% 55%, rgba(214, 0, 237, 0.1), rgba(255, 0, 0, 0.05) 42%, transparent 78%);
  pointer-events: none;
}
.finale__inner {
  position: relative;
  text-align: center;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}
.finale__eyebrow { text-align: center; }
.finale__title {
  font-size: clamp(2rem, 6.5vw, 6rem);
  line-height: 1.04;
  max-width: none;
  white-space: nowrap;          /* keep "Let's Create Your Vision." on one line */
}
/* closing vertical reels sit inside the finale, under the CTA button */
.finale__reels { width: 100%; margin-top: 3rem; }
.finale__reels .verticals__row { margin-top: 0; }

/* ---------- footer ---------- */

.footer { border-top: 1px solid var(--line); padding: 3.4rem var(--pad) 2.4rem; }
.footer__top, .footer__bottom { max-width: var(--maxw); margin-inline: auto; }
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
}
.footer__nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer__social { display: flex; gap: 1.3rem; flex-wrap: wrap; align-items: center; }
.footer__nav a { font-size: 0.98rem; color: var(--muted); transition: color 0.3s; }
.footer__nav a:hover { color: var(--ink); }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s;
}
.footer__social a:hover { color: var(--ink); border-color: rgba(214, 0, 237, 0.5); transform: translateY(-3px); }
.footer__social svg { display: block; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(192, 187, 178, 0.7);
}
.footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }
.footer__made { font-family: var(--font-display); font-style: italic; }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .services__layout { grid-template-columns: 1fr; gap: 2.2rem; }
  .services__head { position: static; }
  .services__media { display: none; } /* scrub video is a desktop moment */
  .system__steps { grid-template-columns: 1fr 1fr; gap: 3rem 2rem; }
  .journal__row { grid-template-columns: 1fr auto; }
  .journal__row time { grid-column: 1 / -1; }
  .gpt__card { grid-template-columns: 1fr; gap: 2rem; }
  /* hero: stack copy over the showreel */
  .hero__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  /* cta / reviews / journal: single column, device images hidden */
  .cta__grid,
  .reviews__layout,
  .journal__layout { grid-template-columns: 1fr; gap: 2.4rem; }
  .cta__media,
  .reviews__media,
  .journal__media { display: none; }
}

@media (max-width: 767px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  /* loader quote: bigger + allowed to wrap so it's readable on a phone */
  .loader__quote { white-space: normal; font-size: 1.6rem; line-height: 1.35; }
  .loader__attr { font-size: 0.78rem; margin-top: 0.2rem; }
  /* mobile: videos autoplay on loop, so NO scroll effect — each is a single
     screen you scroll straight past (no sticky scroll-through) */
  .intro { height: 100vh; height: 100svh; }
  .scrollvid { height: 100vh; height: 100svh; }
  .intro__stage, .scrollvid__stage { position: relative; }
  /* manifesto: swap the landscape bg for the vertical short behind the quote */
  .manifesto__bg--desktop { display: none; }
  .manifesto__bg--mobile { display: block; }
  .intro__skip { right: 6vw; }
  .hero { padding-top: 18vh; }
  .hero__ctas .btn { width: 100%; }
  .hero__title { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .btn--big { padding: 0.9rem 1.5rem; font-size: 0.98rem; }
  /* mobile: no sticky/scrub — native horizontal swipe */
  .work__sticky { position: static; height: auto; overflow: visible; display: block; padding: 6vh 0; }
  .section-head--work { margin-bottom: 2.5rem; }
  .work__track {
    width: auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
  }
  .work__item { width: 84vw; scroll-snap-align: center; }
  .work__item figcaption { padding-top: 0.8rem; }
  .work__item figcaption span { font-size: 1.15rem; }
  .work__view { font-size: 0.66rem; }
  /* mobile contact form is single-column — sized to the real content so it
     neither cuts off nor leaves a big gap before the email line */
  .contact iframe { min-height: 810px; }
  /* headlines: let them wrap on narrow screens (nowrap would overflow) */
  .scrollvid__headline-text { white-space: normal; font-size: clamp(1.9rem, 8vw, 3rem); }
  .finale__title { white-space: normal; font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .system__steps { grid-template-columns: 1fr; }
  .cta { padding: 16vh 7vw; }
  /* reviews: on phones scroll left-right (not vertical — that would trap the
     page scroll), draggable */
  .reviews__marquee {
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
    cursor: grab;
  }
  .reviews__marquee::-webkit-scrollbar { display: none; }
  .reviews__marquee.is-drag { cursor: grabbing; }
  .reviews__track { flex-direction: row; animation: none; gap: 1rem; }
  .review { width: 78vw; flex-shrink: 0; }
  /* verticals: back to horizontal swipe on phones */
  .verticals__scroll { overflow-x: auto; scroll-snap-type: x mandatory; }
  .verticals__row { display: flex; width: max-content; gap: 1.2rem; }
  .phone { width: 62vw; flex-shrink: 0; scroll-snap-align: center; }
  .journal__row { grid-template-columns: 1fr auto; }
  .journal__thumb { grid-column: 1 / -1; }
  .ministack { min-height: 0; }
  #bgglow { display: none; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .marquee__track { animation: none; }
  #bgglow { display: none; }
  .intro { height: auto; }
  .intro__stage { position: relative; height: 100vh; }
  .intro__brand-sub { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
}
