/* ==============================================
   FRONTIER TRAILS — style.css
   Cinematic dark editorial · Cormorant + Syne
   ============================================== */

/* ── Variables ── */
:root {
  --bg:           #000000;
  --text:         #f0ebe0;
  --text-muted:   #6a635c;
  --accent:       #c4975a;   /* warm expedition gold */
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Syne', sans-serif;

  /* Image grade — adjust these to taste */
  --img-brightness: 0.65;
  --img-contrast:   1.05;
  --img-saturate:   0.85;
  --img-sepia:      0.12;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Custom Cursor ── */
#cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 10000;
}

.cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}

.cursor-ring {
  position: fixed;
  width: 38px; height: 38px;
  border: 1px solid rgba(196, 151, 90, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              border-color 0.3s;
}

.cursor-ring.hovered {
  width: 64px; height: 64px;
  border-color: rgba(196, 151, 90, 0.7);
}

/* ── Film Grain ── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.045;
  pointer-events: none;
  z-index: 9997;
  animation: grain 0.4s steps(1) infinite;
}

@keyframes grain {
  0%   { transform: translate(0,     0);    }
  10%  { transform: translate(-2%,  -3%);   }
  20%  { transform: translate(3%,    1%);   }
  30%  { transform: translate(-1%,   4%);   }
  40%  { transform: translate(4%,   -2%);   }
  50%  { transform: translate(-3%,   3%);   }
  60%  { transform: translate(2%,   -4%);   }
  70%  { transform: translate(-4%,   1%);   }
  80%  { transform: translate(3%,   -3%);   }
  90%  { transform: translate(-2%,   4%);   }
  100% { transform: translate(1%,   -1%);   }
}

/* ── Loader ── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s ease;
}

#loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-inner { text-align: center; }

.loader-brand {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.loader-track {
  width: 180px;
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0 auto 1.2rem;
  overflow: hidden;
}

#loader-bar {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 0.08s linear;
}

#loader-percent {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ── Navigation ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 2rem 3.5rem;
  transition: padding 0.5s ease;
  mix-blend-mode: difference;
}

.site-header.scrolled { padding: 1.2rem 3.5rem; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.nav-link {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.nav-link:hover { color: #fff; }

.cta-nav {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg);
  background: #fff;
  padding: 0.65rem 1.5rem;
  transition: opacity 0.3s;
}
.cta-nav:hover { opacity: 0.85; }

/* ── Hamburger Button ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.ham-line {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.2s ease;
}

.hamburger.is-open .ham-line:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.is-open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .ham-line:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ── Mobile Nav Overlay ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 950;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
}

.mobile-nav.is-open { pointer-events: auto; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
  text-align: center;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 10vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(240, 235, 224, 0.75);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus { color: var(--accent); }

.mobile-nav-cta {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 1rem 2.5rem;
  margin-top: 0.8rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.mobile-nav-cta:hover { background: var(--accent); color: var(--bg); }

/* ── Hero ── */
.hero-standalone {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: var(--bg) url('../Website header 2.0.png') no-repeat center 50% / cover;
  display: flex;
  align-items: flex-end;
  padding: 0 6vw 8vh;
  z-index: 10;
  overflow: hidden;
}

.hero-inner { max-width: 100%; position: relative; z-index: 2; }

.hero-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up 0.8s ease 0.4s forwards;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.hero-tagline {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up 0.8s ease 0.9s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  min-height: 44px;
  transition: opacity 0.2s ease;
  opacity: 0;
  animation: fade-up 0.8s ease 1.1s forwards;
  text-decoration: none;
}

.hero-cta:hover { opacity: 0.85; }

.hero-microcopy {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  animation: fade-up 0.8s ease 1.3s forwards;
}

/* Hero photo gradient overlay */
.hero-standalone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.80));
  z-index: 1;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0);    }
}


/* ── Canvas ── */
.canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  clip-path: circle(0% at 50% 50%);
}

#canvas {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(var(--img-brightness))
          contrast(var(--img-contrast))
          saturate(var(--img-saturate))
          sepia(var(--img-sepia));
}

/* Animated film grain — mix-blend-mode: overlay is physically accurate:
   it darkens shadows and brightens highlights simultaneously,
   exactly how real grain behaves on an exposed negative.
   baseFrequency 0.72 gives slightly larger ISO 400-style particles
   vs the finer page-grain at 0.88. */
.canvas-film-grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23f)' opacity='0.65'/%3E%3C/svg%3E");
  opacity: 0.38;
  mix-blend-mode: overlay;
  pointer-events: none;
  animation: grain 0.38s steps(1) infinite;
}

/* Lens vignette — elliptical fall-off from a fast 35mm prime.
   Strongest at corners, transparent at centre. */
.canvas-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 85% 80% at 50% 50%,
    transparent      40%,
    rgba(0,0,0,0.22) 65%,
    rgba(0,0,0,0.58) 85%,
    rgba(0,0,0,0.82) 100%
  );
  pointer-events: none;
}

/* ── Dark Overlay ── */
#dark-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}


/* ── Scroll Container ── */
#scroll-container {
  position: relative;
  height: 1200vh;
  z-index: 3;
}

/* ── Sections ── */
.scroll-section {
  position: absolute;
  left: 0; right: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 6;
  padding: 5vh 0;
}

.scroll-section.is-active { pointer-events: auto; }

/* Text alignment zones — product lives in the centre */
.align-left {
  padding-left: 5vw;
  padding-right: 55vw;
}

.align-right {
  padding-left: 55vw;
  padding-right: 5vw;
}

.section-inner { max-width: 38vw; }

/* ── Typography tokens ── */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
  text-shadow: 0 0 16px rgba(0,0,0,1), 0 1px 4px rgba(0,0,0,1);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1.6rem;
  text-shadow: 0 0 30px rgba(0,0,0,1), 0 0 12px rgba(0,0,0,1), 0 2px 6px rgba(0,0,0,1);
}

.section-body {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 400;
  line-height: 1.85;
  color: #c8c8c8;
  max-width: 38ch;
  text-shadow: 0 0 20px rgba(0,0,0,1), 0 1px 5px rgba(0,0,0,1);
}

/* Equipment list */
.section-list { margin-top: 0.5rem; }

.section-list li {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #c8c8c8;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(240, 235, 224, 0.07);
  display: flex;
  align-items: center;
  gap: 1rem;
  text-shadow: 0 0 20px rgba(0,0,0,1), 0 1px 5px rgba(0,0,0,1);
}

.section-list li::before {
  content: '';
  display: block;
  width: 1.4rem;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* How It Works steps */
.how-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
}

.how-steps li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 500;
  color: var(--text);
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(240, 235, 224, 0.07);
  text-shadow: 0 0 20px rgba(0,0,0,1), 0 1px 5px rgba(0,0,0,1);
}

.how-steps li:first-child { border-top: 1px solid rgba(240, 235, 224, 0.07); }

.step-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Mid-page CTA band ── */
.section-mid-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mid-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(240, 235, 224, 0.1);
  border-bottom: 1px solid rgba(240, 235, 224, 0.1);
  width: min(560px, 90vw);
}

.mid-cta-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  letter-spacing: 0.01em;
  text-shadow: 0 0 30px rgba(0,0,0,1), 0 0 12px rgba(0,0,0,1);
}

.mid-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  min-height: 44px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.mid-cta-btn:hover { opacity: 0.85; }

/* ── Stats Section ── */
.section-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8vw;
}

.stats-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 1100px;
}

.stats-frame {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 0 0 20px rgba(0,0,0,1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 0.12em;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  display: inline-block;
  min-width: 1ch;
}

.stat-prefix {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  align-self: baseline;
}

.stat-text {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
  font-weight: 300;
  line-height: 1;
  color: var(--text);
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── CTA Section ── */
.section-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10vw;
}

.cta-inner { max-width: 660px; }

.cta-label { justify-content: center; }

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.2rem;
  text-shadow: 0 0 30px rgba(0,0,0,1), 0 0 12px rgba(0,0,0,1), 0 2px 6px rgba(0,0,0,1);
}

.cta-heading em {
  font-style: italic;
  color: var(--accent);
}

.cta-body {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8c8c8;
  margin-bottom: 3rem;
  text-shadow: 0 0 16px rgba(0,0,0,1), 0 1px 4px rgba(0,0,0,1);
}


/* ── Waitlist Form ── */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.waitlist-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(196, 151, 90, 0.35);
  padding: 1rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}

.waitlist-input::placeholder {
  color: rgba(240, 235, 224, 0.55);
}

.waitlist-input:focus {
  border-color: var(--accent);
}

.waitlist-submit {
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: var(--accent);
  border: 1px solid var(--accent);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bg);
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.waitlist-submit:hover { opacity: 0.85; }

.waitlist-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.waitlist-success {
  display: none;
  text-align: center;
  padding: 1rem 0;
}

.waitlist-success-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.waitlist-success-sub {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.waitlist-error {
  display: none;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #c0564a;
  text-align: center;
  margin-top: 0.5rem;
}

/* ── Routes Section ── */
.section-routes {
  padding: 5vh 5vw;
}


.routes-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.routes-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 3rem;
  text-shadow: 0 0 30px rgba(0,0,0,1), 0 0 12px rgba(0,0,0,1), 0 2px 6px rgba(0,0,0,1);
}

.routes-heading em {
  font-style: italic;
  color: var(--accent);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(240, 235, 224, 0.1);
}

.route-card {
  padding: 2rem 2.5rem 2rem 0;
  border-right: 1px solid rgba(240, 235, 224, 0.1);
}

.route-card:nth-child(2) {
  padding-left: 2.5rem;
}

.route-card:last-child {
  border-right: none;
  padding-left: 2.5rem;
  padding-right: 0;
}

.route-name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.7rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1rem;
  text-shadow: 0 0 24px rgba(0,0,0,1), 0 1px 6px rgba(0,0,0,1);
}

.route-body {
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  line-height: 1.85;
  color: #c8c8c8;
  text-shadow: 0 0 20px rgba(0,0,0,1), 0 1px 5px rgba(0,0,0,1);
}

.routes-footer {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(240, 235, 224, 0.1);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #c8c8c8;
  text-shadow: 0 0 20px rgba(0,0,0,1), 0 1px 5px rgba(0,0,0,1);
}

/* ── Hook Section ── */
.hook-section {
  position: relative;
  height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0 10vw;
  overflow: hidden;
}

.hook-inner {
  max-width: 820px;
  text-align: center;
}

.hook-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 2.4rem;
}

.hook-sub {
  font-size: clamp(0.95rem, 1.15vw, 1.12rem);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: rgba(240, 235, 224, 0.45);
  max-width: 56ch;
  margin: 0 auto;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  body { cursor: auto; }
  #cursor { display: none; }

  .site-header { position: absolute; padding: 1.4rem 1.5rem; }
  .nav-links { display: none; }

  .hero-standalone { padding: 0 5vw 6vh; background-position: center 50%; }

  .align-left,
  .align-right {
    padding: 3vh 6vw;
  }
  .section-inner { max-width: 100%; }
  .section-body { max-width: 100%; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem 1.5rem; }

  #scroll-container { height: 1000vh; }

  .section-routes { padding: 3vh 5vw; }
  .routes-heading {
    font-size: clamp(2rem, 7vw, 2.8rem);
    margin-bottom: 1.8rem;
  }
  .routes-grid { grid-template-columns: 1fr; }
  .route-card,
  .route-card:nth-child(2),
  .route-card:last-child {
    padding: 1.2rem 0;
    border-right: none;
    border-bottom: 1px solid rgba(240, 235, 224, 0.1);
  }
  .route-card:last-child { border-bottom: none; }
  .route-body {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .routes-footer { margin-top: 1.5rem; padding-top: 1.5rem; }

  .hook-section { padding: 0 6vw; }
  .hook-inner { text-align: left; }
  .hook-sub { max-width: 100%; }

  /* Show hamburger with 44px touch target */
  .hamburger {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: flex-end;
  }

  /* Activate mobile nav overlay */
  .mobile-nav { display: flex; }

  /* Disable blend mode — prevents hamburger lines inverting to black over the overlay */
  .site-header { mix-blend-mode: normal; }

  /* 44px touch targets */
  .nav-logo { min-height: 44px; display: flex; align-items: center; }
  .cta-nav { padding: 0.85rem 1.5rem; }

  /* Prevent iOS auto-zoom on input focus (requires >= 16px) */
  .waitlist-input { font-size: 16px; }

  /* Override explicit cursor: none so submit button is tappable */
  .waitlist-submit { cursor: pointer; }

  /* Fix viewport height for mobile address bar hide/show */
  .hero-standalone { height: 100vh; height: 100dvh; }
}

/* ── Large screens ── */
@media (min-width: 1400px) {
  .hero-standalone { background-position: center 50%; }
}
