.slides-page {
  padding: 48px var(--pad) 88px;
  max-width: calc(var(--max) + 2 * var(--pad));
  margin: 0 auto;
}

.slides-intro {
  max-width: 720px;
  margin-bottom: 56px;
}

.slides-intro h1 {
  margin: 0;
  font-size: clamp(32px, 4.4vw, 52px);
}

.slides-intro .lede {
  margin-top: 16px;
}

.variant {
  margin-bottom: 72px;
}

.variant-head {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px;
  margin-bottom: 22px;
  align-items: end;
}

.variant-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
}

.variant-head p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
}

.deck {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.slide-frame {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
}

.slide-bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 3px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

@keyframes slideBar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.story {
  padding: 0 var(--pad) 8px;
  max-width: calc(var(--max) + 2 * var(--pad));
  margin: 0 auto;
  scroll-margin-top: 78px;
}

.story-lite {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.lite-steps {
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
  display: grid;
  gap: 10px;
}

.lite-steps li {
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 16px 16px;
}

.lite-steps .n {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
}

.lite-steps h3 {
  margin: 4px 0 6px;
  font-size: 20px;
}

.lite-steps p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.story-kicker {
  margin: 0;
  padding: 18px 0 12px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .slide-bar {
    display: none;
  }
}

.slide-frame img {
  display: block;
  width: 100%;
  height: 52vh;
  min-height: 320px;
  max-height: 560px;
  object-fit: cover;
}

.slide-frame img[src$=".svg"],
.thumbs img[src$=".svg"],
.strip-card img[src$=".svg"] {
  object-fit: contain;
  background: #102445;
}

.route-map {
  display: block;
  width: 100%;
  height: 52vh;
  min-height: 320px;
  max-height: 560px;
  background: #102445;
}

.route-map svg {
  display: block;
  width: 100%;
  height: 100%;
}

.film-stage .route-map {
  height: 46vh;
}

.thumbs .route-map {
  height: 64px;
  min-height: 0;
  max-height: none;
}

.strip-card .route-map {
  height: 280px;
  min-height: 0;
  max-height: none;
}

.caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 22px 20px;
  background: linear-gradient(transparent, rgba(16, 36, 69, 0.88));
  color: #f4f7fb;
}

.caption .n {
  margin: 0 0 6px;
  color: var(--gold-2);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.caption h3 {
  margin: 0;
  color: #f4f7fb;
  font-size: clamp(26px, 3vw, 36px);
}

.caption p {
  margin: 8px 0 0;
  color: #c5d0db;
  max-width: 46ch;
  line-height: 1.5;
}

.nav-btns {
  position: absolute;
  top: 50%;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.nav-btns button {
  pointer-events: auto;
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(16, 36, 69, 0.72);
  color: #f4f7fb;
  font-size: 22px;
  cursor: pointer;
}

.nav-btns button:hover {
  background: var(--navy);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: #fff;
}

.dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
}

.dots button[aria-current="true"] {
  background: var(--navy);
  width: 22px;
  border-radius: 8px;
}

.film-stage .slide-frame img {
  height: 46vh;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  padding: 10px;
  background: #fff;
}

.thumbs button {
  margin: 0;
  padding: 0;
  border: 2px solid transparent;
  background: var(--navy-deep);
  cursor: pointer;
}

.thumbs button.is-on,
.thumbs button[aria-current="true"] {
  border-color: var(--gold);
}

.thumbs img {
  display: block;
  width: 100%;
  height: 64px;
  object-fit: cover;
}

.strip-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 78%);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px;
  background: #e8eef5;
}

.strip-card {
  scroll-snap-align: start;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
}

.strip-card img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.strip-card figcaption {
  padding: 14px 16px 16px;
}

.strip-card .n {
  margin: 0 0 4px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.strip-card h3 {
  margin: 0;
  font-size: 22px;
}

.strip-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .slide-frame img,
  .film-stage .slide-frame img,
  .route-map,
  .film-stage .route-map {
    height: 38vh;
    min-height: 240px;
  }

  .thumbs {
    grid-template-columns: repeat(10, minmax(52px, 1fr));
    overflow-x: auto;
  }

  .thumbs img {
    height: 52px;
  }

  .strip-track {
    grid-auto-columns: 86%;
  }
}

.voices {
  background: var(--navy-deep);
  color: #f4f7fb;
  scroll-margin-top: 78px;
}

.voices-stage {
  max-width: calc(var(--max) + 2 * var(--pad));
  margin: 0 auto;
  padding: 0;
}

.voices-frame {
  position: relative;
  min-height: 360px;
  padding: 56px var(--pad) 48px;
}

.voices-frame .kicker {
  margin: 0 0 18px;
}

.voices-n {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.voices-text {
  margin: 0;
  max-width: 36ch;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
  color: #f4f7fb;
}

.voices-who {
  margin: 28px 0 0;
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.voices-dots {
  background: transparent;
  padding: 0 var(--pad) 28px;
}

.voices-dots button {
  background: rgba(224, 194, 122, 0.28);
}

.voices-dots button.is-on,
.voices-dots button[aria-current="true"] {
  background: var(--gold-2);
}

.voices .nav-btns button {
  background: rgba(244, 247, 251, 0.12);
  color: #f4f7fb;
}

.voices .nav-btns button:hover {
  background: var(--navy);
}

@media (max-width: 980px) {
  .voices-frame {
    min-height: 300px;
    padding: 40px var(--pad) 36px;
  }

  .voices-text {
    max-width: none;
  }
}
