/* ============================================================
   J1 MEDIA — OPERATOR FILMS
   Locked palette, locked type. Editorial restraint.
   ============================================================ */

:root {
  /* Palette — locked */
  --navy:           #0A1428;
  --navy-deep:      #060D1C;
  --offwhite:       #F4F1EB;
  --gold:           #B89968;
  --gold-hover:     #C9AB7B;
  --silver:         #D4D4D0;
  --silver-bright:  #E8E8E3;
  --silver-deep:    #B0B0AB;
  --muted:          #7A8190;          /* on navy */
  --muted-light:    #6E6962;          /* legacy */
  --hairline-navy:  rgba(184,153,104,0.22);
  --hairline-cream: rgba(110,105,98,0.22);

  /* Type */
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Spacing rhythm */
  --section-pad-y: clamp(96px, 12vw, 168px);
  --gutter:        clamp(24px, 5vw, 64px);
  --measure:       640px;
  --measure-wide:  920px;

  /* Motion — one easing, three durations. Consistency = premium. */
  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --dur-micro:   240ms;
  --dur-base:    480ms;
  --dur-set:     900ms;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--offwhite);
  background: var(--navy);
  font-feature-settings: "ss01", "tnum", "lnum";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Type scale ───────────────────────────────────────────── */

.h-display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7.2vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  margin: 0;
}

.h-section {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.008em;
  margin: 0;
}

.h-block {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.004em;
  margin: 0;
}

p.lede {
  font-size: clamp(19px, 1.4vw, 22px);
  line-height: 1.6;
  color: var(--offwhite);
  margin: 0;
}

p.body {
  font-size: 17px;
  line-height: 1.72;
  margin: 0 0 1.1em;
}

.muted        { color: var(--muted); }
.muted-light  { color: var(--muted-light); }

.smallcaps {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

.gold        { color: var(--gold); }
.serif       { font-family: var(--serif); }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* ── Layout ───────────────────────────────────────────────── */

.shell  { max-width: 1320px; margin: 0 auto; padding: 0 var(--gutter); }
.column { max-width: var(--measure);      margin: 0 auto; }
.column-wide { max-width: var(--measure-wide); margin: 0 auto; }

section { padding: var(--section-pad-y) 0; }
section.tight { padding: clamp(72px,9vw,120px) 0; }

.bg-navy      { background: var(--navy);      color: var(--offwhite); }
.bg-navy-deep { background: var(--navy-deep); color: var(--offwhite); }
.bg-cream     { background: var(--offwhite);  color: #1f1d18; }
.bg-cream p.body, .bg-cream .lede { color: #2a2823; }

/* Hairline */
.hairline-gold      { height: 1px; background: var(--gold); opacity: 0.55; border: 0; }
.hairline-gold-soft { height: 1px; background: var(--gold); opacity: 0.28; border: 0; }

/* ── Header ───────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background var(--dur-base) var(--ease),
    border-color var(--dur-base) var(--ease),
    padding var(--dur-base) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(10,20,40,0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--hairline-navy);
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 40px);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--offwhite);
}
.nav-right a {
  position: relative;
  display: inline-block;
  padding: 4px 0;
  transition: color var(--dur-micro) var(--ease);
}
.nav-right a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transition: right var(--dur-base) var(--ease);
}
.nav-right a:hover { color: var(--gold); }
.nav-right a:hover::after { right: 0; }
.nav-right .phone {
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}
.nav-right .phone:hover { color: var(--gold-hover); }
.nav-right .phone::after { background: var(--gold-hover); }

/* Wordmark hover — subtle silver brighten */
.wordmark { transition: opacity var(--dur-micro) var(--ease); }
.wordmark:hover { opacity: 0.86; }

/* Logo wordmark — silver J1 mark image + Media sub */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.wordmark .mark-img {
  height: 28px;
  width: auto;
  display: block;
  /* subtle drop shadow so it reads on navy */
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}
.wordmark .sub {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.75;
  font-weight: 500;
  padding-bottom: 2px;
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 18px 32px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--offwhite);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    color var(--dur-base) var(--ease),
    border-color var(--dur-base) var(--ease);
}
/* Gold fill wipes in from left on hover — cinematic, no scale */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-base) var(--ease);
  z-index: -1;
}
.btn:hover {
  color: var(--navy);
  border-color: var(--gold);
}
.btn:hover::before { transform: scaleX(1); }
.btn.on-cream { color: #1f1d18; }
.btn.on-cream:hover { color: var(--navy); }

.textlink {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  position: relative;
  display: inline-block;
  transition: color var(--dur-micro) var(--ease);
}
.textlink::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: opacity var(--dur-micro) var(--ease);
}
.textlink::before {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold-hover);
  transition: right var(--dur-base) var(--ease);
  z-index: 1;
}
.textlink:hover { color: var(--gold-hover); }
.textlink:hover::before { right: 0; }
.textlink:hover::after { opacity: 0; }

.textlink-inline {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color var(--dur-micro) var(--ease), border-color var(--dur-micro) var(--ease);
}
.textlink-inline:hover { color: var(--gold-hover); border-color: var(--gold-hover); }

/* ── Cinematic placeholder treatments ────────────────────── */
/* CSS-only stand-ins for unshot footage. Look intentional, not stock. */

.cine-still {
  position: relative;
  overflow: hidden;
  background-color: #0d1a30;
  background-image:
    radial-gradient(ellipse 60% 50% at 78% 38%, rgba(184,153,104,0.16), transparent 65%),
    radial-gradient(ellipse 100% 80% at 30% 110%, rgba(6,13,28,0.95), transparent 70%),
    linear-gradient(180deg, #0c1a32 0%, #08111f 55%, #050b18 100%);
  isolation: isolate;
}
.cine-still::after {
  /* film grain */
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.94  0 0 0 0 0.92  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' /></svg>");
}
.cine-still.warm {
  background-color: #1a1812;
  background-image:
    radial-gradient(ellipse 70% 60% at 50% 80%, rgba(184,153,104,0.32), transparent 65%),
    radial-gradient(ellipse 90% 70% at 20% 0%, rgba(6,13,28,0.95), transparent 70%),
    linear-gradient(180deg, #2a2418 0%, #14110a 70%, #0a0805 100%);
}
.cine-still.dawn {
  background-color: #16182a;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 60%, rgba(184,153,104,0.22), transparent 70%),
    radial-gradient(ellipse 100% 100% at 50% 110%, rgba(10,20,40,0.92), transparent 65%),
    linear-gradient(180deg, #1a1d2e 0%, #0e1220 60%, #060a15 100%);
}
.cine-still.cool {
  background-color: #0a121f;
  background-image:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(122,129,144,0.14), transparent 65%),
    linear-gradient(180deg, #0c1424 0%, #060c1a 100%);
}

/* Letterbox container */
.letterbox {
  position: relative;
  width: 100%;
  background: #000;
}
.letterbox .ratio { aspect-ratio: 2.39 / 1; }
.letterbox .ratio-16-9 { aspect-ratio: 16 / 9; }

@media (max-width: 720px) {
  .letterbox .ratio { aspect-ratio: 16 / 9; }
}

/* Play affordance */
.play-affordance {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  pointer-events: none;
}
.play-affordance .ring {
  width: 88px; height: 88px;
  border: 1px solid rgba(244,241,235,0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(10,20,40,0.18);
  backdrop-filter: blur(2px);
  transition: border-color 240ms ease, background 240ms ease;
}
.play-affordance .ring::before {
  content: "";
  width: 0; height: 0;
  border-left: 14px solid var(--offwhite);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.letterbox:hover .play-affordance .ring {
  border-color: var(--gold);
  background: rgba(184,153,104,0.12);
}

/* Caption strip */
.caption {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ── Pull quote (gold left border) ───────────────────────── */

.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.45;
  border-left: 1px solid var(--gold);
  padding: 6px 0 6px 28px;
  color: inherit;
  margin: 56px 0 0;
}

/* ── Footer ──────────────────────────────────────────────── */

.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--hairline-navy);
  padding: 56px var(--gutter) 48px;
  text-align: center;
}
.site-footer .row {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 20px;
}
.site-footer .row a { transition: color 200ms ease; }
.site-footer .row a:hover { color: var(--gold); }
.site-footer .sep { color: var(--muted); opacity: 0.4; }
.site-footer .legal {
  margin-top: 28px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.55;
}
.site-footer .privacy-note {
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  opacity: 0.85;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Staggered children — fast, seamless cascade. */
.js .stagger.in > * {
  animation: heroFade 380ms cubic-bezier(0.22, 0.61, 0.36, 1) backwards;
}
.js .stagger.in > *:nth-child(1) { animation-delay: 40ms; }
.js .stagger.in > *:nth-child(2) { animation-delay: 120ms; }
.js .stagger.in > *:nth-child(3) { animation-delay: 200ms; }
.js .stagger.in > *:nth-child(4) { animation-delay: 280ms; }
.js .stagger.in > *:nth-child(5) { animation-delay: 360ms; }

@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }

/* Scroll reveals: same pattern — default visible, .in adds the entrance. */
.js .reveal.in {
  animation: revealFade 380ms cubic-bezier(0.22, 0.61, 0.36, 1) backwards;
  animation-delay: 20ms;
}
@keyframes revealFade { from { opacity: 0; } to { opacity: 1; } }

/* Hairline draw-in — default fully drawn, animation plays on .in. */
.js .hair-draw.in {
  transform-origin: center;
  animation: hairDraw 800ms cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
  animation-delay: 1700ms;
}
@keyframes hairDraw { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (prefers-reduced-motion: reduce) {
  .js .reveal.in,
  .js .stagger.in > *,
  .js .hair-draw.in { animation: none !important; }
}

/* Escape hatch: when the page loads with visibilityState='hidden' (e.g.
   during off-screen capture), CSS animations don't progress so any element
   that depends on an entrance animation gets stuck at opacity:0. Snap all
   animatable content to its final state. */
.snap-final .hero .char,
.snap-final .hero .h-display.letter-split .char,
.snap-final .js .stagger > *,
.snap-final .js .stagger.in > *,
.snap-final .js .reveal,
.snap-final .js .reveal.in,
.snap-final .js .hair-draw,
.snap-final .js .hair-draw.in,
.snap-final .curtain {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}
.snap-final .curtain { display: none !important; }

/* ── Premium micromovements ──────────────────────────────── */

/* Film grain — STATIC (continuous flicker removed for smoother page). */

/* Slow ken-burns drift on hero background — 48s loop, 2-3% travel */
@keyframes kenBurns {
  0%   { transform: scale(1.04) translate(0%,      0%);    }
  50%  { transform: scale(1.07) translate(-1.5%,  -1.2%); }
  100% { transform: scale(1.04) translate(0%,      0%);    }
}

/* Gold glow breath */
@keyframes goldBreath {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1;     }
}

/* Silver mark image — no continuous shimmer. */

/* Play affordance — static (perpetual breath removed for smoother perf). */

/* Hide the hero H1 until polish.js has finished splitting its letters —
   prevents the brief flash of unsplit text before the chars animate in.
   Snap-final / no-anim / non-JS users see it normally. */
.js-pending .hero .h-display { visibility: hidden; }
.snap-final .hero .h-display,
.no-anim .hero .h-display { visibility: visible !important; }

/* Hair-draw-LEFT — for smaller, sentence-level lines (textlink underlines,
   block separators). Draws from left, like writing. Keep the center-draw
   on `.hair-draw` for large section dividers (past subjects, scarcity). */
.js .hair-draw-left.in {
  transform-origin: left center;
  animation: hairDrawLeft 800ms var(--ease-out) backwards;
  animation-delay: 300ms;
}
@keyframes hairDrawLeft { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Textlink underline draws in from left when the textlink enters view. */
.js .textlink::after {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 700ms var(--ease-out) 350ms;
}
.js .textlink.in::after,
.snap-final .textlink::after,
.no-anim .textlink::after { transform: scaleX(1); }
/* Hero textlink waits for the hero entrance to settle. */
.js .hero .textlink.in::after {
  transition-delay: calc(var(--hero-start, 0ms) + 2200ms);
}

/* Form input underline — gold draw-in on focus */
.field input[type="text"],
.field textarea {
  position: relative;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size var(--dur-base) var(--ease), border-color var(--dur-micro) var(--ease);
}
.field input[type="text"]:focus,
.field textarea:focus {
  background-size: 100% 1px;
  border-bottom-color: transparent;
}

/* ── Selection ───────────────────────────────────────────── */
::selection { background: var(--gold); color: var(--navy); }

/* ── Focus-visible (keyboard) — unified gold outline ─────── */
:focus { outline: none; }
:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
  border-radius: 1px;
}
.btn:focus-visible,
.textlink:focus-visible,
.textlink-inline:focus-visible {
  outline-offset: 6px;
}
.field input[type="text"]:focus-visible,
.field textarea:focus-visible { outline: none; }
.pill input:focus-visible + label { outline: 1px solid var(--gold); outline-offset: 4px; }

/* ============================================================
   POLISH LAYER — curtain, letter-stagger, media cursor, crossfade
   ============================================================ */

/* 5 · Page-load curtain */
.curtain-seen .curtain { display: none !important; }
.curtain {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 10000;
  display: grid;
  place-items: center;
  transform: translateY(0);
  transition: transform 900ms cubic-bezier(0.65, 0, 0.35, 1);
}
.curtain.lift { transform: translateY(-100%); }
.curtain .curtain-mark {
  opacity: 0;
  transition: opacity 250ms ease-out;
  transform: scale(1.4);
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}
.curtain .curtain-mark .mark-img { height: 84px; }
.curtain .curtain-mark .sub  { font-size: 14px; padding-bottom: 6px; }
.curtain.show .curtain-mark { opacity: 1; }

/* 2 · Letter-by-letter hero H1
   --hero-start defers the entire hero animation when the curtain plays.
   Slow, deliberate pacing: 40ms per letter, 700ms each — reads as type
   being deliberately set, not a SaaS reveal. */
.hero { --hero-start: 0ms; }
.first-visit .hero { --hero-start: 700ms; }

.hero .h-display.letter-split .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: charIn 520ms var(--ease-out) forwards;
  animation-delay: calc(var(--hero-start, 0ms) + var(--i, 0) * 26ms);
  will-change: opacity, transform;
}
@keyframes charIn {
  to { opacity: 1; transform: translateY(0); }
}

/* When letter-split is applied, skip the wrapping stagger animation on
   the H1 itself; only the letters animate. */
.js .stagger.in > .letter-split { animation: none !important; }
/* Subhead, selectivity, CTAs land after the letter-stagger finishes
   (~22×26 + 520 = 1090ms). Tighter pacing so the hero feels paced, not slow. */
/* Hero — dynamic, confident cascade. Quick rise with cinematic ease. */
.js .hero .stagger.in > * {
  animation-name: heroRise !important;
  animation-timing-function: cubic-bezier(0.2, 0.7, 0.2, 1) !important;
  animation-fill-mode: backwards !important;
  animation-duration: 800ms !important;
}
.js .hero .stagger.in > *:nth-child(1) { animation-delay: 200ms !important; animation-duration: 1100ms !important; }
.js .hero .stagger.in > *:nth-child(2) { animation-delay: 850ms !important; animation-duration: 900ms !important; }
.js .hero .stagger.in > *:nth-child(3) { animation-delay: 1200ms !important; animation-duration: 800ms !important; }
.js .hero .stagger.in > *:nth-child(4) { animation-delay: 1500ms !important; animation-duration: 800ms !important; }

@keyframes heroRise {
  0%   { opacity: 0; transform: translateY(18px); filter: blur(4px); }
  55%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Typewriter selectivity line — opt out of the fade, type itself in. */
.js .hero .stagger.in > .smallcaps.selectivity[data-typewriter] {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  min-height: 1.4em;
}
.smallcaps.selectivity[data-typewriter] .caret {
  display: inline-block;
  width: 0.55ch;
  margin-left: 2px;
  background: var(--gold);
  color: transparent;
  vertical-align: -1px;
  height: 0.95em;
  animation: caretBlink 760ms steps(1) infinite;
}
.smallcaps.selectivity[data-typewriter].done .caret {
  animation: caretFade 700ms ease 600ms forwards;
}
@keyframes caretBlink { 50% { opacity: 0; } }
@keyframes caretFade { to { opacity: 0; visibility: hidden; } }

@media (prefers-reduced-motion: reduce) {
  .hero .h-display.letter-split .char { animation: none !important; opacity: 1; transform: none; }
}

/* Plan 1-2-3 sequential reveal — each step lands distinctly. */
.js .plan-stagger.in > *:nth-child(1) { animation-delay: 80ms !important; animation-duration: 520ms !important; }
.js .plan-stagger.in > *:nth-child(2) { animation-delay: 480ms !important; animation-duration: 520ms !important; }
.js .plan-stagger.in > *:nth-child(3) { animation-delay: 880ms !important; animation-duration: 520ms !important; }

.js .plan-stagger .numeral {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
}
.js .plan-stagger.in .plan-step:nth-child(1) .numeral {
  animation: numeralDrop 620ms var(--ease-out) 100ms forwards;
}
.js .plan-stagger.in .plan-step:nth-child(2) .numeral {
  animation: numeralDrop 620ms var(--ease-out) 500ms forwards;
}
.js .plan-stagger.in .plan-step:nth-child(3) .numeral {
  animation: numeralDrop 620ms var(--ease-out) 900ms forwards;
}
@keyframes numeralDrop {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .js .plan-stagger .numeral { opacity: 1; transform: none; animation: none !important; }
}

/* 3 · Custom cursor over media — flat, no backdrop-filter for smoother motion */
.media-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 64px; height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 9990;
  opacity: 0;
  background: rgba(6,13,28,0.78);
  transition: opacity var(--dur-base) var(--ease);
  will-change: transform;
}
.media-cursor.show { opacity: 1; }
.media-cursor span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--offwhite);
  text-transform: uppercase;
  font-weight: 500;
}
@media (hover: none) {
  .media-cursor { display: none; }
}

/* 4 · Section seams — single-tone site, no seams needed. */
