/* SCENE 09 — THE BRIDGE (ink, ~150vh pivot). Brightening phrases,
   signature at display scale between two drawing rules, roadmap as
   one quiet dotted row. Everything visible by default (static law);
   initial hidden states live only in js/scenes/s09.js. */

.s09 {
  min-height: 150vh;
  display: flex;
}

.s09-flow {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(120px, 14vh, 180px);
}

.s09-lead,
.s09-sig,
.s09-roadmap { will-change: transform; }

.s09-h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  max-width: 20ch;
}

.s09-body {
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  line-height: 1.75;
}

.s09-sig { margin-top: clamp(96px, 15vh, 200px); }

.s09-sig__line {
  margin-block: 44px;
  font-size: clamp(1.75rem, 3.6vw, 3.1rem);
  max-width: 28ch;
}

.s09-roadmap {
  margin-top: clamp(96px, 13vh, 180px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.s09-roadmap__item {
  font-size: .7rem;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bone) 58%, transparent);
  white-space: nowrap;
}

/* the "dotted" of the dotted row: pure geometry, no text */
.s09-roadmap__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .7;
  flex: none;
}

@media (max-width: 899px) {
  .s09-flow { padding-block: 104px; }
  .s09-sig { margin-top: 88px; }
  .s09-sig__line { margin-block: 32px; }
  .s09-roadmap { margin-top: 88px; }
}
