/* ═══════════════════════════════
   TOKENS & RESET
   (Extracted verbatim from the original index.html <style> block —
    the look is unchanged. New component styles are appended at the end.)
═══════════════════════════════ */
:root {
  --ink:        #18181a;
  --ink-soft:   #3d3d42;
  --surface:    #faf9f6;
  --surface-2:  #f2efe8;
  --surface-3:  #e8e3d8;
  --line:       #ddd9ce;
  --moss:       #3d5c35;
  --moss-mid:   #567a4a;
  --moss-light: #8aac7a;
  --tarn:       #2d4f64;
  --tarn-light: #4d7fa0;
  --gold:       #b07d2e;
  --gold-light: #d4a855;
  --cream:      #fdfaf3;
  --white:      #ffffff;
  --red-accent: #8b3a3a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius: 4px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

/* ═══════════════════════════════
   UTILITY
═══════════════════════════════ */
.container      { max-width: 860px;  margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss-mid);
  display: block;
  margin-bottom: 0.6rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}
p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════
   NAV BAR
═══════════════════════════════ */
#topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(24,24,26,0.96);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.topbar-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.topbar-brand span { color: var(--gold-light); }

.topbar-links {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.topbar-links::-webkit-scrollbar { display: none; }
.topbar-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  white-space: nowrap;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.topbar-links a:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }

.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--moss);
  color: white;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  transition: background 0.2s;
  white-space: nowrap;
}
.topbar-cta:hover { background: var(--moss-mid); }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
#hero {
  margin-top: 56px;
  min-height: calc(100vh - 56px);
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(18,24,18,0.72) 0%, rgba(18,24,18,0.35) 55%, rgba(18,24,18,0.8) 100%),
    url('/assets/img/photo-1.webp') center/cover no-repeat;
  background-color: #2a3520;
}

.hero-inner {
  padding: 5rem 1.5rem;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(176,125,46,0.18);
  border: 1px solid rgba(176,125,46,0.45);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}
.hero-badge::before { content: '●'; font-size: 0.55rem; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: white;
  margin-bottom: 0.15em;
  letter-spacing: -0.01em;
}
.hero-inner h1 strong {
  font-weight: 700;
  display: block;
}
.hero-inner h1 em {
  font-style: italic;
  color: #d4c99a;
  font-weight: 300;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  margin: 1.2rem 0 2.5rem;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}
.pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  backdrop-filter: blur(4px);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-moss { background: var(--moss); color: white; }
.btn-moss:hover { background: var(--moss-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); }
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline-moss { background: transparent; color: var(--moss); border: 1.5px solid var(--moss); }
.btn-outline-moss:hover { background: var(--moss); color: white; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100%{transform:scaleY(0.3);opacity:0.4} 50%{transform:scaleY(1);opacity:1} }

/* ═══════════════════════════════
   STATS STRIP
═══════════════════════════════ */
.stats-strip {
  background: var(--ink);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  padding: 1.5rem 2.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-item span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
  display: block;
}

/* ═══════════════════════════════
   SECTIONS
═══════════════════════════════ */
section { padding: 5.5rem 0; }
section + section { border-top: 1px solid var(--line); }

/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
#about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}
.sticky-card {
  background: var(--moss);
  color: white;
  padding: 2rem;
  border-radius: var(--radius);
  position: sticky;
  top: 70px;
}
.sticky-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}
.info-rows { list-style: none; }
.info-rows li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}
.info-rows li:last-child { border-bottom: none; }
.info-rows .label { color: rgba(255,255,255,0.55); font-size: 0.75rem; letter-spacing: 0.08em; }
.info-rows .value { color: white; font-weight: 500; text-align: right; }

.gpx-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  margin-top: 1.25rem;
  transition: background 0.2s;
}
.gpx-link:hover { background: rgba(255,255,255,0.18); }
.gpx-icon { font-size: 1.2rem; }

/* ═══════════════════════════════
   ROUTE STAGES
═══════════════════════════════ */
#stages { background: var(--surface-2); }

.stage-list { margin-top: 2.5rem; }

.stage-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.stage-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(3px);
}

.stage-num {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-3);
  border-right: 1px solid var(--line);
}
.stage-num span {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--line);
  line-height: 1;
}
.stage-item:hover .stage-num { background: var(--moss); border-right-color: var(--moss); }
.stage-item:hover .stage-num span { color: rgba(255,255,255,0.4); }

.stage-body {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.stage-text {}
.stage-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.stage-subtitle {
  font-size: 0.82rem;
  color: var(--tarn);
  font-weight: 500;
  margin-top: 0.15rem;
}
.stage-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.stage-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  flex-shrink: 0;
}
.stage-distance {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--moss);
  line-height: 1;
}
.stage-distance sub {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--ink-soft);
  font-family: var(--font-body);
}
.difficulty-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2rem;
}
.diff-high     { background: #fce8e8; color: var(--red-accent); }
.diff-moderate { background: #e8f0e8; color: var(--moss); }
.diff-chall    { background: #e8ecf0; color: var(--tarn); }
.diff-easy     { background: #f4f0e4; color: var(--gold); }

.stage-arrow { color: var(--line); font-size: 1.2rem; margin-left: 0.5rem; }
.stage-item:hover .stage-arrow { color: var(--moss); }

/* ═══════════════════════════════
   WHY THIS ROUTE
═══════════════════════════════ */
#why { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s;
}
.why-card:hover { box-shadow: var(--shadow-md); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.88rem; }

/* ═══════════════════════════════
   LANDSCAPE HIGHLIGHTS
═══════════════════════════════ */
#landscape { background: var(--surface-2); }
.landscape-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.landscape-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 3px solid var(--moss-light);
}
.landscape-card h3 {
  font-size: 1.1rem;
  color: var(--moss);
  margin-bottom: 0.4rem;
}
.landscape-card p { font-size: 0.87rem; }

/* ═══════════════════════════════
   FAQ
═══════════════════════════════ */
#faq { background: var(--cream); }

.faq-wrap { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.faq-btn:hover .faq-q { color: var(--moss); }
.faq-toggle {
  width: 30px; height: 30px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss);
  font-size: 1.3rem;
  font-weight: 300;
  transition: all 0.25s;
  line-height: 1;
}
.faq-item.open .faq-toggle {
  background: var(--moss);
  border-color: var(--moss);
  color: white;
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.25s;
}
.faq-item.open .faq-body {
  max-height: 500px;
  padding-bottom: 1.4rem;
}
.faq-body p { font-size: 0.95rem; }

/* ═══════════════════════════════
   PLANNING
═══════════════════════════════ */
#planning { background: var(--surface-2); }
.planning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.planning-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.planning-card-icon { font-size: 1.6rem; margin-bottom: 0.9rem; }
.planning-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.planning-card p { font-size: 0.87rem; }

/* ═══════════════════════════════
   COMPARISON
═══════════════════════════════ */
#compare { background: var(--cream); }
.table-wrap { overflow-x: auto; margin-top: 2rem; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 560px;
}
thead th {
  background: var(--ink);
  color: white;
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
}
tbody td {
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
tbody tr:nth-child(even) td { background: var(--surface-2); }
tbody tr:hover td { background: var(--surface-3); }
.row-highlight td { font-weight: 600; color: var(--moss) !important; background: #eef4ea !important; }

/* ═══════════════════════════════
   CTA
═══════════════════════════════ */
#cta {
  background: var(--ink);
  padding: 6.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(61,92,53,0.5) 0%, transparent 65%);
  pointer-events: none;
}
#cta .container { position: relative; z-index: 1; }
#cta h2 { color: white; font-size: clamp(2.2rem, 5vw, 3.5rem); }
#cta p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: #111;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
}
.footer-brand strong { color: var(--gold-light); }
footer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  max-width: 580px;
  margin: 0;
}
footer a { color: var(--gold-light); text-decoration: none; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.2rem;
  margin: 0.4rem 0;
}
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.2rem;
  margin: 0.8rem 0 0.4rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.footer-legal a:hover { color: var(--gold-light); }

/* ═══════════════════════════════
   DIVIDER ORNAMENT
═══════════════════════════════ */
.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.8rem;
  margin: 2.5rem 0;
  opacity: 0.5;
}

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
  .sticky-card { position: static; }
  .why-grid { grid-template-columns: 1fr; }
  .stage-body { flex-wrap: wrap; }
  .stage-meta { flex-direction: row; align-items: center; }
  .topbar-links { display: none; }
}
@media (max-width: 520px) {
  .stat-item { padding: 1.2rem 1.4rem; }
  .hero-inner h1 { font-size: 2.8rem; }
}

/* ═══════════════════════════════════════════════════════════════
   NEW COMPONENTS (hub + stage pages)
   Built from the same tokens/components so the look is consistent.
═══════════════════════════════════════════════════════════════ */

/* Interior page top spacing (no full-height hero) */
.page-main { margin-top: 56px; }

/* Interior hero band (hub + stage headers) */
.subhero {
  background:
    linear-gradient(160deg, rgba(18,24,18,0.82) 0%, rgba(18,24,18,0.55) 60%, rgba(18,24,18,0.85) 100%),
    url('/assets/img/photo-1.webp') center/cover no-repeat;
  background-color: #2a3520;
  color: white;
  padding: 3.5rem 0 3rem;
}
.subhero .eyebrow { color: var(--gold-light); }
.subhero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.subhero h1 strong { font-weight: 700; }
.subhero-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.2rem;
}
.breadcrumbs a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs span { color: rgba(255,255,255,0.4); margin: 0 0.4rem; }

/* BLUF answer box (AEO) */
.bluf {
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 4px solid var(--moss);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  margin: 0 0 1.6rem;
  box-shadow: var(--shadow-sm);
}
.bluf p { font-size: 1.05rem; color: var(--ink); margin: 0; }
.bluf strong { color: var(--moss); }

/* Above-the-fold download row */
.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 0.5rem;
}
.download-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.6rem;
}

/* Generic content article */
.content { padding: 4rem 0; }
.content section { padding: 2.4rem 0; }
.content section:first-child { padding-top: 0; }
.content h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 1rem; scroll-margin-top: 72px; }
.content h3 { margin-top: 1.4rem; }
.content ul, .content ol { margin: 0 0 1.1rem 1.2rem; }
.content li { font-size: 1rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 0.4rem; }
.content a.inline { color: var(--moss); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }

/* Key takeaways speakable block */
.takeaways {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.takeaway {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}
.takeaway .k {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss-mid);
  display: block;
  margin-bottom: 0.35rem;
}
.takeaway .v {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.takeaway .v small { font-family: var(--font-body); font-size: 0.8rem; font-weight: 400; color: var(--ink-soft); }

/* Verify / conditions note */
.verify-note {
  background: #fbf6ea;
  border: 1px solid var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
  font-size: 0.92rem;
}
.verify-note .verify-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.verify-note p { font-size: 0.92rem; margin-bottom: 0.4rem; }
.verify-note p:last-child { margin-bottom: 0; }

/* E-E-A-T verified badge */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 2rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.74rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}
.verified-badge strong { color: var(--moss); }

/* Elevation profile */
.elevation-profile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem 1rem;
  margin: 1.5rem 0;
}
.elevation-profile h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.elevation-profile .ep-meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
}
.elevation-profile svg { width: 100%; height: auto; display: block; }
.ep-source { font-size: 0.68rem; color: var(--ink-soft); opacity: 0.75; margin-top: 0.5rem; }

/* Map */
.route-map {
  height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 1.5rem 0;
  background: var(--surface-2);
  position: relative;
  z-index: 0;
}
.map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Stage nav (prev/next) */
.stage-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.stage-nav a {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}
.stage-nav a:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stage-nav .dir {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss-mid);
}
.stage-nav .nav-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 0.25rem;
}
.stage-nav .next { text-align: right; }
.stage-nav .disabled { opacity: 0.4; pointer-events: none; }

/* Variant comparison callout */
.variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.4rem 0;
}
.variant-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top: 3px solid var(--tarn-light);
  padding: 1.4rem;
}
.variant-card.high { border-top-color: var(--red-accent); }
.variant-card.low { border-top-color: var(--moss-light); }
.variant-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

/* Hub full-route download panel */
.route-download {
  background: var(--moss);
  color: white;
  border-radius: var(--radius);
  padding: 2rem;
  margin: 1.5rem 0;
}
.route-download h3 { color: var(--gold-light); }
.route-download p { color: rgba(255,255,255,0.8); }
.route-download .btn-ghost { color: white; }

@media (max-width: 640px) {
  .stage-nav { grid-template-columns: 1fr; }
  .stage-nav .next { text-align: left; }
}

/* Leaflet route map */
.route-map { overflow: hidden; }
.route-map .leaflet-container { height: 100%; width: 100%; background: var(--surface-2); font: inherit; }
