/* ============================================================
   WHIZZY — GLOBAL STYLES
   ============================================================ */

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

:root {
  --accent:      #C8F135;   /* electric lime — the whizzy spark */
  --dark:        #0D0D0D;
  --dark-2:      #161616;
  --dark-3:      #222222;
  --light:       #F7F7F3;
  --white:       #FFFFFF;
  --text-muted:  #888888;
  /* 'BC-fallback' and 'Inter-fallback' are size-adjusted @font-face
     fallbacks declared in the critical CSS block in index.html. They
     ensure no layout shift between FCP (fallback) and post-load when
     the real Google Fonts arrive. */
  --font-display: 'Barlow Condensed', 'BC-fallback', sans-serif;
  --font-body:    'Inter', 'Inter-fallback', sans-serif;
  --nav-h:       72px;
  --radius:      4px;
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text--accent { color: var(--accent); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--accent {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.btn--accent:hover {
  background: #d8ff50;
  border-color: #d8ff50;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  border-color: var(--white);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn--full { width: 100%; }

/* ============================================================
   SECTION COMMON
   ============================================================ */

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.6;
}

.section-header {
  margin-bottom: 56px;
}

.section-header--light .section-sub {
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  transition: background var(--transition), box-shadow var(--transition), transform 0.35s ease;
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav.scrolled {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}


.nav__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--accent);
  flex-shrink: 0;
}

.nav__stack {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.nav__links {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
}

.nav__links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__links a:hover { color: var(--accent); }

.nav__popular { position: relative; color: #fff !important; }
.nav__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: top center;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d0d0d;
  background: var(--accent);
  padding: 3px 7px;
  border-radius: 4px;
  line-height: 1;
  white-space: nowrap;
}

.nav__cta { display: inline-flex; flex-shrink: 0; }

.nav__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  flex-shrink: 0;
}
.nav__phone-number {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__phone-number:hover { color: var(--white); }
.nav__phone-wa {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.nav__phone-wa:hover { color: #25D366; }
.nav__phone-wa svg { width: 18px; height: 18px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Trust marks in nav */
.nav__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(12px);
}
.nav__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__trust-item svg { height: 18px; width: auto; flex-shrink: 0; }

/* Desktop dropdown - no longer used on desktop, kept for mobile trust strip */
.nav__dropdown {
  display: none;
}

/* Mobile full menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(12px);
}

.nav__mobile.open { display: flex; }

.nav__mobile-link {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__mobile-link:hover { color: var(--accent); }
.nav__mobile-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d0d0d;
  background: var(--accent);
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
}
.nav__mobile .btn { margin-top: 12px; align-self: flex-start; }

.nav__mobile-label {
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding: 8px 0 4px;
}

.nav__mobile-secondary {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 8px;
  padding-top: 8px;
}

.nav__mobile-link--sec {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.nav__mobile-link--sec:last-child { border-bottom: none; }
.nav__mobile-link--sec:hover { color: var(--white); }

/* Mobile trust strip in nav */
.nav__mobile-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}
.nav__mobile-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__mobile-trust-item svg,
.nav__mobile-trust-item img { height: 16px; width: auto; flex-shrink: 0; opacity: 0.5; }

/* Mobile phone link in nav */
.nav__mobile-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.nav__mobile-phone a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.nav__mobile-phone a:hover { color: var(--white); }
.nav__mobile-phone .nav__phone-wa { color: rgba(255,255,255,0.4); }
.nav__mobile-phone .nav__phone-wa:hover { color: #25D366; }

@media (max-width: 768px) {
  .nav__links, .nav__cta, .nav__phone, .nav__stack { display: none !important; }
  .nav__burger { display: flex; margin-left: auto; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.55) 50%, rgba(13,13,13,0.3) 100%),
    linear-gradient(to right, rgba(13,13,13,0.4) 0%, rgba(13,13,13,0.1) 50%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-h);
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.35s forwards;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.5s forwards;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.65s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.6s ease 1s forwards;
}

.hero__scroll span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.5); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100svh;
    padding-bottom: 180px;
  }
  .hero__headline { margin-bottom: 16px; }
  .hero__sub { margin-bottom: 24px; font-size: 0.95rem; }
  .hero__ctas .btn { padding: 12px 20px; font-size: 0.9rem; }
  .hero__scroll { display: none; }
}

/* ============================================================
   STATS BAR
   ============================================================ */

.stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: var(--accent);
}

.stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

@media (max-width: 900px) {
  .stats__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .stats__inner { grid-template-columns: 1fr 1fr; }
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  text-align: center;
}

.stats__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.01em;
}

.stats__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(13,13,13,0.65);
  margin-top: 4px;
}

/* ============================================================
   TRAILS
   ============================================================ */

.trails {
  background: var(--dark);
  padding: 120px 0;
}

.trails__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.trail-card--featured {
  grid-column: 1 / -1;
}

@media (max-width: 768px) {
  .trails__grid { grid-template-columns: 1fr; }
  .trail-card--featured { grid-column: auto; }
  .trail-card { min-height: 280px; }
  .trail-card--featured { min-height: 340px; }
}

.trail-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}

.trail-card--featured { min-height: 480px; }

.trail-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.trail-card:hover .trail-card__img { transform: scale(1.04); }

.trail-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.trail-card__content {
  position: relative;
  z-index: 2;
  padding: 32px;
}

.trail-card__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--dark);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.trail-card__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.trail-card__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 480px;
}

.trail-card__meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
}

.trails__cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trails__cta p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.how {
  background: var(--dark-2);
  padding: 120px 0;
}

.how__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

@media (max-width: 768px) {
  .how__steps { flex-direction: column; }
  .how__connector { width: 2px; height: 48px; margin: 0 0 0 32px; }
}

.how__step {
  flex: 1;
  padding: 40px 32px;
  background: var(--dark-3);
  border-radius: 8px;
  position: relative;
}

.how__step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(200, 241, 53, 0.12);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  letter-spacing: -0.03em;
}

.how__step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.how__step-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.how__step-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.how__connector {
  width: 48px;
  height: 2px;
  background: var(--accent);
  align-self: center;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ============================================================
   PACKAGES
   ============================================================ */

.packages {
  background: var(--dark);
  padding: 120px 0;
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

@media (max-width: 768px) {
  .packages__grid { grid-template-columns: 1fr; }
}

.package-card {
  background: var(--dark-3);
  border-radius: 8px;
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}

.package-card:hover {
  border-color: rgba(200,241,53,0.3);
  transform: translateY(-4px);
}

.package-card--featured {
  background: var(--dark-2);
  border-color: var(--accent);
  transform: scale(1.03);
}

.package-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.package-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.package-card__header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.package-card__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.package-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.package-card__amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.package-card__per {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.package-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.package-card__features li.muted {
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}

.packages__note {
  margin-top: 32px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}

.packages__note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   REVIEWS
   ============================================================ */

.reviews {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.reviews__bg {
  position: absolute;
  inset: 0;
}

.reviews__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.reviews__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.82);
}

.reviews__inner {
  position: relative;
  z-index: 2;
}

/* ─────────── LIGHT / FRESH REVIEWS VARIANT ─────────── */
.reviews--light {
  background: #F7F7F3;
  color: #0D0D0D;
  padding: 100px 0;
}

.reviews--light .reviews__inner {
  position: relative;
  z-index: 1;
}

.reviews__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(13,13,13,0.08);
}

.reviews__rating {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews__rating-score {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: #0D0D0D;
  letter-spacing: -0.02em;
}

.reviews__rating-stars {
  color: var(--accent);
  font-size: 1.15rem;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 6px;
  /* Darker outline so lime stars read on cream */
  text-shadow: 0 0 1px rgba(13,13,13,0.25);
}

.reviews__rating-count {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(13,13,13,0.6);
  letter-spacing: 0.02em;
}

.reviews__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  color: #0D0D0D;
  text-align: right;
  flex: 1 1 auto;
  min-width: 280px;
}

.reviews__title-accent {
  color: #0D0D0D;
  background: var(--accent);
  padding: 0 12px 2px;
  display: inline-block;
  line-height: 1;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .reviews__header { flex-direction: column; align-items: flex-start; }
  .reviews__title { text-align: left; }
}

@media (max-width: 768px) {
  .reviews__grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews--light { padding: 80px 0; }
}

.reviews--light .review-card {
  background: #FFFFFF;
  border: 1px solid rgba(13,13,13,0.06);
  border-radius: 10px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(13,13,13,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.reviews--light .review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(13,13,13,0.08);
  border-color: rgba(200, 241, 53, 0.6);
}

.reviews--light .review-card__stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
  line-height: 1;
  text-shadow: 0 0 1px rgba(13,13,13,0.25);
}

.reviews--light .review-card__quote {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #1A1A1A;
  line-height: 1.65;
  margin: 0 0 24px;
  font-style: normal;
  font-weight: 400;
  flex: 1 1 auto;
  quotes: "\201C" "\201D";
}

.reviews--light .review-card__quote::before { content: open-quote; }
.reviews--light .review-card__quote::after { content: close-quote; }

.reviews--light .review-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(13,13,13,0.06);
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  color: #0D0D0D;
}

.reviews--light .review-card__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0D0D0D;
}

.reviews--light .review-card__meta {
  font-size: 0.8rem;
  color: rgba(13,13,13,0.55);
  letter-spacing: 0.01em;
}

.reviews--light .reviews__cta {
  margin-top: 48px;
  text-align: center;
}

.reviews--light .reviews__cta-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0D0D0D;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.reviews--light .reviews__cta-link:hover {
  color: #0D0D0D;
  border-bottom-color: #0D0D0D;
}

/* Legacy dark-theme card fallback (only for pages that haven't migrated to .reviews--light) */
.reviews:not(.reviews--light) .review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px;
  backdrop-filter: blur(8px);
}

.reviews:not(.reviews--light) .review-card__stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.reviews:not(.reviews--light) .review-card__quote {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.reviews:not(.reviews--light) .review-card__author {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ============================================================
   ABOUT
   ============================================================ */

.about {
  background: var(--dark-2);
  padding: 120px 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
}

.about__img-wrap {
  position: relative;
}

.about__img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about__img-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 50%;
  height: 50%;
  background: var(--accent);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.7;
}

.about__content .section-title { margin-bottom: 28px; }

.about__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about__content .btn { margin-top: 12px; }

/* ============================================================
   BOOK CTA
   ============================================================ */

.book-cta {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

.book-cta__bg {
  position: absolute;
  inset: 0;
}

.book-cta__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.book-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.book-cta__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.book-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 10vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 20px;
}

.book-cta__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}

.book-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #080808;
  padding-top: 72px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__social a:hover { color: var(--accent); }

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.footer__trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer__trust-item img {
  height: 32px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity .2s ease;
}

.footer__trust-item:hover img { opacity: 1; }

.footer__trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer__trust-badge img {
  height: 16px;
  width: auto;
  opacity: 0.5;
}

.footer__bottom {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  margin: 0;
}

.footer__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__trust-item img {
  height: 40px;
  width: auto;
  opacity: 0.8;
}

@media (max-width: 640px) {
  .footer__bottom { justify-content: center; text-align: center; }
  .footer__trust { justify-content: center; }
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  background: var(--dark-2);
  padding: 120px 0;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .faq__grid { grid-template-columns: 1fr; }
}

.faq__item {
  background: var(--dark-3);
  padding: 32px;
  transition: background var(--transition);
}

.faq__item:hover { background: #2a2a2a; }

.faq__q {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 12px;
}

.faq__a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

.faq__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.faq__cta p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
}

/* ============================================================
   HERO REASSURANCE LINE
   ============================================================ */

.hero__reassurance {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  background: #000;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 4px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.8s forwards;
}

/* ============================================================
   PACKAGE NOTE
   ============================================================ */

.package-card__note {
  margin-top: 12px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   REVIEWS CTA
   ============================================================ */

.reviews__cta {
  margin-top: 40px;
  text-align: center;
}

/* ============================================================
   ABOUT TRUST STRIP
   ============================================================ */

.about__trust {
  display: flex;
  gap: 32px;
  margin: 24px 0 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.about__trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about__trust-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.about__trust-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   BOOK CTA GUARANTEE LINE
   ============================================================ */

.book-cta__guarantee {
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */

/* Gate the hidden state behind .js-reveal-ready on <html>. JS adds that
   class the moment it runs (before observing), so the page is visible
   from first paint. If JS is slow, blocked, or the preview tool
   snapshots before scripts execute, content stays readable instead of
   showing as opacity:0. The animation still plays on real visits. */
html.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

html.js-reveal-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ============================================================
   BOOKING FORM
   ============================================================ */

.booking {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.booking__bg {
  position: absolute;
  inset: 0;
}

.booking__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.booking__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 50%, rgba(0,0,0,0.55) 100%);
}

.booking__inner {
  position: relative;
  z-index: 2;
}

.booking__header {
  text-align: center;
  margin-bottom: 48px;
}

.booking__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
}

.booking__footer-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

.booking__footer-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* The card */
.bk-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(18,18,18,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 48px;
}

@media (max-width: 600px) {
  .bk-wrap { padding: 28px 20px; }
}

/* Step indicator */
.bk-steps {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.bk-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.bk-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
  transition: all var(--transition);
}

.bk-step__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  transition: color var(--transition);
}

.bk-step.active .bk-step__num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.bk-step.active .bk-step__label { color: var(--white); }

.bk-step.done .bk-step__num {
  background: rgba(200,241,53,0.15);
  border-color: var(--accent);
  color: var(--accent);
}

.bk-step.done .bk-step__label { color: rgba(255,255,255,0.5); }

.bk-step__line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 12px;
}

@media (max-width: 480px) {
  .bk-step__label { display: none; }
}

/* Section labels inside the form */
.bk-section-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}

/* Package grid */
.bk-pkg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 6px;
}

@media (max-width: 560px) {
  .bk-pkg-grid { grid-template-columns: 1fr; }
}

.bk-pkg {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.bk-pkg:hover {
  border-color: rgba(200,241,53,0.35);
  background: rgba(200,241,53,0.03);
}

.bk-pkg.selected {
  border-color: var(--accent);
  background: rgba(200,241,53,0.07);
}

.bk-pkg--popular { border-color: rgba(200,241,53,0.2); }

.bk-pkg__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.bk-pkg__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.bk-pkg__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 6px;
}

.bk-pkg__price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.35);
}

.bk-pkg__detail {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* Trail grid */
.bk-trail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

@media (max-width: 560px) {
  .bk-trail-grid { grid-template-columns: 1fr; }
}

.bk-trail {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.bk-trail:hover {
  border-color: rgba(200,241,53,0.3);
  background: rgba(200,241,53,0.02);
}

.bk-trail.selected {
  border-color: var(--accent);
  background: rgba(200,241,53,0.06);
}

.bk-trail__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.bk-trail__meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* Ride selection cards */
.bk-ride-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bk-ride {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 20px 22px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.bk-ride:hover {
  border-color: rgba(200,241,53,0.35);
  background: rgba(200,241,53,0.03);
}

.bk-ride.selected {
  border-color: var(--accent);
  background: rgba(200,241,53,0.07);
}

.bk-ride--popular {
  border-color: rgba(200,241,53,0.2);
  position: relative;
}

.bk-ride__icon {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1;
}

.bk-ride__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 4px;
}

.bk-ride__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.bk-ride__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin-bottom: 8px;
}

.bk-ride__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bk-ride__meta span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bk-ride__meta span::before {
  content: '·';
  margin-right: 12px;
  opacity: 0.3;
}

.bk-ride__meta span:first-child::before { display: none; }

.bk-ride__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
  text-align: right;
}

.bk-ride__price small {
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 600px) {
  .bk-ride {
    grid-template-columns: 40px 1fr;
  }
  .bk-ride__price { display: none; }
  .bk-ride__icon { font-size: 1.4rem; }
}

/* Shared field layout */
.bk-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 560px) {
  .bk-row { grid-template-columns: 1fr; }
}

.bk-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bk-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.bk-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 13px 15px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  -webkit-appearance: none;
}

.bk-input:focus { border-color: var(--accent); }
.bk-input::placeholder { color: rgba(255,255,255,0.2); }
.bk-input option { background: #1a1a1a; color: var(--white); }
.bk-input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.6); cursor: pointer; }

textarea.bk-input { resize: vertical; min-height: 80px; }

/* Stepper */
.bk-stepper {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  overflow: hidden;
  height: 50px;
}

.bk-stepper__btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  width: 50px;
  height: 100%;
  cursor: pointer;
  transition: background var(--transition);
  line-height: 1;
}

.bk-stepper__btn:hover { background: rgba(200,241,53,0.12); }

.bk-stepper__val {
  flex: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

/* Price preview */
.bk-price-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(200,241,53,0.06);
  border: 1px solid rgba(200,241,53,0.18);
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 24px;
}

.bk-price-preview span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.bk-price-preview strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}

/* Actions */
.bk-actions { margin-top: 28px; }

.bk-actions--row {
  display: flex;
  gap: 12px;
}

.bk-actions--row .btn:last-child { flex: 1; }

/* Confirmation screen */
.bk-confirm {
  text-align: center;
  padding: 32px 20px;
}

.bk-confirm__check {
  width: 72px;
  height: 72px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto 24px;
}

.bk-confirm__title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bk-confirm__ref {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.bk-confirm__msg {
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   HOW IT WORKS — PICKUP STOPS STRIP
   ============================================================ */

.how__stops {
  margin-top: 48px;
  padding: 20px 28px;
  background: rgba(200,241,53,0.06);
  border: 1px solid rgba(200,241,53,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.how__stops-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}

.how__stops-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.how__stops-list span {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 5px 14px;
}

/* ============================================================
   WHEN NATURE CALLS
   ============================================================ */

.nature-calls {
  background: var(--dark);
  padding: 120px 0;
}

.nature-calls__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .nature-calls__inner { grid-template-columns: 1fr; gap: 48px; }
}

.nature-calls__body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.nature-calls__values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.nature-calls__value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.nature-calls__value-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.nature-calls__value strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
  color: var(--white);
}

.nature-calls__value p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin: 0;
}

.nature-calls__mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  aspect-ratio: 1 / 1;
}

.nature-calls__mosaic-cell {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.nature-calls__mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}

.nature-calls__mosaic-cell:hover img { transform: scale(1.05); }

/* Asymmetric layout — large feature top-left, then 1 small, 1 tall, 1 wide */
.nature-calls__mosaic-cell:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.nature-calls__mosaic-cell:nth-child(3) { grid-row: span 2; }
.nature-calls__mosaic-cell:nth-child(4) { grid-column: span 2; }

@media (max-width: 768px) {
  .nature-calls__mosaic { aspect-ratio: 4 / 3; }
}

.nature-calls__img-wrap {
  position: relative;
}

.nature-calls__img-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.nature-calls__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.nature-calls__img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  padding: 32px 24px 20px;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ============================================================
   BOOKING — pickup stop select arrow fix
   ============================================================ */

.bk-confirm__summary {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery {
  padding: 100px 0;
  background: var(--light);
}

.gallery .section-title { color: var(--dark); }
.gallery .section-eyebrow { color: var(--text-muted); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 8px;
  margin-top: 48px;
}

.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 520px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 120px;
  }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }
  /* Trim gallery to 10 photos on small phones — trust without scroll fatigue */
  .gallery__item:nth-child(n+11) { display: none; }
}

/* ============================================================
   NAV — LOCALS LINK
   ============================================================ */

.nav__link--locals {
  color: var(--accent);
}
.nav__link--active {
  opacity: 1;
}

/* ============================================================
   LOCALS TEASER (HOMEPAGE)
   ============================================================ */

.locals-teaser {
  background: var(--dark-2);
  padding: 80px 0;
  border-top: 1px solid rgba(200,241,53,0.15);
  border-bottom: 1px solid rgba(200,241,53,0.15);
}

.locals-teaser__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.locals-teaser__content {
  flex: 1;
}

.locals-teaser__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 540px;
}

.locals-teaser__highlight {
  flex-shrink: 0;
  background: var(--dark-3);
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 40px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.locals-teaser__price {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.locals-teaser__price-sub {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.locals-teaser__includes {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}

@media (max-width: 768px) {
  .locals-teaser__inner {
    flex-direction: column;
    text-align: center;
  }
  .locals-teaser__text {
    margin-left: auto;
    margin-right: auto;
  }
  .locals-teaser__highlight {
    padding: 32px 40px;
  }
  .locals-teaser__price {
    font-size: 3rem;
  }
}

/* ============================================================
   LOCALS BOOKING BADGE
   ============================================================ */

.bk-ride__badge--locals {
  background: rgba(200,241,53,0.15);
  color: var(--accent);
}

/* ============================================================
   LOCALS PAGE — HERO
   ============================================================ */

.locals-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 80px;
  overflow: hidden;
}

.locals-hero__bg {
  position: absolute;
  inset: 0;
}

.locals-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.locals-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark) 0%, rgba(13,13,13,0.6) 40%, transparent 70%);
}

.locals-hero__content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 48px);
}

.locals-hero__badge {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.locals-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.locals-hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 32px;
}

.locals-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   LOCALS PAGE — HOW IT WORKS STEPS
   ============================================================ */

.locals-how {
  background: var(--dark-2);
  padding: 120px 0;
}

.locals-steps {
  display: flex;
  gap: 16px;
}

.locals-step {
  flex: 1;
  padding: 40px 32px;
  background: var(--dark-3);
  border-radius: 8px;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.locals-step.revealed {
  opacity: 1;
  transform: translateY(0);
}

.locals-step__num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(200, 241, 53, 0.12);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  letter-spacing: -0.03em;
}

.locals-step__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.locals-step__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.locals-step__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .locals-steps {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============================================================
   LOCALS PAGE — YOUR GUIDE
   ============================================================ */

.locals-guide {
  background: var(--dark);
  padding: 120px 0;
}

.locals-guide__inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.locals-guide__img-wrap {
  flex-shrink: 0;
  position: relative;
  width: 360px;
  height: 400px;
}

.locals-guide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.locals-guide__img-accent {
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 120px;
  height: 120px;
  background: var(--accent);
  border-radius: 4px;
  z-index: -1;
}

.locals-guide__content {
  flex: 1;
}

.locals-guide__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.locals-guide__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.locals-guide__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.locals-guide__detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .locals-guide__inner {
    flex-direction: column;
    gap: 40px;
  }
  .locals-guide__img-wrap {
    width: 100%;
    height: 300px;
  }
}

/* ============================================================
   LOCALS PAGE — WHAT'S INCLUDED
   ============================================================ */

.locals-included {
  background: var(--dark);
  padding: 120px 0;
}

.locals-included__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.locals-included__grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.locals-included__item {
  background: var(--dark-3);
  border-radius: 8px;
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color var(--transition);
}

.locals-included__item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.locals-included__item:hover {
  border-color: rgba(200,241,53,0.3);
}

.locals-included__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.locals-included__label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.locals-included__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .locals-included__grid,
  .locals-included__grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .locals-included__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   LOCALS PAGE — PHOTOS
   ============================================================ */

.locals-photos {
  background: var(--dark-2);
  padding: 80px 0;
}

.locals-photos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 280px;
  gap: 16px;
}

.locals-photos__item {
  border-radius: 8px;
  overflow: hidden;
}

.locals-photos__item--wide {
  grid-column: span 2;
  grid-row: span 1;
}

.locals-photos__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.locals-photos__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 520px) {
  .locals-photos__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .locals-photos__item--wide {
    grid-column: span 1;
  }
}

/* ============================================================
   LOCALS PAGE — WHY
   ============================================================ */

.locals-why {
  background: var(--dark-2);
  padding: 120px 0;
}

.locals-why__inner {
  max-width: 720px;
}

.locals-why__content {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.locals-why__content.revealed {
  opacity: 1;
  transform: translateY(0);
}

.locals-why__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.locals-why__callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(200,241,53,0.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  margin-top: 32px;
}

.locals-why__callout-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.locals-why__callout p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ============================================================
   LOCALS PAGE — PRICING
   ============================================================ */

.locals-pricing {
  background: var(--dark);
  padding: 120px 0;
}

.locals-pricing__card {
  max-width: 440px;
  margin: 0 auto;
  background: var(--dark-2);
  border: 2px solid var(--accent);
  border-radius: 8px;
  padding: 40px 36px;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.locals-pricing__card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.locals-pricing__header {
  margin-bottom: 8px;
}

.locals-pricing__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.locals-pricing__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(200,241,53,0.15);
  color: var(--accent);
  padding: 4px 14px;
  border-radius: 20px;
  margin-top: 8px;
}

.locals-pricing__price {
  margin: 24px 0;
}

.locals-pricing__amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.locals-pricing__per {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.locals-pricing__features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.locals-pricing__features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.locals-pricing__features li:last-child {
  border-bottom: none;
}

.locals-pricing__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ============================================================
   LOCALS PAGE — FINAL CTA
   ============================================================ */

.locals-cta {
  background: var(--dark-2);
  padding: 100px 0;
  text-align: center;
}

.locals-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.locals-cta__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

/* ============================================================
   LOCALS PAGE — BREADCRUMB (reuse trail pattern)
   ============================================================ */

.trail-breadcrumb {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.trail-breadcrumb a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.trail-breadcrumb a:hover {
  color: var(--accent);
}

.trail-breadcrumb span {
  margin: 0 8px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   WHAT TO BRING / WHAT WE PROVIDE
   ───────────────────────────────────────────────────────────────────────────── */
.kit-check {
  background: #111;
  padding: 80px 0;
  border-top: 3px solid var(--accent);
}
.kit-check__inner {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: start;
  gap: 0;
}
.kit-check__divider {
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}
.kit-check__col {
  padding: 0 56px;
}
.kit-check__col:first-child {
  padding-left: 0;
}
.kit-check__col:last-child {
  padding-right: 0;
}
.kit-check__heading {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.kit-check__heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.kit-check__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 16px;
}
.kit-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.kit-icon svg {
  width: 46px;
  height: 46px;
  color: #fff;
  flex-shrink: 0;
}
.kit-icon__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .kit-check__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .kit-check__divider { display: none; }
  .kit-check__col { padding: 0; }
  .kit-check__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .kit-check__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
}

/* ── Trail Confidence Callout ── */
.trail-confidence {
  padding: 0;
  margin-top: -1px;
  background: var(--dark-2);
}
.trail-confidence .container {
  padding-top: 0;
  padding-bottom: 0;
}
.trail-confidence__inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--dark-3);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 28px 32px;
  margin: 40px 0;
}
.trail-confidence__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.trail-confidence__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.trail-confidence__text strong {
  color: var(--white);
}
.trail-confidence__quote {
  display: block;
  margin-top: 12px;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
@media (max-width: 600px) {
  .trail-confidence__inner {
    flex-direction: column;
    padding: 20px 20px;
  }
}

/* ── Trail Groups & Families ── */
.trail-groups {
  padding: 80px 0;
  background: var(--dark-2);
}
.trail-groups__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
.trail-groups__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 16px;
}
.trail-groups__body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}
.trail-groups__quote {
  background: var(--dark-3);
  border-radius: 8px;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
}
.trail-groups__quote .review-card__stars {
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: #f5c518;
}
.trail-groups__quote p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
}
.trail-groups__quote span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.trail-groups__facts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trail-groups__fact {
  background: var(--dark-3);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.trail-groups__fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.trail-groups__fact span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
@media (max-width: 768px) {
  .trail-groups__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .trail-groups__facts {
    flex-direction: row;
  }
  .trail-groups__fact {
    flex: 1;
  }
}
@media (max-width: 480px) {
  .trail-groups__facts {
    flex-direction: column;
  }
}

/* ── Trail Quote Badges (on images) ── */
.trail-experience__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.trail-experience__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trail-quote-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(13,13,13,0.8);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-style: italic;
  padding: 8px 14px;
  border-radius: 4px;
  border-left: 3px solid var(--accent);
  line-height: 1.4;
}

/* ── Included Item Badge ── */
.included-item__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ── Price stat highlight ── */
.trail-stat--price .trail-stat__val {
  color: var(--accent);
}

/* ============================================================
   MOBILE OPTIMISATIONS
   ============================================================ */

@media (max-width: 768px) {
  .trails,
  .how,
  .nature-calls,
  .reviews,
  .about,
  .faq,
  .locals-teaser,
  .booking,
  .packages,
  .locals-how,
  .locals-guide,
  .locals-included,
  .locals-why,
  .locals-pricing { padding: 64px 0; }

  .booking { padding-bottom: 48px; }
}

@media (max-width: 480px) {
  .stats__num { font-size: 1.8rem; }
  .stats__label { font-size: 0.72rem; }
  .stats__item { padding: 14px 8px; }
}

/* ============================================================
   COMING SOON — Trail cards + page banners + waitlist
   ============================================================ */

/* Trail card coming soon overlay */
.trail-card--coming-soon { position: relative; }
.trail-card--coming-soon .trail-card__img { filter: grayscale(40%) brightness(0.7); }
.trail-card__coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius);
}
.btn--disabled {
  opacity: .5;
  pointer-events: none;
  cursor: default;
}

/* Coming soon page banner */
.coming-soon-banner {
  background: var(--accent);
  color: var(--dark);
  text-align: center;
  padding: 10px 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 101;
}
.coming-soon-banner a {
  color: var(--dark);
  text-decoration: underline;
  font-weight: 800;
}
.coming-soon-banner a {
  color: var(--dark);
  text-decoration: underline;
  font-weight: 800;
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin-top: 16px;
}
.waitlist-form__input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
}
.waitlist-form__input::placeholder { color: rgba(255,255,255,.4); }
.waitlist-form__input:focus {
  outline: none;
  border-color: var(--accent);
}
.waitlist-form__success {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  margin-top: 12px;
}
@media (max-width: 480px) {
  .waitlist-form { flex-direction: column; }
}

/* ============================================================
   TRAIL PAGE EXTRAS (moved from inline <style> for perf —
   above-the-fold trail-hero rules remain inline in index.html)
   ============================================================ */
/* ── Leaflet overrides for dark theme ── */
    .leaflet-container {
      background: #0D0D0D;
      font-family: var(--font-body);
    }
    .leaflet-popup-content-wrapper {
      background: #1a1a1a;
      color: var(--white);
      border: 1px solid rgba(200,241,53,0.25);
      border-radius: 6px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    }
    .leaflet-popup-tip { background: #1a1a1a; }
    .leaflet-popup-content { margin: 14px 16px; }
    .leaflet-popup-close-button { color: var(--text-muted) !important; }
    .leaflet-popup-close-button:hover { color: var(--accent) !important; }
    .leaflet-control-zoom a {
      background: #1a1a1a !important; color: var(--white) !important;
      border-color: rgba(255,255,255,0.1) !important;
    }
    .leaflet-control-zoom a:hover { background: var(--dark-3) !important; color: var(--accent) !important; }
    .leaflet-control-attribution {
      background: rgba(13,13,13,0.8) !important;
      color: var(--text-muted) !important; font-size: 10px !important;
    }
    .leaflet-control-attribution a { color: rgba(255,255,255,0.35) !important; }

    /* ── Map section ── */
    .trail-map-section { padding: 80px 0; background: #fff; color: #0d0d0d; }
    .trail-map-section .section-title { color: #0d0d0d; }
    .trail-map-section .section-sub { color: rgba(0,0,0,0.7); }
    .trail-map-section .section-eyebrow { color: #0d0d0d; }
    .trail-map-section .map-legend__item { color: rgba(0,0,0,0.65); }
    .trail-map-section .map-wrapper {
      border-color: rgba(0,0,0,0.08);
      box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }
    .tile-stylised {
      filter: saturate(1.05) contrast(0.98);
    }
    .trail-map-grid {
      display: grid; grid-template-columns: 1fr;
      gap: 24px; margin-top: 40px;
    }
    .map-wrapper {
      border-radius: 10px; overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
      min-height: 560px;
    }
    #trail-map { height: 100%; width: 100%; min-height: 560px; }

    /* Click/tap-to-activate gate — stops the map stealing page scroll */
    .map-gate {
      position: absolute; inset: 0; z-index: 1001;
      display: flex; align-items: flex-end; justify-content: center;
      padding-bottom: 16px; cursor: pointer; background: transparent;
    }
    .map-gate.is-hidden { display: none; }
    .map-gate__hint {
      background: rgba(13,13,13,0.82); color: #fff;
      padding: 8px 16px; border-radius: 999px;
      font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em;
      box-shadow: 0 4px 14px rgba(0,0,0,0.25);
      opacity: 0; transform: translateY(4px);
      transition: opacity .18s ease, transform .18s ease;
      pointer-events: none;
    }
    @media (hover: hover) {
      .map-gate:hover .map-gate__hint { opacity: 1; transform: none; }
    }
    @media (hover: none) {
      .map-gate__hint { opacity: 1; transform: none; }
    }

    .trail-map-aside {
      display: flex; flex-direction: column;
      background: var(--dark-3);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 10px;
      overflow: hidden;
    }
    .trail-map-aside__header {
      padding: 14px 16px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .trail-map-aside__tabs {
      display: flex; flex-wrap: wrap; gap: 4px;
      margin: 0 -4px;
    }
    .trail-map-aside__tab {
      appearance: none; border: 0; background: transparent;
      font-family: var(--font-display);
      font-size: 0.78rem; font-weight: 700;
      letter-spacing: 0.04em; text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      padding: 10px 10px; cursor: pointer;
      border-bottom: 2px solid transparent;
      transition: color var(--transition), border-color var(--transition);
    }
    .trail-map-aside__tab:hover { color: var(--white); }
    .trail-map-aside__tab--active {
      color: var(--accent);
      border-bottom-color: var(--accent);
    }
    .trail-map-aside__tab-count {
      display: inline-block;
      font-size: 0.68rem;
      opacity: 0.7; margin-left: 4px;
    }
    .winery-list {
      list-style: none; margin: 0; padding: 8px;
      flex: 1; overflow-y: auto; max-height: 500px;
    }
    .winery-list__item {
      display: flex; gap: 12px; align-items: center;
      padding: 10px; border-radius: 6px;
      cursor: pointer; transition: background var(--transition);
      border: 1px solid transparent;
    }
    .winery-list__item:hover,
    .winery-list__item--active {
      background: rgba(200,241,53,0.06);
      border-color: rgba(200,241,53,0.2);
    }
    .winery-list__img {
      position: relative; flex-shrink: 0;
      width: 84px; height: 84px; border-radius: 6px;
      overflow: hidden; background: #0d0d0d;
    }
    .winery-list__img img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
    }
    .winery-list__num {
      position: absolute; top: 4px; left: 4px;
      width: 20px; height: 20px;
      display: inline-flex; align-items: center; justify-content: center;
      background: var(--accent); color: var(--dark);
      font-family: var(--font-display); font-weight: 800;
      border-radius: 50%; font-size: 0.72rem;
      box-shadow: 0 1px 3px rgba(0,0,0,0.92);
    }
    .winery-list__body { flex: 1; min-width: 0; }
    .winery-list__name {
      font-family: var(--font-display);
      font-size: 0.95rem; font-weight: 700;
      color: var(--white); margin: 0 0 2px;
      letter-spacing: 0.02em;
    }
    .winery-list__tag {
      font-size: 0.75rem; color: rgba(255,255,255,0.55);
      line-height: 1.4;
    }
    .trail-map-aside__cta {
      padding: 16px 20px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex; flex-direction: column; gap: 8px;
    }
    .trail-map-aside__trust {
      font-size: 0.72rem; color: rgba(255,255,255,0.5);
      text-align: center; letter-spacing: 0.02em;
    }
    .map-legend {
      display: flex; flex-wrap: wrap; gap: 16px;
      margin-top: 20px;
    }
    .map-legend--above {
      margin-top: 0;
      margin-bottom: 16px;
      padding: 12px 14px;
      background: rgba(0,0,0,0.04);
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 8px;
      gap: 10px 18px;
    }
    .map-legend__item {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.82rem; color: rgba(255,255,255,0.6);
    }
    .map-legend--above .map-legend__item {
      font-size: 0.78rem;
      color: rgba(0,0,0,0.7);
    }
    .map-legend__line { width: 28px; height: 3px; border-radius: 2px; }
    .map-legend__dot { width: 12px; height: 12px; border-radius: 50%; }
    .map-legend__pin { width: 22px; height: 26px; display: inline-flex; }
    .map-legend__pin img { width: 100%; height: 100%; display: block; }
    @media (max-width: 600px) {
      .map-legend--above {
        gap: 8px 12px;
        padding: 10px 12px;
      }
      .map-legend--above .map-legend__item { font-size: 0.72rem; gap: 6px; }
      .map-legend__line { width: 22px; }
    }

    /* Custom Leaflet marker styles */
    /* Keep markers anchored to their geo point at EVERY zoom. Leaflet sizes +
       offsets the icon container to the point (iconSize/iconAnchor); the
       zoom-based resizing below changes the inner marker's size, which would
       otherwise drift it off the anchor (visible when zoomed out). Flex-align
       the inner marker inside the container: pins pinned at the tip (bottom),
       round markers at the centre. flex:0 0 auto stops the container shrinking
       markers that are larger than it (very-high zoom). */
    /* leaflet.css loads after this file and sets the icon to display:block,
       so scope to .leaflet-marker-icon (higher specificity) + !important to
       win the flex. */
    .leaflet-marker-icon.wiz-icon { display: flex !important; justify-content: center; }
    .wiz-icon > * { flex: 0 0 auto; }
    .wiz-icon--pin { align-items: flex-end; }
    .wiz-icon--dot { align-items: center; }

    .wiz-marker {
      display: flex; align-items: center; justify-content: center;
      width: 32px; height: 32px; border-radius: 50%;
      font-family: var(--font-display); font-size: 0.85rem; font-weight: 800;
      border: 2px solid;
      box-shadow: 0 2px 8px rgba(0,0,0,0.5);
      cursor: pointer;
      transition: transform 0.18s ease, width 0.18s ease, height 0.18s ease, font-size 0.18s ease;
      transform-origin: center bottom;
    }
    .wiz-marker:hover { transform: scale(1.12); z-index: 1000; }

    /* Zoom-responsive marker sizing — pins shrink when zoomed out,
       grow when zoomed in (real-estate-style). Container sets data-zoom. */
    #trail-map[data-zoom="low"] .wiz-marker {
      width: 12px; height: 12px; border-width: 2px;
      font-size: 0; color: transparent;
      box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    }
    #trail-map[data-zoom="low"] .wiz-marker--stop { width: 8px; height: 8px; }
    #trail-map[data-zoom="low"] .wiz-marker--bungy img,
    #trail-map[data-zoom="low"] .wiz-marker--kinross img { opacity: 0; }

    #trail-map[data-zoom="mid"] .wiz-marker {
      width: 22px; height: 22px;
      font-size: 0.7rem;
    }
    #trail-map[data-zoom="mid"] .wiz-marker--stop { width: 10px; height: 10px; }

    /* "high" zoom uses the default 32px size, nothing to override */
    #trail-map[data-zoom="very-high"] .wiz-marker {
      width: 40px; height: 40px; font-size: 1rem;
    }
    .wiz-marker--start {
      background: var(--accent); border-color: var(--accent); color: #0D0D0D;
      width: 36px; height: 36px; font-size: 0.9rem;
    }
    .wiz-marker--winery {
      background: transparent !important; border: none !important;
      border-radius: 0 !important; box-shadow: none !important;
      width: 60px !important; height: 72px !important;
      position: relative;
      filter: drop-shadow(0 4px 8px rgba(0,0,0,0.45));
    }
    .wiz-marker--winery img {
      width: 100%; height: 100%; display: block; pointer-events: none;
    }
    .wiz-marker--winery.is-active { transform: scale(1.12); z-index: 1000; }
    #trail-map[data-zoom="low"] .wiz-marker--winery {
      width: 30px !important; height: 36px !important;
    }
    #trail-map[data-zoom="mid"] .wiz-marker--winery {
      width: 46px !important; height: 55px !important;
    }
    #trail-map[data-zoom="very-high"] .wiz-marker--winery {
      width: 74px !important; height: 88px !important;
    }
    .wiz-marker--finish {
      background: var(--white); border-color: var(--white); color: var(--dark);
      width: 36px; height: 36px; font-size: 0.9rem;
    }
    /* Smaller solid dots for secondary POIs */
    .wiz-marker--food, .wiz-marker--poi, .wiz-marker--bridge {
      width: 14px !important; height: 14px !important;
      border-width: 2px !important; border-style: solid;
      font-size: 0 !important; color: transparent !important;
      box-shadow: 0 1px 4px rgba(0,0,0,0.45);
    }
    .wiz-marker--food   { background: #e05a1f; border-color: #ffffff; }
    .wiz-marker--poi    { background: #4a5fff; border-color: #ffffff; }
    .wiz-marker--bridge { background: #0d0d0d; border-color: #ffffff; }
    /* Photo marker: location pin (70% size of winery) */
    .wiz-marker--photo {
      background: transparent !important; border: none !important;
      border-radius: 0 !important; box-shadow: none !important;
      width: 42px !important; height: 50px !important;
      font-size: 0 !important; color: transparent !important;
      position: relative;
      filter: drop-shadow(0 3px 4px rgba(0,0,0,0.45));
    }
    .wiz-marker--photo img { width: 100%; height: 100%; display: block; pointer-events: none; }
    #trail-map[data-zoom="low"] .wiz-marker--photo  { width: 21px !important; height: 25px !important; }
    #trail-map[data-zoom="mid"] .wiz-marker--photo  { width: 32px !important; height: 38px !important; }
    #trail-map[data-zoom="very-high"] .wiz-marker--photo { width: 52px !important; height: 62px !important; }
    /* Slight grow on hover so they're still tappable */
    .wiz-marker--food:hover, .wiz-marker--poi:hover,
    .wiz-marker--photo:hover, .wiz-marker--bridge:hover { transform: scale(1.5); }
    .wiz-marker--bungy {
      width: 48px !important; height: 48px !important;
      background: #fff !important; border: 2px solid #fff !important;
      box-shadow: 0 4px 10px rgba(0,0,0,0.35);
      border-radius: 50% !important;
      box-sizing: border-box;
      overflow: visible !important;
      position: relative;
      font-size: 0 !important;
      color: transparent !important;
    }
    .wiz-marker--bungy img {
      position: absolute;
      width: 72px; height: auto;
      left: 50%; top: 40%;
      transform: translate(-50%, -50%);
      display: block;
      max-width: none;
    }
    #trail-map[data-zoom="low"] .wiz-marker--bungy { width: 30px !important; height: 30px !important; }
    #trail-map[data-zoom="low"] .wiz-marker--bungy img { width: 46px; }
    #trail-map[data-zoom="mid"] .wiz-marker--bungy { width: 40px !important; height: 40px !important; }
    #trail-map[data-zoom="mid"] .wiz-marker--bungy img { width: 60px; }
    #trail-map[data-zoom="very-high"] .wiz-marker--bungy { width: 60px !important; height: 60px !important; }
    #trail-map[data-zoom="very-high"] .wiz-marker--bungy img { width: 92px; }
    .wiz-marker--shuttle-start {
      background: var(--accent); border-color: var(--accent); color: #0D0D0D;
      width: 36px; height: 36px; font-size: 0.8rem; font-weight: 800;
    }
    .wiz-marker--stop {
      width: 14px; height: 14px; background: #C8F135; border: 2px solid #0D0D0D;
      box-shadow: 0 0 0 2px rgba(200,241,53,0.25);
    }
    .wiz-marker--kinross {
      width: 32px; height: 32px;
      background: #0D0D0D; border: 2px solid var(--accent);
      box-shadow: 0 3px 10px rgba(0,0,0,0.45);
      padding: 4px;
    }
    .wiz-marker--kinross img { width: 100%; height: 100%; object-fit: contain; display: block; }
    /* Image-card popups */
    .leaflet-popup-content-wrapper {
      border-radius: 14px; padding: 0; overflow: hidden;
      box-shadow: 0 12px 32px rgba(0,0,0,0.28);
    }
    .leaflet-popup-content {
      margin: 0; width: 248px !important; line-height: 1.4;
    }
    .wiz-popup-img {
      width: 100%; height: 132px; overflow: hidden; background: #0d0d0d;
    }
    .wiz-popup-img img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    .wiz-popup-text { padding: 13px 15px 15px; }
    .wiz-popup-title {
      font-family: var(--font-display);
      font-size: 1.15rem; font-weight: 800; text-transform: uppercase;
      letter-spacing: 0.02em; color: #0d0d0d; margin-bottom: 6px; line-height: 1.1;
    }
    .wiz-popup-body { font-size: 0.86rem; color: rgba(0,0,0,0.74); line-height: 1.5; }
    .wiz-popup-tag {
      display: inline-block; margin-top: 10px;
      padding: 4px 10px; border-radius: 999px;
      background: #C8F135; color: #0d0d0d;
      font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    @media (max-width: 900px) {
      .trail-map-grid { grid-template-columns: 1fr; gap: 0; }
      .map-wrapper { min-height: 400px; border-radius: 10px 10px 0 0; }
      #trail-map { min-height: 400px; }
      /* Sidebar collapses below the map as a compact vertical list */
      .trail-map-aside { border-radius: 0 0 10px 10px; }
      .trail-map-aside__header { padding: 0; position: sticky; top: 0; z-index: 2; background: var(--dark-3); }
      .trail-map-aside__tabs {
        margin: 0; flex-wrap: nowrap; overflow-x: auto;
        scrollbar-width: none;
      }
      .trail-map-aside__tabs::-webkit-scrollbar { display: none; }
      .trail-map-aside__tab { flex: 0 0 auto; padding: 14px; font-size: 0.82rem; }

      .winery-list {
        display: flex; flex-direction: column;
        max-height: 360px; overflow-y: auto;
        padding: 8px; gap: 4px;
        -webkit-overflow-scrolling: touch;
      }
      .winery-list__item {
        flex-direction: row; align-items: center;
        padding: 8px; gap: 12px;
        border-radius: 8px;
        background: var(--dark-2);
        border: 1px solid rgba(255,255,255,0.06);
      }
      .winery-list__item:hover,
      .winery-list__item--active {
        background: var(--dark-2); border-color: var(--accent);
      }
      .winery-list__img {
        width: 56px; height: 56px;
        border-radius: 6px;
        flex-shrink: 0;
      }
      .winery-list__num {
        top: 2px; left: 2px;
        width: 18px; height: 18px;
        font-size: 0.62rem;
      }
      .winery-list__body { flex: 1; min-width: 0; padding: 0; }
      .winery-list__name { font-size: 0.92rem; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
      .winery-list__tag { font-size: 0.75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    }
    @media (max-width: 600px) {
      #trail-map { min-height: 360px; }
      .map-wrapper { min-height: 360px; }
      .winery-list { max-height: 320px; }
    }

    /* ── Full winery grid ── */
    .wineries__featured { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 56px; }
    @media (max-width: 1100px) {
      .wineries__featured { grid-template-columns: repeat(3,1fr); }
    }
    @media (max-width: 900px) {
      .wineries__featured { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .wineries__featured { grid-template-columns: 1fr; }
    }

    /* ── Bungy add-on section ── */
    .bungy-addon {
      padding: 100px 0; position: relative; overflow: hidden;
      background: var(--dark);
    }
    .bungy-addon__bg {
      position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    }
    .bungy-addon__bg img { width: 100%; height: 100%; object-fit: cover; }
    .bungy-addon__bg-overlay {
      position: absolute; top: 0; right: 0; bottom: 0; left: 0;
      background: linear-gradient(105deg, rgba(13,13,13,0.97) 45%, rgba(13,13,13,0.6) 100%);
    }
    .bungy-addon__inner {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .bungy-addon__partner {
      display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
    }
    .bungy-addon__partner-logo {
      height: 68px; width: auto; display: block; flex-shrink: 0;
    }
    .bungy-addon__partner-label {
      font-size: 0.75rem; color: rgba(255,255,255,0.4); text-transform: uppercase;
      letter-spacing: 0.15em;
    }
    .bungy-addon__discount {
      display: inline-flex; align-items: center; gap: 8px;
      background: #00AEEF; color: #ffffff;
      font-family: var(--font-display); font-size: 0.8rem; font-weight: 800;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 2px; margin-bottom: 20px;
    }
    .bungy-addon__title {
      font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4.5rem);
      font-weight: 900; line-height: 0.92; text-transform: uppercase; margin-bottom: 16px;
    }
    .bungy-addon__sub {
      font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 32px;
    }
    .bungy-addon__facts {
      display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px;
    }
    .bungy-addon__fact {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.9rem; color: rgba(255,255,255,0.75);
    }
    .bungy-addon__fact span:first-child { color: var(--accent); font-size: 1.1rem; flex-shrink: 0; display: flex; }
    .bungy-addon__fact svg { width: 20px; height: 20px; }
    .bungy-addon__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
    .bungy-addon__img {
      border-radius: 8px; overflow: hidden; position: relative;
    }
    .bungy-addon__img img { width: 100%; height: 480px; object-fit: cover; border-radius: 8px; }
    .bungy-addon__img-badge {
      position: absolute; top: 20px; right: 20px;
      background: var(--accent); color: var(--dark);
      font-family: var(--font-display); font-size: 1.8rem; font-weight: 900;
      line-height: 1; padding: 14px 18px; border-radius: 6px; text-align: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    }
    .bungy-addon__img-badge small {
      display: block; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
    }
    @media (max-width: 900px) {
      .bungy-addon__inner { grid-template-columns: 1fr; gap: 40px; }
      .bungy-addon__img { display: none; }
    }

    /* ── Trail stats strip ── */
    .trail-stats {
      background: var(--dark-3);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .trail-stats__inner {
      display: flex; flex-wrap: wrap;
      align-items: stretch; justify-content: center;
      gap: 0; padding: 0;
    }
    .trail-stat {
      display: flex; flex-direction: row; align-items: center; justify-content: flex-start;
      padding: 14px 20px; gap: 14px;
      border-right: 1px solid rgba(255,255,255,0.08);
      flex: 1 1 0;
      min-width: 0;
    }
    .trail-stat:last-child { border-right: none; }
    .trail-stat__icon {
      color: var(--accent); flex-shrink: 0;
      width: 50px; height: 50px;
      display: flex; align-items: center; justify-content: center;
    }
    .trail-stat__icon svg { width: calc(50px * var(--icon-scale, 1)); height: calc(50px * var(--icon-scale, 1)); }
    .trail-stat__text {
      font-family: var(--font-display); font-size: 0.8rem;
      font-weight: 700; color: rgba(255,255,255,0.85); line-height: 1.2;
      text-transform: uppercase; letter-spacing: 0.04em;
    }

    /* ── Experience section ── */
    .trail-experience { padding: 100px 0; }
    .trail-experience__inner { display: block; }
    .trail-experience__text {
      max-width: 880px;
    }
    .trail-experience__text .section-eyebrow { margin-bottom: 12px; }
    .trail-experience__body {
      font-size: 1.1rem; line-height: 1.75;
      color: rgba(255,255,255,0.78); margin-top: 20px;
      max-width: 720px;
    }
    .trail-experience__body + .trail-experience__body { margin-top: 16px; }
    .trail-highlights {
      margin-top: 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px 36px;
    }
    .trail-highlight {
      display: flex; gap: 16px; align-items: flex-start;
    }
    .trail-highlight__icon {
      flex-shrink: 0;
      display: flex; align-items: flex-start; justify-content: center;
      color: var(--accent);
    }
    /* +30% from the previous 24px; grey backplate dropped so the icons
       read as inline marks alongside the text instead of badge chips. */
    .trail-highlight__icon svg { width: 32px; height: 32px; }
    .trail-highlight__text strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
    .trail-highlight__text span { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

    .trail-experience__images-top {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 10px;
      margin-bottom: 56px;
    }
    .trail-experience__images-top img {
      width: 100%; object-fit: cover; border-radius: 8px; display: block;
    }
    /* Top row: 3 photos, each spans 2 of 6 cols */
    .trail-experience__images-top img:nth-child(-n+3) {
      grid-column: span 2;
      height: 220px;
    }
    /* Bottom row: 2 photos, each spans 3 of 6 cols */
    .trail-experience__images-top img:nth-child(n+4) {
      grid-column: span 3;
      height: 280px;
    }

    /* ── Wineries section ── */
    .wineries {
      background: var(--dark-2);
      padding: 100px 0;
    }
    .wineries__featured {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 24px; margin-top: 56px;
    }
    .winery-card {
      background: var(--dark-3);
      border-radius: 8px; overflow: hidden;
      border: 1px solid rgba(255,255,255,0.06);
      transition: transform var(--transition), border-color var(--transition);
    }
    .winery-card:hover {
      transform: translateY(-4px);
      border-color: rgba(200,241,53,0.3);
    }
    .winery-card__img { width: 100%; height: 180px; object-fit: cover; }
    .winery-card__body { padding: 24px; }
    .winery-card__name {
      font-family: var(--font-display); font-size: 1.3rem;
      font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
      margin-bottom: 8px;
    }
    .winery-card__desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
    .wineries__show-all { display: none; }

    /* ── Day timeline ── */
    .timeline { padding: 100px 0; }
    .timeline__inner {
      display: block; max-width: 880px; margin: 0 auto;
    }
    .timeline__list { margin-top: 48px; }
    .timeline__item {
      display: flex; gap: 20px;
      padding-bottom: 56px; position: relative;
    }
    .timeline__item::before {
      content: ''; position: absolute;
      left: 24px; top: 50px; bottom: 0;
      width: 2px; background: rgba(255,255,255,0.08);
    }
    .timeline__item:last-child::before { display: none; }
    .timeline__dot {
      width: 50px; height: 50px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      position: relative; z-index: 1; color: var(--accent);
    }
    .timeline__dot svg { width: 38px; height: 38px; }
    .timeline__content { flex: 1 1 auto; min-width: 0; }
    .timeline__content strong {
      display: block; font-family: var(--font-display);
      font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em;
      color: var(--accent); margin-bottom: 4px;
    }
    .timeline__content p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
    .timeline__photo {
      display: block; width: 100%; max-width: 640px;
      height: 320px; object-fit: cover; object-position: 50% 50%;
      border-radius: 8px; margin-top: 18px;
    }
    @media (max-width: 768px) {
      .timeline__photo { height: 220px; }
    }
    @media (max-width: 600px) {
      .timeline .container { padding-left: 12px; padding-right: 16px; }
      .timeline__item { gap: 14px; }
      .timeline__item::before { left: 22px; }
    }

    /* ── Included section ── */
    .included {
      background: var(--dark-2); padding: 80px 0;
    }
    .included__grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 24px; margin-top: 48px;
    }
    .included-item {
      text-align: center; padding: 32px 20px;
      background: var(--dark-3); border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.05);
    }
    .included-item__icon { font-size: 2rem; margin-bottom: 14px; }
    .included-item__label {
      font-family: var(--font-display); font-size: 1rem;
      font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
      margin-bottom: 6px;
    }
    .included-item__note { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

    /* ── Trust line (reusable below CTAs) ── */
    .trail-trust {
      font-family: var(--font-display);
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.72rem;
      color: var(--text-muted);
      margin-top: 14px;
      letter-spacing: 0.08em;
    }
    .trail-trust--light { color: rgba(255,255,255,0.7); }

    /* ── Inline CTA band ── */
    .trail-inline-cta {
      text-align: center;
      padding: 56px 0;
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .trail-inline-cta .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }
    .trail-inline-cta .trail-trust {
      margin-top: 0;
    }
    /* Force trust line under the button in big inline CTA sections */
    .inline-cta .hero__reassurance {
      display: inline-block;
      margin-left: auto;
      margin-right: auto;
    }
    .inline-cta .container > .hero__reassurance {
      display: table;
    }

    /* ── Booking overlay ── */
    .bk-overlay {
      position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 200;
      display: flex; align-items: flex-end; justify-content: center;
      background: transparent; border: none; padding: 0; margin: 0;
      max-width: 100vw; max-height: 100vh; width: 100%; height: 100%;
      opacity: 0; transition: opacity 0.3s ease;
    }
    .bk-overlay[open] { opacity: 1; }
    .bk-overlay::backdrop { background: rgba(0,0,0,0.92); }
    .bk-overlay + .backdrop { background: rgba(0,0,0,0.92); } /* dialog-polyfill backdrop */
    .bk-overlay__backdrop {
      position: absolute; top: 0; right: 0; bottom: 0; left: 0;
      background: rgba(0,0,0,0.92);
    }
    .bk-overlay__sheet {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      max-width: 520px;
      top: 0;
      margin: 0 auto;
      display: flex; flex-direction: column;
      background: var(--dark-2);
      border-radius: 16px 16px 0 0;
      padding: 0;
      transform: translateY(100%);
      transition: transform 0.35s ease;
      overflow: hidden;
    }
    .bk-overlay[open] .bk-overlay__sheet { transform: translateY(0); }
    .bk-overlay__step {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 20px 24px 0;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .bk-overlay__cta-block {
      margin-top: auto;
      position: sticky;
      bottom: 0;
      background: var(--dark-2);
      padding: 10px 0 calc(10px + env(safe-area-inset-bottom, 0px));
      flex-shrink: 0;
    }
    .bk-overlay__cta-block .btn--full {
      width: 100%;
      border-radius: var(--radius);
      padding: 20px;
      font-size: 1.15rem;
    }
    .bk-overlay__cta-block .bk-overlay__reassurance {
      margin-top: 8px;
    }
    .bk-overlay__step--hidden { height: 0; overflow: hidden; visibility: hidden; position: absolute; }
    /* Inline validation errors */
    .bk-overlay__field--error input,
    .bk-overlay__field--error select,
    .bk-overlay__field--error textarea,
    .bk-overlay__field--error .iti {
      border-color: #ff4444 !important;
    }
    .bk-overlay__field--error label { color: #ff4444 !important; }
    .bk-overlay__error-msg {
      font-family: var(--font-body);
      font-size: 0.75rem;
      color: #ff4444;
      margin-top: 4px;
      display: none;
    }
    .bk-overlay__field--error .bk-overlay__error-msg { display: block; }
    .bk-overlay__picker--error {
      border-color: #ff4444 !important;
    }
    .bk-overlay__picker--error + .bk-overlay__error-msg { display: block; }
    .bk-overlay__picker--shake {
      animation: bk-shake 0.5s ease;
    }
    @keyframes bk-shake {
      0%, 100% { transform: translateX(0); }
      15% { transform: translateX(-8px); }
      30% { transform: translateX(8px); }
      45% { transform: translateX(-6px); }
      60% { transform: translateX(6px); }
      75% { transform: translateX(-3px); }
      90% { transform: translateX(3px); }
    }

    /* Section labels in overlay */
    .bk-overlay__section-label {
      font-family: var(--font-display);
      font-size: 0.85rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.06em;
      color: var(--white);
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .bk-overlay__section-divider {
      height: 1px;
      background: rgba(255,255,255,0.08);
      margin: 12px 0;
    }
    /* dropoff-info + transport-link styles live in /booking/booking.css */
    .bk-overlay__step3-summary-details {
      font-family: var(--font-display);
      font-size: 1rem; font-weight: 700;
      color: var(--accent);
      text-align: center;
      margin-bottom: 16px;
    }

    /* Popular badge styles live in /booking/booking.css */

    /* Return-stop + TBC button styles live in /booking/booking.css */

    /* Pickup location buttons */
    .bk-overlay__loc-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 8px;
    }
    .bk-overlay__loc-btn {
      background: rgba(255,255,255,0.06);
      border: 1.5px solid rgba(255,255,255,0.12);
      border-radius: 10px; padding: 16px 14px;
      font-family: var(--font-display); font-size: 1rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.04em;
      color: var(--white); cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      text-align: center;
    }
    .bk-overlay__loc-btn:hover { background: rgba(255,255,255,0.1); }
    .bk-overlay__loc-btn.selected {
      border-color: var(--accent);
      background: rgba(200,241,53,0.1);
      color: var(--accent);
    }

    /* Pickup time pills */
    .bk-overlay__time-pills {
      display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
    }
    .bk-overlay__time-pill {
      background: rgba(255,255,255,0.06);
      border: 1.5px solid rgba(255,255,255,0.12);
      border-radius: 40px; padding: 14px 22px;
      font-family: var(--font-display); font-size: 1rem; font-weight: 700;
      color: var(--white); cursor: pointer;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .bk-overlay__time-pill:hover { border-color: var(--accent); }
    .bk-overlay__time-pill.selected {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--dark);
    }

    /* T&C checkbox */
    .bk-overlay__tc {
      display: flex; align-items: center; justify-content: center; gap: 12px;
      font-family: var(--font-body) !important;
      font-size: 0.85rem !important; font-weight: 400 !important;
      text-transform: none !important; letter-spacing: 0 !important;
      color: rgba(255,255,255,0.6) !important;
      cursor: pointer; text-align: center !important;
      padding: 12px; margin: 0 -12px;
      border-radius: 8px;
      -webkit-tap-highlight-color: transparent;
    }
    .bk-overlay__tc input[type="checkbox"] {
      width: 24px; height: 24px; min-width: 24px; flex-shrink: 0;
      accent-color: var(--accent);
      cursor: pointer;
      -webkit-appearance: checkbox;
      appearance: checkbox;
    }
    .bk-overlay__tc a { color: var(--accent); text-decoration: underline; }
    .bk-overlay__tc a:hover { color: var(--white); }
    #bkFieldTc.bk-overlay__field--error .bk-overlay__tc { color: #ff4444 !important; }
    #bkFieldTc.bk-overlay__field--error .bk-overlay__tc input { outline: 2px solid #ff4444; outline-offset: 2px; }

    /* Payment step */
    .bk-overlay__step3-summary {
      font-family: var(--font-display);
      font-size: 1rem; font-weight: 700;
      color: var(--accent);
      text-align: center;
      margin-bottom: 16px;
    }
    .bk-overlay__wallet-btn { margin-bottom: 12px; }
    .bk-overlay__or {
      text-align: center; margin: 16px 0;
      font-family: var(--font-display);
      font-size: 0.7rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: rgba(255,255,255,0.3);
      position: relative;
    }
    .bk-overlay__or::before, .bk-overlay__or::after {
      content: ''; position: absolute; top: 50%;
      width: 35%; height: 1px;
      background: rgba(255,255,255,0.1);
    }
    .bk-overlay__or::before { left: 0; }
    .bk-overlay__or::after { right: 0; }
    .bk-overlay__stripe-el {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px; padding: 12px 14px;
      transition: border-color 0.2s;
      width: 100%; box-sizing: border-box;
      min-height: 48px;
    }
    .bk-overlay__stripe-el.StripeElement--focus { border-color: var(--accent); }
    /* Hide Stripe Link autofill */
    .bk-overlay .LinkAutofillPrompt,
    .bk-overlay [data-testid="link-autofill"],
    .bk-overlay__stripe-el iframe[name*="link"] { display: none !important; height: 0 !important; }
    .bk-overlay__stripe-el.StripeElement--invalid { border-color: #ff4444; }
    .bk-overlay__card-error {
      font-family: var(--font-body);
      font-size: 0.75rem; color: #ff4444;
      margin-top: 4px; min-height: 18px;
    }
    .bk-overlay__secure {
      font-family: var(--font-display);
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--accent);
      text-align: center;
      margin-top: 12px;
      letter-spacing: 0.04em;
    }

    /* intl-tel-input dark theme overrides */
    .bk-overlay .iti { width: 100%; }
    .bk-overlay .iti__selected-dial-code { color: var(--white); font-size: 14px; }
    .bk-overlay .iti__arrow { border-top-color: rgba(255,255,255,0.5); }
    .bk-overlay .iti__dropdown-content { background: var(--dark); border-color: rgba(255,255,255,0.15); }
    .bk-overlay .iti__search-input { background: var(--dark-2); color: var(--white); border-color: rgba(255,255,255,0.15); font-size: 16px; }
    .bk-overlay .iti__country-list { background: var(--dark); }
    .bk-overlay .iti__country:hover, .bk-overlay .iti__country--highlight { background: var(--dark-3); }
    .bk-overlay .iti__country-name, .bk-overlay .iti__dial-code { color: var(--white); }
    .bk-overlay .iti__selected-country-primary { background: transparent; }
    .bk-overlay__timing {
      margin: 12px 0;
      padding: 14px;
      background: rgba(200,241,53,0.08);
      border: 1px solid rgba(200,241,53,0.15);
      border-radius: 10px;
      text-align: center;
    }
    .bk-overlay__timing-total {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 900;
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      display: block;
    }
    .bk-overlay__timing-sub {
      font-family: var(--font-display);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      display: block;
      margin-top: 4px;
    }
    .bk-overlay__close {
      position: absolute; top: 16px; right: 20px; z-index: 2;
      background: none; border: none; color: rgba(255,255,255,0.4);
      font-size: 1.6rem; cursor: pointer; line-height: 1;
    }
    .bk-overlay__close:hover { color: var(--white); }
    .bk-overlay__header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px; padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .bk-overlay__back {
      font-family: var(--font-display);
      font-size: 0.85rem; font-weight: 600;
      min-width: 60px;
      text-transform: uppercase; letter-spacing: 0.06em;
      color: rgba(255,255,255,0.4);
      cursor: pointer; white-space: nowrap;
      transition: color 0.2s;
      text-decoration: none;
    }
    .bk-overlay__back:hover { color: var(--white); }
    .bk-overlay__ride {
      font-family: var(--font-display);
      font-size: 1.5rem; font-weight: 900;
      text-transform: uppercase; letter-spacing: 0.04em;
      color: var(--white);
      flex: 1; text-align: center;
    }
    .bk-overlay__ride-product {
      display: block;
      font-family: var(--font-display);
      font-size: 1.5rem; font-weight: 900;
      text-transform: uppercase; letter-spacing: 0.04em;
      color: var(--white);
      text-align: center;
      margin-bottom: 4px;
    }
    .bk-overlay__ride-desc {
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      text-align: center;
      line-height: 1.4;
      margin-bottom: 8px;
    }
    .bk-overlay__ride-includes-text {
      font-family: var(--font-body);
      font-size: 0.75rem;
      color: rgba(255,255,255,0.4);
      text-align: center;
      line-height: 1.4;
      margin: 4px 0 8px;
    }
    .bk-overlay__price-tag {
      font-family: var(--font-display);
      font-size: 2.2rem; font-weight: 900;
      color: var(--accent);
      text-align: center;
      margin: 8px 0;
    }
    .bk-overlay__price-tag small { font-weight: 700; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
    .bk-overlay__step2-summary {
      font-family: var(--font-display);
      font-size: 1rem; font-weight: 700;
      color: var(--accent);
      text-align: center;
      margin-bottom: 16px;
    }
    .bk-overlay__includes {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 8px;
      margin: 10px 0;
    }
    .bk-overlay__includes-badge {
      font-family: var(--font-display);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 3px;
      padding: 5px 10px;
      white-space: nowrap;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .bk-overlay__includes-items {
      font-family: var(--font-body);
      font-size: 0.85rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.5;
    }
    .bk-overlay__fields {
      display: flex; flex-wrap: wrap; gap: 18px;
      justify-content: center;
    }
    .bk-overlay__field {
      width: 100%; display: flex; flex-direction: column; gap: 6px;
    }
    .bk-overlay__field--inline {
      flex: 1; display: flex; flex-direction: column; align-items: stretch; gap: 8px;
    }
    .bk-overlay__field--inline label { text-align: center; }
    .bk-overlay__fields--row {
      flex-wrap: nowrap;
    }
    .bk-overlay__field--half { width: calc(50% - 9px) !important; }
    .bk-overlay__field label,
    .bk-overlay__field--inline label {
      font-family: var(--font-display);
      font-size: 1rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--white);
      text-align: center;
    }
    .bk-overlay__field input,
    .bk-overlay__field select,
    .bk-overlay__field textarea {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 8px; padding: 12px 14px;
      font-family: var(--font-body); font-size: 16px;
      color: var(--white); transition: border-color 0.2s;
      -webkit-appearance: none;
      width: 100%; box-sizing: border-box;
    }
    .bk-overlay__field select {
      height: 48px;
    }
    .bk-overlay__field input:focus,
    .bk-overlay__field select:focus,
    .bk-overlay__field textarea:focus {
      outline: none; border-color: var(--accent);
    }
    .bk-overlay__field select option { background: var(--dark); }
    .bk-overlay__picker {
      display: flex; align-items: center; justify-content: center; gap: 8px;
      width: 100%; height: 52px;
      background: rgba(255,255,255,0.08);
      border: 1.5px solid rgba(255,255,255,0.15);
      border-radius: 40px; padding: 0 16px;
      cursor: pointer; position: relative;
      font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
      color: var(--white); text-transform: uppercase; letter-spacing: 0.04em;
      transition: border-color 0.2s, background 0.2s;
      box-sizing: border-box;
      white-space: nowrap;
    }
    .bk-overlay__picker:hover { background: rgba(255,255,255,0.12); border-color: var(--accent); }
    .bk-overlay__picker svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
    .bk-overlay__picker span {
      font-family: var(--font-display); font-size: 1.1rem; font-weight: 900;
      color: var(--white); pointer-events: none;
    }
    .bk-overlay__picker-adj {
      width: 28px; height: 28px; border-radius: 50%;
      background: rgba(255,255,255,0.12); border: none;
      font-size: 1.1rem; font-weight: 700; color: var(--white);
      cursor: pointer; display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .bk-overlay__picker-adj:hover { background: rgba(255,255,255,0.25); }
    .bk-overlay__picker input[type="date"] {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      opacity: 0; cursor: pointer; font-size: 16px;
    }
    .bk-overlay__picker input[type="date"]::-webkit-calendar-picker-indicator {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      cursor: pointer; opacity: 0;
    }
    .bk-overlay__total {
      font-family: var(--font-display);
      font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.6);
      text-align: center; margin: 20px 0 4px;
    }
    .bk-overlay__total strong { font-size: 2.2rem; color: var(--accent); }
    .bk-overlay__total small { font-size: 0.7rem; color: rgba(255,255,255,0.4); }
    /* btn--full sizing handled by .bk-overlay__step .btn--full above */
    .bk-overlay__reassurance {
      font-family: var(--font-display);
      font-size: 0.7rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.06em;
      color: rgba(255,255,255,0.35);
      text-align: center; margin-top: 12px;
      display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 12px;
    }
    .bk-overlay__reassurance span { white-space: nowrap; }
    .bk-overlay__confirm {
      text-align: center;
      padding: 20px 0;
    }
    .bk-overlay__check {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--accent); color: var(--dark);
      font-size: 2.2rem; font-weight: 900;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 0 40px rgba(200,241,53,0.3);
    }
    .bk-overlay__confirm h3 {
      font-family: var(--font-display);
      font-size: 1.6rem; font-weight: 900;
      text-transform: uppercase; margin-bottom: 4px;
      color: var(--white);
    }
    .bk-overlay__confirm > p {
      color: rgba(255,255,255,0.6);
      font-size: 0.9rem;
      margin-bottom: 16px;
    }
    .bk-overlay__ref {
      font-family: var(--font-display);
      font-size: 1rem; font-weight: 700;
      color: var(--accent);
      margin-bottom: 16px;
    }
    .bk-overlay__summary {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px; padding: 20px;
      text-align: left; font-size: 0.95rem;
      line-height: 1.6; margin: 16px 0;
    }

    /* ── Your Pace section ── */
    .your-pace { padding: 80px 0; background: #fff; color: #0d0d0d; }
    .your-pace .section-title { color: #0d0d0d; }
    .your-pace .section-sub { color: rgba(0,0,0,0.7); }
    .your-pace .section-eyebrow { color: #0d0d0d; }
    .your-pace .perfect-day {
      background: #f5f5f3;
      border-color: rgba(0,0,0,0.08);
    }
    .your-pace .perfect-day__title { color: #0d0d0d; }
    .your-pace .perfect-day__text p { color: rgba(0,0,0,0.72); }
    .your-pace .perfect-day__flow li {
      background: rgba(0,0,0,0.03);
    }
    .your-pace .perfect-day__flow strong { color: #0d0d0d; }
    .your-pace .perfect-day__flow span { color: rgba(0,0,0,0.92); }
    .your-pace .perfect-day__dot--icon { border-color: rgba(0,0,0,0.15); }
    .your-pace .transport-how {
      background: #f5f5f3;
      border-color: rgba(0,0,0,0.08);
    }
    .your-pace .transport-how__title { color: #0d0d0d; }
    .your-pace .transport-how__sub { color: rgba(0,0,0,0.7); }
    .your-pace .transport-how__steps li { background: rgba(0,0,0,0.03); }
    .your-pace .transport-how__steps strong { color: #0d0d0d; }
    .your-pace .transport-how__steps p { color: rgba(0,0,0,0.65); }
    .your-pace__card {
      background: #f5f5f3 !important;
      border-color: rgba(0,0,0,0.08) !important;
    }
    .your-pace__card h3 { color: #0d0d0d; }
    .your-pace__card p:last-child { color: rgba(0,0,0,0.65) !important; }
    .your-pace__transport { border-top-color: rgba(0,0,0,0.1) !important; }
    .your-pace__transport-item strong { color: #0d0d0d; }
    .your-pace__transport-item p { color: rgba(0,0,0,0.92) !important; }

    /* Perfect day card (two-column: narrative + flow) */
    .perfect-day {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 48px;
      align-items: center;
      max-width: 960px;
      margin: 48px auto 0;
      padding: 40px;
      background: var(--dark-3);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 12px;
    }
    .perfect-day__chip {
      display: inline-block;
      font-family: var(--font-display);
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--accent);
      padding: 6px 12px; border: 1px solid rgba(200,241,53,0.3);
      border-radius: 999px; margin-bottom: 18px;
    }
    .perfect-day__title {
      font-family: var(--font-display); font-size: 1.6rem;
      font-weight: 800; margin: 0 0 18px;
    }
    .perfect-day__text p {
      line-height: 1.7; font-size: 1rem;
      color: rgba(255,255,255,0.72); margin-bottom: 14px;
    }
    .perfect-day__text p:last-child { margin-bottom: 0; }
    .perfect-day__flow {
      list-style: none; margin: 0; padding: 0;
      display: flex; flex-direction: column; gap: 16px;
    }
    .perfect-day__flow li {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 14px 16px;
      background: rgba(255,255,255,0.03);
      border-left: 2px solid var(--accent);
      border-radius: 4px;
    }
    .perfect-day__dot {
      flex-shrink: 0;
      width: 28px; height: 28px;
      display: inline-flex; align-items: center; justify-content: center;
      background: var(--accent); color: var(--dark);
      font-family: var(--font-display); font-weight: 800;
      border-radius: 50%; font-size: 0.85rem;
    }
    .perfect-day__dot--icon { width: 36px; height: 36px; background: transparent; color: var(--accent); border: 1px solid rgba(200,241,53,0.4); }
    .perfect-day__dot--icon svg { width: 20px; height: 20px; }
    .perfect-day__flow strong {
      display: block; font-family: var(--font-display);
      font-size: 0.9rem; letter-spacing: 0.04em; margin-bottom: 2px;
    }
    .perfect-day__flow span {
      display: block; font-size: 0.82rem;
      color: rgba(255,255,255,0.6); line-height: 1.4;
    }
    @media (max-width: 720px) {
      .perfect-day { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
      .perfect-day__title { font-size: 1.35rem; }
    }

    /* Transport: how it works */
    .transport-how {
      max-width: 960px; margin: 64px auto 0;
      padding: 40px; background: var(--dark-3);
      border: 1px solid rgba(255,255,255,0.06); border-radius: 12px;
    }
    .transport-how__header { text-align: center; margin-bottom: 32px; }
    .transport-how__title {
      font-family: var(--font-display); font-size: 1.6rem; font-weight: 800;
      margin: 8px 0 12px; letter-spacing: 0.02em;
    }
    .transport-how__sub {
      color: rgba(255,255,255,0.7); line-height: 1.6;
      max-width: 620px; margin: 0 auto;
    }
    .transport-how__steps {
      list-style: none; padding: 0; margin: 0;
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    }
    .transport-how__steps li {
      background: rgba(255,255,255,0.03);
      border-top: 2px solid var(--accent);
      border-radius: 4px; padding: 20px 18px;
    }
    .transport-how__num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 32px; height: 32px; border-radius: 50%;
      background: var(--accent); color: var(--dark);
      font-family: var(--font-display); font-weight: 800;
      font-size: 0.95rem; margin-bottom: 12px;
    }
    .transport-how__steps strong {
      display: block; font-family: var(--font-display);
      font-size: 0.95rem; letter-spacing: 0.03em; margin-bottom: 6px;
    }
    .transport-how__steps p {
      font-size: 0.85rem; line-height: 1.5;
      color: rgba(255,255,255,0.65); margin: 0;
    }
    .transport-how__more {
      text-align: center; margin: 24px 0 0;
    }
    .transport-how__more a {
      color: var(--accent); font-family: var(--font-display);
      font-weight: 700; letter-spacing: 0.04em; text-decoration: none;
      border-bottom: 1px solid rgba(200,241,53,0.4); padding-bottom: 2px;
    }
    @media (max-width: 900px) {
      .transport-how__steps { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 560px) {
      .transport-how { padding: 28px; }
      .transport-how__steps { grid-template-columns: 1fr; }
    }
    /* Section-header normally has a 56px bottom margin (visual break
       before the next thing). In Your Pace the next thing is more
       text in the same voice — kill that gap so the three paragraphs
       read as one continuous block, matching the pace-lede inter-
       paragraph margin below. */
    .your-pace .section-header { margin-bottom: 16px; }
    /* ─── Pace lede paragraphs (sit below the section header) ─────────
       Match the section-sub above (size, colour, line-height, width,
       left-aligned) so the three paragraphs read as one continuous
       voice instead of a centred-quote / opening-statement split. */
    .your-pace .pace-lede {
      max-width: 560px;
      margin: 0 0 16px;
      font-size: 1.05rem;
      line-height: 1.6;
      color: rgba(0,0,0,0.7);
    }
    .your-pace .pace-lede:last-of-type { margin-bottom: 48px; }
    @media (max-width: 768px) {
      .your-pace .pace-lede:last-of-type { margin-bottom: 32px; }
    }

    .your-pace__grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; margin-top: 48px;
    }
    .your-pace__card {
      background: var(--dark-3);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 12px; padding: 32px 24px;
      text-align: center;
    }
    .your-pace__card--highlight {
      background: rgba(200,241,53,0.06);
      border-color: rgba(200,241,53,0.15);
    }
    .your-pace__icon { font-size: 2rem; margin-bottom: 12px; color: var(--accent); }
    .your-pace__icon svg { width: 36px; height: 36px; }
    .your-pace__card h3 {
      font-family: var(--font-display);
      font-size: 1.1rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.04em;
      margin-bottom: 4px;
    }
    .your-pace__time {
      font-family: var(--font-display);
      font-size: 1.3rem; font-weight: 900;
      color: var(--accent); margin-bottom: 12px;
    }
    .your-pace__card p:last-child {
      font-size: 0.9rem; color: rgba(255,255,255,0.6);
      line-height: 1.6;
    }
    .your-pace__transport {
      display: flex; gap: 24px; margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .your-pace__transport-item {
      flex: 1; display: flex; gap: 16px; align-items: flex-start;
    }
    .your-pace__transport-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
    .your-pace__transport-icon svg { width: 24px; height: 24px; }
    .your-pace__transport-item strong {
      font-family: var(--font-display);
      font-size: 0.9rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.04em;
      display: block; margin-bottom: 4px;
    }
    .your-pace__transport-item p {
      font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5;
    }
    @media (max-width: 768px) {
      .your-pace__grid { grid-template-columns: 1fr; }
      .your-pace__transport { flex-direction: column; gap: 20px; }
    }

    /* ── Bridges section ── */
    .bridges {
      padding: 100px 0;
      background: var(--dark);
    }
    .bridges__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px 40px;
      margin-top: 56px;
    }
    .bridge-card__img-pair {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 20px;
    }
    .bridge-card__img-pair img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 0;
    }
    @media (max-width: 600px) {
      .bridge-card__img-pair {
        grid-template-columns: 1fr;
      }
      .bridge-card__img-pair img {
        height: 220px;
      }
    }
    .bridge-card {
      background: transparent;
      border: none;
      border-radius: 0;
      padding: 0;
      position: relative;
    }
    .bridge-card:hover { transform: none; }
    .bridge-card--featured {
      background: transparent;
      border: none;
      grid-column: span 2;
    }
    .bridge-card--featured:hover { border-color: transparent; }
    .bridge-card__num {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 900;
      line-height: 1;
      color: rgba(255,255,255,0.07);
      position: absolute;
      top: 16px;
      right: 20px;
      letter-spacing: -0.02em;
    }
    .bridge-card--featured .bridge-card__num {
      color: rgba(200,241,53,0.12);
      font-size: 4rem;
    }
    .bridge-card__img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    .bridge-card__body { position: relative; z-index: 1; }
    .bridge-card__name {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 12px;
      color: var(--white);
    }
    .bridge-card--featured .bridge-card__name {
      font-size: 1.75rem;
    }
    .bridge-card__desc {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.65;
      margin-bottom: 14px;
    }
    .bridge-card--featured .bridge-card__desc {
      font-size: 1rem;
      max-width: 64ch;
    }
    .bridge-card__tag {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(200,241,53,0.85);
    }
    /* Barfoot Tunnel callout */
    .bridges__tunnel {
      margin-top: 32px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: var(--dark-3);
      border-radius: 8px;
      padding: 24px 28px;
      border: 1px solid rgba(255,255,255,0.06);
    }
    .bridges__tunnel-icon {
      font-size: 1.8rem;
      flex-shrink: 0;
      line-height: 1;
      margin-top: 2px;
    }
    .bridges__tunnel strong {
      display: block;
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 4px;
    }
    .bridges__tunnel p {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
      margin: 0;
    }
    @media (max-width: 900px) {
      .bridges__grid { grid-template-columns: 1fr 1fr; }
      .bridge-card--featured { grid-column: span 2; }
    }
    @media (max-width: 600px) {
      .bridges__grid { grid-template-columns: 1fr; }
      .bridge-card--featured { grid-column: span 1; }
    }

    /* ── Trail FAQ ── */
    .trail-faq { padding: 80px 0; background: var(--dark-2); }
    .trail-faq__grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 32px; margin-top: 48px;
    }
    .trail-faq__item {
      padding: 28px; background: var(--dark-3);
      border-radius: 8px; border: 1px solid rgba(255,255,255,0.05);
    }
    .trail-faq__q {
      font-family: var(--font-display); font-size: 1.05rem;
      font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
      color: var(--accent); margin-bottom: 10px;
    }
    .trail-faq__a { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

    /* ── Related trails ── */
    .related { padding: 80px 0; }
    .related__grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px; margin-top: 48px;
    }
    .related-card {
      position: relative; border-radius: 8px; overflow: hidden;
      height: 220px; display: flex; align-items: flex-end;
    }
    .related-card img {
      position: absolute; top: 0; right: 0; bottom: 0; left: 0;
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.4s ease;
    }
    .related-card:hover img { transform: scale(1.04); }
    .related-card__overlay {
      position: absolute; top: 0; right: 0; bottom: 0; left: 0;
      background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, transparent 60%);
    }
    .related-card__content {
      position: relative; z-index: 1; padding: 20px;
    }
    .related-card__name {
      font-family: var(--font-display); font-size: 1.2rem;
      font-weight: 800; text-transform: uppercase;
    }
    .related-card__meta { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 2px; }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .timeline__inner { gap: 40px; }
      .wineries__featured { grid-template-columns: 1fr 1fr; }
      .included__grid { grid-template-columns: 1fr 1fr; }
      .trail-faq__grid { grid-template-columns: 1fr; }
      .related__grid { grid-template-columns: 1fr 1fr; }
      .trail-stat { padding: 20px 20px; }
      .trail-experience__images-top { gap: 8px; margin-bottom: 40px; }
      .trail-experience__images-top img:nth-child(-n+3) { height: 140px; }
      .trail-experience__images-top img:nth-child(n+4) { height: 180px; }
    }
    @media (max-width: 600px) {
      .wineries__featured,
      .included__grid,
      .related__grid { grid-template-columns: 1fr; }
      .trail-stats__inner { display: grid; grid-template-columns: 1fr 1fr; }
      .trail-stat { border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; padding: 14px 16px; gap: 12px; }
      .trail-stat:nth-child(2n) { border-right: none; }
      .trail-stat:nth-last-child(-n+2) { border-bottom: none; }
      .trail-stat__icon { width: 42px; height: 42px; }
      .trail-stat__icon svg { width: calc(42px * var(--icon-scale, 1)); height: calc(42px * var(--icon-scale, 1)); }
      .trail-stat__text { font-size: 0.72rem; }
      .trail-highlights { grid-template-columns: 1fr; gap: 16px; }
      /* Tighter section padding across the page on mobile */
      .trail-experience,
      .reviews,
      .wineries,
      .trail-map-section,
      .timeline,
      .bridges,
      .your-pace,
      .gallery,
      .kit-check,
      .bungy-addon,
      .trail-faq,
      .related,
      .booking { padding-top: 40px; padding-bottom: 40px; }
      .trail-stats { padding: 0; }
      .inline-cta .container { padding: 32px 20px !important; }
      .winery-card { cursor: pointer; }
      .winery-card__desc { display: none; }
      .wineries__featured > .winery-card:nth-child(n+4) { display: none; }
      .wineries__featured.is-revealed > .winery-card { display: block; }
      .wineries__show-all {
        display: block;
        margin: 24px auto 0;
        background: transparent;
        color: var(--accent);
        font-family: var(--font-display);
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        padding: 12px 22px;
        border: 1px solid rgba(200,241,53,0.4);
        border-radius: 4px;
        cursor: pointer;
      }
      .wineries__show-all.is-hidden { display: none; }
      .winery-card.is-expanded .winery-card__desc {
        display: block;
        margin-top: 8px;
      }
      .winery-card__body { padding: 16px 18px; }
      .winery-card__name {
        margin-bottom: 4px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }
      .winery-card__name::after {
        content: '+';
        color: var(--accent);
        font-weight: 800;
        font-size: 1.15em;
        line-height: 1;
        flex-shrink: 0;
      }
      .winery-card.is-expanded .winery-card__name::after { content: '−'; }
      .winery-card__tag { margin-top: 6px; }
      .trail-experience__images-top { gap: 6px; margin-bottom: 32px; }
      .trail-experience__images-top img:nth-child(-n+3) { height: 90px; border-radius: 6px; }
      .trail-experience__images-top img:nth-child(n+4) { height: 130px; border-radius: 6px; }
    }
