/* =========================================================================
   Horizon Raft — /rentals/ page styles

   Self-contained: this page loads ONLY this stylesheet. It is deliberately
   NOT in css_new/ — per STYLING.md that folder is a derivative synced from
   design_files/ and must not be hand-edited, and these styles are page CSS
   for the raft arm rather than part of the Connect/Tours token kit.

   Do not add legacy_css/style.legacy.css or js/main.js to this page without
   namespacing first: both define .nav / .nav__link(s) / .reveal / .btn /
   .review, which would collide with the rules below and with rentals/raft.js.
   ========================================================================= */

/* Tokens, type scale and spacing per Horizon_Raft_Rental_Design_Plan.md */

:root {
  /* Palette (plan §2) */
  --glacial:   #2B6E7E;  /* primary brand, CTAs, active states */
  --stone:     #3D3D3D;  /* headlines, primary text */
  --sandbar:   #F5F0E8;  /* page backgrounds, card fills */
  --driftwood: #A68B6B;  /* secondary accents, borders, muted text */
  --summit:    #E8E2D6;  /* hover states, secondary fills */
  --alpine:    #1D4F5C;  /* footer, nav overlay, CTA hover */
  --signal:    #D4663A;  /* urgency only — unused on this page */

  /* Supporting tones */
  --muted:     #807665;  /* body copy that recedes on Sandbar */
  --slot:      #D8D2C2;  /* photo placeholder fill */
  --shallow:   #3a8a9a;  /* hero gradient highlight */
  --open:      #5cb88a;  /* "now booking" status dot */
  --gold:      #F5C542;  /* review star on dark */

  /* Type */
  --display: 'Instrument Sans', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;

  /* Layout — base unit 8px */
  --max: 1200px;
  --pad-x: 48px;      /* side padding, desktop */
  --pad-y: 80px;      /* section padding, desktop */
  --nav-h: 64px;
  --book-bar-h: 56px;
}

/* ---------- reset / base ---------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--sandbar);
  color: var(--stone);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p, figure, ul { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { max-width: 100%; }

a { color: var(--glacial); text-decoration: none; }
a:hover { color: var(--alpine); }

:focus-visible {
  outline: 2px solid var(--glacial);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--glacial);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

/* ---------- shared type ---------- */

.eyebrow {
  display: block;
  margin-bottom: 12px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--driftwood);
}
.eyebrow--sm {
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

/* ---------- buttons (plan §6) ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background 150ms ease-out, color 150ms ease-out, transform 150ms ease-out, border-color 150ms ease-out;
}
.btn:active { transform: scale(0.98); }
.btn--lg { padding: 0 32px; font-size: 16px; }
.btn__arrow { font-size: 18px; line-height: 1; }

.btn--primary { background: var(--glacial); color: #fff; }
.btn--primary:hover { background: var(--alpine); color: #fff; }
.btn--on-dark { border: 2px solid rgba(255,255,255,0.15); }

.btn--glass {
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--glass:hover { background: rgba(255,255,255,0.18); color: #fff; }

.btn--invert { background: #fff; color: var(--glacial); padding: 0 40px; }
.btn--invert:hover { background: var(--summit); color: var(--glacial); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 200ms ease-out, box-shadow 200ms ease-out, border-color 200ms ease-out;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.nav__left, .nav__right { display: flex; align-items: center; }
.nav__left { gap: 16px; }
.nav__right { gap: 32px; }

.nav__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: background 150ms ease-out, color 200ms ease-out, border-color 200ms ease-out;
}
.nav__back:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.nav__divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.2);
  transition: background 200ms ease-out;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__mark { flex-shrink: 0; }
.nav__wordmark {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  transition: color 200ms ease-out;
}
.nav__suffix {
  margin-left: -4px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 200ms ease-out;
}

.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 200ms ease-out;
}
.nav__link:hover { color: var(--glacial); }

/* scrolled state — Sandbar with blur */
.nav.is-scrolled {
  background: rgba(245,240,232,0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(166,139,107,0.15);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.nav.is-scrolled .nav__wordmark { color: var(--glacial); }
.nav.is-scrolled .nav__suffix { color: var(--driftwood); }
.nav.is-scrolled .nav__link { color: var(--stone); }
.nav.is-scrolled .nav__link:hover { color: var(--glacial); }
.nav.is-scrolled .nav__back {
  color: var(--stone);
  border-color: rgba(61,61,61,0.2);
}
.nav.is-scrolled .nav__back:hover { background: rgba(61,61,61,0.06); color: var(--glacial); }
.nav.is-scrolled .nav__divider { background: rgba(61,61,61,0.15); }

/* hamburger */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__toggle-bars,
.nav__toggle-bars::before,
.nav__toggle-bars::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: background 200ms ease-out;
}
.nav__toggle-bars { position: relative; }
.nav__toggle-bars::before,
.nav__toggle-bars::after {
  content: '';
  position: absolute;
  left: 0;
}
.nav__toggle-bars::before { top: -7px; }
.nav__toggle-bars::after { top: 7px; }
.nav.is-scrolled .nav__toggle-bars,
.nav.is-scrolled .nav__toggle-bars::before,
.nav.is-scrolled .nav__toggle-bars::after { background: var(--stone); }

/* ---------- mobile menu overlay (plan §7) ---------- */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: 0 20px 40px;
  background: var(--alpine);
  color: #fff;
  overflow-y: auto;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  margin-bottom: 24px;
}
.mobile-menu__brand { display: flex; align-items: center; gap: 10px; }
.mobile-menu__wordmark {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.mobile-menu__suffix {
  margin-left: -4px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--driftwood);
}
.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  padding: 0;
  background: none;
  border: 0;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
}
.mobile-menu__close:hover { color: #fff; }

.mobile-menu__links { flex: 1; }
.mobile-menu__links a {
  display: flex;
  align-items: center;
  height: 56px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu__links a:hover { color: var(--summit); }
.mobile-menu__cta {
  width: 100%;
  margin-top: 32px;
  font-size: 16px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  background: var(--alpine);
  text-align: center;
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29,79,92,0.2) 0%, rgba(29,79,92,0.5) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px var(--pad-x) 100px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--open);
}
.hero__title {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero__lede {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.trust__item { display: inline-flex; align-items: center; gap: 6px; }
.trust__item strong { font-weight: 600; color: rgba(255,255,255,0.9); }
.trust__rule { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }

/* svh keeps the hero inside the visible viewport when mobile browser chrome is showing */
@supports (min-height: 100svh) {
  .hero { min-height: 100svh; }
}

.hero__scroll-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.4);
  opacity: 0.4;
}

/* dark-surface focus ring */
.hero :focus-visible,
.cta :focus-visible,
.footer :focus-visible,
.mobile-menu :focus-visible,
.nav:not(.is-scrolled) :focus-visible {
  outline-color: #fff;
}

/* ---------- section shell ---------- */

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
}
.section__head { margin-bottom: 56px; text-align: center; }
.section__head--tight { margin-bottom: 48px; }
.section__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--stone);
}
.section__title--sm { font-size: clamp(24px, 3vw, 30px); }

/* ---------- how it works (two-column) ---------- */

.hiw {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.hiw-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.hiw-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--slot);
}
.hiw-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hiw-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: var(--stone);
}
.hiw-lead {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 40px;
  max-width: 44ch;
}
.hiw .steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hiw .step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  align-items: baseline;
}
.step-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  color: var(--glacial);
  font-variant-numeric: tabular-nums;
}
.hiw .step h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--stone);
}
.hiw .rule {
  height: 1px;
  background: var(--summit);
}
.price-card {
  margin-top: 36px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.price-amt {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  color: var(--glacial);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.price-note {
  font-size: 15px;
  color: var(--muted);
}
.price-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.6;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.link-quiet {
  font-size: 15px;
  font-weight: 500;
  color: var(--glacial);
  border-bottom: 1px solid rgba(43,110,126,0.3);
  transition: color 150ms ease-out, border-color 150ms ease-out;
}
.link-quiet:hover {
  color: var(--alpine);
  border-color: var(--alpine);
}

/* ---------- choose your float ---------- */

.fleet {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fleet--3 {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  display: block;
  overflow: hidden;
  background: var(--sandbar);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  color: inherit;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  color: inherit;
}
.card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--slot);
}
.card__photo--raft {
  aspect-ratio: 3 / 4;
  max-height: 320px;
  object-fit: contain;
  padding: 24px;
  background: transparent;
}
.card__body { display: block; padding: 24px; }
.card__name {
  display: block;
  margin-bottom: 2px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--driftwood);
}
.card__title {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--stone);
}
.card__meta {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--muted);
}
.card__price {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--glacial);
}
.card__price--sm { font-size: 18px; font-variant-numeric: normal; }
.card__price-note {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

/* ---------- route strip (signature element) ---------- */

.route {
  padding: var(--pad-y) var(--pad-x);
  background: var(--sandbar);
}
.route__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
/* the route heading carries its own 48px gap, so the header wrapper stays flush */
.route .section__head { margin-bottom: 0; }
.section__title--tight { margin-bottom: 48px; }
.route__figure {
  position: relative;
  padding: 32px 0;
  overflow: hidden;
}
.route__svg { width: 100%; height: auto; }
.route__path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}
.route__figure.is-visible .route__path { animation: route-draw 2s ease-out forwards; }
html:not(.js) .route__path { stroke-dashoffset: 0; }
@keyframes route-draw {
  from { stroke-dashoffset: 1200; }
  to   { stroke-dashoffset: 0; }
}
.route__label {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  fill: var(--stone);
}
.route__landmark {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  fill: var(--muted);
}
.route__note {
  font-family: var(--body);
  font-size: 10px;
  fill: var(--driftwood);
}
.route__caption {
  margin: 32px 0 0;
  font-family: var(--display);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--stone);
}

/* ---------- gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.gallery__item {
  overflow: hidden;
  background: var(--slot);
  border-radius: 12px;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__item--landscape { grid-column: span 2; aspect-ratio: 3 / 2; }
.gallery__item--portrait  { grid-column: span 2; grid-row: span 2; min-height: 320px; }
.gallery__item--wide      { grid-column: span 3; aspect-ratio: 16 / 9; }
.gallery__item--square    { grid-column: span 1; aspect-ratio: 1 / 1; font-size: 11px; }

/* ---------- reviews ---------- */

.reviews {
  padding: var(--pad-y) var(--pad-x);
  background: #fff;
}
.reviews__inner { max-width: var(--max); margin: 0 auto; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  padding: 28px;
  background: var(--sandbar);
  border-radius: 8px;
}
.review__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--glacial);
}
.review__quote {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--stone);
}
.review__by { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--slot);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.review__name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--stone);
}
.review__meta {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: var(--driftwood);
}

/* ---------- add-ons strip ---------- */

.addons {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}
.addon {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  width: 260px;
  padding: 16px;
  background: var(--summit);
  border: 1px solid var(--driftwood);
  border-radius: 8px;
  scroll-snap-align: start;
}
.addon__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--sandbar);
  color: var(--glacial);
}
.addon__text { flex: 1; min-width: 0; }
.addon__title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--stone);
}
.addon__meta {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}
.addon__price {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  color: var(--glacial);
}

/* ---------- departures schedule ---------- */

.sched-section {
  padding-bottom: 0;
}
.sched-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}
.sched-header { flex: 1; }
.sched-header .eyebrow { color: var(--glacial); }
.sched-header .section__title {
  text-align: left;
  margin-bottom: 12px;
}
.sched__lede {
  max-width: 420px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.sched-route {
  flex-shrink: 0;
  text-align: right;
  padding-top: 24px;
}
.sched-route__label {
  display: block;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 4px;
}
.sched-route__stat {
  display: block;
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--stone);
}

.sched__times {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.sched__slot {
  padding: 20px 16px;
  border: 1.5px solid rgba(166,139,107,0.35);
  border-radius: 10px;
  background: #fff;
}
.sched__time {
  display: block;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--stone);
  line-height: 1.2;
}
.sched__ampm {
  font-size: 15px;
  font-weight: 500;
  margin-left: 1px;
  color: var(--muted);
}
.sched__checkin {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}
.sched__slot--last .sched__checkin {
  color: var(--signal);
  font-weight: 500;
}

.sched__footer {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--summit);
  font-size: 13px;
  color: var(--muted);
}
.sched__footer-sep {
  width: 1px;
  height: 14px;
  background: var(--driftwood);
  opacity: 0.5;
}
.sched__footer-hl {
  font-weight: 600;
  color: var(--glacial);
}

/* ---------- shuttle schedule ---------- */

.sched-shuttle {
  padding: var(--pad-y) var(--pad-x);
  background: #fff;
}
.sched-shuttle__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.sched-shuttle__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.sched-shuttle__info { padding-top: 8px; }
.sched-shuttle__title {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--stone);
}
.sched-shuttle__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.sched-shuttle__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(166,139,107,0.25);
  border-radius: 8px;
  overflow: hidden;
}
.sched-shuttle__table th {
  text-align: left;
  padding: 12px 20px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  background: var(--sandbar);
  border-bottom: 1px solid rgba(166,139,107,0.2);
}
.sched-shuttle__table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(166,139,107,0.12);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  color: var(--stone);
}
.sched-shuttle__table tr:last-child td { border-bottom: 0; }
.sched-shuttle__table td:last-child { font-weight: 600; }
.sched-shuttle__note {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--driftwood);
}

.sched-shuttle__faq {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(166,139,107,0.15);
}
.sched-shuttle__faq-q {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--stone);
}
.sched-shuttle__faq-a {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- short FAQ (homepage objection handling) ---------- */

.faq-short-section { max-width: 800px; }
.faq-short {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.faq-short__item {}
.faq-short__q {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  color: var(--stone);
}
.faq-short__a {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.faq-short__more {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
}
.faq-short__more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--glacial);
}
.faq-short__more a:hover { color: var(--alpine); }

/* ---------- FAQ page ---------- */

.faq-page-hero { padding-bottom: 0; }
.faq-page-intro {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
}
.faq-page-intro a { color: var(--glacial); text-decoration: underline; text-underline-offset: 2px; }
.faq-page-intro a:hover { color: var(--alpine); }

/* ---------- FAQ accordion (full FAQ page) ---------- */

.faq-section { max-width: 800px; }
.faq-content { max-width: 720px; margin: 0 auto; }

.faq-cluster {
  margin: 40px 0 16px;
  padding-bottom: 8px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--driftwood);
  border-bottom: 1px solid var(--summit);
}
.faq-cluster:first-of-type { margin-top: 0; }

.faq-item {
  border-bottom: 1px solid var(--summit);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--stone);
}
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23A68B6B' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 200ms ease-out;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item summary:hover h4 { color: var(--glacial); }

.faq-answer {
  padding: 0 0 20px;
}
.faq-answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.faq-answer p + p { margin-top: 12px; }
.faq-answer strong { color: var(--stone); font-weight: 600; }
.faq-answer a { color: var(--glacial); text-decoration: underline; text-underline-offset: 2px; }
.faq-answer a:hover { color: var(--alpine); }

.faq-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 16px;
}
.faq-quick__item {
  padding: 14px 0;
  border-bottom: 1px solid var(--summit);
  font-size: 14px;
  line-height: 1.5;
}
.faq-quick__q { font-weight: 500; color: var(--stone); }
.faq-quick__a { color: var(--muted); }
.faq-quick__item:nth-child(odd) { padding-right: 24px; }
.faq-quick__item:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--summit); }

/* ---------- groups ---------- */

.groups-section { text-align: center; }
.groups__body { max-width: 640px; margin: 0 auto; }
.groups__lede {
  margin: 0 0 32px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}
.groups__features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.groups__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--stone);
}
.groups__feature svg { flex-shrink: 0; color: var(--glacial); }

/* ---------- final CTA ---------- */

.cta {
  padding: var(--pad-y) var(--pad-x);
  background: var(--glacial);
}
.cta__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta__title {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}
.cta__body {
  margin: 0 0 36px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

/* ---------- footer ---------- */

.footer {
  padding: 64px var(--pad-x) 32px;
  background: var(--alpine);
  color: rgba(255,255,255,0.7);
}
.footer__inner { max-width: var(--max); margin: 0 auto; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__wordmark {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.footer__suffix {
  margin-left: -4px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--driftwood);
}
.footer__blurb {
  max-width: 300px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}
.footer__heading {
  margin: 0 0 16px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer__links a:hover { color: #fff; }
.footer__place { font-size: 14px; color: rgba(255,255,255,0.5); }

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: background 150ms ease-out, color 150ms ease-out;
}
.footer__social a:hover { background: rgba(255,255,255,0.2); color: #fff; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer__copy {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer__land {
  max-width: 500px;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
  color: rgba(255,255,255,0.3);
}

/* ---------- mobile sticky Book Now bar (plan §7) ---------- */

.book-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  height: var(--book-bar-h);
  background: var(--glacial);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transform: translateY(0);
  transition: transform 200ms ease-out;
}
.book-bar:hover { color: #fff; }
.book-bar.is-hidden { transform: translateY(100%); }
.book-bar:focus-visible,
.skip-link:focus-visible { outline-color: #fff; outline-offset: -4px; }

/* ---------- scroll reveal (plan §8) ---------- */

html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms ease, transform 400ms ease;
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =========================================================================
   Responsive (plan §7)
   ========================================================================= */

/* --- tablet --- */
@media (max-width: 1024px) {
  .fleet { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1000px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: span 2; }
}

/* --- collapse the nav into a hamburger --- */
@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__right { gap: 12px; }
}

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--landscape,
  .gallery__item--portrait,
  .gallery__item--wide,
  .gallery__item--square {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: 3 / 2;
    min-height: 0;
    font-size: 12px;
  }
  .gallery__item--portrait { aspect-ratio: 4 / 5; }
  .gallery__item--square { aspect-ratio: 1 / 1; }
}

@media (max-width: 820px) {
  .hiw-grid { grid-template-columns: 1fr; gap: 40px; }
  .hiw-photo { aspect-ratio: 3 / 2; min-height: 0; }
  .reviews__grid { grid-template-columns: 1fr; }
  .faq-quick { grid-template-columns: 1fr; }
  .faq-quick__item:nth-child(even) { padding-left: 0; border-left: 0; }
  .faq-quick__item:nth-child(odd) { padding-right: 0; }
  .groups__features { flex-direction: column; align-items: center; gap: 16px; }
  .sched-shuttle__grid { grid-template-columns: 1fr; gap: 32px; }
  .sched-shuttle__faq { grid-template-columns: 1fr; gap: 24px; }
}

/* --- mobile --- */
@media (max-width: 768px) {
  :root {
    --pad-x: 20px;   /* side padding, mobile */
    --pad-y: 48px;   /* section padding, mobile */
  }

  body { font-size: 16px; }

  .hero__content { padding: 104px var(--pad-x) 88px; }
  .hero__watermark span { font-size: 120px; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; }   /* full-width primary CTAs on mobile */
  .trust { gap: 16px; margin-top: 40px; font-size: 13px; }
  .trust__rule { display: none; }

  .nav__cta { height: 40px; padding: 0 16px; font-size: 13px; }
  .nav__back { padding: 6px 10px; }

  .section__head { margin-bottom: 40px; }
  .section__head--tight { margin-bottom: 32px; }
  .hiw { padding: var(--pad-y) var(--pad-x); }
  .card__title { font-size: 20px; }
  .card__price { font-size: 24px; }

  .route__figure { padding: 16px 0; overflow-x: auto; }
  .route__svg { min-width: 560px; }   /* keep landmark labels legible; strip scrolls */

  .review { padding: 24px; }

  .sched-top { flex-direction: column; gap: 8px; }
  .sched-route { text-align: left; padding-top: 0; }
  .sched__times { grid-template-columns: repeat(3, 1fr); }
  .sched__footer { flex-wrap: wrap; gap: 10px; }
  .sched__footer-sep { display: none; }

  .footer { padding-bottom: calc(32px + var(--book-bar-h)); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__land { max-width: none; text-align: left; }

  .book-bar { display: flex; }
}

@media (max-width: 560px) {
  .fleet { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: auto; }
  .footer__blurb { max-width: none; }
  .nav__back-label { display: none; }
  .nav__back { padding: 8px; }
  .addon { width: 232px; }
  .sched__times { grid-template-columns: repeat(2, 1fr); }
  .sched__slot--last { grid-column: span 2; }
}

/* =========================================================================
   Reduced motion (plan §8)
   ========================================================================= */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js .reveal { opacity: 1; transform: none; }
  .route__path { stroke-dashoffset: 0; }
  .card:hover { transform: none; }
}
