@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/playfair-display-600-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/playfair-display-500-italic-latin.woff2") format("woff2");
}

:root {
  --ink: #060708;
  --ink-2: #0b0d0f;
  --ink-3: #101315;
  --ivory: #f1ecdf;
  --brass: #c3a66a;
  --brass-bright: #e6cd92;
  --muted: #9a948a;
  --line: rgba(241, 236, 223, 0.16);
  --line-soft: rgba(241, 236, 223, 0.09);
  --gutter: clamp(20px, 5.2vw, 104px);
  --shell: min(1200px, calc(100vw - (var(--gutter) * 2)));
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* camera state, updated per frame by script.js */
  --p: 0;
  --sp: 0;
  --media-scale: 0.82;
  --media-x: 0;
  --media-y: 0;
  --media-pos: 50;
  --media-pos-y: 50;
  --vignette: 0.62;
}

* { box-sizing: border-box; }
html { background: var(--ink); scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ivory);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
::selection { color: var(--ink); background: var(--brass-bright); }
h1, h2, h3, p { overflow-wrap: break-word; }

.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  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: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--brass);
  text-decoration: none;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 2px solid var(--brass-bright); outline-offset: 4px; }

/* ---------- minimal film chrome ---------- */
.chrome {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: clamp(16px, 2.4vw, 26px) var(--gutter);
  color: var(--ivory);
  pointer-events: none;
}
.chrome > * { pointer-events: auto; }
.chrome-mark {
  justify-self: start;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(230, 205, 146, 0.6);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: rgba(6, 7, 8, 0.28);
  backdrop-filter: blur(2px);
}
.chrome-index {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 236, 223, 0.72);
}
.chrome-count { font-variant-numeric: tabular-nums; }
.chrome-slash { margin: 0 5px; color: var(--brass-bright); }
.chrome-bar { position: relative; width: clamp(64px, 12vw, 150px); height: 1px; background: rgba(241, 236, 223, 0.22); }
.chrome-bar-fill { position: absolute; inset: 0; transform: scaleX(var(--p)); transform-origin: left; background: var(--brass-bright); }
.chrome-time { color: var(--brass-bright); font-variant-numeric: tabular-nums; }
.chrome-contact {
  justify-self: end;
  position: relative;
  padding: 8px 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
}
.chrome-contact span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--brass-bright);
  transition: transform 200ms ease;
}
.chrome-contact:hover span::after, .chrome-contact:focus-visible span::after { transform: scaleX(1); transform-origin: left; }

/* ---------- film sequence ---------- */
.film {
  position: relative;
  min-height: 620svh;
  background: var(--ink);
}
.film-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: clip;
  isolation: isolate;
  background: #040506;
}

.film-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translate3d(calc(var(--media-x) * 1px), calc(var(--media-y) * 1px), 0) scale(var(--media-scale));
  transform-origin: center 42%;
  will-change: transform;
  background: #040506;
}
.film-poster, .film-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.film-poster img, .film-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: calc(var(--media-pos) * 1%) calc(var(--media-pos-y) * 1%);
}
.film-poster { opacity: 1; transition: opacity 900ms ease; }
.film-video { opacity: 0; transition: opacity 900ms ease; }
.film.is-video-ready .film-video { opacity: 1; }
.film.is-video-ready .film-poster { opacity: 0; }
.film.is-media-failed .film-video { display: none; }
.film.is-media-failed .film-poster { opacity: 1; }

.film-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: calc(0.4 + var(--vignette) * 0.6);
  background:
    radial-gradient(130% 120% at 50% 44%, transparent 34%, rgba(3, 4, 5, 0.5) 74%, rgba(3, 4, 5, 0.92) 100%),
    linear-gradient(180deg, rgba(3, 4, 5, 0.55) 0%, transparent 26%, transparent 62%, rgba(3, 4, 5, 0.78) 100%);
}

/* ---------- heads-up display ---------- */
.film-hud {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  color: rgba(241, 236, 223, 0.5);
  opacity: calc(0.4 + (1 - var(--vignette)) * 0.6);
}
.hud-tick { position: absolute; width: 16px; height: 16px; border: 0 solid rgba(230, 205, 146, 0.5); }
.hud-tick--tl { top: 84px; left: var(--gutter); border-top-width: 1px; border-left-width: 1px; }
.hud-tick--tr { top: 84px; right: var(--gutter); border-top-width: 1px; border-right-width: 1px; }
.hud-tick--bl { bottom: 64px; left: var(--gutter); border-bottom-width: 1px; border-left-width: 1px; }
.hud-tick--br { bottom: 64px; right: var(--gutter); border-bottom-width: 1px; border-right-width: 1px; }
.hud-line { position: absolute; background: rgba(241, 236, 223, 0.1); }
.hud-line--v { top: 84px; bottom: 64px; left: 50%; width: 1px; transform: translateX(calc((var(--media-pos) - 50) * 0.4px)); }
.hud-line--h { left: var(--gutter); right: var(--gutter); top: 50%; height: 1px; }
.hud-coord {
  position: absolute;
  top: 108px;
  right: var(--gutter);
  margin: 0;
  text-align: right;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.6;
  font-variant-numeric: tabular-nums;
}
.hud-label {
  position: absolute;
  bottom: 60px;
  left: var(--gutter);
  margin: 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ---------- scenes ---------- */
.film-scenes { position: absolute; inset: 0; z-index: 3; }
.scene {
  position: absolute;
  inset: 0;
  padding: clamp(96px, 13vh, 150px) var(--gutter) clamp(74px, 11vh, 120px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 520ms ease, visibility 0s linear 520ms;
}
.scene.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 620ms ease;
}
.scene::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.scene > * { position: relative; z-index: 1; }

/* reveal choreography */
.scene-kicker, .scene-role, .scene-chapter, .scene-head, .scene-copy,
.data-panel, .timeline, .readouts, .resolve-actions, .resolve-disclaimer, .resolve-name, .film-name {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity 560ms ease, transform 820ms cubic-bezier(0.2, 0.72, 0.2, 1);
}
.scene.is-active .scene-kicker, .scene.is-active .scene-role, .scene.is-active .scene-chapter,
.scene.is-active .scene-head, .scene.is-active .scene-copy, .scene.is-active .data-panel,
.scene.is-active .timeline, .scene.is-active .readouts, .scene.is-active .resolve-actions,
.scene.is-active .resolve-disclaimer, .scene.is-active .resolve-name, .scene.is-active .film-name {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.scene.is-active .scene-chapter { transition-delay: 40ms; }
.scene.is-active .scene-head, .scene.is-active .film-name { transition-delay: 110ms; }
.scene.is-active .scene-role, .scene.is-active .scene-copy, .scene.is-active .data-panel { transition-delay: 210ms; }
.scene.is-active .timeline, .scene.is-active .readouts, .scene.is-active .resolve-actions { transition-delay: 300ms; }
.scene.is-active .resolve-disclaimer { transition-delay: 380ms; }

.scene-kicker, .scene-chapter {
  margin: 0;
  color: var(--brass-bright);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.scene-copy {
  max-width: 40ch;
  margin: 22px 0 0;
  color: rgba(241, 236, 223, 0.74);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.6;
}
.scene-head {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.98;
  font-size: clamp(44px, 6vw, 96px);
}
.scene-head i { color: var(--brass-bright); font-weight: 500; }

/* scene 0 - identity (distant, centered) */
.scene--identity { display: grid; place-content: center; justify-items: center; text-align: center; }
.scene--identity::before {
  background: radial-gradient(120% 96% at 50% 47%, rgba(4, 5, 6, 0.72) 0%, rgba(4, 5, 6, 0.28) 52%, transparent 78%);
}
.film-name {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.86;
  font-size: clamp(58px, 11.5vw, 178px);
}
.film-name i { color: var(--brass-bright); font-weight: 500; }
.film-name-em { color: var(--ivory); }
.scene--identity .scene-kicker { margin-bottom: 30px; }
.scene-role {
  margin: 34px 0 0;
  color: rgba(241, 236, 223, 0.8);
  font-size: clamp(11px, 1.3vw, 14px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* scene 1 - counsel (left technical panel) */
.scene--counsel { display: grid; align-content: center; justify-items: start; }
.scene--counsel::before {
  background: linear-gradient(90deg, rgba(4, 5, 6, 0.94) 0%, rgba(4, 5, 6, 0.7) 34%, rgba(4, 5, 6, 0.12) 64%, transparent 82%);
}
.counsel-panel { width: min(500px, 100%); }
.data-panel { margin: 32px 0 0; padding: 0; border-top: 1px solid var(--line); }
.data-panel div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
}
.data-panel dt { margin: 0; color: rgba(241, 236, 223, 0.56); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.data-panel dd { margin: 0; color: var(--ivory); font-size: 14px; font-variant-numeric: tabular-nums; text-align: right; }

/* scene 2 - real estate (oversized 2011 / BROKER) */
.scene--estate::before {
  background: linear-gradient(180deg, transparent 0%, rgba(4, 5, 6, 0.5) 46%, rgba(4, 5, 6, 0.9) 100%);
}
.mega-numeral {
  position: absolute;
  left: -0.04em;
  bottom: -0.12em;
  z-index: 0;
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.8;
  font-size: clamp(11rem, 40vw, 34rem);
  color: rgba(241, 236, 223, 0.09);
  transform: translate3d(calc((var(--sp) - 0.5) * 90px), 0, 0);
  opacity: 0;
  transition: opacity 700ms ease;
}
.scene--estate.is-active .mega-numeral { opacity: 1; }
.estate-copy { position: relative; z-index: 2; max-width: 560px; margin-top: clamp(40px, 8vh, 96px); }
.estate-word { letter-spacing: 0.02em; font-family: var(--sans); font-weight: 600; font-size: clamp(52px, 8vw, 118px); }
.timeline { display: flex; gap: clamp(20px, 4vw, 56px); margin: 30px 0 0; padding: 20px 0 0; list-style: none; border-top: 1px solid var(--line); }
.timeline li { position: relative; padding-top: 16px; }
.timeline li::before { content: ""; position: absolute; top: -21px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: rgba(241, 236, 223, 0.35); }
.timeline li.is-now::before { background: var(--brass-bright); box-shadow: 0 0 0 4px rgba(230, 205, 146, 0.18); }
.timeline-year { display: block; font-family: var(--serif); font-size: 22px; color: var(--brass-bright); }
.timeline-note { display: block; margin-top: 4px; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(241, 236, 223, 0.56); }

/* scene 3 - enterprise (split industrial) */
.scene--enterprise {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
}
.scene--enterprise::before {
  background: linear-gradient(90deg, rgba(4, 5, 6, 0.9) 0%, rgba(4, 5, 6, 0.44) 44%, transparent 72%);
}
.enterprise-left { max-width: 640px; }
.sans-mega {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.9;
  font-size: clamp(46px, 8.4vw, 132px);
  white-space: nowrap;
}
.scene--enterprise .scene-copy { max-width: 34ch; }
.readouts { align-self: end; margin: 0; padding: 0; list-style: none; display: grid; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.readouts li { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 18px 20px; background: rgba(6, 7, 8, 0.45); }
.readout-val { font-family: var(--serif); font-size: clamp(22px, 3vw, 34px); color: var(--brass-bright); }
.readout-key { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(241, 236, 223, 0.6); }

/* scene 4 - community (spatial type) */
.scene--community { display: grid; align-content: center; }
.scene--community::before {
  background:
    linear-gradient(90deg, rgba(4, 5, 6, 0.96) 0%, rgba(4, 5, 6, 0.74) 58%, rgba(4, 5, 6, 0.16) 88%, transparent 100%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.82) 0%, transparent 30%, transparent 66%, rgba(4, 5, 6, 0.86) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 78px, rgba(241, 236, 223, 0.05) 78px, rgba(241, 236, 223, 0.05) 79px);
}
.spatial-word {
  position: absolute;
  left: 50%;
  z-index: 0;
  margin: 0;
  width: max-content;
  max-width: none;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.9;
  font-size: clamp(3.4rem, 12vw, 11rem);
  color: rgba(241, 236, 223, 0.1);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 700ms ease;
}
.scene--community.is-active .spatial-word { opacity: 1; }
.spatial-word--top { top: 12%; transform: translate3d(calc(-50% + (var(--sp) - 0.5) * -220px), 0, 0); }
.spatial-word--bottom { bottom: 12%; color: rgba(230, 205, 146, 0.14); transform: translate3d(calc(-50% + (var(--sp) - 0.5) * 220px), 0, 0); }
.community-copy { position: relative; z-index: 2; max-width: 460px; }
.visually-tight { font-size: clamp(38px, 5vw, 72px); }

/* scene 5 - resolve (contact) */
.scene--resolve { display: grid; place-content: center; justify-items: center; text-align: center; }
.scene--resolve::before {
  background:
    radial-gradient(120% 100% at 50% 50%, rgba(4, 5, 6, 0.68) 0%, rgba(4, 5, 6, 0.42) 46%, rgba(4, 5, 6, 0.7) 100%);
}
.resolve-inner { width: min(720px, 100%); }
.resolve-name { margin: 16px 0 0; font-size: clamp(40px, 6.6vw, 96px); line-height: 0.94; letter-spacing: -0.045em; }
.resolve-actions { margin: 40px 0 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 40px; }
.resolve-link { display: inline-flex; flex-direction: column; justify-content: center; gap: 4px; min-height: 44px; padding: 6px 4px; text-decoration: none; }
.resolve-link span { color: rgba(241, 236, 223, 0.56); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.resolve-link strong { font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2.6vw, 30px); color: var(--ivory); }
.resolve-link:hover strong, .resolve-link:focus-visible strong { color: var(--brass-bright); }
.resolve-disclaimer { max-width: 62ch; margin: 34px auto 0; color: rgba(241, 236, 223, 0.78); font-size: 12px; line-height: 1.6; text-shadow: 0 1px 14px rgba(0, 0, 0, 0.95); }

/* scroll cue */
.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(241, 236, 223, 0.5);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: calc(1 - var(--p) * 6);
}
.scroll-cue span { position: relative; width: 40px; height: 1px; overflow: hidden; background: rgba(241, 236, 223, 0.2); }
.scroll-cue span::after { content: ""; position: absolute; inset: 0; transform: translateX(-100%); background: var(--brass-bright); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 50%, 100% { transform: translateX(100%); } }

/* ---------- lower editorial (stays dark) ---------- */
.eyebrow { margin: 0; color: var(--brass-bright); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; }
.section-index { margin: 0 0 clamp(30px, 5vw, 60px); color: rgba(241, 236, 223, 0.62); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
.section-head {
  margin: 16px 0 0;
  max-width: 18ch;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  font-size: clamp(38px, 5.4vw, 74px);
}

.ledger { padding: clamp(96px, 13vw, 184px) 0 clamp(80px, 10vw, 140px); background: var(--ink); border-top: 1px solid var(--line-soft); }
.ledger-head { margin-bottom: clamp(44px, 6vw, 76px); }
.credential-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.credential-list li { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: clamp(16px, 3vw, 40px); padding: clamp(28px, 3.4vw, 42px) 0; border-bottom: 1px solid var(--line); }
.credential-index { color: var(--brass-bright); font-family: var(--serif); font-size: 16px; }
.credential-list h3 { margin: 0 0 10px; font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 3vw, 38px); }
.credential-list p { max-width: 72ch; margin: 0; color: rgba(241, 236, 223, 0.64); }

.statement { padding: clamp(80px, 11vw, 150px) 0; background: var(--ink-2); }
.statement-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(40px, 7vw, 120px); align-items: end; }
.statement-body { min-width: 0; }
.statement-body p { max-width: 60ch; margin: 0 0 22px; color: rgba(241, 236, 223, 0.66); }
.statement-body .lead { color: var(--ivory); font-family: var(--serif); font-size: clamp(24px, 3vw, 38px); line-height: 1.28; }

.contact { padding: clamp(96px, 13vw, 176px) 0; background: var(--ink); border-top: 1px solid var(--line-soft); }
.contact-head { margin-bottom: clamp(40px, 5vw, 64px); }
.contact-title { margin: 16px 0 0; font-family: var(--serif); font-weight: 600; letter-spacing: -0.045em; line-height: 0.94; font-size: clamp(52px, 8vw, 108px); }
.contact-intro { max-width: 46ch; margin: 24px 0 0; color: rgba(241, 236, 223, 0.6); }
.contact-links { margin: 0; border-top: 1px solid var(--line); }
.contact-links a { display: grid; grid-template-columns: 92px minmax(0, 1fr) 22px; gap: 16px; align-items: center; padding: clamp(20px, 2.6vw, 30px) 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-links span { color: rgba(241, 236, 223, 0.6); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.contact-links strong { min-width: 0; font-family: var(--serif); font-weight: 500; font-size: clamp(20px, 2.4vw, 32px); overflow-wrap: anywhere; }
.contact-links a:hover strong, .contact-links a:focus-visible strong { color: var(--brass-bright); }
.contact-links i { color: var(--brass-bright); font-style: normal; text-align: right; }
.disclaimer { max-width: 78ch; margin: 34px 0 0; color: rgba(241, 236, 223, 0.6); font-size: 13px; }

.site-footer { padding: 56px 0 26px; background: #040506; color: rgba(241, 236, 223, 0.55); font-size: 12px; }
.footer-grid { display: grid; grid-template-columns: 1fr 0.8fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer-grid p { margin: 0 0 4px; }
.footer-name { color: var(--ivory); font-family: var(--serif); font-size: 18px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.footer-bottom p { margin: 0; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .scene--enterprise { grid-template-columns: 1fr; align-content: center; gap: 30px; }
  .readouts { grid-auto-flow: column; grid-auto-columns: 1fr; }
  .readouts li { flex-direction: column; align-items: flex-start; gap: 6px; padding: 14px; }
  .statement-grid { grid-template-columns: 1fr; align-items: start; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --gutter: clamp(18px, 6vw, 30px); }
  .film { min-height: 580svh; }
  .chrome-time { display: none; }
  .chrome-bar { width: 64px; }
  .hud-coord { top: 96px; font-size: 8px; }
  .scene { padding: clamp(84px, 15vh, 120px) var(--gutter) clamp(84px, 12vh, 110px); }
  .scene--enterprise { align-content: center; }
  .film-name { font-size: clamp(52px, 18vw, 92px); }
  .scene-head { font-size: clamp(38px, 12vw, 64px); }
  .sans-mega { font-size: clamp(40px, 15vw, 76px); }
  .estate-word { font-size: clamp(44px, 16vw, 82px); }
  .mega-numeral { font-size: clamp(9rem, 62vw, 20rem); color: rgba(241, 236, 223, 0.1); }
  .spatial-word { font-size: clamp(2.6rem, 18vw, 6rem); }
  .data-panel dd { font-size: 13px; }
  .estate-copy { margin-top: clamp(60px, 20vh, 140px); }
  .timeline { gap: 18px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: 1; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 420px) {
  .film-name { font-size: clamp(46px, 17vw, 72px); }
  .resolve-link strong { font-size: 17px; }
  .contact-links a { grid-template-columns: 64px minmax(0, 1fr) 16px; gap: 10px; }
}

/* ---------- Save-Data static fallback (resolved, no video) ---------- */
.film.is-static .film-stage { position: relative; height: 100svh; }
.film.is-static .film-video { display: none !important; }
.film.is-static .film-media { transform: scale(1.02); }
.film.is-static .scroll-cue { display: none; }
.film.is-static .scene { transition: none; }
.film.is-static .scene:not(.scene--resolve) { display: none; }
.film.is-static .scene--resolve { opacity: 1; visibility: visible; pointer-events: auto; }
.film.is-static .scene--resolve .scene-chapter,
.film.is-static .scene--resolve .resolve-name,
.film.is-static .scene--resolve .resolve-actions,
.film.is-static .scene--resolve .resolve-disclaimer { opacity: 1; transform: none; }

/* ---------- reduced motion: resolved static state ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .film { min-height: 100svh; }
  .film-stage { position: relative; height: 100svh; }
  .film-video { display: none !important; }
  .film-media {
    --media-scale: 1.02;
    --media-pos: 50;
    transform: scale(var(--media-scale));
  }
  .film-vignette { opacity: 0.6; }
  .scroll-cue, .hud-line { display: none; }
  .scene { transition: none; }
  .scene:not(.scene--resolve) { display: none; }
  .scene--resolve { opacity: 1; visibility: visible; pointer-events: auto; }
  .scene--resolve .scene-chapter, .scene--resolve .resolve-name, .scene--resolve .resolve-actions,
  .scene--resolve .resolve-disclaimer { opacity: 1; transform: none; }
}
