/* ==========================================================================
   CineCouncil OTT — teaser site
   Palette measured directly from CINECOUNCIL_OTT_LOGO ANIMATION_FINAL.mp4
   (ffmpeg palettegen + per-pixel sampling of the wordmark band at t=8.5s).
   No colour here is invented.
   ========================================================================== */

:root {
  /* --- measured palette --- */
  --void:       #000000;
  --ink:        #06080B;   /* cool blue-black undertone */
  --ink-2:      #090B10;
  --ash:        #1C1B19;
  --bronze-dk:  #41392F;
  --bronze:     #6A5A46;
  --gold-deep:  #8C7250;
  --gold-core:  #A08050;   /* primary brand gold */
  --gold-warm:  #A48962;
  --gold-light: #B89F78;
  --gold-pale:  #CBB28A;
  --champagne:  #E3CBA1;
  --ivory:      #F6E5C5;
  --flare-cool: #102028;

  /* --- derived ---
     Body text uses --gold-warm: it is a measured colour AND clears WCAG AA
     on black at 6.3:1. --bronze (3.2:1) and --bronze-dk (1.5:1) are therefore
     reserved for rules, borders and decoration — never for reading text. */
  --text-body:  var(--gold-warm);
  --shell:      min(1180px, 100% - 2.5rem);

  --ff-display: "Cinzel", Georgia, "Times New Roman", serif;
  --ff-script:  "Great Vibes", "Segoe Script", cursive;
  --ff-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--void);
  color: var(--text-body);
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.0625rem);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 100;
  padding: 0.7rem 1.2rem;
  background: var(--gold-core); color: var(--void);
  font: 500 0.85rem/1 var(--ff-body);
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 1px solid var(--gold-core);
  outline-offset: 4px;
}

/* Film grain — kills gradient banding on dark panels */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 50;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* =========================================================== THE ECLIPSE = */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 6rem 1.25rem 4rem;
  overflow: hidden;
  background: var(--void);
  isolation: isolate;
}

/* ------------------------------------------------- full-bleed intro video --
 * The mp4 is 9:16 and its content is a centred 1.875:1 band, so `cover` in a
 * landscape hero scales it to full width and crops vertically — which is
 * exactly the band. The whole band stays visible while the hero's aspect ratio
 * is <= 1.875:1 (true for 16:9, 16:10 and most laptops). On an ultrawide hero
 * the extremes of the band trim slightly; that is the cost of full width, and
 * it only applies during the 10s intro since the live mark takes over after.
 *
 * Audio: the element is muted and there is no unmute control. The intro is
 * always silent.
 * ------------------------------------------------------------------------- */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  background: var(--void);

  /* Hidden unless main.js confirms playback actually started. */
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.3s var(--ease), visibility 1.3s;
}

.hero--playing .hero__video { opacity: 1; visibility: visible; }

/* The live mark waits behind the video and cross-fades in when it ends. */
.hero__inner { transition: opacity 1.3s var(--ease); }
.hero--playing .hero__inner { opacity: 0; pointer-events: none; }

.hero__skip {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1rem, 3vw, 2.5rem);
  z-index: 3;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--bronze-dk);
  background: rgba(0, 0, 0, 0.45);
  color: var(--gold-light);
  font: 500 0.68rem/1 var(--ff-body);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s,
              border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.hero--playing .hero__skip { opacity: 1; visibility: visible; }
.hero__skip:hover { border-color: var(--gold-core); color: var(--champagne); }

/* Broad ambient bloom across the whole hero — the wide soft light in the
   source, kept separate from the ring so it can spill behind the wordmark. */
.hero::before {
  content: "";
  position: absolute;
  top: 34%;
  left: 50%;
  translate: -50% -50%;
  width: min(150vw, 1500px);
  height: min(110vh, 1100px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(160, 128, 80, 0.15) 0%,
    rgba(140, 114, 80, 0.09) 26%,
    rgba(65, 57, 47, 0.05) 46%,
    rgba(0, 0, 0, 0) 70%);
}

/* The ring itself sits IN FLOW above the wordmark. No magic offsets, so it
   cannot overlap the type on any screen. */
.eclipse {
  position: relative;
  width: min(62vw, 300px);
  aspect-ratio: 1;
  margin: 0 auto clamp(0.25rem, 1.5vw, 1rem);
  z-index: 1;
  pointer-events: none;
}

/* Warm corona bloom */
.eclipse__corona {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(246, 229, 197, 0.34) 0%,
      rgba(227, 203, 161, 0.22) 7%,
      rgba(160, 128, 80, 0.17) 14%,
      rgba(140, 114, 80, 0.10) 24%,
      rgba(65, 57, 47, 0.05) 38%,
      rgba(0, 0, 0, 0) 62%);
  animation: breathe 8s var(--ease) infinite alternate;
}

/* Elliptical outer haze — the wide soft glow in the video */
.eclipse::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 165%; height: 78%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(140, 114, 80, 0.13) 0%,
    rgba(65, 57, 47, 0.06) 40%,
    rgba(0, 0, 0, 0) 72%);
  filter: blur(22px);
}

/* The occluding disc + its ignited rim */
.eclipse__disc {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--void);
  box-shadow:
    0 0 0 1.5px rgba(246, 229, 197, 0.92),
    0 0 14px 2px rgba(246, 229, 197, 0.55),
    0 0 46px 8px rgba(203, 178, 138, 0.34),
    0 0 110px 26px rgba(160, 128, 80, 0.26),
    0 0 220px 60px rgba(140, 114, 80, 0.14);
  animation: rim-pulse 8s var(--ease) infinite alternate;
}

/* Diamond-ring: a brighter offset arc on the upper-left of the rim */
.eclipse__disc::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 200deg,
    rgba(246, 229, 197, 0) 0deg,
    rgba(246, 229, 197, 0.95) 22deg,
    rgba(255, 255, 255, 1) 34deg,
    rgba(227, 203, 161, 0.7) 50deg,
    rgba(246, 229, 197, 0) 84deg);
  -webkit-mask: radial-gradient(circle, transparent 61%, #000 63%, #000 71%, transparent 74%);
          mask: radial-gradient(circle, transparent 61%, #000 63%, #000 71%, transparent 74%);
  filter: blur(1.5px);
}

/* Anamorphic lens-flare streak */
.eclipse__flare {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 330%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(65, 57, 47, 0.5) 16%,
    rgba(160, 128, 80, 0.75) 36%,
    rgba(246, 229, 197, 0.95) 50%,
    rgba(160, 128, 80, 0.75) 64%,
    rgba(65, 57, 47, 0.5) 84%,
    rgba(0, 0, 0, 0) 100%);
  filter: blur(2.5px);
  opacity: 0.72;
}

/* Cool blue glint offset from the streak — the #102028 in the source */
.eclipse__flare::before {
  content: "";
  position: absolute;
  top: -6px; left: 24%;
  width: 30%; height: 14px;
  border-radius: 50%;
  background: radial-gradient(ellipse,
    rgba(16, 32, 40, 0.85) 0%,
    rgba(16, 32, 40, 0.28) 45%,
    rgba(0, 0, 0, 0) 75%);
  filter: blur(7px);
}

@keyframes breathe {
  from { opacity: 0.82; scale: 0.98; }
  to   { opacity: 1;    scale: 1.03; }
}
@keyframes rim-pulse {
  from { filter: brightness(0.92); }
  to   { filter: brightness(1.1); }
}

/* ============================================================= WORDMARK == */

.hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: var(--shell);
  max-width: 100%;
}

.wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.4rem);
}

.wordmark__name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2.15rem, 8.2vw, 6.4rem);
  line-height: 1;
  letter-spacing: 0.015em;
  /* No text-transform: the source sets "CineCouncil" with full-height C's and
     small caps for the rest. Uppercasing first would flatten that. */
  font-variant: small-caps;

  /* The gold ramp travels diagonally, as light does across the letters */
  background: linear-gradient(112deg,
    var(--gold-deep)  0%,
    var(--gold-warm) 18%,
    var(--champagne) 38%,
    var(--ivory)     50%,
    var(--gold-pale) 62%,
    var(--gold-core) 82%,
    var(--gold-deep) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  filter: drop-shadow(0 0 26px rgba(160, 128, 80, 0.42));
}

/* Per-letter spans injected by main.js.
   Each letter carries its OWN copy of the gradient rather than relying on the
   parent's background-clip:text reaching descendants — that inheritance does
   not survive once the spans get their own paint context (filter/animation),
   which left the wordmark invisible. main.js sets --wm-w (full wordmark width)
   and --wm-x (this letter's offset) so the ramp still spans the whole word. */
.wordmark__name .ltr {
  display: inline-block;

  background-image: linear-gradient(112deg,
    var(--gold-deep)  0%,
    var(--gold-warm) 18%,
    var(--champagne) 38%,
    var(--ivory)     50%,
    var(--gold-pale) 62%,
    var(--gold-core) 82%,
    var(--gold-deep) 100%);
  background-size: var(--wm-w, 100%) 100%;
  background-position: calc(-1 * var(--wm-x, 0px)) 50%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  opacity: 0;
  translate: 0 0.42em;
  filter: blur(6px);
  animation: letter-in 1.15s var(--ease) forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes letter-in {
  to { opacity: 1; translate: 0 0; filter: blur(0); }
}

/* OTT flanked by hairline rules — straight from the animation */
.wordmark__rule-row {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 3vw, 2rem);
  width: min(100%, 30rem);
  opacity: 0;
  animation: fade-up 1.2s var(--ease) 1.15s forwards;
}

.rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(160, 128, 80, 0) 0%,
    var(--gold-core) 55%,
    var(--champagne) 100%);
}
.rule:last-child {
  background: linear-gradient(90deg,
    var(--champagne) 0%,
    var(--gold-core) 45%,
    rgba(160, 128, 80, 0) 100%);
}

.wordmark__ott {
  font-family: var(--ff-display);
  font-size: clamp(0.9rem, 2.4vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.62em;
  margin-right: -0.62em;    /* cancels the trailing letterspace so OTT centres */
  color: var(--champagne);
  white-space: nowrap;
}

.wordmark__script {
  font-family: var(--ff-script);
  font-size: clamp(1.5rem, 4.6vw, 2.6rem);
  line-height: 1.2;
  color: var(--gold-pale);
  text-shadow: 0 0 24px rgba(160, 128, 80, 0.5);
  opacity: 0;
  animation: fade-up 1.4s var(--ease) 1.5s forwards;
}

.hero__lede {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  animation: fade-up 1.4s var(--ease) 1.9s forwards;
}

@keyframes fade-up {
  from { opacity: 0; translate: 0 1rem; }
  to   { opacity: 1; translate: 0 0; }
}

.scroll-cue {
  display: block;
  width: 1px;
  height: 4.5rem;
  margin: clamp(2.5rem, 6vw, 4.5rem) auto 0;
  opacity: 0;
  animation: fade-up 1.4s var(--ease) 2.3s forwards;
}
.scroll-cue__line {
  display: block; width: 1px; height: 100%;
  background: linear-gradient(180deg,
    rgba(160, 128, 80, 0) 0%, var(--gold-core) 55%, rgba(160, 128, 80, 0) 100%);
  background-size: 100% 200%;
  animation: cue 2.6s ease-in-out infinite;
}
@keyframes cue {
  from { background-position: 50% 100%; }
  to   { background-position: 50% -100%; }
}

/* ============================================================= SECTIONS == */

.section {
  width: var(--shell);
  margin-inline: auto;
  padding-block: clamp(5.5rem, 13vw, 10rem);
}

[data-reveal] {
  opacity: 0;
  translate: 0 2rem;
  transition: opacity 1s var(--ease), translate 1s var(--ease);
}
[data-reveal].is-visible { opacity: 1; translate: 0 0; }

.section__head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }

.eyebrow {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-core);
}

.section__title {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 4.4vw, 3rem);
  line-height: 1.15;
  color: var(--champagne);
  letter-spacing: 0.01em;
}

/* --- statement --- */
.statement { text-align: center; }
.statement__text {
  max-width: 40ch;
  margin-inline: auto;
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 3.6vw, 2.5rem);
  line-height: 1.45;
  color: var(--gold-pale);
}
.statement__text em {
  display: block;
  margin-top: 0.6em;
  font-style: italic;
  color: var(--gold-warm);
  font-size: 0.62em;
  line-height: 1.6;
}

/* --- the reveal panel --- */
.reveal-frame {
  position: relative;
  margin: 0;
  border: 1px solid var(--ash);
  background: var(--ink);
  overflow: hidden;
}
.reveal-frame::before {
  /* warm spill from behind the frame */
  content: "";
  position: absolute; inset: -1px;
  pointer-events: none; z-index: 3;
  box-shadow: inset 0 0 120px rgba(160, 128, 80, 0.10);
}

/* The mp4 is a 9:16 file whose actual content is a letterboxed band —
   measured at rows 691-1266 of 1920, i.e. 1.875:1, centred. Presenting the
   raw 9:16 frame would shrink the logo to a sliver between two black bars,
   so the frame is 16:9 and `cover` crops straight to that band. 16:9 is
   marginally taller than the band, so nothing of the artwork is lost. */
.reveal-frame__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 70svh;
  margin-inline: auto;
  object-fit: cover;
  background: var(--void);
}

.reveal-frame__play {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  border: 0;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.86) 100%);
  color: var(--champagne);
  cursor: pointer;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
  font-family: inherit;
}
.reveal-frame__play[hidden] { display: flex; opacity: 0; visibility: hidden; }

.reveal-frame__icon {
  width: 4.5rem; height: 4.5rem;
  border: 1px solid var(--gold-core);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: box-shadow 0.5s var(--ease), scale 0.5s var(--ease);
  box-shadow: 0 0 0 0 rgba(160, 128, 80, 0.4);
}
.reveal-frame__icon::before {
  content: "";
  width: 0; height: 0;
  margin-left: 4px;
  border-left: 13px solid var(--champagne);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.reveal-frame__play:hover .reveal-frame__icon,
.reveal-frame__play:focus-visible .reveal-frame__icon {
  scale: 1.07;
  box-shadow: 0 0 34px 4px rgba(160, 128, 80, 0.34);
}

.reveal-frame__label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.reveal-frame__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 0.9rem 1.15rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-warm);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 60%);
  pointer-events: none;
}

/* --- pillars --- */
.pillar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ash);
}

.pillar {
  display: grid;
  gap: 0.35rem 2.5rem;
  padding-block: clamp(2rem, 4.5vw, 3.25rem);
  border-bottom: 1px solid var(--ash);
  transition: background 0.6s var(--ease);
}
@media (min-width: 800px) {
  .pillar {
    grid-template-columns: 5rem minmax(0, 20rem) minmax(0, 1fr);
    align-items: start;
  }
}
.pillar:hover { background: linear-gradient(90deg, rgba(160,128,80,0.05), transparent 65%); }

.pillar__num {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold-core);
  padding-top: 0.5em;
}
.pillar__title {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  line-height: 1.3;
  color: var(--champagne);
}
.pillar__body { max-width: 52ch; }

/* --- notify --- */
.notify { text-align: center; }
.notify__inner { max-width: 46rem; margin-inline: auto; }
.notify__title { margin-bottom: 1.25rem; }
.notify__body { margin-bottom: clamp(2rem, 4vw, 3rem); color: var(--gold-warm); }

.notify__form { max-width: 34rem; margin-inline: auto; }

.field {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.field__input {
  flex: 1 1 14rem;
  min-width: 0;
  padding: 1rem 1.25rem;
  background: var(--ink-2);
  border: 1px solid var(--bronze-dk);
  color: var(--champagne);
  font: 300 1rem/1.4 var(--ff-body);
  letter-spacing: 0.04em;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.field__input::placeholder { color: var(--bronze); }
.field__input:hover { border-color: var(--bronze); }
.field__input:focus {
  outline: none;
  border-color: var(--gold-core);
  box-shadow: 0 0 0 1px var(--gold-core), 0 0 26px rgba(160, 128, 80, 0.2);
}
.field__input[aria-invalid="true"] { border-color: #8C5250; }

.btn {
  flex: 0 0 auto;
  padding: 1rem 2rem;
  border: 1px solid var(--gold-core);
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-core) 55%, var(--gold-warm));
  color: var(--void);
  font: 500 0.78rem/1.4 var(--ff-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.4s var(--ease), box-shadow 0.4s var(--ease), scale 0.3s var(--ease);
}
.btn:hover:not(:disabled) {
  filter: brightness(1.15);
  box-shadow: 0 0 32px rgba(160, 128, 80, 0.42);
}
.btn:active:not(:disabled) { scale: 0.985; }
.btn:disabled { opacity: 0.5; cursor: default; }

.form-msg {
  min-height: 1.5rem;
  margin-top: 1rem;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.form-msg.is-shown { opacity: 1; }
.form-msg.is-error { color: #C08A72; }
.form-msg.is-ok    { color: var(--champagne); }

/* ============================================================== FOOTER === */

.footer {
  border-top: 1px solid var(--ash);
  background: var(--ink);
}
.footer__inner {
  width: var(--shell);
  margin-inline: auto;
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer__brand { display: flex; align-items: baseline; gap: 0.75rem; }
.footer__mark {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-variant: small-caps;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(100deg, var(--gold-deep), var(--champagne) 50%, var(--gold-core));
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.footer__ott {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold-warm);
}

.footer__nav { display: flex; flex-wrap: wrap; gap: 1.75rem; }
.footer__nav a {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-warm);
  transition: color 0.35s var(--ease);
}
.footer__nav a:hover { color: var(--champagne); }

.footer__meta {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold-warm);
}

/* ================================================= motion safety net ===== *
 * Every hero element starts at opacity 0 and is revealed by a CSS animation.
 * If those animations never run — throttled tab, stalled compositor, headless
 * capture, an engine that chokes on the keyframes — the brand name would be
 * invisible, which is the worst possible failure for this page.
 *
 * main.js stamps .motion-settled on <html> once the entrance sequence is over
 * (4.2s; the last animation finishes at 3.7s). If the animations ran this is a
 * no-op because the elements are already in exactly this state. If they did
 * not, the content becomes visible anyway.
 * ------------------------------------------------------------------------- */
.motion-settled .wordmark__name .ltr,
.motion-settled .wordmark__rule-row,
.motion-settled .wordmark__script,
.motion-settled .hero__lede,
.motion-settled .scroll-cue {
  opacity: 1;
  translate: 0 0;
  filter: none;
}

/* ====================================================== reduced motion === */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  /* Compose the hero statically rather than leaving it mid-animation */
  .wordmark__name .ltr,
  .wordmark__rule-row,
  .wordmark__script,
  .hero__lede,
  .scroll-cue {
    opacity: 1 !important;
    translate: 0 0 !important;
    filter: none !important;
  }
  [data-reveal] { opacity: 1 !important; translate: 0 0 !important; }
}
