/* ===================================================================
   EuroVelo Passport — landing page
   Aligned to the updated style guide: lighter cream, darker forest,
   blue + coral accents, Recoleta-style soft serif (Fraunces soft) +
   Inter (Suisse Int'l stand-in), shield logo.
   =================================================================== */

:root {
  /* Surfaces */
  --bg: #F2ECE3;
  --surface: #FBF9F3;
  --surface-alt: #EAE2D3;

  /* Brand */
  --forest: #1F3D2E;
  --forest-900: #14271D;
  --sage: #6B8B6A;
  --blue: #355C7D;
  --blue-soft: #A8C1D6;
  --gold: #E0B12C;
  --gold-soft: #F5E7C4;
  --coral: #E76F51;
  --coral-soft: #F7D9CF;

  /* Text */
  --ink: #2C3A30;
  --slate: #4A5568;
  --muted: #8D8A84;
  --line: #E2DACB;

  --on-dark: #F2ECE3;

  --r-sm: 12px; --r-md: 16px; --r-lg: 24px; --r-pill: 999px;

  --shadow: 0 4px 18px rgba(40, 36, 22, 0.07);
  --shadow-lg: 0 26px 60px rgba(28, 40, 28, 0.20);
  --maxw: 1200px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--body); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3 { margin: 0; line-height: 1.1; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
em { font-style: italic; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--forest); color: var(--on-dark); padding: 10px 16px; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

/* ---------- typography ---------- */
.eyebrow { font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin: 0 0 16px; display: inline-flex; align-items: center; gap: 8px; }
.eyebrow--blue { color: var(--blue); }
.eyebrow--center { display: flex; justify-content: center; }

.section__title { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; font-size: clamp(30px, 4vw, 47px); text-align: center; color: var(--forest); max-width: 17em; margin: 0 auto 14px; }
.section__title--left { text-align: left; margin: 0 0 18px; max-width: 13em; }
.section__lead { text-align: center; color: var(--slate); font-size: 17px; max-width: 40em; margin: 0 auto 48px; }
.section__lead em { font-family: var(--serif); font-style: italic; color: var(--coral); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: var(--sans); font-weight: 700; font-size: 15px; cursor: pointer; padding: 13px 24px; border-radius: 14px; border: 1.5px solid transparent; transition: transform .12s ease, background .15s ease, box-shadow .15s ease, color .15s ease, border-color .15s ease; }
.btn svg { width: 20px; height: 20px; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--forest); color: var(--on-dark); }
.btn--primary svg { stroke: var(--on-dark); }
.btn--primary:hover { background: #173024; box-shadow: var(--shadow); }
.btn--accent { background: var(--gold); color: #3a2c08; }
.btn--accent:hover { background: #cf9f1f; box-shadow: var(--shadow); }
.btn--blue { background: var(--blue); color: #fff; }
.btn--ghost { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn--ghost svg { stroke: var(--forest); }
.btn--ghost:hover { background: rgba(31,61,46,.06); }
.btn--lg { padding: 16px 28px; font-size: 16px; border-radius: 16px; }
.btn--sm { padding: 9px 16px; font-size: 14px; border-radius: 12px; }
.btn--block { width: 100%; }

/* ---------- nav ---------- */
.brandbar { position: relative; z-index: 2; padding: 24px 0 2px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__logo { height: 52px; width: auto; display: block; }
.brand__mark { flex: none; }
.brand__name { display: flex; flex-direction: column; line-height: 1; font-family: var(--sans); color: var(--forest); }
.brand__name b:first-child { font-weight: 600; font-size: 12px; letter-spacing: 0.14em; }
.brand__name b:last-child { font-weight: 800; font-size: 17px; letter-spacing: 0.06em; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a:not(.btn) { font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--slate); }
.nav__links a:not(.btn):hover { color: var(--forest); }
.nav__toggle { display: none; }

/* ---------- decorative ---------- */
.topo { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--forest); opacity: 0.06; z-index: 0; pointer-events: none; }
.topo--soft { opacity: 0.045; }
.topo--dark { color: #fff; opacity: 0.08; }
.landscape { position: absolute; left: 0; right: 0; bottom: -2px; width: 100%; height: 300px; color: var(--forest); opacity: 0.12; z-index: 0; pointer-events: none; }
.mountains { position: absolute; right: 0; bottom: 0; width: min(440px, 42%); height: auto; color: var(--forest); opacity: 0.13; z-index: 0; pointer-events: none; }
.village { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 120px; color: var(--on-dark); opacity: 0.13; z-index: 0; pointer-events: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(44px, 6vw, 84px) 0 clamp(80px, 10vw, 130px);
  background-color: var(--bg);
  background-image:
    linear-gradient(100deg, var(--bg) 0%, rgba(242,236,227,0.88) 30%, rgba(242,236,227,0.45) 62%, rgba(242,236,227,0.12) 100%),
    url('assets/backgrounds/hero-mountains.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.08fr; gap: 36px; align-items: center; }
.hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 5.4vw, 68px); letter-spacing: -0.02em; color: var(--forest); margin-bottom: 22px; }
.hero__lead { font-size: clamp(16px, 1.5vw, 19px); color: var(--slate); max-width: 30em; margin-bottom: 28px; }
.hero__cta { display: flex; width: 100%; max-width: 340px; justify-content: center; margin-bottom: 18px; }
.hero__launch { font-family: var(--sans); font-size: 13px; font-weight: 600; color: var(--blue); letter-spacing: 0.01em; margin: 0 0 18px; opacity: 0.85; }
.hero__chips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; font-family: var(--sans); font-weight: 600; font-size: 13px; color: var(--slate); margin: 0; }
.hero__chips svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; flex-shrink: 0; }
.hero__chips span { color: var(--muted); font-weight: 400; }
.chips { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.chips li { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-weight: 600; font-size: 13.5px; color: var(--slate); }
.chips svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; }

/* ---------- phones ---------- */
.hero__visual { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; min-height: 560px; }
/* Hero phones are transparent-background PNG renders; drop-shadow follows the phone shape. */
.phone { display: block; }
.phone__shot { display: block; width: 100%; height: auto; filter: drop-shadow(0 16px 38px rgba(28,40,28,.20)); }
.phone--front { position: relative; z-index: 3; width: 270px; }
.phone--side { position: absolute; width: 224px; z-index: 1; }
.phone--left { left: 0%; top: 54px; transform: rotate(-6deg); }
.phone--right { right: -6%; top: 60px; transform: rotate(6deg); }

.appui { flex: 1; display: flex; flex-direction: column; padding: 13px 12px 0; min-height: 0; }
.appui__bar { display: flex; justify-content: space-between; align-items: center; font-family: var(--sans); font-weight: 700; font-size: 11px; color: var(--ink); padding: 3px 4px 8px; }
.appui__bar svg { color: var(--ink); }
.appui__head { display: flex; align-items: flex-start; justify-content: space-between; padding: 2px 2px 12px; }
.appui__h2 { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--forest); line-height: 1.1; }
.appui__head svg { stroke: var(--ink); margin-top: 3px; }

.ptabs { display: flex; gap: 16px; font-family: var(--sans); font-size: 11px; font-weight: 700; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 8px; margin-bottom: 14px; }
.ptabs .is-on { color: var(--forest); position: relative; }
.ptabs .is-on::after { content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 2px; background: var(--forest); border-radius: 2px; }
.ring { position: relative; width: 116px; height: 116px; margin: 2px auto 12px; }
.ring svg { width: 100%; height: 100%; }
.ring__c { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ring__c b { font-family: var(--sans); font-weight: 800; font-size: 26px; color: var(--forest); }
.ring__c span { font-size: 9px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.pstats { display: flex; justify-content: space-around; padding: 10px 0 14px; border-bottom: 1px solid var(--line); }
.pstats b { display: block; font-family: var(--sans); font-weight: 800; font-size: 17px; color: var(--ink); text-align: center; }
.pstats span { font-size: 10px; color: var(--muted); }
.psub { font-family: var(--sans); font-weight: 700; font-size: 11px; color: var(--ink); margin: 12px 0 8px; }
.ministamps { display: flex; gap: 8px; }
.ministamps i { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--c); background: radial-gradient(circle, transparent 54%, color-mix(in srgb, var(--c) 16%, transparent) 55%); }

.routecard { display: flex; gap: 10px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 8px; box-shadow: var(--shadow); }
.routecard__img { position: relative; width: 56px; height: 48px; border-radius: 10px; flex: none; background: linear-gradient(135deg, var(--blue-soft), var(--sage)); }
.ribbon { position: absolute; top: -4px; left: -4px; background: var(--blue); color: #fff; font-family: var(--sans); font-weight: 800; font-size: 11px; padding: 2px 5px; border-radius: 6px; }
.routecard__body b { display: block; font-family: var(--sans); font-weight: 800; font-size: 14px; color: var(--ink); }
.routecard__body span { font-size: 11px; color: var(--slate); }
.journeycard { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 12px; box-shadow: var(--shadow); }
.journeycard__row { display: flex; justify-content: space-between; align-items: center; font-family: var(--sans); font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.journeycard__row b { color: var(--blue); }
.journeycard .bar { display: block; height: 7px; background: var(--line); border-radius: var(--r-pill); overflow: hidden; margin-bottom: 12px; }
.journeycard .bar i { display: block; height: 100%; background: var(--blue); border-radius: var(--r-pill); }
.btn--mini { width: 100%; border: 0; background: var(--blue); color: #fff; font-family: var(--sans); font-weight: 700; font-size: 12.5px; padding: 9px; border-radius: 10px; }
.passrow { display: flex; gap: 10px; align-items: center; margin-top: auto; padding: 14px 4px; }
.passrow svg { stroke: var(--forest); }
.passrow b { display: block; font-family: var(--sans); font-weight: 800; font-size: 13px; color: var(--ink); }
.passrow span { font-size: 11px; color: var(--slate); }

.appui--map { padding: 0; }
.appui__bar--over { position: absolute; top: 0; left: 0; right: 0; z-index: 3; padding: 13px 14px 6px; color: var(--ink); }
.appui__head--over { position: absolute; top: 30px; left: 0; right: 0; z-index: 3; padding: 6px 12px; }
.appui__head--over svg { stroke: var(--forest); }
.mapfull { position: absolute; inset: 0; width: 100%; height: 100%; }
.mapcard { position: absolute; left: 12px; right: 12px; bottom: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 9px 12px; box-shadow: var(--shadow); }
.mapcard b { display: block; font-family: var(--sans); font-weight: 800; font-size: 12px; color: var(--ink); }
.mapcard span { font-size: 11px; color: var(--slate); }

.tabbar { display: flex; justify-content: space-around; align-items: center; padding: 10px 0 12px; border-top: 1px solid var(--line); background: var(--surface); }
.tabbar i { width: 16px; height: 16px; border-radius: 4px; background: var(--line); }
.tabbar i.on { background: var(--forest); }

/* hero stamp */
.stamp { position: absolute; z-index: 4; filter: drop-shadow(0 6px 14px rgba(28,40,28,.12)); }
.stamp--ride { width: 116px; top: 12px; right: 1%; transform: rotate(8deg); opacity: 0.92; border-radius: 50%; display: block; }

/* ---------- trust strip ---------- */
.trust { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; }
.trust__h { text-align: center; font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; }
.trust__logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 40px; }
.trust__logos li { font-family: var(--serif); font-weight: 500; font-size: 17px; color: var(--slate); }

/* ---------- sections ---------- */
.section { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 100px) 0; }
.section--alt { background: var(--surface-alt); }
#features {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(242,236,227,0.55), rgba(242,236,227,0.55)),
    url('assets/backgrounds/features-parchment.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.grid { display: grid; gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* features */
.feature { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--shadow); }
.feature__icon, .why__icon, .step__icon, .rh__icon { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 15px; background: var(--gold-soft); margin-bottom: 16px; }
.feature__icon svg, .why__icon svg, .step__icon svg, .rh__icon svg { width: 26px; height: 26px; stroke: var(--forest); fill: none; }
.feature__icon--blue { background: var(--blue-soft); } .feature__icon--blue svg { stroke: var(--blue); }
.feature__icon--sage { background: #D6E2D5; } .feature__icon--sage svg { stroke: var(--forest); }
.feature__icon--coral { background: var(--coral-soft); } .feature__icon--coral svg { stroke: var(--coral); }
.feature__icon--gold { background: var(--gold-soft); } .feature__icon--gold svg { stroke: var(--gold); }
.feature h3, .why__item h3 { font-family: var(--serif); font-weight: 600; font-size: 21px; margin-bottom: 8px; color: var(--forest); }
.feature p, .why__item p { color: var(--slate); font-size: 15px; }
.flink { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans); font-weight: 700; font-size: 14px; color: var(--blue); }
.flink svg { stroke: var(--blue); transition: transform .15s ease; }
.flink:hover svg { transform: translateX(3px); }

/* steps */
.section .steps { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.step { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 26px 30px; box-shadow: var(--shadow); }
.step__visual { display: flex; flex-direction: column; align-items: center; gap: 10px; background: var(--surface-alt); margin: -26px -26px 22px; padding: 22px 26px 16px; }
.step__num { width: 44px; height: auto; display: block; }
.step__icon { width: 100%; max-width: 200px; height: auto; display: block; border-radius: 22%; }
.step h3 { font-family: var(--serif); font-weight: 600; font-size: 21px; margin-bottom: 8px; color: var(--forest); }
.step p { color: var(--slate); font-size: 15px; }

/* why */
.why__icon--blue { background: var(--blue-soft); } .why__icon--blue svg { stroke: var(--blue); }
.why__icon--coral { background: var(--coral-soft); } .why__icon--coral svg { stroke: var(--coral); }
.why__icon--gold { background: var(--gold-soft); } .why__icon--gold svg { stroke: var(--gold); }

/* stamps — continuous marquee carousel */
.stamps { overflow-x: clip; padding: 20px 0 28px; }
.stamps__track { display: flex; gap: 30px; width: max-content; animation: stamps-scroll 44s linear infinite; }
.stamps:hover .stamps__track { animation-play-state: paused; }
@keyframes stamps-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .stamps__track { animation: none; } }
.stampcard { margin: 0; width: 148px; flex-shrink: 0; transition: transform .2s ease; }
.stampcard svg, .stamp__img { width: 100%; height: auto; display: block; filter: drop-shadow(0 6px 14px rgba(28,40,28,.10)); }
.stamp__img { aspect-ratio: 1 / 1; height: auto; object-fit: contain; }
.stampcard:hover { transform: translateY(-5px) rotate(-2deg); }

/* routes */
.routes__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.routes__map { position: relative; width: 100%; max-width: 1040px; margin: 18px auto 6px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: #E4ECEC; }
.routes__map picture { display: block; }
.routes__map-img { width: 100%; height: auto; display: block; }
.routes__map--full { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; clip-path: inset(0 100% 0 0); will-change: clip-path; }
.routes__highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; width: 100%; max-width: 1040px; margin: 24px 0 30px; text-align: left; }
.routes__highlights li { display: flex; gap: 14px; align-items: flex-start; }
.rh__icon { width: 44px; height: 44px; border-radius: 12px; margin: 0; flex: none; display: inline-flex; align-items: center; justify-content: center; }
.rh__icon svg { width: 22px; height: 22px; }
.rh__icon--blue { background: var(--blue-soft); } .rh__icon--blue svg { stroke: var(--blue); }
.rh__icon--coral { background: var(--coral-soft); } .rh__icon--coral svg { stroke: var(--coral); }
.rh__icon--sage { background: #D6E2D5; } .rh__icon--sage svg { stroke: var(--forest); }
.routes__highlights b { display: block; font-family: var(--sans); font-weight: 700; font-size: 15.5px; color: var(--ink); }
.routes__highlights span { font-size: 14px; color: var(--slate); }

/* pricing */
.pricing { max-width: 1040px; margin: 0 auto; align-items: stretch; }
.plan { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 30px; box-shadow: var(--shadow); position: relative; }
.plan--featured { border: 2px solid var(--forest); background: linear-gradient(180deg, #fff 0%, var(--surface) 100%); }
.plan__badge { position: absolute; top: -14px; left: 30px; background: var(--forest); color: var(--on-dark); font-family: var(--sans); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--r-pill); }
.plan__name { font-family: var(--serif); font-weight: 600; font-size: 22px; min-height: 2.3em; color: var(--forest); }
.plan__price { font-family: var(--sans); font-size: 46px; font-weight: 800; color: var(--ink); margin: 6px 0 4px; line-height: 1; display: flex; align-items: baseline; gap: 6px; flex-wrap: nowrap; }
.plan__price span { font-family: var(--body); font-size: 14px; font-weight: 500; color: var(--slate); white-space: nowrap; }
.plan { padding: 36px 32px; }
.plan__sub { font-family: var(--sans); font-size: 13.5px; color: var(--muted); margin: -12px 0 18px; }
.plan__list { display: grid; gap: 12px; margin-bottom: 26px; }
.plan__list li { position: relative; padding-left: 26px; color: var(--slate); font-size: 14.5px; line-height: 1.5; }
.plan__list li::before { content: ""; position: absolute; left: 0; top: 5px; width: 18px; height: 18px; border-radius: 50%; background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23355C9C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12 l4 4 L19 7'/%3E%3C/svg%3E") center/12px no-repeat; }
.plan .btn { margin-top: auto; }
.reassure { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; margin-top: 34px; }
.reassure li { display: flex; align-items: center; gap: 9px; font-family: var(--sans); font-weight: 600; font-size: 14px; color: var(--slate); }
.reassure svg { width: 20px; height: 20px; stroke: var(--forest); fill: none; }

/* ---------- waitlist ---------- */
.waitlist { position: relative; overflow: hidden; background: var(--forest); color: var(--on-dark); padding: clamp(56px, 8vw, 92px) 0; }
.waitlist__inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; text-align: center; }
.waitlist__stamp { margin: 0 auto 22px; transform: rotate(-6deg); display: block; filter: brightness(0) invert(1); opacity: 0.88; }
.waitlist h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(28px, 3.8vw, 43px); margin-bottom: 14px; }
.waitlist__lead { font-size: 17px; opacity: 0.9; margin-bottom: 30px; }
.signup { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.signup__input { flex: 1 1 300px; min-width: 0; padding: 15px 18px; font-size: 16px; font-family: var(--body); border: 1.5px solid transparent; border-radius: 14px; background: var(--on-dark); color: var(--ink); }
.signup__input::placeholder { color: var(--muted); }
.signup .btn { flex: 0 0 auto; padding: 15px 26px; }
.signup__msg { flex-basis: 100%; margin-top: 14px; font-family: var(--sans); font-weight: 600; min-height: 1.2em; }
.signup__msg--ok { color: var(--gold); }
.signup__msg--err { color: #ffd2cc; }
.waitlist__fineprint { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; opacity: 0.72; margin-top: 18px; }
.waitlist__fineprint svg { stroke: currentColor; fill: none; }

/* ---------- footer ---------- */
.footer { position: relative; overflow: hidden; background: var(--forest-900); color: var(--on-dark); padding: 56px 0 110px; }
.footer__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.6fr; gap: 32px; }
.brand--footer .brand__name { color: var(--on-dark); }
.brand__logo--footer { height: 48px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer__tag { font-family: var(--serif); font-style: italic; font-size: 15px; opacity: 0.8; margin-top: 14px; }
.footer__h { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: .04em; margin-bottom: 14px; }
.footer__col a { display: block; font-size: 14.5px; opacity: 0.78; padding: 5px 0; }
.footer__col a:hover { opacity: 1; color: var(--gold); }
.footer__newslead { font-size: 14px; opacity: 0.78; margin-bottom: 14px; }
.ministub { display: flex; gap: 8px; }
.ministub input { flex: 1; min-width: 0; padding: 11px 14px; border-radius: 11px; border: 1px solid rgba(242,236,227,.2); background: rgba(242,236,227,.06); color: var(--on-dark); font-family: var(--body); font-size: 14px; }
.ministub input::placeholder { color: rgba(242,236,227,.5); }
.ministub button { flex: none; width: 44px; border: 0; border-radius: 11px; background: var(--gold); color: #3a2c08; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.ministub button svg { stroke: #3a2c08; }
.footer__bottom { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 18px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(242,236,227,.18); }
.footer__disclaimer { font-size: 13.5px; line-height: 1.6; color: var(--on-dark); opacity: 0.9; max-width: 760px; margin: 0; }
.footer__legalrow { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
.footer__legalrow p { font-size: 12.5px; opacity: 0.62; margin: 0; }
.footer__lines { font-family: var(--serif); font-style: italic; }

/* ---------- app store badges ---------- */
.store-row { margin-bottom: 24px; }
.store-row { margin-bottom: 20px; }
.store-row__label { font-family: var(--sans); font-size: 12px; font-weight: 500; color: var(--muted); margin: 0 0 10px; }
.store-row__badges { display: flex; flex-wrap: wrap; gap: 10px; }
.store-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--ink); padding: 9px 16px; border-radius: 10px; border: 1.5px solid var(--line); cursor: default; user-select: none; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.store-badge svg { flex: none; fill: var(--ink); }
.store-badge__text strong { display: block; font-size: 14px; font-weight: 700; line-height: 1; }

/* ---------- routes: sticky map scroll-lock ---------- */
#routes { overflow: visible; padding: 0; }
.routes__top { padding: clamp(48px, 7vw, 90px) 0 28px; text-align: center; }
.routes__top .eyebrow, .routes__top .section__title, .routes__top .section__lead { text-align: center; }
.routes__bottom { padding: 0 0 clamp(48px, 7vw, 90px); display: flex; flex-direction: column; align-items: center; }
/* tall wrapper holds the sticky map — defines how long scroll locks */
.map-scroll-wrapper { position: relative; height: 220vh; width: 100%; background: var(--surface-alt); }
/* map is now sticky — sticks ~centered in viewport while wrapper scrolls */
.routes__map {
  position: sticky;
  top: calc(50vh - clamp(100px, 14.5vw, 174px));
  max-width: 1040px;
  width: calc(100% - 48px);
  margin: 0 auto;
}

/* ---------- mobile hero phone scroll-lock ---------- */
/* Desktop: hide the lock section entirely */
.hero-phone-lock { display: none; }
/* Desktop hero__visual stays visible */

/* ---------- share cards ---------- */
.sharecards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 48px 0 32px; }
.sharecard { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 2px 6px rgba(0,0,0,0.07); }
.sharecard img { width: 100%; height: auto; display: block; }

/* ride completed */
.sharecard--ride { display: flex; }
.sc__left { width: 40%; background: var(--forest); color: var(--on-dark); padding: 12px 11px; display: flex; flex-direction: column; flex-shrink: 0; }
.sc__badge { display: flex; align-items: center; gap: 5px; margin-bottom: 7px; }
.sc__brand { font-family: var(--serif); font-size: 7.5px; font-weight: 600; letter-spacing: 0.06em; line-height: 1.2; color: var(--on-dark); opacity: 0.85; }
.sc__brand--dark { color: var(--forest); opacity: 1; }
.sc__pre { font-family: var(--sans); font-size: 9px; color: var(--on-dark); opacity: 0.7; margin: 0; line-height: 1.2; }
.sc__big { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--on-dark); line-height: 1; margin: 2px 0; }
.sc__sub { font-family: var(--sans); font-size: 8px; color: var(--on-dark); opacity: 0.7; margin: 0; }
.sc__div { height: 1px; background: rgba(242,236,227,0.2); margin: 6px 0; }
.sc__loc { font-family: var(--sans); font-size: 8.5px; font-weight: 600; color: var(--on-dark); margin: 0; display: flex; align-items: center; gap: 3px; }
.sc__loc svg { stroke: var(--gold); fill: none; flex-shrink: 0; }
.sc__locsub { font-family: var(--sans); font-size: 7.5px; color: var(--on-dark); opacity: 0.5; margin: 1px 0 0 12px; }
.sc__foot { margin-top: auto; }
.sc__route { font-family: var(--sans); font-size: 7.5px; color: var(--on-dark); opacity: 0.6; margin: 0 0 5px; }
.sc__bar { height: 3px; background: rgba(255,255,255,0.18); border-radius: 99px; overflow: hidden; }
.sc__bar-fill { height: 100%; background: var(--gold); border-radius: 99px; }
.sc__barlab { font-family: var(--sans); font-size: 7px; color: var(--on-dark); opacity: 0.42; margin: 3px 0 0; }
.sc__right--ride { flex: 1; background: linear-gradient(160deg, #B9CFA9 0%, #8AA87A 55%, #5E7C5A 100%); position: relative; overflow: hidden; }
.sc__topo { position: absolute; inset: 0; width: 100%; height: 100%; color: rgba(255,255,255,0.09); pointer-events: none; }
.sc__photo-label { position: absolute; bottom: 10px; left: 8px; right: 8px; background: rgba(20,39,29,0.76); color: var(--on-dark); font-family: var(--sans); font-size: 7.5px; font-weight: 600; padding: 4px 8px; border-radius: 4px; display: flex; align-items: center; gap: 5px; }
.sc__photo-label svg { stroke: var(--gold); fill: none; flex-shrink: 0; }

/* travel recap */
.sharecard--recap { background: linear-gradient(150deg, #F5EDE0 0%, #EBE0CE 100%); padding: 13px 14px; display: flex; flex-direction: column; }
.sc__head { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.sc__head svg { opacity: 0.8; }
.sc__recap-body { flex: 1; min-height: 0; }
.sc__recap-title { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--forest); line-height: 1.15; margin: 0 0 8px; display: flex; align-items: flex-start; gap: 5px; flex-wrap: wrap; }
.sc__compass { stroke: var(--forest); fill: none; opacity: 0.5; flex-shrink: 0; margin-top: 3px; }
.sc__stats { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 5px 10px; }
.sc__stats li { display: flex; align-items: center; gap: 4px; font-family: var(--sans); font-size: 8px; color: var(--slate); }
.sc__stats li svg { stroke: var(--forest); fill: none; opacity: 0.6; flex-shrink: 0; }
.sc__stats b { font-size: 10px; font-weight: 700; color: var(--forest); }
.sc__stats span { opacity: 0.65; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc__recap-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 6px; gap: 8px; }
.sc__tagline { font-family: var(--serif); font-size: 9px; font-style: italic; color: var(--slate); opacity: 0.75; line-height: 1.4; }
.sc__seal { flex-shrink: 0; opacity: 0.28; }

/* achievement */
.sharecard--achievement { background: #14271D; color: var(--on-dark); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 14px 16px; gap: 3px; }
.sc__achieve-mountains { position: absolute; bottom: 0; left: 0; right: 0; width: 100%; height: 55%; color: rgba(255,255,255,0.035); pointer-events: none; }
.sc__achieve-eyebrow { font-family: var(--sans); font-size: 7px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); opacity: 0.85; margin: 0; position: relative; z-index: 1; }
.sc__achieve-icon { stroke: var(--on-dark); fill: none; opacity: 0.7; position: relative; z-index: 1; margin: 2px 0; }
.sc__achieve-label { font-family: var(--sans); font-size: 9px; color: var(--on-dark); opacity: 0.7; margin: 0; position: relative; z-index: 1; letter-spacing: 0.02em; }
.sc__achieve-num { font-family: var(--serif); font-size: 48px; font-weight: 600; color: var(--gold); line-height: 0.9; margin: 0; position: relative; z-index: 1; }
.sc__achieve-banner { background: var(--gold); color: #14271D; font-family: var(--sans); font-size: 7px; font-weight: 700; letter-spacing: 0.05em; padding: 3px 12px 4px; border-radius: 3px; margin-top: 4px; position: relative; z-index: 1; white-space: nowrap; }

/* share section footer line */
.share__tag { text-align: center; font-family: var(--sans); font-size: 14px; color: var(--muted); margin: 0; }
.share__tag strong { color: var(--forest); font-weight: 700; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 16px; }
  .hero {
    background-image:
      linear-gradient(180deg, rgba(242,236,227,0.35) 0%, rgba(242,236,227,0.7) 48%, var(--bg) 76%),
      url('assets/backgrounds/hero-mountains.jpg');
    background-position: top center;
  }
  .hero__visual { order: -1; min-height: 470px; }
  .phone--front { width: 240px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .routes__highlights { grid-template-columns: 1fr; gap: 18px; max-width: 420px; }
  .section .steps { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__news { grid-column: 1 / -1; }
  .sharecards { grid-template-columns: 1fr 1fr; }
  .sc__big { font-size: 32px; }
  .sc__recap-title { font-size: 21px; }
  .sc__achieve-num { font-size: 56px; }
}
@media (max-width: 720px) {
  .nav__toggle { display: inline-flex; flex-direction: column; gap: 5px; justify-content: center; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 11px; }
  .nav__toggle span { display: block; height: 2px; background: var(--forest); border-radius: 2px; transition: .2s; }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__links { position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px; background: var(--bg); border-bottom: 1px solid var(--line); padding: 12px 24px 20px; box-shadow: var(--shadow); display: none; }
  .nav__links.is-open { display: flex; }
  .nav__links a:not(.btn) { padding: 10px 0; }
  .nav__links .btn { margin-top: 8px; }
  /* hero phones hidden on mobile — replaced by hero-phone-lock scroll section */
  .hero__visual { display: none; }
  .stamp--ride { display: none; }
  /* mobile phone scroll-lock */
  .hero-phone-lock { display: block; position: relative; height: 300vh; background: var(--bg); }
  .hero__visual--lock { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg); overflow: hidden; }
  .phone--lock-item { position: absolute; width: min(72vw, 280px); opacity: 0; transform: translateX(60px) scale(0.95); transition: opacity .55s ease, transform .65s cubic-bezier(.2,.8,.3,1); pointer-events: none; }
  .phone--lock-item.is-active { opacity: 1; transform: none; pointer-events: auto; }
  .phone--lock-item .phone__shot { filter: drop-shadow(0 20px 48px rgba(28,40,28,.22)); }
  /* routes: full-viewport map on mobile */
  .map-scroll-wrapper { height: 200vh; }
  /* 3:4 image at 75vw wide → height = 100vw; center = 50vh − 50vw (no transform needed) */
  .routes__map { width: 75%; top: calc(50vh - 50vw); max-width: none; border-radius: var(--r-lg); box-shadow: var(--shadow); border: 1px solid var(--line); margin: 0 auto; }
  .routes__map picture { height: auto; }
  .routes__map-img { height: auto; object-fit: initial; object-position: initial; }
}
/* reduced motion: keep a gentle fade for the hero phones, drop the slide */
@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
  .reveal-phones .phone { transform: none; transition: opacity .45s ease; }
  .reveal-phones .phone.is-in { transform: none; }
}
@media (max-width: 560px) {
  .grid--4 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .signup .btn { flex: 1 1 100%; }
  .trust__logos { gap: 12px 24px; }
  .trust__logos li { font-size: 15px; }
  .sharecards { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .sc__big { font-size: 36px; }
  .sc__recap-title { font-size: 22px; }
  .sc__achieve-num { font-size: 60px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}
