:root {
  --bg: #050505;
  --ink: #f5f0e7;
  --muted: rgba(245, 240, 231, 0.82);
  --gold: #d8ad57;
  --gold-soft: rgba(216, 173, 87, 0.54);
  --shadow: rgba(0, 0, 0, 0.72);
  --serif: Baskerville, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--bg); color: var(--ink); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::selection { background: var(--gold); color: #080808; }

#journey { position: relative; background: var(--bg); }

.journey-progress {
  position: fixed;
  z-index: 999;
  inset: 0 0 auto 0;
  height: 2px;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.journey-progress > span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #9d7430, #e4bf69, #f0d78e);
  transform-origin: left center;
}

.scene {
  --scene-height: 215vh;
  --overlap: 92vh;
  position: relative;
  height: var(--scene-height);
  background: transparent;
  pointer-events: none;
}
.scene + .scene { margin-top: calc(var(--overlap) * -1); }
.scene--intro { --scene-height: 185vh; --overlap: 0vh; }
.scene--short { --scene-height: 190vh; }
.scene--breath { --scene-height: 245vh; }
.scene--covenant { --scene-height: 285vh; }

.scene__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: #050505;
  isolation: isolate;
  opacity: 0;
  will-change: opacity, transform;
  /* Overlapping transparent scenes must never swallow clicks. */
  pointer-events: none;
}
.scene:first-child .scene__sticky { opacity: 1; }

.scene__media,
.scene__poster,
.scene__veil,
.scene__vignette,
.scene__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene__media {
  object-fit: cover;
  object-position: var(--desktop-position, 50% 50%);
  background: #050505;
  transform: scale(1.004);
  filter: saturate(0.98) contrast(1.02);
}
.scene__poster {
  object-fit: cover;
  object-position: var(--desktop-position, 50% 50%);
  opacity: 1;
  transition: opacity 320ms ease;
  z-index: -1;
}
.scene__media.is-ready + .scene__poster { opacity: 0; }

.scene__veil {
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.48) 0%, rgba(0,0,0,0.16) 38%, rgba(0,0,0,0.02) 64%, rgba(0,0,0,0.12) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.02) 42%, rgba(0,0,0,0.1) 100%);
  opacity: var(--veil-opacity, .58);
}
.scene--clean .scene__veil { opacity: .18; }
.scene--concert .scene__veil { opacity: .12; }
.scene--covenant .scene__veil { opacity: .08; }

.scene__vignette {
  pointer-events: none;
  background: radial-gradient(circle at 50% 44%, transparent 45%, rgba(0,0,0,.18) 77%, rgba(0,0,0,.44) 116%);
  opacity: .55;
}
.scene--concert .scene__vignette,
.scene--covenant .scene__vignette { opacity: .28; }

.scene__grain {
  pointer-events: none;
  opacity: .028;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.scene__overlay {
  position: absolute;
  z-index: 8;
  left: clamp(24px, 6vw, 104px);
  bottom: clamp(72px, 13vh, 150px);
  width: min(720px, calc(100vw - 48px));
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  will-change: opacity, transform;
  pointer-events: none;
}
.scene__overlay--center {
  left: 50%;
  bottom: auto;
  top: 50%;
  width: min(900px, calc(100vw - 48px));
  text-align: center;
  transform: translate3d(-50%, calc(-50% + 20px), 0);
}
.scene__overlay--upper {
  bottom: auto;
  top: clamp(94px, 15vh, 160px);
}

.scene__eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: clamp(10px, .72vw, 13px);
  font-weight: 650;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.scene__title {
  margin: 0;
  max-width: 100%;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(35px, 5vw, 76px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: .015em;
  text-wrap: balance;
  text-shadow: 0 3px 28px var(--shadow);
}
.scene__copy {
  margin: 18px 0 0;
  max-width: 670px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 430;
  line-height: 1.48;
  letter-spacing: -.005em;
  text-wrap: balance;
  text-shadow: 0 2px 22px var(--shadow);
}
.scene__overlay--center .scene__copy { margin-inline: auto; }

.intro {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(198, 145, 54, .12), transparent 27%),
    linear-gradient(#030303, #070604 68%, #030303);
}
.intro::before {
  content: "";
  position: absolute;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(218, 177, 94, .11);
  border-radius: 50%;
  box-shadow: 0 0 130px rgba(218, 177, 94, .05) inset;
}
.intro__content {
  position: relative;
  width: min(940px, calc(100vw - 48px));
  text-align: center;
}
.intro__kicker {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: clamp(10px, .76vw, 13px);
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.intro__title {
  margin: 0;
  color: #f3e6c9;
  font-family: var(--serif);
  font-size: clamp(46px, 8vw, 118px);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.015em;
  text-shadow: 0 0 50px rgba(216,173,87,.11);
}
.intro__title span {
  display: block;
  margin-top: .1em;
  color: var(--gold);
  font-size: .72em;
  letter-spacing: .055em;
}
.intro__copy {
  max-width: 760px;
  margin: 30px auto 0;
  color: rgba(245,240,231,.76);
  font-size: clamp(16px, 1.55vw, 23px);
  line-height: 1.5;
  text-wrap: balance;
}
.intro__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 5vh, 52px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(245,240,231,.5);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.intro__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--gold), transparent);
}

.scene-label {
  position: fixed;
  z-index: 900;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  color: rgba(245,240,231,.35);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity 240ms ease;
}
.scene-label.is-visible { opacity: 1; }

@media (max-width: 900px) {
  .scene { --scene-height: 200vh; --overlap: 84vh; }
  .scene--breath { --scene-height: 225vh; }
  .scene--covenant { --scene-height: 260vh; }
  .scene__media,
  .scene__poster { object-position: var(--mobile-position, var(--desktop-position, 50% 50%)); }
  .scene__overlay {
    left: 22px;
    bottom: max(64px, calc(env(safe-area-inset-bottom) + 46px));
    width: calc(100vw - 44px);
  }
  .scene__overlay--center { left: 50%; width: calc(100vw - 44px); }
  .scene__overlay--upper { top: max(82px, calc(env(safe-area-inset-top) + 62px)); bottom: auto; }
  .scene__title { font-size: clamp(34px, 10vw, 58px); }
  .scene__copy { font-size: clamp(15px, 4.2vw, 19px); max-width: 94%; }
  .scene__veil {
    background:
      linear-gradient(0deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.08) 48%, rgba(0,0,0,.08) 100%),
      linear-gradient(90deg, rgba(0,0,0,.18), transparent 62%);
  }
  .scene--clean .scene__veil,
  .scene--concert .scene__veil,
  .scene--covenant .scene__veil { opacity: .17; }
  .intro__title { font-size: clamp(48px, 16vw, 86px); }
  .intro__copy { font-size: 17px; }
}

@media (max-width: 520px) {
  .scene { --scene-height: 190vh; --overlap: 78vh; }
  .scene--covenant { --scene-height: 250vh; }
  .scene__overlay { bottom: max(58px, calc(env(safe-area-inset-bottom) + 36px)); }
  .scene__title { font-size: clamp(32px, 11vw, 50px); }
  .scene__copy { font-size: 15.5px; line-height: 1.45; }
  .scene-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scene__media { display: none; }
  .scene__poster { opacity: 1 !important; }
  .scene__sticky,
  .scene__overlay { transition: none !important; }
}

/* Voice Artifact interaction */
.voice-artifact-control {
  position: absolute;
  z-index: 24;
  width: 64px;
  height: 64px;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(232, 191, 103, .96);
  border-radius: 50%;
  background: rgba(4, 4, 4, .28);
  color: #f3d38b;
  box-shadow: 0 0 0 7px rgba(216, 173, 87, .10), 0 7px 24px rgba(0,0,0,.44);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.voice-artifact-control::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(232, 191, 103, .18);
  border-radius: inherit;
  animation: voiceArtifactPulse 2.2s ease-out infinite;
}
.voice-artifact-control:hover,
.voice-artifact-control:focus-visible {
  outline: none;
  background: rgba(7, 7, 7, .62);
  border-color: #f2d184;
  box-shadow: 0 0 0 8px rgba(216, 173, 87, .16), 0 10px 30px rgba(0,0,0,.54);
}
.voice-artifact-control__icon {
  position: absolute;
  left: 52%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-42%, -50%);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #f0c66e;
}
.voice-artifact-control.is-playing .voice-artifact-control__icon {
  width: 13px;
  height: 17px;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  background: linear-gradient(90deg, #f0c66e 0 34%, transparent 34% 66%, #f0c66e 66% 100%);
}
.voice-artifact-control__label {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  transform: translateX(-50%);
  min-width: max-content;
  padding: 7px 10px;
  border: 1px solid rgba(216,173,87,.28);
  border-radius: 999px;
  background: rgba(3,3,3,.74);
  color: rgba(250,245,234,.92);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 8px #000;
  white-space: nowrap;
  pointer-events: none;
}
.voice-artifact-now-playing {
  position: absolute;
  z-index: 23;
  left: 50%;
  bottom: clamp(24px, 4.5vh, 50px);
  width: min(520px, calc(100vw - 48px));
  padding: 12px 14px 11px;
  transform: translate(-50%, 10px);
  border: 1px solid rgba(216,173,87,.22);
  border-radius: 12px;
  background: rgba(4,4,4,.74);
  box-shadow: 0 14px 42px rgba(0,0,0,.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}
.voice-artifact-now-playing.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.voice-artifact-now-playing__name,
.voice-artifact-now-playing__time {
  color: rgba(250,245,234,.82);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.voice-artifact-now-playing__time { float: right; color: rgba(250,245,234,.58); }
.voice-artifact-now-playing__track {
  display: block;
  clear: both;
  height: 2px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
}
.voice-artifact-now-playing__track > span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--gold);
}
@keyframes voiceArtifactPulse {
  0% { transform: scale(.94); opacity: .0; }
  24% { opacity: .52; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Covenant narration lives below the stage screen, over the audience. */
.scene__overlay--covenant {
  top: auto;
  bottom: clamp(28px, 5.5vh, 64px);
  left: clamp(24px, 5vw, 82px);
  width: min(660px, calc(100vw - 48px));
}
.scene__overlay--covenant .scene__title {
  font-size: clamp(30px, 3.6vw, 56px);
}
.scene__overlay--covenant .scene__copy {
  max-width: 610px;
  font-size: clamp(15px, 1.25vw, 19px);
}

@media (max-width: 900px) {
  .voice-artifact-control { width: 58px; height: 58px; }
  .voice-artifact-control__label { font-size: 8px; letter-spacing: .13em; }
  .voice-artifact-now-playing {
    bottom: max(18px, calc(env(safe-area-inset-bottom) + 10px));
    width: calc(100vw - 30px);
  }
  .scene__overlay--covenant {
    top: auto;
    bottom: max(28px, calc(env(safe-area-inset-bottom) + 18px));
    left: 22px;
    width: calc(100vw - 44px);
  }
  .scene__overlay--covenant .scene__title { font-size: clamp(28px, 8.5vw, 44px); }
  .scene__overlay--covenant .scene__copy { font-size: 15px; line-height: 1.4; max-width: 90%; }
}

@media (prefers-reduced-motion: reduce) {
  .voice-artifact-control::before { animation: none; }
}

/* v5: JP's Voice Artifact plays as a real H.264/AAC MP4 layer.
   This uses the same media path Safari already uses successfully for the journey videos. */
.voice-artifact-playback {
  position: absolute;
  z-index: 18;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--desktop-position);
  background: #030303;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.scene--voice-artifact.artifact-is-playing .voice-artifact-playback {
  opacity: 1;
}
.scene--voice-artifact.artifact-is-playing .scene__media,
.scene--voice-artifact.artifact-is-playing .scene__poster {
  opacity: 0 !important;
}
.voice-artifact-now-playing__meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 10px;
  color: rgba(250,245,234,.82);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.voice-artifact-now-playing__meta > span:first-child {
  color: var(--gold);
}
.voice-artifact-now-playing__state {
  color: rgba(250,245,234,.92);
  font-size: inherit;
  letter-spacing: inherit;
}
.voice-artifact-now-playing__time {
  color: rgba(250,245,234,.62);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .voice-artifact-playback {
    object-position: var(--mobile-position);
  }
}
@media (max-width: 520px) {
  .voice-artifact-now-playing__meta {
    grid-template-columns: auto 1fr;
  }
  .voice-artifact-now-playing__time {
    grid-column: 1 / -1;
    margin-top: 2px;
  }
}

.scene--voice-artifact.artifact-needs-native .voice-artifact-playback {
  opacity: 1;
  pointer-events: auto;
}
.scene--voice-artifact.artifact-needs-native .voice-artifact-control {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* v6 — JP Voice Artifact: audio is decoded from an embedded WAV with Web Audio.
   The Voice Station visual remains visible while J.P. speaks. */
.voice-artifact-playback { display: none !important; }
.scene--voice-artifact.artifact-is-playing .scene__media,
.scene--voice-artifact.artifact-is-playing .scene__poster { opacity: 1 !important; }
.voice-artifact-error {
  position: absolute;
  z-index: 25;
  left: 50%;
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 12px));
  transform: translateX(-50%);
  width: min(520px, calc(100vw - 42px));
  padding: 10px 14px;
  border: 1px solid rgba(216,173,87,.32);
  border-radius: 10px;
  background: rgba(4,4,4,.86);
  color: rgba(250,245,234,.92);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.voice-artifact-error.is-visible { opacity: 1; }


/* v7: native Safari fallback appears only if custom playback is rejected. */
.voice-artifact-native-fallback {
  position: absolute;
  left: 50%;
  bottom: max(28px, calc(env(safe-area-inset-bottom) + 18px));
  transform: translateX(-50%);
  z-index: 60;
  width: min(430px, calc(100vw - 32px));
  padding: 12px 14px 14px;
  border: 1px solid rgba(202,157,72,.48);
  border-radius: 12px;
  background: rgba(4,4,4,.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 48px rgba(0,0,0,.38);
}
.voice-artifact-native-fallback__label {
  margin-bottom: 8px;
  color: #e3bb68;
  font-size: 10px;
  letter-spacing: .16em;
  font-weight: 700;
}
.voice-artifact-native-fallback audio { width: 100%; display: block; }

/* v8 — JP Voice Artifact: Safari-native playback, embedded AAC-LC source.
   Playback is intentionally NOT controlled by the scroll engine. */
.voice-artifact-native-player {
  position: fixed;
  z-index: 2000;
  pointer-events: none;
  left: 50%;
  bottom: max(24px, calc(env(safe-area-inset-bottom) + 18px));
  width: min(560px, calc(100vw - 40px));
  padding: 14px 16px 16px;
  transform: translate3d(-50%, 10px, 0);
  border: 1px solid rgba(220, 177, 89, .48);
  border-radius: 14px;
  background: rgba(4,4,4,.84);
  box-shadow: 0 18px 52px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.03) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}
.voice-artifact-native-player__heading {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 5px 12px;
  margin-bottom: 10px;
  font-family: var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.voice-artifact-native-player__heading > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}
.voice-artifact-native-player__heading > strong {
  color: rgba(250,245,234,.94);
  font-size: 11px;
  font-weight: 760;
}
.voice-artifact-native-player__heading > small {
  grid-column: 1 / -1;
  color: rgba(250,245,234,.62);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .12em;
}
.voice-artifact-native-audio {
  display: block;
  pointer-events: auto;
  touch-action: manipulation;
  width: 100%;
  height: 40px;
  margin: 0;
}
@media (max-width: 600px) {
  .voice-artifact-native-player {
    width: calc(100vw - 26px);
    padding: 12px 12px 14px;
    bottom: max(14px, calc(env(safe-area-inset-bottom) + 10px));
  }
  .voice-artifact-native-player__heading > span,
  .voice-artifact-native-player__heading > strong { font-size: 10px; }
  .voice-artifact-native-player__heading > small { font-size: 8px; }
}

/* =========================================================
   MOBILE ART-DIRECTION PASS — v13
   Desktop v12 remains the master. Phones receive portrait media,
   mobile-specific pacing, safe zones, and typography.
   ========================================================= */

@media (max-width: 900px) {
  html, body { min-height: 100%; }
  body {
    touch-action: pan-y pinch-zoom;
    -webkit-text-size-adjust: 100%;
  }

  .journey-progress { height: 3px; }

  .scene {
    --scene-height: 178svh;
    --overlap: 66svh;
  }
  .scene--intro { --scene-height: 150svh; --overlap: 0svh; }
  .scene--short { --scene-height: 170svh; }
  .scene--breath { --scene-height: 196svh; }
  .scene--covenant { --scene-height: 220svh; }

  .scene__sticky {
    height: 100svh;
    min-height: 100svh;
  }

  /* Portrait files are already art-directed; don't re-crop aggressively. */
  .is-mobile-experience .scene__media {
    object-fit: cover;
    object-position: 50% 50%;
    transform: scale(1.002);
  }
  .scene__poster {
    object-position: var(--mobile-position, 50% 50%);
  }

  .scene__overlay {
    left: max(20px, env(safe-area-inset-left));
    right: max(20px, env(safe-area-inset-right));
    bottom: max(56px, calc(env(safe-area-inset-bottom) + 40px));
    width: auto;
    max-width: none;
    padding-right: 6px;
  }
  .scene__title {
    max-width: 94%;
    font-size: clamp(30px, 9.4vw, 46px);
    line-height: 1.01;
    letter-spacing: .005em;
  }
  .scene__copy {
    margin-top: 12px;
    max-width: 31ch;
    font-size: clamp(14px, 3.75vw, 17px);
    line-height: 1.43;
    color: rgba(248,244,236,.91);
  }
  .scene__eyebrow {
    margin-bottom: 10px;
    font-size: 9px;
    letter-spacing: .18em;
  }

  /* Scene-specific safe zones. */
  [data-scene-id="welcome-home"] .scene__overlay,
  [data-scene-id="warm-handoff"] .scene__overlay,
  [data-scene-id="mission-forward"] .scene__overlay {
    top: max(72px, calc(env(safe-area-inset-top) + 54px));
    bottom: auto;
  }

  [data-scene-id="voices-alive-approach"] .scene__overlay {
    top: max(76px, calc(env(safe-area-inset-top) + 58px));
    bottom: auto;
  }

  [data-scene-id="voice-station"] .scene__overlay {
    bottom: max(122px, calc(env(safe-area-inset-bottom) + 108px));
  }

  [data-scene-id="songkey-corridor"] .scene__overlay,
  [data-scene-id="veterans-village"] .scene__overlay {
    bottom: max(70px, calc(env(safe-area-inset-bottom) + 52px));
  }

  [data-scene-id="voice-covenant"] .scene__overlay--covenant {
    top: auto;
    left: max(18px, env(safe-area-inset-left));
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, calc(env(safe-area-inset-bottom) + 12px));
    width: auto;
  }
  [data-scene-id="voice-covenant"] .scene__overlay--covenant .scene__title {
    font-size: clamp(25px, 7.7vw, 36px);
  }
  [data-scene-id="voice-covenant"] .scene__overlay--covenant .scene__copy {
    max-width: 34ch;
    font-size: 13.5px;
    line-height: 1.4;
  }

  /* Stronger lower-third legibility without turning copy into a card. */
  .scene__veil {
    background:
      linear-gradient(0deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.22) 27%, rgba(0,0,0,.03) 55%, rgba(0,0,0,.08) 100%),
      linear-gradient(90deg, rgba(0,0,0,.14), transparent 62%);
    opacity: .60;
  }
  .scene--clean .scene__veil { opacity: .30; }
  .scene--concert .scene__veil { opacity: .18; }
  .scene--covenant .scene__veil { opacity: .12; }

  /* Upper-third scenes need a subtle top readable zone too. */
  [data-scene-id="welcome-home"] .scene__veil,
  [data-scene-id="warm-handoff"] .scene__veil,
  [data-scene-id="mission-forward"] .scene__veil,
  [data-scene-id="voices-alive-approach"] .scene__veil {
    background:
      linear-gradient(180deg, rgba(0,0,0,.57) 0%, rgba(0,0,0,.10) 36%, rgba(0,0,0,.02) 63%, rgba(0,0,0,.28) 100%);
  }

  .intro__content {
    width: min(100% - 36px, 520px);
    padding-bottom: 6svh;
  }
  .intro__kicker {
    margin: 0 auto 15px;
    max-width: 34ch;
    font-size: 9px;
    line-height: 1.5;
    letter-spacing: .18em;
  }
  .intro__title {
    font-size: clamp(48px, 15vw, 76px);
    line-height: .88;
  }
  .intro__copy {
    max-width: 31ch;
    margin-top: 22px;
    font-size: 15.5px;
    line-height: 1.48;
  }
  .intro__scroll {
    bottom: max(18px, calc(env(safe-area-inset-bottom) + 12px));
  }

  /* JP remains a root-level control, above every cinematic section. */
  .voice-artifact-native-player {
    z-index: 5000;
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    bottom: max(10px, calc(env(safe-area-inset-bottom) + 8px));
    width: auto;
    padding: 11px 11px 12px;
    transform: translate3d(0, 8px, 0);
    border-radius: 13px;
    background: rgba(3,3,3,.90);
  }
  .voice-artifact-native-player__heading {
    grid-template-columns: auto 1fr;
    gap: 3px 9px;
    margin-bottom: 7px;
  }
  .voice-artifact-native-player__heading > span,
  .voice-artifact-native-player__heading > strong { font-size: 9.5px; }
  .voice-artifact-native-player__heading > small { font-size: 7.5px; }
  .voice-artifact-native-audio { height: 38px; }
}

@media (max-width: 430px) {
  .scene {
    --scene-height: 170svh;
    --overlap: 61svh;
  }
  .scene--short { --scene-height: 164svh; }
  .scene--breath { --scene-height: 188svh; }
  .scene--covenant { --scene-height: 210svh; }
  .scene__title { font-size: clamp(29px, 9.7vw, 42px); }
  .scene__copy { font-size: 14.5px; max-width: 29ch; }
}

@media (max-width: 380px) {
  .scene__overlay {
    left: max(17px, env(safe-area-inset-left));
    right: max(17px, env(safe-area-inset-right));
  }
  .scene__title { font-size: clamp(28px, 9.8vw, 38px); }
  .scene__copy { font-size: 14px; }
  .intro__title { font-size: clamp(46px, 14.8vw, 62px); }
}

@media (min-width: 901px) {
  /* Explicitly protect the approved v12 desktop media path and layout. */
  .scene__media { object-position: var(--desktop-position, 50% 50%); }
}
\n\n/* =========================================================\n   VOICES ALIVE! CONCERT SOUND — v17\n   Fast, persistent sound toggle outside the cinematic stack.\n   ========================================================= */\n.voices-alive-audio {\n  position: fixed;\n  width: 1px;\n  height: 1px;\n  opacity: 0;\n  pointer-events: none;\n}\n\n.site-sound-toggle {\n  position: fixed;\n  z-index: 2400;\n  top: max(18px, calc(env(safe-area-inset-top) + 12px));\n  right: max(18px, calc(env(safe-area-inset-right) + 12px));\n  display: inline-flex;\n  align-items: center;\n  justify-content: center;\n  gap: 9px;\n  min-height: 42px;\n  padding: 0 14px 0 11px;\n  border: 1px solid rgba(225, 184, 96, .44);\n  border-radius: 999px;\n  background: rgba(5, 5, 5, .74);\n  color: rgba(250, 245, 234, .92);\n  box-shadow: 0 10px 34px rgba(0,0,0,.32), 0 0 0 1px rgba(255,255,255,.025) inset;\n  backdrop-filter: blur(12px);\n  -webkit-backdrop-filter: blur(12px);\n  opacity: 0;\n  transform: translate3d(0, -7px, 0);\n  pointer-events: none;\n  cursor: pointer;\n  touch-action: manipulation;\n  -webkit-tap-highlight-color: transparent;\n  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, background 180ms ease;\n}\n.site-sound-toggle.is-visible {\n  opacity: 1;\n  transform: translate3d(0, 0, 0);\n}\n.site-sound-toggle:hover,\n.site-sound-toggle:focus-visible {\n  outline: none;\n  border-color: rgba(238, 203, 126, .82);\n  background: rgba(7, 7, 7, .88);\n}\n.site-sound-toggle:focus-visible {\n  box-shadow: 0 0 0 3px rgba(218, 177, 94, .22), 0 10px 34px rgba(0,0,0,.36);\n}\n.site-sound-toggle__icon {\n  display: grid;\n  place-items: center;\n  width: 19px;\n  height: 19px;\n  color: var(--gold);\n  flex: 0 0 auto;\n}\n.site-sound-toggle__icon svg {\n  display: block;\n  width: 19px;\n  height: 19px;\n  overflow: visible;\n}\n.site-sound-toggle__speaker {\n  fill: currentColor;\n  stroke: none;\n}\n.site-sound-toggle__wave,\n.site-sound-toggle__mute {\n  fill: none;\n  stroke: currentColor;\n  stroke-width: 1.7;\n  stroke-linecap: round;\n  stroke-linejoin: round;\n}\n.site-sound-toggle__mute { display: none; }\n.site-sound-toggle.is-muted .site-sound-toggle__wave { display: none; }\n.site-sound-toggle.is-muted .site-sound-toggle__mute { display: block; }\n.site-sound-toggle__text {\n  color: rgba(250,245,234,.88);\n  font-family: var(--sans);\n  font-size: 9px;\n  font-weight: 760;\n  letter-spacing: .15em;\n  line-height: 1;\n  white-space: nowrap;\n}\n.site-sound-toggle.is-muted {\n  border-color: rgba(225, 184, 96, .28);\n  background: rgba(5,5,5,.68);\n}\n.site-sound-toggle.is-muted .site-sound-toggle__icon { color: rgba(235, 205, 143, .72); }\n.site-sound-toggle.is-blocked {\n  border-color: rgba(235, 195, 109, .82);\n  animation: siteSoundNudge 1.8s ease-in-out infinite;\n}\n.site-sound-toggle.is-blocked .site-sound-toggle__text { color: #f1d38d; }\n\n@keyframes siteSoundNudge {\n  0%, 100% { box-shadow: 0 10px 34px rgba(0,0,0,.32), 0 0 0 0 rgba(218,177,94,0); }\n  50% { box-shadow: 0 10px 34px rgba(0,0,0,.32), 0 0 0 7px rgba(218,177,94,.11); }\n}\n\n@media (max-width: 600px) {\n  .site-sound-toggle {\n    top: max(12px, calc(env(safe-area-inset-top) + 8px));\n    right: max(12px, calc(env(safe-area-inset-right) + 8px));\n    min-height: 42px;\n    padding: 0 12px 0 10px;\n    gap: 8px;\n  }\n  .site-sound-toggle__text { font-size: 8px; letter-spacing: .13em; }\n}\n\n@media (prefers-reduced-motion: reduce) {\n  .site-sound-toggle { transition: none; }\n  .site-sound-toggle.is-blocked { animation: none; }\n}\n
/* =========================================================
   v19 DETERMINISTIC JOURNEY ENGINE
   One sticky viewport. Every cinematic scene is an absolute layer inside it.
   Scroll position alone determines the visual state; no overlapping sections,
   no dead zones, no accumulated transition state.
   ========================================================= */
#journey {
  position: relative;
  height: var(--journey-scroll-size, 2016vh);
  min-height: 100svh;
  background: #050505;
}

.journey-stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: #050505;
  isolation: isolate;
}

.scene-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.scene-layer .scene__sticky {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: #050505;
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  will-change: opacity;
  pointer-events: none;
}

/* Poster is the fail-safe visual, not something hidden behind the video. */
.scene-layer .scene__poster {
  z-index: 1;
  opacity: 1;
  transition: none;
}
.scene-layer .scene__media {
  z-index: 2;
  opacity: 0;
  transition: opacity 160ms linear;
  background: transparent;
}
.scene-layer .scene__media.is-ready { opacity: 1; }
.scene-layer .scene__media.is-ready + .scene__poster { opacity: 1; }
.scene-layer .scene__veil { z-index: 3; }
.scene-layer .scene__vignette { z-index: 4; }
.scene-layer .scene__grain { z-index: 5; }
.scene-layer .scene__overlay { z-index: 8; }
.scene-layer .intro { z-index: 1; }

/* The previous mobile scene-height/overlap variables are intentionally inert in
   v19 because .scene elements no longer exist. Mobile only art-directs content. */
@media (max-width: 900px) {
  #journey { height: var(--journey-scroll-size, 1888svh); }
  .journey-stage { height: 100svh; min-height: 100svh; }
}

@media (prefers-reduced-motion: reduce) {
  .scene-layer .scene__media { display: none; }
  .scene-layer .scene__poster { opacity: 1 !important; }
}

/* v20 pixel-locked mobile scroll geometry. JS writes an explicit pixel height. */
#journey { height: 2200vh; }
@media (max-width: 900px) { #journey { height: 2200vh; } }

/* =========================================================
   v20 NARRATIVE SPINE
   Secondary timed beats deepen meaning without replacing the
   plain-English scene narration or covering the primary reveals.
   ========================================================= */
.intro__founding {
  margin-top: 24px;
  color: var(--gold);
  font-size: clamp(9px, .72vw, 12px);
  font-weight: 760;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.scene__beat {
  position: absolute;
  z-index: 9;
  left: clamp(24px, 6vw, 104px);
  bottom: clamp(72px, 13vh, 150px);
  width: min(800px, calc(100vw - 48px));
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  will-change: opacity, transform;
  pointer-events: none;
}
.scene__beat--center {
  left: 50%;
  top: 50%;
  bottom: auto;
  width: min(1000px, calc(100vw - 56px));
  text-align: center;
  transform: translate3d(-50%, calc(-50% + 18px), 0);
}
.scene__beat--upper {
  top: clamp(96px, 15vh, 165px);
  bottom: auto;
}
.scene__beat--lower {
  bottom: clamp(72px, 13vh, 150px);
}
.scene__beat-eyebrow {
  display: block;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: clamp(9px, .7vw, 12px);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.scene__beat-title {
  margin: 0;
  max-width: 100%;
  color: #f7f1e5;
  font-family: var(--serif);
  font-size: clamp(32px, 4.25vw, 66px);
  font-weight: 500;
  line-height: 1.01;
  letter-spacing: .01em;
  text-wrap: balance;
  text-shadow: 0 3px 32px rgba(0,0,0,.86), 0 1px 8px rgba(0,0,0,.75);
}
.scene__beat--statement .scene__beat-title {
  font-size: clamp(30px, 3.7vw, 58px);
  line-height: 1.05;
}
.scene__beat--hero .scene__beat-title {
  font-size: clamp(42px, 5.7vw, 84px);
  line-height: .96;
}
.scene__beat-copy {
  margin: 16px 0 0;
  max-width: 650px;
  color: rgba(248,244,236,.92);
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.48;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0,0,0,.9);
}
.scene__beat--center .scene__beat-copy { margin-inline: auto; }
.scene--concert .scene__beat-title,
.scene--concert .scene__beat-copy {
  text-shadow: 0 4px 38px rgba(0,0,0,.95), 0 1px 10px rgba(0,0,0,.88);
}

.outro {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(198,145,54,.15), transparent 30%),
    linear-gradient(#030303, #070604 68%, #030303);
}
.outro::before {
  content: "";
  position: absolute;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(218,177,94,.12);
  border-radius: 50%;
  box-shadow: 0 0 150px rgba(218,177,94,.055) inset;
}
.outro__content {
  position: relative;
  width: min(1040px, calc(100vw - 48px));
  text-align: center;
}
.outro__kicker {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: clamp(10px, .78vw, 13px);
  font-weight: 740;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.outro__title {
  margin: 0 auto;
  max-width: 13ch;
  color: #f3e6c9;
  font-family: var(--serif);
  font-size: clamp(48px, 7.2vw, 106px);
  font-weight: 500;
  line-height: .93;
  letter-spacing: -.01em;
  text-wrap: balance;
  text-shadow: 0 0 52px rgba(216,173,87,.11);
}
.outro__stats {
  margin-top: 30px;
  color: rgba(244,226,188,.92);
  font-size: clamp(12px, 1.15vw, 17px);
  font-weight: 730;
  letter-spacing: .16em;
  line-height: 1.6;
}
.outro__stats span { color: var(--gold); margin-inline: .45em; }
.outro__copy {
  max-width: 610px;
  margin: 20px auto 0;
  color: rgba(245,240,231,.74);
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.5;
  text-wrap: balance;
}
.outro__cta {
  display: inline-block;
  margin-top: 30px;
  padding-top: 14px;
  border-top: 1px solid rgba(218,177,94,.42);
  color: var(--gold);
  font-size: clamp(10px, .78vw, 13px);
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.scene-layer .scene__beat { z-index: 9; }
.scene-layer .outro { z-index: 1; }

@media (max-width: 900px) {
  .intro__founding {
    margin-top: 18px;
    font-size: 8.5px;
    line-height: 1.45;
    letter-spacing: .18em;
  }
  .scene__beat {
    left: max(20px, env(safe-area-inset-left));
    right: max(20px, env(safe-area-inset-right));
    bottom: max(58px, calc(env(safe-area-inset-bottom) + 42px));
    width: auto;
  }
  .scene__beat--center {
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    width: calc(100vw - 40px);
  }
  .scene__beat--upper {
    top: max(78px, calc(env(safe-area-inset-top) + 60px));
    bottom: auto;
  }
  .scene__beat--lower {
    bottom: max(58px, calc(env(safe-area-inset-bottom) + 42px));
  }
  .scene__beat-title {
    max-width: 95%;
    font-size: clamp(28px, 8.6vw, 42px);
    line-height: 1.02;
  }
  .scene__beat--statement .scene__beat-title {
    font-size: clamp(25px, 7.6vw, 37px);
    line-height: 1.06;
  }
  .scene__beat--hero .scene__beat-title {
    max-width: 100%;
    font-size: clamp(35px, 10.7vw, 54px);
    line-height: .98;
  }
  .scene__beat-copy {
    margin-top: 12px;
    max-width: 32ch;
    font-size: clamp(14px, 3.8vw, 16.5px);
    line-height: 1.43;
  }
  .scene__beat--center .scene__beat-copy { max-width: 31ch; }

  .outro__content { width: calc(100vw - 38px); }
  .outro__kicker {
    margin-bottom: 16px;
    font-size: 8.5px;
    line-height: 1.5;
    letter-spacing: .18em;
  }
  .outro__title {
    max-width: 10ch;
    font-size: clamp(43px, 13.5vw, 68px);
    line-height: .94;
  }
  .outro__stats {
    max-width: 29ch;
    margin: 24px auto 0;
    font-size: 10px;
    line-height: 1.75;
    letter-spacing: .12em;
  }
  .outro__stats span { margin-inline: .25em; }
  .outro__copy {
    max-width: 31ch;
    margin-top: 17px;
    font-size: 14.5px;
    line-height: 1.48;
  }
  .outro__cta {
    margin-top: 24px;
    font-size: 9px;
    letter-spacing: .2em;
  }
}

@media (max-width: 380px) {
  .scene__beat {
    left: max(17px, env(safe-area-inset-left));
    right: max(17px, env(safe-area-inset-right));
  }
  .scene__beat--center {
    left: 50%;
    right: auto;
    width: calc(100vw - 34px);
  }
  .scene__beat-title { font-size: clamp(26px, 8.7vw, 36px); }
  .scene__beat--statement .scene__beat-title { font-size: clamp(24px, 7.4vw, 32px); }
  .scene__beat--hero .scene__beat-title { font-size: clamp(33px, 10.5vw, 46px); }
}

/* =========================================================
   v21 NATIVE-SCROLL CINEMATIC ENGINE
   The document scrolls normally. Videos never seek from scroll position.
   Only the dominant chapter plays; nearby chapters preload; distant media unloads.
   ========================================================= */
#journey {
  position: relative;
  height: auto !important;
  min-height: 0 !important;
  background: #050505;
}

.journey-progress > span {
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.experience-scene {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 100svh;
  overflow: clip;
  background: #050505;
  contain: layout paint style;
  isolation: isolate;
}

.experience-scene .scene__sticky {
  position: relative;
  inset: auto;
  top: auto;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: #050505;
  isolation: isolate;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none;
  will-change: auto;
}

.experience-scene .scene__poster {
  z-index: 1;
  opacity: 1;
  transition: opacity 180ms linear;
}

.experience-scene .scene__media {
  z-index: 2;
  opacity: 0;
  transition: opacity 180ms linear;
  background: transparent;
  filter: none;
  will-change: auto;
}

.experience-scene.is-active .scene__media {
  will-change: opacity;
}

.experience-scene .scene__media.is-ready {
  opacity: 1;
}

.experience-scene .scene__media.is-ready + .scene__poster {
  opacity: 0;
}

.experience-scene .scene__veil { z-index: 3; }
.experience-scene .scene__vignette { z-index: 4; }
.experience-scene .scene__grain { z-index: 5; }
.experience-scene .scene__overlay { z-index: 8; will-change: auto; }
.experience-scene .scene__beat { z-index: 9; will-change: auto; }
.experience-scene.is-active .scene__overlay,
.experience-scene.is-active .scene__beat { will-change: opacity, transform; }
.experience-scene .intro,
.experience-scene .outro { z-index: 1; }

/* Native scroll must stay native: no snap, no scroll hijacking, no overscroll traps. */
html, body {
  scroll-snap-type: none !important;
  overscroll-behavior-y: auto;
}

@media (min-width: 901px) {
  .experience-scene {
    height: 100vh;
    min-height: 100vh;
  }
}

@media (max-width: 900px) {
  .experience-scene {
    height: 100svh;
    min-height: 100svh;
  }
  /* Full-screen blend/noise layers are expensive on mobile GPUs; the videos
     already contain the cinematic texture, so drop the blend layer on phones. */
  .experience-scene .scene__grain { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .experience-scene .scene__media { display: none !important; }
  .experience-scene .scene__poster { opacity: 1 !important; }
  .experience-scene .scene__overlay { opacity: 1; transform: none; }
  .experience-scene .scene__beat { display: none; }
}


/* =========================================================
   v22 — approved narrative + Chapter One conversion pass
   ========================================================= */

/* Minimal sentence narration: clarity without visual clutter. */
.scene__overlay--narration {
  width: min(760px, calc(100vw - 48px));
}
.scene__overlay--narration .scene__copy {
  margin-top: 0;
  max-width: 720px;
  color: rgba(250, 247, 239, .96);
  font-family: var(--serif);
  font-size: clamp(24px, 2.55vw, 40px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -.01em;
}
.scene__beat--narration .scene__beat-title {
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.08;
}
.scene__beat--narration .scene__beat-copy {
  margin-top: 10px;
  font-size: clamp(16px, 1.35vw, 20px);
  color: rgba(250,247,239,.86);
}

/* Opening: chapter framing + visualization disclosure before Houston. */
.intro__brand,
.outro__brand {
  color: var(--gold);
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.intro__chapter {
  margin: 26px 0 0;
  color: #f3e6c9;
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 102px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.intro__date,
.outro__date {
  margin-top: 24px;
  color: rgba(245,240,231,.88);
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.intro__disclaimer {
  max-width: 690px;
  margin: 28px auto 0;
  color: rgba(245,240,231,.58);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.45;
  text-wrap: balance;
}

/* Black chapter-transition cards: tell, then show. */
.chapter-card {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 36px;
  background:
    radial-gradient(circle at 50% 46%, rgba(216,173,87,.075), transparent 28%),
    #050505;
}
.chapter-card__copy {
  width: min(900px, calc(100vw - 48px));
  margin: 0;
  color: #f3e6c9;
  font-family: var(--serif);
  font-size: clamp(30px, 4.2vw, 62px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.015em;
  text-align: center;
  text-wrap: balance;
}

/* SongKey studio is intentionally a still: the viewer approaches the empty mic. */
.scene--image-zoom .scene__poster--primary {
  z-index: 0;
  opacity: 1 !important;
  object-fit: cover;
  object-position: var(--desktop-position, 50% 50%);
  transform-origin: 50% 50%;
  will-change: transform;
}
.scene--image-zoom .scene__veil { opacity: .06; z-index: 2; }
.scene--image-zoom .scene__vignette { opacity: .24; z-index: 3; }
.scene--image-zoom .scene__grain { z-index: 4; }

/* Final title card. */
.outro__content {
  width: min(980px, calc(100vw - 48px));
  text-align: center;
}
.outro__title {
  margin: 26px 0 0;
  color: #f3e6c9;
  font-family: var(--serif);
  font-size: clamp(48px, 7.5vw, 108px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.outro__cta {
  margin-top: 30px;
  color: var(--gold);
  font-size: clamp(18px, 1.65vw, 27px);
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Conversion begins only after the cinematic experience has emotionally ended. */
.conversion {
  position: relative;
  z-index: 20;
  background: #070706;
  color: var(--ink);
  border-top: 1px solid rgba(216,173,87,.18);
}
.conversion__inner {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 150px) 0 clamp(90px, 11vw, 160px);
}
.conversion__eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.conversion h2 {
  max-width: 900px;
  margin: 18px 0 0;
  color: #f3e6c9;
  font-family: var(--serif);
  font-size: clamp(44px, 6.4vw, 92px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.018em;
}
.conversion__lead {
  margin: 22px 0 0;
  color: rgba(245,240,231,.72);
  font-size: clamp(17px, 1.45vw, 22px);
}
.conversion__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(48px, 6vw, 82px);
  border: 1px solid rgba(216,173,87,.16);
  background: rgba(216,173,87,.16);
}
.conversion__grid article {
  min-height: 190px;
  padding: clamp(28px, 3.3vw, 44px);
  background: #0b0b09;
}
.conversion__grid h3,
.conversion__contact h3 {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.conversion__grid p {
  max-width: 44ch;
  margin: 16px 0 0;
  color: rgba(245,240,231,.86);
  font-family: var(--serif);
  font-size: clamp(20px, 1.85vw, 28px);
  line-height: 1.28;
}
.conversion__contact {
  margin-top: clamp(56px, 7vw, 92px);
  padding-top: clamp(36px, 4vw, 54px);
  border-top: 1px solid rgba(216,173,87,.2);
}
.conversion__contact p {
  margin: 14px 0 22px;
  color: rgba(245,240,231,.72);
  font-size: 17px;
}
.conversion__contact a {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(216,173,87,.58);
  border-radius: 999px;
  color: #f5e8cc;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 750;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.conversion__contact a:hover,
.conversion__contact a:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #070706;
  outline: none;
}

@media (max-width: 900px) {
  .scene__overlay--narration {
    top: auto;
    bottom: max(62px, calc(env(safe-area-inset-bottom) + 44px));
  }
  .scene__overlay--narration .scene__copy {
    max-width: 28ch;
    font-size: clamp(21px, 6.2vw, 31px);
    line-height: 1.18;
  }
  [data-scene-id="welcome-home"] .scene__overlay--narration,
  [data-scene-id="mission-forward"] .scene__overlay--narration,
  [data-scene-id="voices-alive-approach"] .scene__overlay--narration {
    top: max(72px, calc(env(safe-area-inset-top) + 54px));
    bottom: auto;
  }
  .scene__beat--narration .scene__beat-title {
    font-size: clamp(27px, 8vw, 40px);
  }
  .chapter-card { padding: 28px 22px; }
  .chapter-card__copy {
    width: min(31ch, calc(100vw - 44px));
    font-size: clamp(27px, 8vw, 43px);
    line-height: 1.1;
  }
  .scene--image-zoom .scene__poster--primary {
    object-position: var(--mobile-position, 57% 50%);
  }
  .intro__content,
  .outro__content { width: calc(100vw - 40px); }
  .intro__chapter { font-size: clamp(46px, 14vw, 76px); }
  .intro__date, .outro__date { font-size: 11px; letter-spacing: .13em; }
  .intro__disclaimer { max-width: 31ch; font-size: 13px; }
  .outro__title { font-size: clamp(46px, 14vw, 78px); }
  .outro__cta { font-size: clamp(15px, 4.6vw, 21px); letter-spacing: .11em; }
  .conversion__inner { width: calc(100vw - 36px); }
  .conversion__grid { grid-template-columns: 1fr; }
  .conversion__grid article { min-height: 0; padding: 30px 26px 32px; }
  .conversion__grid p { font-size: clamp(20px, 6vw, 27px); }
  .conversion__contact a { width: 100%; justify-content: center; text-align: center; }
}


/* =========================================================
   V72 MERGE SAFETY — latest narrative on native-scroll engine
   ========================================================= */
.experience-scene.scene--card .scene__sticky,
.experience-scene.scene--image-zoom .scene__sticky { min-height: 100%; }

.experience-scene.scene--image-zoom.is-active .scene__poster--primary {
  animation: v72-studio-push 12s cubic-bezier(.2,.6,.25,1) both;
}
@keyframes v72-studio-push {
  from { transform: scale(1.001); }
  to { transform: scale(1.035); }
}

/* Fragment targets from the homepage land cleanly at the top of each chapter. */
.experience-scene { scroll-margin-top: 0; }

@media (max-width: 900px) {
  .experience-scene .scene__overlay,
  .experience-scene .scene__overlay--narration,
  .experience-scene [data-scene-id="welcome-home"] .scene__overlay--narration {
    left: max(20px, env(safe-area-inset-left));
    right: max(20px, env(safe-area-inset-right));
  }
}

@media (prefers-reduced-motion: reduce) {
  .experience-scene.scene--image-zoom.is-active .scene__poster--primary { animation: none; }
}


/* v73 iPhone Voices Alive visual reliability */
@media (max-width: 900px) {
  .experience-scene.scene--concert .scene__poster { display:block !important; visibility:visible !important; }
  .experience-scene.scene--concert .scene__media { -webkit-transform:translateZ(0); transform:translateZ(0); }
}


/* =========================================================
   V75 — EXPERIENCE CHROME + DETERMINISTIC DESKTOP SOUND ENTRY
   Cinematic navigation, never a full site header.
   ========================================================= */
.experience-chrome {
  position: fixed;
  z-index: 3200;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(14px, calc(env(safe-area-inset-top) + 10px)) max(18px, calc(env(safe-area-inset-right) + 14px)) 0 max(18px, calc(env(safe-area-inset-left) + 14px));
  pointer-events: none;
}
.experience-chrome::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 -48px;
  background: linear-gradient(180deg, rgba(2,4,6,.72) 0%, rgba(2,4,6,.28) 44%, transparent 100%);
  pointer-events: none;
}
.experience-chrome__brand,
.experience-chrome__actions,
.experience-chrome__exit,
.experience-chrome__menu-button { pointer-events: auto; }
.experience-chrome__brand {
  display: block;
  width: clamp(126px, 12.5vw, 188px);
  opacity: .92;
  transition: opacity 180ms ease, transform 180ms ease;
}
.experience-chrome__brand:hover { opacity: 1; transform: translateY(-1px); }
.experience-chrome__brand img { display: block; width: 100%; height: auto; }
.experience-chrome__actions { display: flex; align-items: center; gap: 10px; }
.experience-chrome__exit {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(220,177,89,.30);
  border-radius: 999px;
  background: rgba(4,6,8,.52);
  color: rgba(249,244,234,.82);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 760;
  letter-spacing: .16em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}
.experience-chrome__exit:hover,
.experience-chrome__exit:focus-visible {
  color: #fff8e8;
  border-color: rgba(232,195,111,.72);
  background: rgba(4,6,8,.78);
  outline: none;
}
.experience-chrome__menu-button {
  display: grid;
  align-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 11px;
  border: 1px solid rgba(220,177,89,.38);
  border-radius: 50%;
  background: rgba(4,6,8,.58);
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.experience-chrome__menu-button span {
  display: block;
  height: 1px;
  background: rgba(238,205,137,.92);
}
.experience-menu-scrim {
  position: fixed;
  z-index: 3290;
  inset: 0;
  background: rgba(0,0,0,.40);
  opacity: 0;
  transition: opacity 220ms ease;
}
.experience-menu-scrim.is-visible { opacity: 1; }
.experience-menu {
  position: fixed;
  z-index: 3300;
  top: 0;
  right: 0;
  width: min(430px, 92vw);
  height: 100svh;
  padding: max(26px, calc(env(safe-area-inset-top) + 18px)) max(28px, calc(env(safe-area-inset-right) + 22px)) max(30px, calc(env(safe-area-inset-bottom) + 20px)) 30px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(6,10,15,.985), rgba(2,5,9,.985));
  border-left: 1px solid rgba(219,175,84,.24);
  box-shadow: -30px 0 80px rgba(0,0,0,.40);
  transform: translate3d(102%,0,0);
  visibility: hidden;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), visibility 0s linear 260ms;
}
.experience-menu.is-open {
  transform: translate3d(0,0,0);
  visibility: visible;
  transition-delay: 0s;
}
.experience-menu__top { display:flex; justify-content:space-between; align-items:center; gap:20px; }
.experience-menu__top span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .18em;
}
.experience-menu__top button {
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: rgba(248,243,232,.62);
  font: 700 9px/1 var(--sans);
  letter-spacing: .16em;
  cursor: pointer;
}
.experience-menu__links {
  display: grid;
  margin-top: clamp(52px, 10vh, 94px);
}
.experience-menu__links a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(249,245,237,.93);
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.08;
  text-decoration: none;
  transition: color 150ms ease, padding-left 150ms ease;
}
.experience-menu__links a:hover { color: #e5bd68; padding-left: 6px; }
.experience-menu__exit {
  margin-top: auto;
  color: rgba(233,197,116,.80);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .17em;
  text-decoration: none;
}

.experience-sound-entry {
  position: fixed;
  z-index: 4000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(2,5,8,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 1;
  transition: opacity 280ms ease;
}
.experience-sound-entry[hidden] { display: none !important; }
.experience-sound-entry.is-dismissed { opacity: 0; pointer-events: none; }
.experience-sound-entry__panel {
  width: min(560px, calc(100vw - 48px));
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(221,178,88,.32);
  background: linear-gradient(180deg, rgba(8,12,17,.97), rgba(4,7,10,.97));
  box-shadow: 0 28px 90px rgba(0,0,0,.52), 0 0 80px rgba(217,173,83,.05) inset;
  text-align: center;
}
.experience-sound-entry__eyebrow {
  display: block;
  color: var(--gold);
  font: 780 9px/1.2 var(--sans);
  letter-spacing: .22em;
}
.experience-sound-entry h1 {
  margin: 20px 0 12px;
  color: #f5eee0;
  font: 500 clamp(34px, 4.2vw, 54px)/.98 var(--serif);
  letter-spacing: -.015em;
}
.experience-sound-entry p {
  max-width: 36ch;
  margin: 0 auto 28px;
  color: rgba(245,240,231,.68);
  font-size: 14px;
  line-height: 1.55;
}
.experience-sound-entry button {
  width: 100%;
  min-height: 50px;
  cursor: pointer;
  font: 780 10px/1 var(--sans);
  letter-spacing: .16em;
}
.experience-sound-entry__primary {
  border: 1px solid #d8ad57;
  background: #d8ad57;
  color: #07101a;
}
.experience-sound-entry__secondary {
  margin-top: 9px;
  border: 1px solid rgba(220,177,89,.26);
  background: transparent;
  color: rgba(247,241,229,.72);
}
html.experience-entry-locked,
html.experience-entry-locked body { overflow: hidden !important; }

.outro__return {
  position: relative;
  z-index: 25;
  pointer-events: auto !important;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 26px;
  padding: 0 20px;
  border: 1px solid rgba(219,175,84,.46);
  color: #e6bd65;
  text-decoration: none;
  font: 780 9px/1 var(--sans);
  letter-spacing: .16em;
  background: rgba(0,0,0,.18);
}

/* Sound control sits below the persistent Experience chrome. */
.site-sound-toggle { top: max(72px, calc(env(safe-area-inset-top) + 66px)); }

@media (max-width: 900px) {
  .experience-chrome { padding-top: max(10px, calc(env(safe-area-inset-top) + 7px)); }
  .experience-chrome__brand { width: 126px; }
  .experience-chrome__exit { display: none; }
  .experience-chrome__menu-button { width: 42px; height: 42px; }
  .experience-menu { width: min(390px, 94vw); padding-left: 24px; }
  .experience-menu__links a { font-size: clamp(23px, 7vw, 31px); }
  .experience-sound-entry { display: none !important; }
  html.experience-entry-locked, html.experience-entry-locked body { overflow-y: auto !important; }
  .site-sound-toggle { top: max(64px, calc(env(safe-area-inset-top) + 58px)); }
}

@media (prefers-reduced-motion: reduce) {
  .experience-menu, .experience-menu-scrim, .experience-sound-entry,
  .experience-chrome__brand { transition: none !important; }
}


/* V76: the cinematic scene wrapper intentionally ignores pointer events,
   but the final Return Home CTA must remain a real interactive control. */
.experience-scene .outro__return {
  pointer-events: auto !important;
}


/* =========================================================
   V77 — MOBILE + DESKTOP FINAL RETURN CTA RELIABILITY
   Re-enable the complete outro interaction chain. The rest of
   the cinematic scene remains pointer-suppressed as designed.
   ========================================================= */
.experience-scene[data-scene-id="outro"],
.experience-scene[data-scene-id="outro"] .scene__sticky,
.experience-scene[data-scene-id="outro"] .outro,
.experience-scene[data-scene-id="outro"] .outro__content {
  pointer-events: auto !important;
}
.experience-scene[data-scene-id="outro"] .outro::before {
  pointer-events: none !important;
}
.experience-scene[data-scene-id="outro"] .outro__content {
  z-index: 4;
}
.experience-scene[data-scene-id="outro"] .outro__return {
  position: relative;
  z-index: 8;
  pointer-events: auto !important;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}
@media (max-width: 900px) {
  .experience-scene[data-scene-id="outro"] .outro__return {
    min-height: 52px;
    padding-inline: 22px;
  }
}


/* =========================================================
   V79 — DESKTOP-ONLY OUTRO COMPOSITION POLISH
   Refine the final desktop title card so the composition sits
   more intentionally within the circular field and the CTA reads
   as a designed endcap rather than an appended utility button.
   Mobile remains unchanged.
   ========================================================= */
@media (min-width: 901px) {
  .experience-scene[data-scene-id="outro"] .outro {
    place-items: center;
    background:
      radial-gradient(circle at 50% 42%, rgba(198,145,54,.16), transparent 27%),
      linear-gradient(#030303, #070604 68%, #030303);
  }

  .experience-scene[data-scene-id="outro"] .outro::before {
    width: min(50vw, 700px);
    border-color: rgba(218,177,94,.15);
    box-shadow: 0 0 175px rgba(218,177,94,.07) inset;
    transform: translateY(-10px);
  }

  .experience-scene[data-scene-id="outro"] .outro__content {
    width: min(760px, calc(100vw - 88px));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateY(-18px);
  }

  .experience-scene[data-scene-id="outro"] .outro__brand {
    margin: 0 0 18px;
    font-size: 13px;
    letter-spacing: .22em;
  }

  .experience-scene[data-scene-id="outro"] .outro__title {
    margin: 0;
    max-width: 8.2ch;
    font-size: clamp(72px, 6.9vw, 110px);
    line-height: .9;
    letter-spacing: -.028em;
    text-shadow: 0 0 56px rgba(216,173,87,.10);
  }

  .experience-scene[data-scene-id="outro"] .outro__date {
    margin-top: 26px;
    font-size: 14px;
    letter-spacing: .18em;
  }

  .experience-scene[data-scene-id="outro"] .outro__cta {
    position: relative;
    margin-top: 34px;
    padding-top: 22px;
    font-size: clamp(18px, 1.5vw, 24px);
    letter-spacing: .12em;
  }

  .experience-scene[data-scene-id="outro"] .outro__cta::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(430px, 62%);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(216,173,87,0), rgba(216,173,87,.55), rgba(216,173,87,0));
  }

  .experience-scene[data-scene-id="outro"] .outro__return {
    margin-top: 28px;
    margin-inline: auto;
    min-height: 52px;
    padding: 0 28px;
    border-color: rgba(219,175,84,.58);
    background: rgba(3,3,3,.26);
    box-shadow: 0 10px 28px rgba(0,0,0,.22);
    font-size: 10px;
    letter-spacing: .15em;
    white-space: nowrap;
  }
}
