/* dispatch.css v2 — shared styles for /dispatch/* entries.
   Alpen Archive, set in motion: cinematic scroll base, darkroom contact sheet,
   logbook rail. Scroll-linked values arrive as CSS custom properties from
   dispatch.js (--p on a section = 0..1 progress through it). */

@view-transition { navigation: auto; }

:root {
  --surface-lowest: #ffffff;
  --surface: #f9f9f9;
  --surface-low: #f3f3f4;
  --surface-container: #eeeeee;
  --on-surface: #1b1b1b;
  --fg-2: #5b5b5b;
  --fg-muted: #8f8f8f;
  --fg-ghost: #c9c9c9;
  --secondary: #AE5D4B;
  --secondary-hover: #944838;
  --outline: #dac1bc;
  --hairline: rgba(27, 27, 27, .1);
  --scrim: rgba(255, 255, 255, .8);
  --btn-bg: #1b1b1b;
  --btn-fg: #e2e2e2;
  --film: #121110;

  --font-headline: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Newsreader', Georgia, serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --track-display: -0.04em;
  --track-label: 0.2em;
  --track-label-xl: 0.4em;

  --max-width: 1920px;
  --gutter: 1.25rem;
  --rail: 0px;
  --nav-h: 3.5rem;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}
@media (min-width: 720px) { :root { --gutter: 2rem; --nav-h: 4rem; } }
@media (min-width: 900px) { :root { --gutter: 4rem; } }
@media (min-width: 1100px) { :root { --rail: 52px; } }

html.dark {
  --surface-lowest: #1a1a1a;
  --surface: #1a1a1a;
  --surface-low: #222222;
  --surface-container: #2a2a2a;
  --on-surface: #ffffff;
  --fg-2: #a1a1aa;
  --fg-muted: #8a8a93;
  --fg-ghost: #52525b;
  --outline: #2f2f33;
  --hairline: rgba(255, 255, 255, .08);
  --scrim: rgba(26, 26, 26, .8);
  --btn-bg: #ffffff;
  --btn-fg: #1a1a1a;
}

/* ── Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body);
  color: var(--on-surface);
  background: var(--surface-lowest);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-left: var(--rail);
  transition: background 400ms ease, color 400ms ease;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
::selection { background: var(--secondary); color: #fff; }
::-webkit-scrollbar { width: 4px; height: 2px; }
::-webkit-scrollbar-track { background: var(--surface-low); }
::-webkit-scrollbar-thumb { background: #5b5b5b; }
html.dark ::-webkit-scrollbar-thumb { background: var(--secondary); }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-block; line-height: 1; overflow: hidden; width: 1em;
}

/* Type voices: labels are Inter caps, body is Newsreader italic. */
.type-label {
  font-family: var(--font-headline); font-weight: 700; font-size: 10px;
  letter-spacing: var(--track-label-xl); text-transform: uppercase; color: var(--secondary);
}
.type-label-sm {
  font-family: var(--font-headline); font-weight: 700; font-size: 10px;
  letter-spacing: var(--track-label); text-transform: uppercase; color: var(--fg-muted);
}
.type-h2 {
  font-family: var(--font-headline); font-weight: 800; font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.1; letter-spacing: var(--track-display); text-transform: uppercase; margin: 0;
}
.type-h2 em, .italic-serif { font-family: var(--font-body); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -0.02em; }
.type-h2 em { color: var(--secondary); }
.square { width: 6px; height: 6px; background: var(--secondary); display: inline-block; flex-shrink: 0; }
.dot { width: 4px; height: 4px; background: var(--secondary); display: inline-block; border-radius: 50%; flex-shrink: 0; }

/* ── Film grain: one fixed layer, compositor-only jitter ─────────── */
.grain {
  position: fixed; inset: -120px; z-index: 58; pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .5 0 0 0 0 .5 0 0 0 0 .5 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 900ms steps(3) infinite;
}
html.dark .grain { opacity: .08; }
@keyframes grain {
  0% { transform: translate3d(0, 0, 0); }
  33% { transform: translate3d(-40px, 26px, 0); }
  66% { transform: translate3d(32px, -48px, 0); }
  100% { transform: translate3d(-12px, 60px, 0); }
}

/* ── Nav + progress ──────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: var(--rail); right: 0; z-index: 60;
  height: var(--nav-h);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem;
  padding: 0 var(--gutter);
  background: var(--scrim);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  font-family: var(--font-headline); font-size: 10px; font-weight: 700;
  letter-spacing: var(--track-label); text-transform: uppercase;
  transition: background 400ms ease, transform 500ms var(--ease);
}
html.nav-hidden .nav { transform: translateY(-100%); }
.nav__back { display: inline-flex; align-items: center; gap: .55rem; color: var(--fg-2); transition: color 300ms var(--ease); }
.nav__back:hover { color: var(--secondary); }
.nav__back-icon { font-size: 14px !important; transition: transform 300ms var(--ease); }
.nav__back:hover .nav__back-icon { transform: translateX(-3px); }
.nav__center { justify-self: center; display: inline-flex; align-items: baseline; gap: .6rem; color: var(--fg-muted); white-space: nowrap; overflow: hidden; }
.nav__breadcrumb { color: var(--on-surface); transition: color 300ms; }
.nav__breadcrumb:hover { color: var(--secondary); }
.nav__sep { color: var(--fg-ghost); }
.nav__entry { color: var(--secondary); }
.nav__section { color: var(--fg-2); min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.nav__right { display: inline-flex; align-items: center; gap: 1.1rem; }
.nav__progress-num { font-family: var(--font-mono); font-weight: 500; letter-spacing: .05em; color: var(--secondary); font-variant-numeric: tabular-nums; }
.nav__theme { color: var(--fg-2); transition: color 300ms var(--ease); }
.nav__theme:hover { color: var(--secondary); }
.nav__theme .material-symbols-outlined { font-size: 18px !important; }
@media (max-width: 719px) {
  .nav__back-label, .nav__breadcrumb, .nav__breadcrumb + .nav__sep { display: none; }
  .nav__back-icon { font-size: 18px !important; }
}

.scroll-line {
  position: fixed; top: 0; left: var(--rail); right: 0; height: 2px; z-index: 61;
  background: var(--secondary); transform-origin: 0 0; transform: scaleX(0);
}

/* ── Logbook rail (≥1100px) ──────────────────────────────────────── */
.rail { display: none; }
@media (min-width: 1100px) {
  .rail {
    position: fixed; top: 0; bottom: 0; left: 0; width: var(--rail); z-index: 62;
    display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
    padding: 1.4rem 0 1.5rem;
    background: var(--scrim);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid var(--hairline);
    font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .14em;
    text-transform: uppercase; color: var(--fg-muted);
  }
  .rail > span:not(.rail__bar) { writing-mode: vertical-rl; transform: rotate(180deg); white-space: nowrap; }
  .rail__entry { color: var(--secondary); order: 0; }
  .rail__label { color: var(--on-surface); order: 1; }
  .rail__bar { order: 2; flex: 1; width: 1px; background: var(--hairline); position: relative; min-height: 3rem; }
  .rail__fill { position: absolute; inset: 0; background: var(--secondary); transform-origin: 0 0; transform: scaleY(0); }
  .rail__time { order: 3; color: var(--fg-2); }
  .rail__coord { order: 4; color: var(--secondary); }
}

/* ── Reveal primitives ───────────────────────────────────────────── */
html.js:not(.rm) [data-reveal] {
  opacity: 0; transform: translate3d(0, 28px, 0);
  transition: opacity 900ms var(--ease), transform 1100ms var(--ease);
  transition-delay: calc(var(--d, 0) * 70ms);
}
html.js:not(.rm) [data-reveal].is-in { opacity: 1; transform: none; }

html.js:not(.rm) [data-scrub] .w { opacity: .14; transition: opacity 350ms ease; }
html.js:not(.rm) [data-scrub] .w.on { opacity: 1; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero { position: relative; height: 190vh; --p: 0; }
.hero__stage { position: sticky; top: 0; height: 100vh; height: 100svh; min-height: 560px; overflow: hidden; background: #111; }
.hero__media { position: absolute; inset: 0; transform: scale(calc(1 + var(--p) * .16)); transform-origin: 50% 40%; will-change: transform; }
.hero__photo { width: 100%; height: 100%; object-fit: cover; }
html.js:not(.rm) .hero__photo {
  filter: grayscale(1) brightness(1.9) contrast(.45) blur(6px);
  transform: scale(1.06);
  transition: filter 2600ms var(--ease-in-out), transform 3200ms var(--ease);
}
html.js.is-ready .hero__photo { filter: none; transform: none; }
.hero__veil {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 38%, rgba(0,0,0,.08) 55%, rgba(0,0,0,.7) 100%);
  opacity: calc(.85 + var(--p) * .6);
}
.hero__overlay {
  position: relative; z-index: 2; height: 100%;
  max-width: var(--max-width); margin: 0 auto;
  padding: calc(var(--nav-h) + 2.5rem) var(--gutter) 2.5rem;
  display: grid; grid-template-rows: auto 1fr auto; gap: 1.5rem; color: #fff;
  opacity: calc(1 - var(--p) * 1.3);
}
.hero__meta-top { display: flex; flex-wrap: wrap; gap: 1.25rem 2.5rem; }
.meta-pair { display: flex; flex-direction: column; gap: .35rem; }
.meta-pair .label { font-family: var(--font-headline); font-weight: 700; font-size: 10px; letter-spacing: var(--track-label-xl); text-transform: uppercase; color: var(--secondary); }
.meta-pair .value { font-family: var(--font-mono); font-weight: 500; font-size: clamp(.8rem, 1vw, .95rem); letter-spacing: .06em; text-transform: uppercase; }
.hero__title { align-self: end; margin: 0; display: flex; flex-direction: column; line-height: .86; font-weight: 400; }
/* The mask clips the rise-in; pad it so tall italic caps keep their tops and the
   leaning P keeps its foot serif (the P in Puerto).
   The type size lives here so the em padding scales with the letters. */
.hero__title-1 { display: block; overflow: hidden; font-size: clamp(4.5rem, 14vw, 17rem); padding: .16em .06em .12em .08em; margin: -.16em 0 -.12em -.08em; transform: translate3d(calc(var(--p) * -14vw), 0, 0); }
.hero__line {
  display: inline-block; font-family: var(--font-body); font-style: italic;
  font-size: 1em; letter-spacing: -0.04em; color: var(--secondary);
}
.hero__title-2 {
  display: block; overflow: hidden;
  font-family: var(--font-headline); font-weight: 900; font-size: clamp(4.4rem, 15vw, 17rem);
  letter-spacing: -0.05em; line-height: .84; text-transform: uppercase; color: #fff; white-space: nowrap;
  transform: translate3d(calc(var(--p) * 12vw), 0, 0);
}
.hero__title-2 .ch { display: inline-block; }
/* PENINSULA sets ~5.4em wide in Inter 900: cap it to the content column. */
body[data-dispatch="upper-peninsula"] .hero__title-2 { font-size: min(15vw, 17rem, calc((100vw - var(--rail) - 2 * var(--gutter)) / 5.55)); }
html.js:not(.rm) .hero__line { transform: translate3d(0, 108%, 0); transition: transform 1300ms var(--ease) 350ms; }
html.js:not(.rm) .hero__title-2 .ch { transform: translate3d(0, 105%, 0); transition: transform 1100ms var(--ease); transition-delay: calc(650ms + var(--i) * 55ms); }
html.js.is-ready .hero__line, html.js.is-ready .hero__title-2 .ch { transform: none; }
.hero__meta-bot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: .75rem 1.25rem; }
.hero__role, .hero__coords {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-headline); font-weight: 700; font-size: 10px;
  letter-spacing: var(--track-label); text-transform: uppercase; color: var(--secondary);
}
.hero__coords { font-family: var(--font-mono); font-weight: 500; letter-spacing: .08em; }
.hero__cue {
  position: absolute; left: 50%; bottom: 1.25rem; z-index: 3; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .3em; color: rgba(255,255,255,.7);
  opacity: calc(1 - var(--p) * 6);
}
.hero__cue-line { width: 1px; height: 36px; background: rgba(255,255,255,.25); position: relative; overflow: hidden; }
.hero__cue-line::after { content: ''; position: absolute; left: 0; top: 0; width: 1px; height: 12px; background: var(--secondary); animation: cue 1.8s var(--ease-in-out) infinite; }
@keyframes cue { from { transform: translateY(-12px); } to { transform: translateY(36px); } }
html.dark .hero__title-2, .hero__title-2 { color: #fff; }

/* ── Crawl ───────────────────────────────────────────────────────── */
.crawl { overflow: hidden; padding: 1rem 0; background: var(--surface); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
html.dark .crawl { background: var(--surface-low); }
.crawl__track {
  display: inline-flex; align-items: center; gap: 3rem; white-space: nowrap;
  font-family: var(--font-headline); font-weight: 800; font-size: clamp(1.1rem, 2.4vw, 2rem);
  letter-spacing: var(--track-display); text-transform: uppercase; will-change: transform;
}
.crawl__sq { display: inline-block; width: 8px; height: 8px; background: var(--secondary); flex-shrink: 0; }

/* ── Index / Discovery Data with route ───────────────────────────── */
.index { padding: 6rem 0 5rem; }
@media (min-width: 900px) { .index { padding: 9rem 0 7rem; } }
.index__wrap { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 900px) {
  .index__wrap { grid-template-columns: minmax(260px, 4fr) 8fr; column-gap: 4rem; row-gap: 3.5rem; }
  .index__head { grid-column: 1 / -1; }
}
.index__head { display: flex; flex-direction: column; gap: 1.5rem; }
.index__h { font-size: clamp(2.5rem, 6vw, 5.5rem); line-height: .95; }

.route { margin: 0; align-self: start; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 900px) { .route { position: sticky; top: calc(var(--nav-h) + 2rem); } }
.route__head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--hairline); padding-bottom: .75rem; }
.route__lat { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .08em; color: var(--secondary); font-variant-numeric: tabular-nums; }
.route__stops { display: none; }
html:not(.js) .route__stops { display: block; font-family: var(--font-headline); font-size: 10px; letter-spacing: var(--track-label); }
.route svg { width: 100%; height: auto; max-height: 70vh; overflow: visible; }
.route__grat { stroke: var(--hairline); stroke-width: 1; }
.route__grat-label { font-family: var(--font-mono); font-size: 9px; fill: var(--fg-ghost); letter-spacing: .08em; }
.route__border { stroke: var(--fg-muted); stroke-width: 1; stroke-dasharray: 2 5; }
.route__border-label { font-family: var(--font-mono); font-size: 9px; fill: var(--fg-muted); letter-spacing: .12em; }
.route__ghost { fill: none; stroke: var(--hairline); stroke-width: 1.5; }
.route__path { fill: none; stroke: var(--secondary); stroke-width: 2; stroke-linejoin: miter; }
.route__stop rect { fill: var(--surface-lowest); stroke: var(--fg-muted); stroke-width: 1.5; transition: fill 400ms, stroke 400ms; }
.route__stop text { font-family: var(--font-headline); font-weight: 700; font-size: 10px; letter-spacing: .2em; fill: var(--fg-muted); transition: fill 400ms; }
.route__stop .route__stop-coord { font-family: var(--font-mono); font-weight: 500; font-size: 9px; letter-spacing: .06em; fill: var(--fg-ghost); }
.route__stop.is-on rect { fill: var(--secondary); stroke: var(--secondary); }
.route__stop.is-on text { fill: var(--on-surface); }
.route__stop.is-on .route__stop-coord { fill: var(--secondary); }
.route__foot { margin: 0; font-family: var(--font-body); font-style: italic; color: var(--fg-2); }

.index__grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--hairline); align-self: start; }
@media (min-width: 1300px) { .index__grid { grid-template-columns: repeat(4, 1fr); } }
.idx-cell {
  position: relative; display: flex; flex-direction: column; gap: .9rem;
  min-height: 220px; padding: 1.75rem 1.25rem 2rem;
  border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  transition: background 400ms var(--ease);
}
.idx-cell::before { content: ''; position: absolute; left: 0; top: -1px; height: 2px; width: 100%; background: var(--secondary); transform: scaleX(0); transform-origin: 0 0; transition: transform 600ms var(--ease); }
.idx-cell:hover { background: var(--surface-low); }
.idx-cell:hover::before { transform: scaleX(1); }
.index__grid > .idx-cell:nth-child(2n) { border-right: 0; }
@media (min-width: 1300px) {
  .index__grid > .idx-cell:nth-child(2n) { border-right: 1px solid var(--hairline); }
  .index__grid > .idx-cell:nth-child(4n) { border-right: 0; }
}
.idx-val {
  margin-top: auto;
  font-family: var(--font-headline); font-weight: 800; font-size: clamp(1.4rem, 2.1vw, 2.1rem);
  line-height: 1.05; letter-spacing: var(--track-display); text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
.idx-val em { font-family: var(--font-body); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -0.02em; }
/* Keep case-sensitive glyphs (α) from uppercasing into lookalikes. */
.nocase { text-transform: none; }
.idx-unit { font-family: var(--font-headline); font-weight: 700; font-size: .5em; color: var(--fg-muted); margin-left: .35em; letter-spacing: var(--track-label); }
.idx-caption { font-family: var(--font-body); font-style: italic; font-size: .95rem; color: var(--fg-2); }

/* ── Lede ────────────────────────────────────────────────────────── */
.lede { padding: 5rem 0 6rem; background: var(--surface-low); }
@media (min-width: 900px) { .lede { padding: 9rem 0 11rem; } }
.lede__wrap { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .lede__wrap { grid-template-columns: 3fr 8fr; gap: 3rem; } .lede__body, .lede__sig { grid-column: 2; } }
.lede__label { padding-top: .75rem; align-self: start; }
.lede__body { margin: 0; font-size: clamp(1.6rem, 3.3vw, 3.1rem); line-height: 1.22; letter-spacing: -0.01em; max-width: 24ch; }
.lede__body em { font-style: italic; color: var(--secondary); }
.drop { font-family: var(--font-headline); font-weight: 900; font-size: 2.4em; line-height: .9; float: left; padding: .08em .1em 0 0; color: var(--secondary); }
.lede__sig { margin: 1rem 0 0; font-size: .95rem; color: var(--fg-muted); }

/* ── Plate: full-bleed with aperture opening ─────────────────────── */
.plate { position: relative; height: 100vh; height: 100svh; min-height: 540px; overflow: hidden; background: var(--surface-lowest); --a: 0; --y: 0; }
.plate__frame {
  position: absolute; inset: 0; overflow: hidden; background: #111;
  clip-path: inset(calc(var(--a) * 14%) calc(var(--a) * 22%) calc(var(--a) * 14%) calc(var(--a) * 22%));
}
.plate__frame img, .plate__frame video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; cursor: zoom-in;
  transform: translate3d(0, calc(var(--y) * 1px), 0) scale(calc(1.14 + var(--a) * .12));
}
.plate__frame video { cursor: default; }
.plate__meta {
  position: absolute; top: calc(var(--nav-h) + 1rem); left: var(--gutter); z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-weight: 500; font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: #fff; background: rgba(0,0,0,.4); padding: .5rem .75rem;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: calc(1 - var(--a) * 2);
}
.plate__caption {
  position: absolute; right: var(--gutter); bottom: 2rem; left: var(--gutter); z-index: 2;
  max-width: 28rem; margin-left: auto; padding: 1.25rem;
  background: rgba(255,255,255,.96); color: #111;
  transform: translate3d(0, calc(var(--a) * 60px), 0); opacity: calc(1 - var(--a) * 2.2);
}
.plate__caption p { margin: .5rem 0 0; font-style: italic; font-size: 1.1rem; line-height: 1.5; }

/* ── Contact sheet (film strip) ──────────────────────────────────── */
.strip { position: relative; padding-top: 6rem; background: var(--surface-lowest); }
.strip__head { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.strip__h { font-size: clamp(2rem, 5vw, 4.5rem); line-height: 1; }
.strip__hud { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .14em; color: var(--fg-muted); }
.strip__count { color: var(--secondary); font-variant-numeric: tabular-nums; }
.strip__scroller { position: sticky; top: 0; height: 100vh; height: 100svh; display: flex; align-items: center; overflow: hidden; }
.strip__film { width: 100%; background: var(--film); padding: 0; cursor: grab; user-select: none; -webkit-user-select: none; touch-action: pan-y; }
.strip__film.is-drag { cursor: grabbing; }
.strip__edge {
  position: relative; height: 34px; overflow: hidden;
  background-image: linear-gradient(90deg, var(--surface-lowest) 0 14px, transparent 14px);
  background-size: 30px 12px; background-repeat: repeat-x; background-position: 8px 11px;
}
html.dark .strip__edge { background-image: linear-gradient(90deg, #2a2724 0 14px, transparent 14px); }
.strip__edge span {
  position: absolute; left: 12vw; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .3em; color: var(--secondary); white-space: nowrap;
  background: var(--film); padding: 0 .75rem;
}
.strip__edge--bot span { left: 30vw; }
.strip__track { display: flex; gap: 10px; padding: 0 calc(50% - min(22vh, 35vw)); will-change: transform; }
.frame { flex: 0 0 auto; width: min(44vh, 70vw); height: min(60vh, 96vw); margin: 0; position: relative; overflow: hidden; background: #000; }
.frame img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: filter 700ms var(--ease), transform 900ms var(--ease); }
html.js:not(.rm) .frame img { filter: grayscale(.9) brightness(.55) contrast(1.1); }
html.js:not(.rm) .frame.is-center img { filter: none; transform: scale(1.03); }
.frame__num, .frame figcaption {
  position: absolute; z-index: 2; font-family: var(--font-mono); font-weight: 500; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; color: #efe7d8; background: rgba(0,0,0,.55); padding: 4px 6px;
}
.frame__num { top: 8px; left: 8px; color: var(--secondary); }
.frame figcaption { bottom: 8px; left: 8px; right: 8px; width: max-content; max-width: calc(100% - 16px); transition: opacity 500ms; }
html.js:not(.rm) .frame figcaption { opacity: 0; }
html.js:not(.rm) .frame.is-center figcaption { opacity: 1; }

/* ── Pull quote ──────────────────────────────────────────────────── */
.quote { padding: 9rem 0; background: var(--surface); }
html.dark .quote { background: var(--surface-low); }
@media (min-width: 900px) { .quote { padding: 16rem 0; } }
.quote__body { margin: 0; font-size: clamp(2.2rem, 6vw, 6rem); line-height: 1.05; letter-spacing: -0.02em; max-width: 20ch; }
.quote__body .hl { color: var(--secondary); }

/* ── Reel (dispatch video or tape still) ─────────────────────────── */
.reel { position: relative; height: 210vh; background: #000; --p: 0; }
.reel__stage { position: sticky; top: 0; height: 100vh; height: 100svh; display: grid; place-items: center; overflow: hidden; }
.reel__frame {
  position: relative; overflow: hidden; background: #111; cursor: pointer;
  width: calc(100% - 2 * var(--gutter)); height: calc(100% - 2 * var(--nav-h));
  transform: scale(calc(.58 + var(--p) * .42));
  transition: transform 80ms linear;
}
.reel__video, .reel__still, .reel__still img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel__video { display: none; }
.reel.has-video .reel__video { display: block; }
.reel.has-video .reel__still { display: none; }
.reel__still img { filter: saturate(.85) contrast(1.05); animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.06) translate3d(-2%, 0, 0); } to { transform: scale(1.14) translate3d(2%, -1.5%, 0); } }
.reel__scan {
  position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0) 0 2px, rgba(0,0,0,.08) 2px 3px),
    radial-gradient(ellipse at center, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,.3) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,.6) 100%);
}
.reel__tape {
  position: absolute; top: 1.25rem; left: 1.25rem; display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-weight: 500; font-size: 11px; letter-spacing: .1em; color: #fff;
  background: rgba(0,0,0,.4); padding: .45rem .7rem; font-variant-numeric: tabular-nums;
}
.reel__rec { display: inline-flex; align-items: center; gap: .4rem; color: #ff3b3b; }
.reel__rec::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #ff3b3b; animation: rec 1.4s steps(2, end) infinite; }
@keyframes rec { 50% { opacity: .15; } }
.reel__tape-sep { color: rgba(255,255,255,.4); }
.reel__corners i { position: absolute; width: 22px; height: 22px; border: 0 solid rgba(255,255,255,.75); }
.reel__corners i:nth-child(1) { top: 12px; right: 12px; border-top-width: 1px; border-right-width: 1px; }
.reel__corners i:nth-child(2) { bottom: 12px; right: 12px; border-bottom-width: 1px; border-right-width: 1px; }
.reel__corners i:nth-child(3) { bottom: 12px; left: 12px; border-bottom-width: 1px; border-left-width: 1px; }
.reel__corners i:nth-child(4) { top: 12px; left: 12px; border-top-width: 1px; border-left-width: 1px; opacity: 0; }
.reel__ui { position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem; display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; color: #fff; opacity: calc(var(--p) * 2 - .6); }
.reel__left { display: flex; flex-direction: column; gap: .75rem; max-width: 32rem; }
.reel__title { margin: 0; font-size: clamp(1.25rem, 2.2vw, 2rem); line-height: 1.25; }
.reel__sound {
  display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 1.1rem; flex-shrink: 0;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff;
  font-family: var(--font-headline); font-weight: 700; font-size: 10px; letter-spacing: var(--track-label); text-transform: uppercase;
  backdrop-filter: blur(12px); transition: background 300ms var(--ease), border-color 300ms var(--ease);
}
.reel__sound:hover { background: var(--secondary); border-color: var(--secondary); }
.reel__sound .material-symbols-outlined { font-size: 16px !important; }

/* ── Two-up ──────────────────────────────────────────────────────── */
.twoup { padding: 7rem 0 9rem; background: var(--surface-lowest); }
@media (min-width: 900px) { .twoup { padding: 11rem 0 14rem; } }
.twoup__wrap { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 900px) { .twoup__wrap { grid-template-columns: 7fr 5fr; gap: 3rem; align-items: end; } .twoup__b { margin-bottom: -5rem; } }
.twoup figure { margin: 0; }
.twoup__img { overflow: hidden; will-change: transform; }
.twoup__img img { width: 100%; object-fit: cover; cursor: zoom-in; transition: transform 1200ms var(--ease); }
.twoup__a img { aspect-ratio: 5 / 4; }
.twoup__b img { aspect-ratio: 4 / 5; }
.twoup figure:hover img { transform: scale(1.03); }
html.js:not(.rm) [data-reveal="clip"] { opacity: 1; transform: none; }
html.js:not(.rm) [data-reveal="clip"] .twoup__img { clip-path: inset(100% 0 0 0); transition: clip-path 1400ms var(--ease-in-out); }
html.js:not(.rm) [data-reveal="clip"].is-in .twoup__img { clip-path: inset(0 0 0 0); }
html.js:not(.rm) [data-reveal="clip"] figcaption { opacity: 0; transition: opacity 800ms ease 700ms; }
html.js:not(.rm) [data-reveal="clip"].is-in figcaption { opacity: 1; }
.twoup figcaption { display: flex; flex-direction: column; gap: .4rem; margin-top: .9rem; font-style: italic; color: var(--fg-2); }
.twoup figcaption .type-label { font-style: normal; }

/* ── Recollections ───────────────────────────────────────────────── */
.recollect { position: relative; padding: 6rem 0; background: var(--surface-low); overflow: hidden; }
@media (min-width: 900px) { .recollect { padding: 10rem 0; } }
.rec-row {
  position: relative; display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  padding: 2.5rem 0; border-top: 1px solid var(--hairline);
}
.rec-row:last-child { border-bottom: 1px solid var(--hairline); }
@media (min-width: 900px) { .rec-row { grid-template-columns: 3fr 9fr; gap: 3rem; padding: 4rem 0; } }
.rec-row__num {
  position: absolute; right: 0; top: 50%; z-index: 0; pointer-events: none;
  font-family: var(--font-headline); font-weight: 900; font-size: clamp(7rem, 16vw, 15rem); line-height: 1;
  letter-spacing: -0.06em; color: transparent; -webkit-text-stroke: 1px var(--hairline);
  transform: translate3d(8%, -50%, 0); transition: transform 1400ms var(--ease), -webkit-text-stroke-color 600ms;
}
.rec-row.is-in .rec-row__num { transform: translate3d(0, -50%, 0); }
.rec-row:hover .rec-row__num { -webkit-text-stroke-color: var(--secondary); }
.rec-row__label, .rec-row__body { position: relative; z-index: 1; }
.rec-row__label { display: flex; flex-direction: column; gap: .5rem; }
.rec-row__coord { font-family: var(--font-mono); font-weight: 500; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-muted); }
.rec-row__body { margin: 0; font-size: clamp(1.1rem, 1.6vw, 1.5rem); line-height: 1.6; max-width: 52ch; }

/* ── Return + filed stamp ────────────────────────────────────────── */
.return { padding: 6rem 0 7rem; background: var(--surface-lowest); }
@media (min-width: 900px) { .return { padding: 10rem 0 12rem; } }
.return__wrap { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .return__wrap { grid-template-columns: 3fr 9fr; gap: 3rem; } .return__body, .stamp { grid-column: 2; } }
.return__label { align-self: start; }
.return__body { margin: 0; font-size: clamp(1.5rem, 2.8vw, 2.6rem); line-height: 1.3; max-width: 32ch; }
.return__body em { color: var(--secondary); font-style: italic; }
.return__body .hl { font-style: italic; border-bottom: 2px solid var(--secondary); }
.stamp {
  justify-self: start; margin-top: 1.5rem;
  display: inline-grid; gap: .3rem; padding: .9rem 1.2rem 1rem;
  border: 2px solid var(--secondary); color: var(--secondary);
  font-family: var(--font-mono); font-weight: 500; font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  transform: rotate(-3deg);
}
.stamp__top { font-family: var(--font-headline); font-weight: 900; font-size: 1.6rem; letter-spacing: .12em; line-height: 1; }
html.js:not(.rm) .stamp[data-reveal] { opacity: 0; transform: rotate(-3deg) scale(2.2); transition: none; }
html.js:not(.rm) .stamp[data-reveal].is-in { animation: stamp 520ms cubic-bezier(.3, 1.6, .5, 1) forwards; }
@keyframes stamp {
  0% { opacity: 0; transform: rotate(-9deg) scale(2.2); }
  60% { opacity: 1; transform: rotate(-2deg) scale(.96); }
  100% { opacity: 1; transform: rotate(-3deg) scale(1); }
}

/* ── Next entry ──────────────────────────────────────────────────── */
.next { padding: 6rem 0; background: #111; color: #fff; }
@media (min-width: 900px) { .next { padding: 10rem 0; } }
.next__wrap { display: grid; gap: 3rem; }
.next__meta { display: flex; justify-content: space-between; font-family: var(--font-headline); font-weight: 700; font-size: 10px; letter-spacing: var(--track-label); text-transform: uppercase; }
.next__coord { font-family: var(--font-mono); font-weight: 500; color: var(--secondary); }
.next__link { display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 2rem; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); position: relative; overflow: hidden; }
.next__link::before { content: ''; position: absolute; inset: 0; background: var(--secondary); transform: scaleY(0); transform-origin: 50% 100%; transition: transform 600ms var(--ease); z-index: 0; }
.next__link:hover::before { transform: scaleY(1); }
.next__link > * { position: relative; z-index: 1; }
.next__idx { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; color: var(--secondary); transition: color 300ms; }
.next__link:hover .next__idx { color: #fff; }
.next__h { margin: 0; font-family: var(--font-headline); font-weight: 900; font-size: clamp(2.25rem, 8vw, 7rem); line-height: .95; letter-spacing: var(--track-display); text-transform: uppercase; }
.next__h-inner { display: inline-block; transition: transform 600ms var(--ease); }
.next__link:hover .next__h-inner { transform: translateX(1.5rem); }
.next__h em { font-family: var(--font-body); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -0.02em; color: var(--secondary); transition: color 300ms; }
.next__link:hover .next__h em { color: #111; }
.next__arrow { font-size: 40px !important; width: auto; color: rgba(255,255,255,.4); transition: transform 500ms var(--ease), color 300ms; }
.next__link:hover .next__arrow { transform: rotate(45deg); color: #fff; }
.next__teaser { margin: -1rem 0 0; font-size: 1.05rem; line-height: 1.55; color: rgba(255,255,255,.7); max-width: 48ch; }
.next__back { display: inline-flex; align-items: center; gap: .6rem; padding: 1rem 1.5rem; justify-self: start; background: rgba(255,255,255,.08); font-family: var(--font-headline); font-weight: 700; font-size: 10px; letter-spacing: var(--track-label); text-transform: uppercase; transition: background 300ms var(--ease); }
.next__back:hover { background: var(--secondary); }
.next__back .material-symbols-outlined { font-size: 14px !important; }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer { background: var(--surface-low); padding: 5rem var(--gutter) 3rem; }
.footer__inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .footer__inner { grid-template-columns: 1.5fr auto auto 1fr; gap: 3rem; } }
.footer__logo { font-family: var(--font-headline); font-weight: 800; font-size: 1.25rem; letter-spacing: var(--track-display); text-transform: uppercase; }
.footer__tag { font-style: italic; color: var(--fg-2); margin: .75rem 0 0; max-width: 24ch; }
.footer__label { display: block; margin-bottom: 1.25rem; font-family: var(--font-headline); font-weight: 700; font-size: 10px; letter-spacing: var(--track-label-xl); text-transform: uppercase; color: var(--secondary); }
.footer__nav { display: flex; flex-direction: column; gap: .75rem; }
.footer__connect { display: grid; grid-template-columns: repeat(2, auto); gap: .75rem 2.5rem; justify-content: start; }
.footer__nav a, .footer__connect a { font-style: italic; color: var(--fg-2); transition: color 300ms var(--ease); }
.footer__nav a:hover, .footer__connect a:hover { color: var(--secondary); text-decoration: underline; text-underline-offset: 4px; }
@media (min-width: 900px) { .footer__right { text-align: right; } }
.footer__copyright { margin: 0; font-family: var(--font-headline); font-weight: 700; font-size: 10px; letter-spacing: var(--track-label); text-transform: uppercase; color: var(--fg-muted); }
.footer__sig { margin: .5rem 0 0; font-style: italic; color: var(--fg-muted); }

/* ── Lightbox ────────────────────────────────────────────────────── */
.lightbox {
  width: 100vw; height: 100vh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0;
  background: rgba(12, 12, 12, .97); color: #fff; overflow: hidden;
}
.lightbox::backdrop { background: transparent; }
.lightbox[open] { display: grid; grid-template-rows: 1fr auto; animation: lbIn 400ms var(--ease); }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox__stage { display: grid; place-items: center; padding: 4rem 4.5rem 1rem; min-height: 0; }
.lightbox__stage img { max-width: 100%; max-height: 100%; object-fit: contain; animation: lbImg 500ms var(--ease); }
@keyframes lbImg { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
.lightbox__bar { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 1.5rem 1.5rem; font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.lightbox__label { color: #efe7d8; }
.lightbox__count { color: var(--secondary); font-variant-numeric: tabular-nums; }
.lightbox__btn { position: absolute; width: 48px; height: 48px; display: grid; place-items: center; color: rgba(255,255,255,.7); transition: color 300ms, background 300ms; }
.lightbox__btn:hover { color: #fff; background: var(--secondary); }
.lightbox__prev { left: .75rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: .75rem; top: 50%; transform: translateY(-50%); }
.lightbox__close { right: .75rem; top: .75rem; }
@media (max-width: 719px) {
  .lightbox__stage { padding: 3.5rem .5rem .5rem; }
  .lightbox__prev, .lightbox__next { top: auto; bottom: 3.25rem; transform: none; }
}

/* ── Dispatch index (/dispatch/) ─────────────────────────────────── */
.dx-hero { padding: calc(var(--nav-h) + 6rem) 0 6rem; }
@media (min-width: 900px) { .dx-hero { padding: calc(var(--nav-h) + 9rem) 0 10rem; } }
.dx-hero__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: end; }
.dx-hero__quote { display: flex; flex-direction: column; gap: 1.5rem; }
.dx-hero__copy { margin: 0; font-style: italic; font-size: clamp(1.6rem, 2.8vw, 3rem); line-height: 1.4; color: var(--fg-2); max-width: 16ch; }
.dx-hero__title {
  margin: 0; overflow: hidden; white-space: nowrap;
  order: -1;
  /* "DISPATCHES" sets about 6.2em wide in Inter 900: size it to span the content column. */
  font-family: var(--font-headline); font-weight: 900;
  font-size: min(calc((100vw - var(--rail) - 2 * var(--gutter)) / 6.35), 17rem);
  line-height: .85; letter-spacing: var(--track-display); text-transform: uppercase;
}
.dx-hero__title .ch { display: inline-block; }
html.js:not(.rm) .dx-hero__title .ch { transform: translate3d(0, 105%, 0); transition: transform 1100ms var(--ease); transition-delay: calc(200ms + var(--i) * 45ms); }
html.js.is-ready .dx-hero__title .ch { transform: none; }

.dx-section { padding: 0 0 8rem; }
.dx-section--soon { padding: 6rem 0; background: var(--surface-low); }
.dx-section__head { display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; margin-bottom: 2rem; }
.dx-count { font-family: var(--font-mono); font-weight: 500; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-muted); }
.dx-list { border-top: 1px solid var(--hairline); }
.dx-item {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: .75rem 2rem;
  padding: clamp(2.25rem, 5vw, 4rem) 1rem; border-bottom: 1px solid var(--hairline);
}
.dx-item > :not(.dx-item__bg) { position: relative; z-index: 1; }
.dx-item__bg { position: absolute; inset: 0; z-index: 0; opacity: 0; transition: opacity 600ms var(--ease); }
.dx-item__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 1600ms var(--ease); filter: grayscale(.3); }
.dx-item:hover .dx-item__bg, .dx-item:focus-visible .dx-item__bg { opacity: .22; }
.dx-item:hover .dx-item__bg img { transform: scale(1); }
.dx-item__num { align-self: start; padding-top: .6rem; font-family: var(--font-mono); font-weight: 500; font-size: 11px; letter-spacing: .1em; color: var(--secondary); }
.dx-item__title {
  font-style: italic; font-size: clamp(2.4rem, 7vw, 7.5rem); line-height: 1; letter-spacing: -0.02em;
  transition: transform 600ms var(--ease), color 300ms;
}
.dx-item__title em { color: var(--secondary); }
.dx-item:hover .dx-item__title { transform: translateX(1.5rem); }
.dx-item__meta {
  grid-column: 2; display: flex; flex-wrap: wrap; gap: .4rem 1.5rem;
  font-family: var(--font-mono); font-weight: 500; font-size: 10px; letter-spacing: .12em; color: var(--fg-muted);
  transition: transform 600ms var(--ease);
}
.dx-item:hover .dx-item__meta { transform: translateX(1.5rem); }
.dx-item__arrow { grid-column: 3; grid-row: 1 / span 2; align-self: center; font-size: 40px !important; width: auto; color: var(--fg-ghost); transition: transform 500ms var(--ease), color 300ms; }
.dx-item:hover .dx-item__arrow { transform: rotate(45deg); color: var(--secondary); }
.dx-soon { display: grid; grid-template-columns: 1fr; gap: 2rem 4rem; }
@media (min-width: 720px) { .dx-soon { grid-template-columns: 1fr 1fr; } }
.dx-soon__item { display: flex; flex-direction: column; gap: .75rem; padding-bottom: 2rem; border-bottom: 1px solid var(--hairline); }
.dx-soon__title { font-style: italic; font-size: clamp(2.4rem, 5vw, 5rem); color: var(--fg-2); }
@media (max-width: 719px) {
  .dx-item { grid-template-columns: 1fr auto; padding: 2rem .25rem; }
  .dx-item__num { grid-column: 1 / -1; padding: 0; }
  .dx-item__title, .dx-item__meta { grid-column: 1; }
  .dx-item__arrow { grid-column: 2; grid-row: 2 / span 2; font-size: 28px !important; }
}

/* ── Small screens: no pinning, native swipe strip ───────────────── */
@media (max-width: 719px) {
  .hero { height: 150vh; }
  .hero__meta-top { gap: 1rem 1.5rem; }
  .hero__title-1 { font-size: 21vw; }
  .hero__title-2 { font-size: 20vw; }
  .hero__meta-bot { flex-direction: column; align-items: flex-start; }
  .hero__cue { display: none; }
  .crawl { padding: .6rem 0; }
  .crawl__track { gap: 1.5rem; font-size: 1rem; }
  .crawl__sq { width: 5px; height: 5px; }
  .idx-cell { min-height: 170px; padding: 1.25rem 1rem 1.5rem; }
  .plate { height: 78svh; min-height: 440px; }
  .plate__caption { padding: 1rem; bottom: 1rem; }
  .plate__caption p { font-size: 1rem; }
  .strip { padding-top: 3.5rem; height: auto !important; }
  .strip__scroller { position: relative; height: auto; }
  .strip__film { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; touch-action: auto; cursor: auto; }
  .strip__track { transform: none !important; width: max-content; }
  .strip__edge { width: 100%; }
  .frame { scroll-snap-align: center; }
  .quote { padding: 5rem 0; }
  .reel { height: auto; }
  .reel__stage { position: relative; height: auto; padding: 0; }
  .reel__frame { width: 100%; height: 82svh; transform: none; }
  .reel__ui { opacity: 1; padding: 1.25rem; flex-direction: column; align-items: flex-start; }
  .reel__tape { font-size: 9px; left: .75rem; top: .75rem; flex-wrap: wrap; }
  .reel__tape > span:nth-child(n+3) { display: none; }
  .twoup__b { margin-bottom: 0; }
  .rec-row { padding: 2rem 0; }
  .rec-row__num { font-size: 6rem; top: 1.5rem; transform: none !important; }
  .next__link { grid-template-columns: 1fr auto; gap: 1rem; }
  .next__idx { grid-column: 1 / -1; }
  .next__arrow { font-size: 28px !important; }
  .footer__connect { grid-template-columns: 1fr 1fr; gap: .5rem 1.5rem; }
}

/* ── Reduced motion: everything at rest ──────────────────────────── */
html.rm .grain, html.rm .hero__cue-line::after, html.rm .reel__still img, html.rm .reel__rec::before { animation: none; }
html.rm .hero { height: 100vh; }
html.rm .hero__stage { position: relative; }
html.rm .strip__scroller { position: relative; height: auto; }
html.rm .strip__film { overflow-x: auto; }
html.rm .strip__track { transform: none !important; width: max-content; }
html.rm .reel { height: auto; }
html.rm .reel__stage { position: relative; height: auto; padding: var(--nav-h) 0; }
html.rm .reel__frame { transform: none; height: 80vh; }
html.rm .reel__ui { opacity: 1; }
html.rm .plate__frame { clip-path: none; }
@media (prefers-reduced-motion: reduce) { @view-transition { navigation: none; } }
