/* ═══════════════════════════════════════════════════════════
   THE LAST DANCE FOR GLORY — luxury editorial layer
   ═══════════════════════════════════════════════════════════ */

:root {
  --beat: 0; /* 0..1, written every frame by the audio beat engine */
  --void: #040404;
  --ink: #0a0a09;
  --gold: #d4af37;
  --gold-hot: #f6d97b;
  --gold-deep: #8a6d1f;
  --bone: #ece5d8;
  --ash: #6f695c;
  --serif: "Cormorant Garamond", serif;
  --display: "Cinzel", serif;
  --grot: "Space Grotesk", sans-serif;
}

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

html { scroll-behavior: auto; }

body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--serif);
  overflow-x: hidden;
  cursor: none;
}

::selection { background: var(--gold); color: var(--void); }

a, button { cursor: none; }

/* ── WebGL stage ── */
#stage {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  display: block;
}

/* fallback glow if WebGL dies */
.glow-fallback {
  position: fixed; inset: 0; z-index: 0; display: none;
  background:
    radial-gradient(ellipse 40% 50% at 50% 55%, rgba(212,175,55,.28), transparent 65%),
    radial-gradient(ellipse 20% 28% at 50% 55%, rgba(246,217,123,.35), transparent 70%);
}
body.no-webgl .glow-fallback { display: block; }
body.no-webgl #stage { display: none; }

/* ── atmosphere ── */
.grain {
  position: fixed; inset: -100px; z-index: 40; pointer-events: none;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.9s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); }
  25% { transform: translate(-24px,16px); }
  50% { transform: translate(18px,-20px); }
  75% { transform: translate(-12px,-14px); }
  100% { transform: translate(0,0); }
}

.vignette {
  position: fixed; inset: 0; z-index: 39; pointer-events: none;
  background: radial-gradient(ellipse 120% 110% at 50% 50%, transparent 55%, rgba(0,0,0,.55) 100%);
}

/* ── cursor ── */
.cursor { position: fixed; inset: 0; z-index: 100; pointer-events: none; }
.cursor__dot, .cursor__ring {
  position: absolute; top: 0; left: 0; border-radius: 50%;
  transform: translate(-50%,-50%);
  will-change: transform;
}
.cursor__dot { width: 6px; height: 6px; background: var(--gold-hot); }
.cursor__ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(212,175,55,.5);
  transition: width .35s ease, height .35s ease, border-color .35s ease;
}
.cursor--active .cursor__ring {
  width: 64px; height: 64px; border-color: rgba(246,217,123,.9);
}
@media (hover: none) {
  .cursor { display: none; }
  body { cursor: auto; }
}

/* ── header ── */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 40px;
  mix-blend-mode: difference;
}
.site-head__mark {
  font-family: var(--display); font-weight: 700; font-size: 13px;
  letter-spacing: .28em; color: var(--bone);
}
.site-head__mark em { font-family: var(--serif); font-style: italic; text-transform: none; letter-spacing: .05em; color: var(--gold-hot); }
.site-head__meta { font-family: var(--grot); font-weight: 300; font-size: 11px; letter-spacing: .4em; color: var(--ash); }

/* ── chapter rail ── */
.rail {
  position: fixed; right: 26px; top: 50%; transform: translateY(-50%);
  z-index: 50; display: flex; flex-direction: column; gap: 18px;
}
.rail__dot {
  position: relative; display: flex; align-items: center; justify-content: flex-end;
  text-decoration: none; height: 16px;
}
.rail__dot span {
  font-family: var(--grot); font-size: 9px; letter-spacing: .15em;
  color: var(--ash); transition: color .4s, transform .4s;
}
.rail__dot i {
  position: absolute; right: 28px; top: 50%; transform: translateY(-50%) translateX(8px);
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--gold-hot); white-space: nowrap; opacity: 0;
  transition: opacity .35s, transform .35s;
  pointer-events: none;
}
.rail__dot:hover i { opacity: 1; transform: translateY(-50%) translateX(0); }
.rail__dot.active span { color: var(--gold-hot); transform: scale(1.25); }

/* ── layout ── */
main { position: relative; z-index: 10; }

.chapter {
  position: relative;
  min-height: 100vh;
  padding: 22vh 8vw;
  display: flex; flex-direction: column; justify-content: center;
}
.hero { min-height: 130vh; align-items: center; text-align: center; justify-content: center; }
.chapter--left  { align-items: flex-start; }
.chapter--right { align-items: flex-end; text-align: right; }
.chapter--center { align-items: center; text-align: center; }

/* ── typography primitives ── */
.kicker {
  font-family: var(--grot); font-weight: 300;
  font-size: clamp(10px, 1vw, 12px); letter-spacing: .5em;
  color: var(--gold); margin-bottom: 3.2vh;
}
.chapter__title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(44px, 7.5vw, 118px);
  line-height: .95; letter-spacing: .02em;
  color: var(--bone);
  text-shadow: 0 0 60px rgba(212,175,55,.18);
  margin-bottom: 3vh;
}
.lede {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(19px, 2vw, 27px); font-style: italic;
  color: var(--ash); max-width: 34ch;
}
.chapter--right .lede { margin-left: auto; }
.chapter__head { margin-bottom: 9vh; max-width: 900px; }
.chapter__head--center { text-align: center; }

/* masked line reveals */
.mask { display: block; overflow: hidden; }
.mask .line {
  display: block;
  transform: translateY(115%);
  transition: transform 1.3s cubic-bezier(.19,1,.22,1);
}
.in .mask .line, .mask.in .line { transform: translateY(0); }

/* generic reveal */
.reveal {
  opacity: 0; transform: translateY(46px);
  transition: opacity 1.1s cubic-bezier(.19,1,.22,1), transform 1.1s cubic-bezier(.19,1,.22,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── hero ── */
.hero__title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(58px, 11.5vw, 190px);
  line-height: .92; letter-spacing: .03em;
  color: var(--bone);
  text-shadow: 0 0 90px rgba(212,175,55,.22), 0 5px 34px rgba(0,0,0,.6);
}
.hero__title .line--italic, .finale__title .line--italic {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  text-transform: none; letter-spacing: 0;
  font-size: .62em;
  background: linear-gradient(105deg, var(--gold-deep), var(--gold-hot) 45%, var(--gold-deep) 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 4px 22px rgba(0,0,0,.85));
}
.hero__sub {
  margin-top: 5vh;
  font-size: clamp(16px, 1.6vw, 21px); font-weight: 300; font-style: italic;
  color: rgba(236,229,216,.82); line-height: 1.7;
  text-shadow: 0 2px 26px rgba(0,0,0,.9), 0 0 10px rgba(0,0,0,.65);
}
.scroll-cue {
  position: absolute; bottom: 6vh; left: 50%; transform: translateX(-50%);
  font-family: var(--grot); font-size: 10px; letter-spacing: .45em; color: var(--ash);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.scroll-cue.reveal.in { transform: translateX(-50%) translateY(0); }
.scroll-cue.reveal { transform: translateX(-50%) translateY(46px); }
.scroll-cue__line {
  display: block; width: 1px; height: 64px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: cueDrop 2.4s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(20px); opacity: 0; }
}

/* ── I · legends ── */
.legends__list { display: flex; flex-direction: column; gap: 8vh; max-width: 760px; }
.legend { position: relative; padding-left: 130px; }
.legend__age {
  position: absolute; left: 0; top: -12px;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(54px, 6vw, 92px); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,175,55,.55);
}
.legend__name {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 2.6vw, 38px); letter-spacing: .12em;
  color: var(--bone); margin-bottom: 1.2vh;
}
.legend__line { font-size: clamp(16px, 1.5vw, 21px); font-weight: 300; color: var(--ash); max-width: 46ch; }

/* ── II · contenders ── */
.contenders { width: min(880px, 82vw); border-top: 1px solid rgba(212,175,55,.22); }
.row {
  position: relative; display: grid;
  grid-template-columns: 90px 1fr; grid-template-rows: auto auto;
  align-items: baseline; column-gap: 26px;
  padding: 4.2vh 12px 4.2vh 6px;
  border-bottom: 1px solid rgba(212,175,55,.22);
  text-decoration: none; overflow: hidden;
}
.row__idx {
  grid-row: 1 / span 2;
  font-family: var(--display); font-size: clamp(30px, 3.4vw, 52px); font-weight: 400;
  color: transparent; -webkit-text-stroke: 1px rgba(236,229,216,.35);
  transition: color .5s, -webkit-text-stroke-color .5s;
}
.row__name {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(34px, 4.6vw, 72px); letter-spacing: .06em; line-height: 1.05;
  color: var(--bone); transition: color .5s, letter-spacing .6s, transform .6s;
}
.row__note {
  grid-column: 2; font-style: italic; font-weight: 300;
  font-size: clamp(14px, 1.3vw, 18px); color: var(--ash);
  transition: color .5s;
}
.row::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(212,175,55,.14), rgba(212,175,55,0) 70%);
  transform: translateX(-101%); transition: transform .6s cubic-bezier(.19,1,.22,1);
  pointer-events: none;
}
.row:hover::after { transform: translateX(0); }
.row:hover .row__name { color: var(--gold-hot); letter-spacing: .1em; }
.row:hover .row__idx { -webkit-text-stroke-color: var(--gold); }
.row:hover .row__note { color: var(--bone); }

/* ── III · underdogs ── */
.underdogs { display: flex; flex-direction: column; gap: 7vh; max-width: 620px; }
.underdog h3 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(26px, 3.2vw, 48px); letter-spacing: .14em;
  color: var(--bone); margin-bottom: 1vh;
  transition: color .5s ease, text-shadow .5s ease;
}
.underdog:hover h3 {
  color: var(--gold-hot);
  text-shadow: 0 0 40px rgba(212,175,55,.4);
}
.underdog p { font-size: clamp(16px, 1.5vw, 21px); font-weight: 300; color: var(--ash); }

/* ── IV · heirs ── */
.heirs { display: flex; flex-direction: column; width: min(880px, 82vw); border-top: 1px solid rgba(212,175,55,.22); }
.heir {
  display: grid; grid-template-columns: 84px 1fr; grid-template-rows: auto auto;
  column-gap: 26px; align-items: baseline;
  padding: 3.6vh 6px;
  border-bottom: 1px solid rgba(212,175,55,.22);
}
.heir__age {
  grid-row: 1 / span 2;
  font-family: var(--display); font-size: clamp(28px, 3vw, 46px);
  color: transparent; -webkit-text-stroke: 1px rgba(212,175,55,.55);
}
.heir__name {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(24px, 3vw, 44px); letter-spacing: .1em; color: var(--bone);
  transition: color .45s;
}
.heir__note { grid-column: 2; font-style: italic; font-weight: 300; font-size: clamp(14px,1.3vw,18px); color: var(--ash); }
.heir:hover .heir__name { color: var(--gold-hot); }

/* ── V · storylines ── */
.storylines { display: flex; flex-direction: column; gap: 8vh; max-width: 800px; }
.storyline {
  font-size: clamp(22px, 2.6vw, 38px); font-weight: 300; line-height: 1.4;
  color: var(--bone);
  filter: drop-shadow(0 3px 16px rgba(0,0,0,.9));
}
.storyline em {
  background: linear-gradient(100deg, var(--bone) 30%, var(--gold-hot) 60%, var(--bone) 85%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ── VI · the trophy remembers ── */
.memories__list { width: 100%; display: flex; flex-direction: column; align-items: center; }
/* each memory block is a pacing spacer; its visible content is
   viewport-fixed and scrubbed per-frame by scroll — a held film
   frame that answers the reader's hand instantly */
.memory {
  position: relative;
  min-height: 92vh; width: 100%;
  text-align: center;
}
.memory__caption {
  position: fixed; left: 50%; bottom: 8.5vh;
  transform: translateX(-50%) translateY(14px);
  width: min(760px, 88vw);
  opacity: 0; pointer-events: none;
  will-change: opacity, transform;
}
/* the memory cloud — a ghost of footage floating in the void.
   Viewport-fixed like the particle glyph above it, so name, cloud
   and caption hold a stable cinematic composition while scrolling. */
.memory__cloud {
  position: fixed; left: 50%; top: 54%;
  transform: translate(-50%, -50%);
  width: min(600px, 84vw); aspect-ratio: 16 / 9;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}
.memory__cloud video {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(.45) hue-rotate(-8deg) saturate(1.15) brightness(.7) contrast(1.06);
  -webkit-mask-image: radial-gradient(ellipse 58% 50% at 50% 50%, #000 28%, transparent 71%);
  mask-image: radial-gradient(ellipse 58% 50% at 50% 50%, #000 28%, transparent 71%);
  animation: cloudBreath 11s ease-in-out infinite alternate;
}
.memory__cloud::after {
  content: ""; position: absolute; inset: -12%;
  background: radial-gradient(ellipse 48% 42% at 50% 50%, rgba(212,175,55,.10), transparent 70%);
}
@keyframes cloudBreath {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.06) translateY(-6px); }
}
.memory__where {
  font-family: var(--grot); font-weight: 300; font-size: 11px;
  letter-spacing: .5em; color: var(--gold); margin-bottom: 16px;
}
.memory__line {
  font-size: clamp(17px, 1.9vw, 26px); font-weight: 300; font-style: italic;
  color: var(--bone); max-width: 46ch; line-height: 1.5;
  margin: 0 auto;
  text-shadow: 0 2px 18px rgba(0,0,0,.9);
}

/* ── VII · dream final ── */
.duel {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 4vw;
  width: min(1000px, 88vw); margin-bottom: 7vh;
}
.duel__side {
  background: none; border: none; cursor: none;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 3vh 1vw;
  transition: transform .7s cubic-bezier(.19,1,.22,1), filter .7s;
  filter: brightness(.85);
}
.duel__side:hover, .duel__side.chosen { transform: scale(1.07); filter: brightness(1.25); }
.duel__side.dimmed { filter: brightness(.4) grayscale(.6); transform: scale(.94); }
.duel__num {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(110px, 17vw, 260px); line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--gold);
  text-shadow: 0 0 120px rgba(212,175,55,.35);
  transition: -webkit-text-stroke-color .6s;
}
.duel__side:hover .duel__num, .duel__side.chosen .duel__num { -webkit-text-stroke-color: var(--gold-hot); }
.duel__who {
  font-family: var(--grot); font-weight: 400; font-size: clamp(12px, 1.2vw, 16px);
  letter-spacing: .55em; color: var(--bone);
}
.duel__vs { font-family: var(--serif); font-style: italic; font-size: clamp(26px, 3vw, 44px); color: var(--ash); }
.duel__line { font-size: clamp(16px, 1.6vw, 22px); font-weight: 300; color: var(--ash); max-width: 58ch; }
.duel__verdict {
  margin-top: 4vh; min-height: 2.2em;
  font-size: clamp(19px, 2vw, 28px); font-style: italic;
  color: var(--gold-hot); opacity: 0;
  transition: opacity 1.2s ease;
}
.duel__verdict.show { opacity: 1; }

/* ── VII · the road ── */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8vh 6vw; width: min(900px, 84vw); margin-bottom: 9vh;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.stat__num {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(52px, 7vw, 110px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px var(--gold);
  text-shadow: 0 0 70px rgba(212,175,55,.25);
}
.stat__label { font-family: var(--grot); font-weight: 300; font-size: 11px; letter-spacing: .5em; color: var(--ash); }
.road__line {
  font-size: clamp(18px, 2vw, 26px); font-weight: 300; color: var(--ash); line-height: 1.6;
  text-shadow: 0 2px 18px rgba(0,0,0,.9);
}

/* ── IX · finale ── */
.finale { min-height: 160vh; }
.finale__title {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(40px, 7.8vw, 128px); line-height: 1.04; letter-spacing: .02em;
  color: var(--bone); text-shadow: 0 0 90px rgba(212,175,55,.25);
  margin-bottom: 7vh;
}
.finale__date {
  font-family: var(--grot); font-weight: 300;
  font-size: clamp(12px, 1.3vw, 16px); letter-spacing: .55em;
  color: var(--gold); margin-bottom: 2.4vh;
  text-shadow: 0 2px 14px rgba(0,0,0,.9);
}
.finale__countdown {
  font-family: var(--grot); font-weight: 400;
  font-size: clamp(12px, 1.3vw, 15px); letter-spacing: .34em;
  color: var(--gold-hot); min-height: 1.6em;
  margin-bottom: 5vh;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(212,175,55,.35), 0 2px 14px rgba(0,0,0,.9);
}
.finale__cta {
  font-family: var(--grot); font-weight: 300;
  font-size: 11px; letter-spacing: .5em; color: var(--ash);
  text-shadow: 0 2px 14px rgba(0,0,0,.9);
}

/* ── sound toggle ── */
.sound-toggle {
  position: fixed; left: 30px; bottom: 26px; z-index: 60;
  background: none; border: none;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--grot); font-weight: 300;
  font-size: 10px; letter-spacing: .42em; color: var(--ash);
  transition: color .4s ease;
  padding: 8px 0;
}
.sound-toggle:hover, .sound-toggle.on { color: var(--gold-hot); }
.sound-toggle__bars { display: flex; gap: 3px; align-items: flex-end; height: 12px; }
.sound-toggle__bars i {
  width: 2px; height: 3px; background: currentColor;
  transition: height .35s ease;
}
.sound-toggle.on .sound-toggle__bars i { animation: eqDance 0.9s ease-in-out infinite alternate; }
.sound-toggle.on .sound-toggle__bars i:nth-child(1) { animation-delay: 0s; }
.sound-toggle.on .sound-toggle__bars i:nth-child(2) { animation-delay: .25s; }
.sound-toggle.on .sound-toggle__bars i:nth-child(3) { animation-delay: .5s; }
@keyframes eqDance { from { height: 3px; } to { height: 12px; } }

/* ── footer ── */
.site-foot {
  position: relative; z-index: 10;
  padding: 6vh 8vw 5vh;
  border-top: 1px solid rgba(212,175,55,.14);
  text-align: center;
}
.site-foot p {
  font-family: var(--grot); font-weight: 300;
  font-size: 10px; letter-spacing: .18em; line-height: 2;
  color: var(--ash); text-transform: uppercase;
}

/* ── beat-reactive light ─────────────────────────
   --beat (0..1) is written per frame from the music's
   low-band energy: gold elements glow like filaments
   on every hit of the anthem. */
.kicker,
.legend__age,
.stat__num,
.memory__where,
.finale__date,
.finale__countdown {
  filter: brightness(calc(1 + var(--beat) * 0.85));
}
.duel__num {
  filter: brightness(calc(1 + var(--beat) * 0.5));
}
.storyline em {
  text-shadow: 0 0 calc(4px + var(--beat) * 30px)
               rgba(246, 217, 123, calc(0.12 + var(--beat) * 0.75));
}
.rail__dot.active span {
  text-shadow: 0 0 calc(var(--beat) * 14px)
               rgba(246, 217, 123, calc(var(--beat) * 0.9));
}
@media (prefers-reduced-motion: reduce) {
  .kicker, .legend__age, .stat__num, .memory__where,
  .finale__date, .finale__countdown, .duel__num { filter: none; }
}

/* ── preloader ── */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--void);
  display: flex; align-items: center; justify-content: center;
  transition: clip-path 1.4s cubic-bezier(.77,0,.18,1);
  clip-path: inset(0 0 0 0);
}
.preloader.done { clip-path: inset(0 0 100% 0); pointer-events: none; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.preloader__kicker { font-family: var(--grot); font-weight: 300; font-size: 10px; letter-spacing: .55em; color: var(--ash); }
.preloader__count {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(70px, 10vw, 140px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--gold);
}
.preloader__bar { width: min(320px, 60vw); height: 1px; background: rgba(212,175,55,.18); overflow: hidden; }
.preloader__bar span { display: block; width: 0%; height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold-hot)); }

/* ── responsive ── */
/* dynamic-viewport units where supported (mobile URL bars) */
@supports (min-height: 100svh) {
  .chapter { min-height: 100svh; }
  .hero { min-height: 130svh; }
  .finale { min-height: 160svh; }
  .memory { min-height: 92svh; }
}

/* tablets */
@media (max-width: 1080px) {
  .rail { right: 16px; }
  .legends__list { max-width: 620px; }
  .memory__cloud { width: min(560px, 86vw); }
}

/* phones */
@media (max-width: 760px) {
  .chapter { padding: 14vh 7vw; }
  .rail { display: none; }
  .site-head { padding: 20px 22px; }
  .site-head__mark { white-space: nowrap; font-size: 11px; }
  .site-head__meta { display: none; }
  .sound-toggle { left: 20px; bottom: 18px; }
  .sound-toggle__label { display: none; }
  .legend { padding-left: 0; padding-top: 52px; }
  .legend__age { top: -8px; font-size: 44px; }
  .legends__list { gap: 6vh; }
  .row { grid-template-columns: 52px 1fr; column-gap: 14px; padding: 3.4vh 6px 3.4vh 2px; }
  .heir { grid-template-columns: 48px 1fr; column-gap: 14px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 6vh 8vw; }
  .storylines { gap: 6vh; }
  .duel { grid-template-columns: 1fr; gap: 0.5vh; margin-bottom: 4vh; }
  .duel__vs { text-align: center; }
  .duel__side { padding: 1.6vh 1vw; }
  .chapter--right { align-items: flex-start; text-align: left; }
  .chapter--right .lede { margin-left: 0; }
  .memory__cloud { width: 94vw; top: 51%; }
  .memory__caption { width: 94vw; bottom: 9.5vh; }
  .memory__line { font-size: 16px; }
  .memory__where { font-size: 9px; letter-spacing: .34em; }
  .site-foot p { font-size: 9px; letter-spacing: .12em; }
}

/* touch devices: restore native cursors (the custom one is hidden) */
@media (hover: none) {
  a, button, .duel__side { cursor: auto; }
}

/* ── reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .grain, .scroll-cue__line, .memory__cloud video, .sound-toggle.on .sound-toggle__bars i { animation: none; }
  .reveal, .mask .line { transition: none; opacity: 1; transform: none; }
}
