.journey-body { background: var(--paper); }

/* Hero */
.journey-hero {
  padding: 110px 24px 90px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}
.journey-hero-inner { max-width: 720px; margin: 0 auto; }
.journey-hero h1 {
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 600;
}
.journey-hero-sub {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 22px auto 36px;
}
.scroll-cue {
  display: inline-block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

/* Main / spine */
.journey-main {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 40px;
}
.journey-spine {
  position: absolute;
  top: 0;
  bottom: 80px;
  left: 24px;
  width: 2px;
  background: var(--line);
}
@media (min-width: 640px) {
  .journey-spine { left: 50%; transform: translateX(-26px); }
}

/* Chapters */
.chapter {
  position: relative;
  padding-left: 64px;
  margin-bottom: 86px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.chapter.visible { opacity: 1; transform: translateY(0); }
.chapter:last-child { margin-bottom: 0; }

.chapter-num {
  position: absolute;
  left: 0;
  top: -6px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--accent-2);
  color: var(--accent);
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chapter-years {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-2);
  margin: 6px 0 6px;
}
.chapter-body h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.chapter-body p {
  color: var(--ink-soft);
  font-size: 1.04rem;
  margin-bottom: 16px;
}

.chapter-detour .chapter-num { border-color: #8a8f9a; }
.chapter-major .chapter-num { background: var(--accent); border-color: var(--accent); color: #fff; }

.pull-stat {
  font-family: 'Source Serif 4', serif;
  font-size: 1.25rem;
  color: var(--ink);
  border-left: 3px solid var(--accent-2);
  padding-left: 18px;
  margin: 24px 0;
}
.pull-stat strong { color: var(--accent); }

.voice-quote {
  margin: 26px 0;
  padding: 18px 22px;
  background: var(--paper-alt);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Source Serif 4', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
}

.chapter-epilogue .chapter-num {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #fff;
  font-size: 1.3rem;
}
.epilogue-line {
  font-family: 'Source Serif 4', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}
.journey-cta { justify-content: flex-start; margin-top: 28px; }

@media (max-width: 639px) {
  .chapter { padding-left: 56px; }
  .chapter-num { width: 44px; height: 44px; font-size: 0.92rem; }
  .journey-hero h1 { font-size: 1.9rem; }
}
