/* ============================================================
   Off the Floor — pathway page styles
   Scoped under .otf. Uses tokens from style.css (load order: style.css then this).
   No edits to the shared stylesheet; no fixed font sizes (responsive via --fs-* tokens).
   ============================================================ */

/* Shared rounded image treatment (matches journey scene cards) */
.otf .art {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--c-sand);
}
.otf .art img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ---------- HERO ---------- */
.otf .ofp-hero { padding-block: clamp(var(--s-7), 7vw, var(--s-10)); }
.otf .ofp-hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(var(--s-6), 5vw, var(--s-9)); align-items: center;
}
.otf .ofp-hero h1 { margin: var(--s-4) 0 var(--s-5); }
.otf .ofp-hero h1 .accent { color: var(--c-teal); font-style: italic; font-weight: 380; }
.otf .ofp-hero .lede { font-size: var(--fs-lg); max-width: 34rem; }
.otf .ofp-hero .art { aspect-ratio: 5 / 4; }
.otf .hero-cta { display: flex; gap: var(--s-3); align-items: center; flex-wrap: wrap; margin-top: var(--s-6); }
@media (max-width: 900px) {
  .otf .ofp-hero-grid { grid-template-columns: 1fr; }
  .otf .ofp-hero .art { order: -1; max-width: 520px; margin-inline: auto; }
}

/* ---------- NARRATIVE ARC (matches journey scale) ---------- */
.otf .arc-intro { max-width: 44rem; margin: 0 auto clamp(var(--s-6), 5vw, var(--s-8)); text-align: center; }
.otf .arc-intro .lede { font-size: var(--fs-lg); max-width: 36rem; margin-inline: auto; }
.otf .scene {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s-6), 5vw, var(--s-9)); align-items: center;
  margin-top: clamp(var(--s-7), 6vw, var(--s-9));
}
.otf .scene:nth-child(even) .scene-cap { order: -1; }
@media (max-width: 820px) {
  .otf .scene { grid-template-columns: 1fr; gap: var(--s-5); }
  .otf .scene:nth-child(even) .scene-cap { order: 0; }
}
.otf .scene .art { aspect-ratio: 5 / 4; }
.otf .scene-num {
  display: block; font-family: var(--font-sans); font-size: var(--fs-xs);
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-muted); margin-bottom: var(--s-4);
}
.otf .scene-num.is-teal { color: var(--c-teal); }
.otf .scene-num.is-coral { color: var(--c-coral); }
.otf .scene-cap h3 {
  font-size: var(--fs-2xl); font-weight: 380; letter-spacing: -0.024em;
  line-height: 1.08; margin: 0 0 var(--s-4); max-width: 18ch;
}
.otf .scene-cap p { color: var(--c-ink-soft); font-size: var(--fs-md); line-height: 1.55; max-width: 30rem; }

/* ---------- SELF-IDENTIFY ---------- */
.otf .mirror-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); margin-top: var(--s-6); }
@media (max-width: 680px) { .otf .mirror-grid { grid-template-columns: 1fr; } }
.otf .mcard {
  background: var(--c-paper); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: var(--s-5); box-shadow: var(--shadow-sm);
}
.otf .mcard .pill { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-teal); }
.otf .mcard p { font-family: var(--font-serif); font-size: var(--fs-lg); line-height: 1.35; color: var(--c-ink-soft); margin-top: var(--s-2); }

/* ---------- THE PATH (visual roadmap) ---------- */
.otf .pathwrap { text-align: center; max-width: 46rem; margin-inline: auto; }
.otf .roadmap { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); margin-top: var(--s-7); text-align: center; }
.otf .roadmap::before { content: ""; position: absolute; top: 30px; left: 12%; right: 12%; height: 2px; background: var(--c-line); z-index: 0; }
.otf .rnode { position: relative; z-index: 1; }
.otf .rdot {
  width: 62px; height: 62px; border-radius: 50%; background: var(--c-paper);
  border: 2px solid var(--c-line); color: var(--c-muted); font-family: var(--font-serif);
  font-size: var(--fs-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--s-3);
}
.otf .rnode.is-free .rdot { background: var(--c-teal); border-color: var(--c-teal); color: #fff; }
.otf .rnode .rprice { font-family: var(--font-serif); font-size: var(--fs-md); color: var(--c-teal-deep); }
.otf .rnode .rprice.free { color: var(--c-teal); }
.otf .rnode h4 { font-size: var(--fs-md); margin: 0 0 var(--s-1); }
.otf .rnode p { font-size: var(--fs-sm); color: var(--c-muted); line-height: 1.45; }
@media (max-width: 680px) {
  .otf .roadmap { grid-template-columns: 1fr; gap: 0; text-align: left; }
  .otf .roadmap::before { top: 0; bottom: 0; left: 30px; right: auto; width: 2px; height: auto; }
  .otf .rnode { display: grid; grid-template-columns: 62px 1fr; gap: var(--s-4); align-items: start; padding-bottom: var(--s-5); }
  .otf .rdot { margin: 0; }
}

/* ---------- OFFER RUNGS ---------- */
.otf .rung-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(var(--s-6), 5vw, var(--s-8)); align-items: start; }
.otf .rung-aside { margin-top: 5.5rem; }
@media (max-width: 820px) { .otf .rung-grid { grid-template-columns: 1fr; } .otf .rung-aside { margin-top: 0; } }
.otf .price-row { display: flex; align-items: baseline; gap: var(--s-4); margin: var(--s-3) 0 var(--s-4); flex-wrap: wrap; }
.otf .price { font-family: var(--font-serif); font-size: var(--fs-xl); color: var(--c-teal-deep); }
.otf .price small { font-size: var(--fs-base); color: var(--c-muted); }
.otf .cap { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--c-coral); }
.otf .ttv { font-size: var(--fs-sm); color: var(--c-teal-deep); font-weight: 500; }
.otf .lede-sm { font-size: var(--fs-md); color: var(--c-ink-soft); line-height: 1.55; }
.otf .walk-label { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-muted); margin-top: var(--s-5); }
.otf .walk { margin: var(--s-3) 0 var(--s-5); padding: 0; list-style: none; }
.otf .walk li { padding: var(--s-3) 0 var(--s-3) 1.6rem; position: relative; font-size: var(--fs-base); color: var(--c-ink-soft); line-height: 1.45; border-bottom: 1px solid var(--c-line-soft); }
.otf .walk li::before { content: ""; position: absolute; left: 0; top: 1.3rem; width: 7px; height: 7px; border-radius: 50%; background: var(--c-teal); opacity: .55; }
.otf .note { font-size: var(--fs-base); color: var(--c-ink-soft); margin-top: var(--s-4); line-height: 1.6; }
.otf .note a { color: var(--c-teal-deep); font-weight: 500; }
.otf .cta-sub { font-size: var(--fs-sm); color: var(--c-muted); margin-top: var(--s-2); }
.otf .roi { font-family: var(--font-serif); font-style: italic; font-size: var(--fs-lg); color: var(--c-teal-deep); line-height: 1.4; margin-top: var(--s-4); }
.otf .payoff { font-family: var(--font-serif); font-size: var(--fs-xl); color: var(--c-ink); line-height: 1.3; margin-top: var(--s-5); }
.otf .fork { background: var(--c-amber-soft); border-radius: var(--radius-sm); padding: var(--s-5); font-size: var(--fs-base); margin-top: var(--s-5); color: var(--c-ink-soft); line-height: 1.6; }
.otf .fork b { font-family: var(--font-serif); font-weight: 500; }
.otf .gate-tag { display: inline-flex; align-items: center; gap: var(--s-2); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-amber); background: var(--c-amber-soft); padding: 0.35rem 0.8rem; border-radius: var(--radius-pill); margin-bottom: var(--s-3); }

/* ---------- INFO CARDS ---------- */
.otf .card { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.otf .card-head { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-teal-deep); background: var(--c-teal-soft); padding: var(--s-3) var(--s-4); }
.otf .card-body { padding: var(--s-4) var(--s-5); font-size: var(--fs-base); }
.otf .toc { list-style: none; margin: 0; padding: 0; }
.otf .toc li { padding: var(--s-3) 0; border-bottom: 1px solid var(--c-line-soft); color: var(--c-ink); font-size: var(--fs-base); }
.otf .toc li:last-child { border-bottom: none; }
.otf .toc-cap { font-size: var(--fs-sm); color: var(--c-muted); margin-top: var(--s-3); line-height: 1.5; }
.otf .checklist { list-style: none; margin: 0; padding: 0; }
.otf .checklist li { position: relative; padding: var(--s-3) 0 var(--s-3) 2.1rem; border-bottom: 1px solid var(--c-line-soft); font-size: var(--fs-base); color: var(--c-ink-soft); line-height: 1.45; }
.otf .checklist li:last-child { border-bottom: none; }
.otf .checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.95rem; width: 18px; height: 18px; border-radius: 50%;
  background: var(--c-teal-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231F5959' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ---------- WORKED-EXAMPLE PHOTO CARD ---------- */
.otf .photo-card { background: var(--c-paper); border: 1px solid var(--c-line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.otf .photo-card .img { aspect-ratio: 16 / 11; overflow: hidden; background: var(--c-sand); }
.otf .photo-card .img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.otf .photo-card .body { padding: var(--s-5); }
.otf .pc-label { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: var(--s-3); }
.otf .ba-row { display: flex; gap: var(--s-5); margin-bottom: var(--s-3); }
.otf .ba-row .col { flex: 1; }
.otf .ba-row .k { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-muted); }
.otf .ba-row .num { font-family: var(--font-serif); font-size: var(--fs-lg); color: var(--c-teal-deep); line-height: 1.1; margin-top: var(--s-1); }
.otf .ba-row .num small { font-size: var(--fs-sm); color: var(--c-ink-soft); font-family: var(--font-sans); }
.otf .ba-row .col p { font-size: var(--fs-sm); color: var(--c-muted); margin-top: var(--s-1); line-height: 1.45; }
.otf .result { background: var(--c-teal-soft); border-radius: var(--radius-sm); padding: var(--s-3) var(--s-4); font-size: var(--fs-base); color: var(--c-ink); line-height: 1.55; }
.otf .result b { color: var(--c-teal-deep); }
.otf .seatbar { display: flex; gap: var(--s-2); margin: var(--s-1) 0 var(--s-3); }
.otf .seat { width: 38px; height: 11px; border-radius: 6px; background: var(--c-teal); }
.otf .seat.open { background: var(--c-line); }

/* ---------- PROOF + FINAL ---------- */
.otf .proof { text-align: center; }
.otf .proof blockquote { font-family: var(--font-serif); font-size: var(--fs-3xl); font-weight: 380; line-height: 1.12; letter-spacing: -0.02em; color: var(--c-base); font-style: italic; max-width: 46rem; margin-inline: auto; }
.otf .proof cite { display: block; margin-top: var(--s-5); font-style: normal; font-size: var(--fs-sm); color: color-mix(in oklab, var(--c-base) 70%, transparent); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.otf .final { text-align: center; }
.otf .final .lede { max-width: 34rem; margin: var(--s-4) auto var(--s-6); color: color-mix(in oklab, var(--c-base) 80%, transparent); }
.otf .reassure { display: flex; gap: var(--s-6); justify-content: center; flex-wrap: wrap; margin-top: var(--s-5); font-size: var(--fs-sm); color: color-mix(in oklab, var(--c-base) 60%, transparent); }
