/* ==========================================================================
   TrailRaiser 2026 — RBC-style fundraising build
   Shared stylesheet. Clean modern layout, poster-derived colour palette.
   Palette sampled from TR2026_Poster_RevC (cream/sand, forest green,
   ocean teal-blue, gold/orange accents, clay red, dark teal ink).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Poster palette */
  --sand:        #F4E9CE;
  --sand-deep:   #EADCBA;
  --paper:       #FFFDF7;
  --ink:         #16323D;
  --ink-soft:    #3D5560;
  --forest:      #2E5E3A;
  --forest-dark: #234A2D;
  --sea:         #1F7A93;
  --sea-deep:    #14586C;
  --gold:        #E3A12C;
  --gold-dark:   #C98820;
  --orange:      #D9742C;
  --clay:        #C24A35;
  --line:        #E2D6BB;

  /* Difficulty */
  --d-easy:      #2E5E3A;
  --d-moderate:  #1F7A93;
  --d-long:      #D9742C;
  --d-power:     #C24A35;
  --d-race:      #16323D;

  --shadow-sm: 0 1px 3px rgba(22,50,61,.10);
  --shadow-md: 0 6px 20px rgba(22,50,61,.12);
  --shadow-lg: 0 16px 40px rgba(22,50,61,.18);
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--sand);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: .01em;
}

a { color: var(--sea-deep); }

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sea);
}
.eyebrow.on-dark { color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold   { background: var(--gold); color: var(--ink); }
.btn-forest { background: var(--forest); color: #fff; }
.btn-sea    { background: var(--sea); color: #fff; }
.btn-outline{ background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline.on-dark { color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost  { background: rgba(255,255,255,.15); color:#fff; border-color: rgba(255,255,255,.5); }

/* ══════════════════════════════════════════════════════════════
   SITE HEADER / NAV
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(244,233,206,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.nav-brand img { height: 46px; width: auto; }
.nav-wordmark {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .5px;
  line-height: 1;
  color: var(--forest);
}
.nav-wordmark span { color: var(--sea); }
.nav-wordmark small {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover { color: var(--sea); }
.nav-cta { padding: 10px 22px; font-size: 13px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 26px; color: var(--ink); cursor: pointer; }

/* ══════════════════════════════════════════════════════════════
   HERO (landing)
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(120deg, var(--sea-deep) 0%, var(--forest-dark) 70%, var(--forest) 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/hero.webp') center/cover no-repeat;
  transform: scale(1.02);
}
.hero-scenery { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; opacity: .9; pointer-events: none; }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(20,48,58,.86) 0%, rgba(20,72,90,.66) 45%, rgba(20,48,58,.30) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 78px);
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 3px 16px rgba(0,0,0,.35);
  max-width: 16ch;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 400;
  margin: 18px 0 8px;
  max-width: 46ch;
  color: rgba(255,255,255,.94);
}
.hero-meta {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ══════════════════════════════════════════════════════════════
   SECTION SCAFFOLD
   ══════════════════════════════════════════════════════════════ */
.section { padding: 78px 0; }
.section.tight { padding: 56px 0; }
.section.sand-deep { background: var(--sand-deep); }
.section.forest {
  background: linear-gradient(135deg, var(--forest-dark), var(--forest) 60%, var(--sea-deep));
  color: #fff;
}
.section.sea {
  background: linear-gradient(135deg, var(--sea-deep), var(--sea));
  color:#fff;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 {
  font-size: clamp(30px, 4.5vw, 46px);
  text-transform: uppercase;
  margin: 10px 0 14px;
}
.section-head p { font-size: 17px; color: var(--ink-soft); }
.section.forest .section-head p,
.section.sea .section-head p { color: rgba(255,255,255,.9); }

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.step {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.step-num {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sea), var(--forest));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 21px; text-transform: uppercase; margin-bottom: 10px; color: var(--forest-dark); }
.step p { font-size: 15px; color: var(--ink-soft); }

/* ══════════════════════════════════════════════════════════════
   EVENTS / ROUTE ROLL (cards)
   ══════════════════════════════════════════════════════════════ */
.route-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}
.route-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.route-card .card-top {
  position: relative;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  color: #fff;
}
.card-top.easy     { background: linear-gradient(120deg, var(--d-easy), #3f7a4c); }
.card-top.moderate { background: linear-gradient(120deg, var(--d-moderate), #2a93af); }
.card-top.long     { background: linear-gradient(120deg, var(--d-long), #e8913f); }
.card-top.power    { background: linear-gradient(120deg, var(--d-power), #d76048); }
.card-top.race     { background: linear-gradient(120deg, var(--d-race), #2c5564); }
.card-kicker {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.route-card .card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.route-card h3 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--ink);
}
.route-card .card-route { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; }
.route-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.route-stats .rs { display: flex; flex-direction: column; }
.route-stats .rs b {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--forest-dark);
  line-height: 1;
}
.route-stats .rs span {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #90a0a6;
}
.badges { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 18px; }
.badge {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.badge.easy     { background: rgba(46,94,58,.12); color: var(--d-easy); }
.badge.moderate { background: rgba(31,122,147,.12); color: var(--d-moderate); }
.badge.long     { background: rgba(217,116,44,.14); color: var(--d-long); }
.badge.power    { background: rgba(194,74,53,.14); color: var(--d-power); }
.badge.race     { background: rgba(22,50,61,.10); color: var(--d-race); }
.badge.family   { background: rgba(227,161,44,.18); color: #9c6a12; }
.route-card .card-cta { margin-top: auto; }
.route-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--sea-deep);
  text-decoration: none;
}
.route-card .card-link:hover { color: var(--clay); }

/* ══════════════════════════════════════════════════════════════
   PRIZES TEASER BLOCK (landing)
   ══════════════════════════════════════════════════════════════ */
.prize-teaser {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--paper);
  border: 1px solid var(--line);
}
.prize-teaser .pt-copy { padding: 48px 44px; }
.prize-teaser h2 { font-size: clamp(28px,3.6vw,40px); text-transform: uppercase; margin-bottom: 16px; color: var(--ink); }
.prize-teaser p { font-size: 16px; color: var(--ink-soft); margin-bottom: 14px; }
.prize-teaser .pt-list { list-style: none; margin: 18px 0 26px; }
.prize-teaser .pt-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 15px; margin-bottom: 10px; color: var(--ink);
}
.prize-teaser .pt-list li::before { content: '◆'; color: var(--gold); flex-shrink: 0; }
.prize-teaser .pt-feature {
  position: relative;
  background: linear-gradient(150deg, var(--sea-deep), var(--forest-dark));
  color: #fff;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pt-feature .ribbon {
  align-self: flex-start;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.pt-feature h3 { font-size: 30px; text-transform: uppercase; margin-bottom: 10px; }
.pt-feature p { color: rgba(255,255,255,.9); font-size: 15px; margin-bottom: 22px; }
.pt-feature .westjet {
  background: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  align-self: flex-start;
  margin-bottom: 24px;
}
.pt-feature .westjet img { height: 30px; width: auto; }

/* ══════════════════════════════════════════════════════════════
   PRIZES PAGE
   ══════════════════════════════════════════════════════════════ */
.prize-hero {
  background: linear-gradient(135deg, var(--sea-deep), var(--forest-dark));
  color: #fff;
  text-align: center;
  padding: 84px 24px 72px;
}
.prize-hero h1 { font-size: clamp(34px,6vw,60px); text-transform: uppercase; margin-bottom: 16px; }
.prize-hero p { max-width: 56ch; margin: 0 auto; font-size: 18px; color: rgba(255,255,255,.92); }

.westjet-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  margin-top: -52px;
  position: relative;
  z-index: 5;
}
.westjet-feature .wf-art {
  background: linear-gradient(150deg, var(--sea), var(--sea-deep));
  color: #fff;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.westjet-feature .wf-copy { padding: 48px 44px; }
.westjet-feature .wf-copy .ribbon {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.westjet-feature h2 { font-size: clamp(28px,3.6vw,42px); text-transform: uppercase; margin-bottom: 14px; }
.westjet-feature p { color: var(--ink-soft); font-size: 16px; margin-bottom: 14px; }
.wf-logo-box { background:#fff; border:1px solid var(--line); border-radius: 10px; padding: 18px 26px; }
.wf-logo-box img { height: 46px; }

.prize-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 24px;
}
.tier-card {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.tier-card .tier-head {
  padding: 18px 24px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: linear-gradient(120deg, var(--forest), var(--sea));
}
.tier-card.gold .tier-head { background: linear-gradient(120deg, var(--gold), var(--orange)); color: var(--ink); }
.tier-card .tier-body { padding: 22px 24px; }
.tier-card .tier-body p { color: var(--ink-soft); font-size: 15px; margin-bottom: 12px; }
.tier-list { list-style: none; }
.tier-list li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px;
}
.tier-list li:last-child { border-bottom: none; }
.tier-list li b { font-family: 'Oswald', sans-serif; color: var(--clay); }

/* ══════════════════════════════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-big .num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(34px,5vw,52px);
  color: var(--gold);
  line-height: 1;
}
.stat-big .lbl {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
  color: rgba(255,255,255,.85);
}

/* ══════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════════════════════════ */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--sea); font-size: 24px; font-weight: 400; line-height: 1; }
.faq[open] summary::after { content: '\2212'; }
.faq summary:hover { color: var(--sea); }
.faq .faq-body { padding: 0 22px 20px; font-size: 15px; color: var(--ink-soft); }

/* ══════════════════════════════════════════════════════════════
   SPONSOR BAR
   ══════════════════════════════════════════════════════════════ */
.sponsor-bar { text-align: center; }
.sponsor-bar .eyebrow { display: block; margin-bottom: 26px; }
.sponsor-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 46px;
}
.sponsor-logos img { height: 52px; width: auto; object-fit: contain; filter: saturate(.95); }
.sponsor-logos .sponsor-fallback {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .5px;
  color: var(--ink-soft);
}

/* ══════════════════════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  text-align: center;
  padding: 64px 24px;
}
.cta-band h2 { font-size: clamp(28px,4.5vw,46px); text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }
.cta-band p { font-size: 18px; color: #5a3f16; margin-bottom: 26px; }
.cta-band .hero-actions { justify-content: center; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  padding: 50px 24px 32px;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand .nav-wordmark { color: #fff; }
.footer-brand .nav-wordmark span { color: var(--gold); }
.footer-brand p { font-size: 14px; margin-top: 10px; max-width: 34ch; }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col h4 { font-family:'Oswald',sans-serif; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.footer-col a { display: block; color: rgba(255,255,255,.78); text-decoration: none; font-size: 14px; margin-bottom: 8px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   HIKE DETAIL PAGE
   ══════════════════════════════════════════════════════════════ */
.hike-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hike-hero.easy     { background: linear-gradient(120deg, var(--forest-dark), var(--forest)); }
.hike-hero.moderate { background: linear-gradient(120deg, var(--sea-deep), var(--sea)); }
.hike-hero.long     { background: linear-gradient(120deg, #a8551c, var(--orange)); }
.hike-hero.power    { background: linear-gradient(120deg, #8f2f20, var(--clay)); }
.hike-hero.race     { background: linear-gradient(120deg, var(--ink), var(--sea-deep)); }
.hike-hero::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.45), transparent 60%);
}
.hike-hero-inner { position: relative; z-index: 2; padding: 48px 24px; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hike-hero .back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.85); text-decoration: none;
  font-family:'Oswald',sans-serif; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px;
}
.hike-hero .back-link:hover { color: #fff; }
.hike-hero .hero-badge { background: rgba(255,255,255,.92); color: var(--ink); }
.hike-hero h1 { font-size: clamp(36px,6vw,62px); text-transform: uppercase; margin: 12px 0 6px; text-shadow: 0 2px 10px rgba(0,0,0,.3); }
.hike-hero .hike-route { font-size: 18px; color: rgba(255,255,255,.92); }

.stat-strip {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin-top: -42px;
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
}
.stat-cell { padding: 22px 18px; text-align: center; border-right: 1px solid var(--line); }
.stat-cell:last-child { border-right: none; }
.stat-cell .lbl { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #90a0a6; margin-bottom: 6px; }
.stat-cell .val { font-family:'Oswald',sans-serif; font-size: 21px; font-weight: 600; color: var(--ink); }
.stat-cell .val.pill { font-size: 14px; padding: 4px 12px; border-radius: 6px; display: inline-block; }
.stat-cell .val.pill.easy     { background: rgba(46,94,58,.12); color: var(--d-easy); }
.stat-cell .val.pill.moderate { background: rgba(31,122,147,.12); color: var(--d-moderate); }
.stat-cell .val.pill.long     { background: rgba(217,116,44,.14); color: var(--d-long); }
.stat-cell .val.pill.power    { background: rgba(194,74,53,.14); color: var(--d-power); }
.stat-cell .val.pill.race     { background: rgba(22,50,61,.10); color: var(--d-race); }

.hike-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  margin-top: 40px;
  padding-bottom: 20px;
}
.card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  padding: 30px;
  margin-bottom: 26px;
}
.card h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.card h2 .ic {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--forest), var(--sea));
  color:#fff; display:flex; align-items:center; justify-content:center; font-size: 17px;
}
.route-overview p { font-size: 15.5px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 14px; }

.path-segment {
  border-left: 3px solid var(--forest);
  padding: 14px 18px;
  margin: 16px 0;
  background: #f7f3e7;
  border-radius: 0 8px 8px 0;
}
.path-segment h3 { font-family:'Oswald',sans-serif; font-size: 17px; font-weight: 600; margin-bottom: 4px; color: var(--forest-dark); }
.path-segment .path-meta { font-size: 13px; color: #8a7a55; margin-bottom: 8px; }
.path-segment .path-meta span { display:inline-block; margin-right: 16px; }
.path-segment p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.path-segment.connector { border-left-color: var(--gold); background: #fcf4e0; }
.path-segment.connector h3 { color: var(--orange); }

.highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.highlight-item { display: flex; gap: 10px; align-items: flex-start; padding: 10px 12px; background: #f7f3e7; border-radius: 8px; }
.highlight-item .hi-ic { font-size: 20px; flex-shrink: 0; line-height: 1; }
.highlight-item .hi-tx { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

.features-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.feature-tag {
  font-family:'Oswald',sans-serif; font-size: 12px; font-weight: 500; letter-spacing: .5px;
  color: var(--sea-deep); background: rgba(31,122,147,.08); padding: 5px 12px; border-radius: 999px;
  border: 1px solid rgba(31,122,147,.16);
}

.sidebar .card { padding: 24px; }
.map-figure { padding: 0 !important; overflow: hidden; }
.map-figure .map-head { padding: 20px 24px 6px; }
.map-figure .map-head h2 { margin-bottom: 4px; }
.map-figure .map-note { padding: 0 24px 16px; font-size: 12px; color: #90a0a6; }
.map-figure svg { display: block; width: 100%; height: auto; }

.logistics-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.logistics-item:last-child { border-bottom: none; }
.logistics-ic { width: 36px; height: 36px; border-radius: 8px; background: var(--sand-deep); display:flex; align-items:center; justify-content:center; font-size: 18px; flex-shrink: 0; }
.logistics-info h4 { font-family:'Oswald',sans-serif; font-size: 15px; font-weight: 500; margin-bottom: 2px; color: var(--ink); }
.logistics-info p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

.advisory { background: #fcf0df; border: 1px solid #f1dcb8; border-radius: 8px; padding: 16px; margin-top: 14px; }
.advisory h4 { font-size: 13px; font-weight: 700; color: var(--orange); margin-bottom: 6px; }
.advisory p { font-size: 13px; color: #6d5530; line-height: 1.55; }

.cta-bar {
  background: linear-gradient(135deg, var(--forest-dark), var(--sea-deep));
  border-radius: var(--radius);
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin: 16px 0 56px;
  box-shadow: var(--shadow-md);
}
.cta-bar .cta-tx h3 { font-size: 24px; text-transform: uppercase; color:#fff; margin-bottom: 4px; }
.cta-bar .cta-tx p { color: rgba(255,255,255,.85); font-size: 14px; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hike-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .prize-teaser, .westjet-feature { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); gap: 32px; }
}
@media (max-width: 820px) {
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--sand); border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; }
  .nav-toggle { display: block; }
  .stat-strip { grid-template-columns: repeat(3,1fr); }
  .stat-cell:nth-child(4), .stat-cell:nth-child(5) { border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .section { padding: 54px 0; }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
  .highlights-grid { grid-template-columns: 1fr; }
  .cta-bar { flex-direction: column; text-align: center; }
  .prize-teaser .pt-copy, .westjet-feature .wf-copy { padding: 32px 26px; }
}

/* ══════════════════════════════════════════════════════════════
   ROUTES — SINGLE TABBED PAGE
   ══════════════════════════════════════════════════════════════ */
.route-banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, var(--sea-deep) 0%, var(--forest-dark) 75%, var(--forest) 100%);
}
.route-banner-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.route-banner-scenery { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; opacity: .9; }
.route-banner-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(20,48,58,.88) 0%, rgba(20,48,58,.30) 65%, rgba(20,48,58,.45) 100%); }
.route-banner-inner { position: relative; z-index: 3; max-width: var(--maxw); margin: 0 auto; width: 100%; padding: 30px 24px; }
.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.16); border: 2px solid rgba(255,255,255,.65); color: #fff;
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  padding: 9px 18px; border-radius: 999px; text-decoration: none; margin-bottom: 16px;
  transition: background .15s;
}
.back-btn:hover { background: rgba(255,255,255,.30); }
.route-banner h1 { font-size: clamp(28px, 5vw, 50px); text-transform: uppercase; text-shadow: 0 2px 10px rgba(0,0,0,.3); }
.route-banner p { color: rgba(255,255,255,.92); font-size: 16px; margin-top: 4px; }

.routes-app {
  position: relative;
  max-width: var(--maxw);
  margin: 34px auto 56px;
  padding: 0 66px 0 24px;            /* right channel reserved for the fixed tab rail */
}
/* address-book style index tabs — vertical text, anchored to the right edge of the screen */
.route-rail {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.route-tab {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  cursor: pointer;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-right: none;
  border-radius: 12px 0 0 12px;
  padding: 14px 9px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: -3px 0 10px rgba(22,50,61,.10);
  transition: background .15s, color .15s, padding .15s;
}
.route-tab:hover { color: var(--sea); }
.route-tab.active {
  background: linear-gradient(180deg, var(--forest), var(--sea));
  color: #fff;
  border-color: transparent;
  padding-left: 14px;
}

.route-panel { display: none; }
.route-panel.active { display: block; animation: fadeIn .2s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.panel-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.panel-head h2 { font-size: clamp(24px, 3.4vw, 34px); text-transform: uppercase; color: var(--ink); }
.panel-route { font-size: 15px; color: var(--ink-soft); margin-bottom: 14px; }
.facts { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 20px; }
.fact { background: var(--sand-deep); border-radius: 999px; padding: 7px 16px; }
.fact b { font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600; color: var(--forest-dark); }
.fact .pill { font-size: 15px; font-weight: 600; }
.fact .pill.easy { color: var(--d-easy); }
.fact .pill.moderate { color: var(--d-moderate); }
.fact .pill.long { color: var(--d-long); }
.fact .pill.power { color: var(--d-power); }
.fact .pill.race { color: var(--d-race); }

.panel-grid { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.panel-main h3 {
  font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: .8px;
  text-transform: uppercase; color: var(--forest-dark); margin: 18px 0 8px;
  display: flex; align-items: center; gap: 9px;
}
.panel-main h3:first-child { margin-top: 0; }
.panel-main h3 .ic {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: rgba(31,122,147,.10);
  display: flex; align-items: center; justify-content: center;
}
.panel-main h3 .ic svg { width: 17px; height: 17px; display: block; }
.panel-main p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 10px; }
.poi-list { list-style: none; margin: 2px 0 6px; }
.poi-list li { position: relative; padding-left: 16px; font-size: 14px; color: var(--ink-soft); margin-bottom: 7px; line-height: 1.55; }
.poi-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 2px; background: var(--gold); }
.logi { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.logi p { margin-bottom: 7px; }
.logi strong { color: var(--ink); }
.panel-note { background: #fcf0df; border: 1px solid #f1dcb8; border-radius: 8px; padding: 12px 14px; font-size: 13px; color: #6d5530; margin-top: 12px; }

.panel-map { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.panel-map .pm-head { padding: 14px 16px 4px; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink); }
.panel-map .pm-note { padding: 0 16px 10px; font-size: 11px; color: #90a0a6; }
.panel-map img { display: block; width: 100%; height: auto; }
.panel-cta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

@media (max-width: 900px) {
  .routes-app { padding: 0 50px 0 18px; }
  .route-rail { gap: 5px; }
  .route-tab { min-height: 78px; font-size: 12px; padding: 12px 7px; letter-spacing: 1px; }
  .panel-grid { grid-template-columns: 1fr; }
  .panel-map { max-width: 480px; }
}
/* sticky-bar back button */
.nav-left { display: flex; align-items: center; gap: 16px; }
.nav-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Oswald', sans-serif; font-size: 12.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 999px; padding: 7px 15px;
  transition: border-color .15s, color .15s;
}
.nav-back:hover { color: var(--sea); border-color: var(--sea); }
@media (max-width: 560px) { .nav-back span { display: none; } }

/* prize estimated-value footer */
.tier-value {
  margin-top: 16px; padding-top: 12px; border-top: 1px dashed var(--line);
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: .5px;
  text-transform: uppercase; color: var(--clay);
}
.tier-value span { color: var(--ink-soft); font-weight: 500; }

/* WestJet image banner (prizes page grand prize) */
.westjet-banner {
  margin-top: -52px; position: relative; z-index: 5;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.westjet-banner img { display: block; width: 100%; height: auto; }
.westjet-banner-bar { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 26px; }
.westjet-banner-bar p { font-size: 15px; color: var(--ink-soft); margin: 0; }
@media (max-width: 640px) { .westjet-banner-bar { flex-direction: column; text-align: center; } }

/* WestJet image (landing-page teaser) */
.pt-westjet-img { width: 100%; border-radius: 10px; display: block; margin-bottom: 16px; box-shadow: var(--shadow-sm); }

/* ══════════════════════════════════════════════════════════════
   POSTER HERO — mirrors the TR2026 sandwich-board poster
   ══════════════════════════════════════════════════════════════ */
.poster-hero {
  position: relative;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: #14283a;
}
.poster-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  z-index: 0;
}
.poster-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,30,40,.09) 0%, rgba(10,30,40,.05) 30%, rgba(10,30,40,.22) 100%);
}
.poster-hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 32px;                /* uniform 32px rhythm between every hero child */
  padding: 32px 24px 32px;  /* matches the gap so nav→countdown reads the same */
  max-width: 1100px; width: 100%;
}
/* Logo + headline image share the same width so their edges align */
.poster-logo {
  width: clamp(280px, 80vw, 750px);
  max-height: clamp(160px, 24vh, 300px);
  object-fit: contain;
}
.ph-stack,
.ph-headline-img {
  width: clamp(220px, 36vw, 440px);
}
.ph-headline-img {
  align-self: flex-start;            /* left half of the hero */
  max-width: 50vw;                   /* hard-cap at halfway across */
  max-height: clamp(200px, 38vh, 420px);
  object-fit: contain;
  margin-top: 64px;                  /* total 96px from logo (32 gap + 64 margin) */
}
.ph-headline-img {
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.35));
}
.poster-logo {
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.35));
}
.ph-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.45), 0 0 1px rgba(0,0,0,.6);
  gap: 0;
}
/* All lines are centred; size hierarchy + horizontal rules create the unified poster look */
.ph-line {
  display: block;
  width: 100%;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
}
.ph-hikerun {
  font-size: clamp(28px, 5vw, 58px);
  letter-spacing: .03em;
  margin-bottom: 4px;
}
.ph-give {
  font-size: clamp(86px, 17vw, 200px);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .02em;
  line-height: 1;
}
.ph-accent {
  height: 3px;
  width: 100%;
  background: rgba(255,255,255,.85);
  box-shadow: 0 1px 3px rgba(0,0,0,.4);
  margin: 18px 0;
}
.ph-june6 {
  font-size: clamp(50px, 9.5vw, 116px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .02em;
}
.ph-itd {
  font-size: clamp(13px, 1.8vw, 19px);
  letter-spacing: .34em;
  font-weight: 600;
  padding-top: 8px;
}
.ph-place {
  font-size: clamp(18px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: .22em;
}
.poster-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 14px; }
.poster-cta .btn { min-width: 150px; }

/* Partner strip under the hero */
.partner-strip { background: var(--paper); border-bottom: 1px solid var(--line); padding: 22px 24px; }
.partner-strip-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.partner-strip-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink-soft);
}
.partner-strip-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 32px; }
.partner-strip-logo { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; min-height: 70px; }
.partner-strip-logo img { height: 38px; width: auto; object-fit: contain; filter: saturate(.95); }
.partner-role {
  font-family: 'Oswald', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.partner-strip-logo .wordmark {
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 18px; letter-spacing: .12em;
  color: var(--ink); text-transform: uppercase;
}
.partner-strip-div { width: 1px; height: 60px; background: var(--line); align-self: center; }
/* Countdown clock in hero (centered, +10% size) */
.countdown { display: flex; flex-direction: column; align-items: center; align-self: center; margin-bottom: 4px; }
.countdown-label {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  margin-bottom: 9px;
}
.countdown-grid { display: flex; gap: 11px; }
.cd-block {
  display: flex; flex-direction: column; align-items: center;
  min-width: 66px;
  padding: 9px 14px 7px;
  background: rgba(20,40,60,.42);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 10px;
}
.cd-num {
  font-family: 'Oswald', sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.cd-lbl {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  margin-top: 4px;
}
@media (max-width: 560px) {
  .cd-block { min-width: 54px; padding: 7px 9px 6px; }
  .cd-num { font-size: 28px; }
  .countdown-label { font-size: 12px; letter-spacing: .25em; }
}
@media (max-width: 640px) {
  .partner-strip-logos { gap: 18px; }
  .partner-strip-div { display: none; }
  .partner-strip-logo img { height: 28px; }
}

@media (max-width: 560px) {
  .poster-hero-inner { gap: 14px; padding: 48px 18px 40px; }
  .poster-headline .row1::before, .poster-headline .row1::after { width: 28px; }
  .poster-cta .btn { width: 100%; max-width: 280px; }
}

/* ══════════════════════════════════════════════════════════════
   PRIZE CARDS — horizontal swipe carousel on narrow viewports
   ══════════════════════════════════════════════════════════════ */
.swipe-hint {
  display: none;
  text-align: center;
  margin-top: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.swipe-hint .arrow {
  display: inline-block;
  margin-left: 6px;
  color: var(--clay);
  animation: swipeNudge 1.4s ease-in-out infinite;
}
@keyframes swipeNudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(7px); }
}

@media (max-width: 760px) {
  .prize-tiers {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 24px;
    padding: 4px 24px 14px;
    margin: 0 -24px;                       /* edge-to-edge */
    scrollbar-width: none;
  }
  .prize-tiers::-webkit-scrollbar { display: none; }
  .prize-tiers > .tier-card {
    flex: 0 0 86%;
    min-width: 260px;
    max-width: 360px;
    scroll-snap-align: start;
  }
  .swipe-hint { display: block; }
}

/* Card "View details" button — tinted to match each card's header gradient */
.card-cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, var(--d-easy), #3f7a4c);
  transition: transform .15s, box-shadow .15s, filter .15s;
  box-shadow: 0 2px 6px rgba(22,50,61,.15);
}
.card-cta-btn.easy     { background: linear-gradient(120deg, var(--d-easy), #3f7a4c); }
.card-cta-btn.moderate { background: linear-gradient(120deg, var(--d-moderate), #2a93af); }
.card-cta-btn.long     { background: linear-gradient(120deg, var(--d-long), #e8913f); }
.card-cta-btn.power    { background: linear-gradient(120deg, var(--d-power), #d76048); }
.card-cta-btn.race     { background: linear-gradient(120deg, var(--d-race), #2c5564); }
.route-card:hover .card-cta-btn {
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(22,50,61,.20);
  filter: brightness(1.05);
}

/* How-It-Works steps & Route grid — swipe carousel on narrow viewports */
@media (max-width: 760px) {
  .steps {
    display: flex !important;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 24px;
    padding: 4px 24px 14px;
    margin: 0 -24px;
    scrollbar-width: none;
  }
  .steps::-webkit-scrollbar { display: none; }
  .steps > .step {
    flex: 0 0 84%;
    min-width: 250px;
    max-width: 360px;
    scroll-snap-align: start;
  }

  .route-grid {
    display: flex !important;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 24px;
    padding: 4px 24px 14px;
    margin: 0 -24px;
    scrollbar-width: none;
  }
  .route-grid::-webkit-scrollbar { display: none; }
  .route-grid > .route-card {
    flex: 0 0 84%;
    min-width: 260px;
    max-width: 360px;
    scroll-snap-align: start;
  }
}

/* ══════════════════════════════════════════════════════════════
   MISSION SECTION — "We Are All TrailRaisers"
   ══════════════════════════════════════════════════════════════ */
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.section-mission .section-head { margin-bottom: 32px; }
.section-mission .section-head h2 {
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(28px, 4vw, 40px);
}
.section-mission .mission-body {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.section-mission .mission-body p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.92);
  margin-bottom: 22px;
}
.section-mission .mission-body p:last-child { margin-bottom: 0; }
.section-mission .mission-body strong { color: #fff; }

/* ══════════════════════════════════════════════════════════════
   CAMPAIGN MOMENTUM — Thermometer
   ══════════════════════════════════════════════════════════════ */
.section-momentum .section-head h2 {
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(34px, 5vw, 54px);
}
.section-momentum .gap-amount {
  color: var(--clay);
  font-weight: 700;
}
.thermometer {
  max-width: 760px;
  margin: 0 auto 32px;
}
.thermo-bar {
  position: relative;
  height: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(22,50,61,.10);
}
.thermo-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--forest) 0%, var(--gold) 70%, var(--orange) 100%);
  border-radius: 999px 0 0 999px;
  transition: width .6s ease;
}
.thermo-caption {
  text-align: center;
  margin-top: 14px;
  font-size: 16px;
  color: var(--ink);
}
.thermo-caption strong { font-weight: 700; }
.thermo-meta {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: .3px;
}
.momentum-cta { justify-content: center; }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS — 5-Step Path
   ══════════════════════════════════════════════════════════════ */
.path-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.path-label {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sea);
  text-align: center;
  margin-bottom: 4px;
}
.path-sublabel {
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.steps-track {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.trk-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 6px;
}
/* dashed connectors */
.trk-step::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 50%;
  width: 100%;
  height: 0;
  border-top: 3px dashed var(--sea);
  z-index: 0;
}
.trk-step:last-child::after { display: none; }
.trk-circle {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--sea);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--sea-deep);
}
.trk-circle-start {
  background: var(--sea-deep);
  border-color: var(--sea-deep);
  color: #fff;
}
.trk-circle-end {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.trk-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}
.trk-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 8.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}
.trk-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 13px;
  margin-top: 14px;
  color: var(--ink);
}
.trk-tip {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: 4px;
  line-height: 1.4;
  max-width: 130px;
}

/* Accordion */
.how-accordion {
  max-width: 760px;
  margin: 0 auto;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  border-top: 1px solid var(--line);
  padding: 20px 4px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--sea-deep);
  text-align: left;
}
.accordion-trigger:hover { color: var(--ink); }
.accordion-icon {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform .2s ease;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}
.accordion-body { padding: 8px 4px 22px; }
.how-detail-list {
  padding-left: 22px;
  margin: 0;
}
.how-detail-list li {
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.how-detail-list strong { color: var(--ink); }

/* Mobile — stack steps vertically below 720 */
@media (max-width: 720px) {
  .path-card { padding: 32px 22px 28px; }
  .steps-track {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .trk-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
    text-align: left;
    padding: 0;
  }
  .trk-step::after { display: none; }
  .trk-circle { flex: 0 0 66px; }
  .trk-title { margin-top: 12px; }
  .trk-tip { max-width: none; }
}
