/* ==========================================================================
   B&B Tours and Travel — premium editorial theme
   1.  Tokens
   2.  Reset & base
   3.  Layout primitives
   4.  Buttons
   5.  Masthead & navigation
   6.  Hero
   7.  Stats
   8.  Booking
   9.  Services
   10. Fleet
   11. Why us
   12. Destinations & marquee
   13. Tours
   14. Reviews
   15. Contact & map
   16. Footer
   17. Mobile call bar
   18. Motion
   19. Breakpoints (480 / 640 / 768 / 1024 / 1280 / 1440 / 1920)
   ========================================================================== */

/* -------------------------------------------------- 1. Tokens -------------*/
:root {
  /* dark */
  --ink-950: #0b0c0e;
  --ink-900: #101216;
  --ink-850: #14171c;
  --ink-800: #191d23;
  --hair: rgba(255, 255, 255, .13);
  --hair-strong: rgba(255, 255, 255, .28);
  --on-dark: #f2efe9;
  --on-dark-dim: #a8a79f;

  /* light */
  --cream: #f4f1ea;
  --cream-2: #eae5da;
  --cream-line: #d9d2c3;
  --on-cream: #1a1a19;
  --on-cream-dim: #56544d;

  /* accent */
  --gold: #c9a227;
  --gold-bright: #e0b93b;
  /* gold for use on the cream surfaces — dark enough to clear AA on all of
     them (5.13 on --cream, 4.61 on --cream-2, 5.51 on the review card) */
  --gold-deep: #806100;
  --wa: #0e7c66;
  --wa-dark: #0a5f4e;

  --radius: 2px;
  --radius-md: 4px;

  --shell: 1240px;
  --pad: clamp(20px, 5vw, 56px);
  --band-y: clamp(64px, 9vw, 140px);
  --gap: clamp(20px, 3vw, 36px);
  --masthead-h: 72px;

  /* the mobile call bar is fixed to the foot of the viewport; anything that
     needs to stay clear of it measures against this */
  --callbar-h: 58px;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* -------------------------------------------------- 2. Reset & base -------*/
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--masthead-h) + 16px);
  /* `clip` contains sideways overflow WITHOUT creating a scroll container.
     `overflow-x: hidden` here would silently break the sticky masthead. */
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--on-dark);
  background: var(--ink-950);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }

/* must outrank the display rules on grids, or hidden lists still show */
[hidden] { display: none !important; }

h1, h2, h3 { margin: 0 0 .5em; line-height: 1.12; font-weight: 400; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
dl, dd { margin: 0; }

a { color: inherit; text-underline-offset: 3px; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 300;
  padding: 12px 20px;
  background: var(--gold-bright);
  color: var(--ink-950);
  font-weight: 700;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* -------------------------------------------------- 3. Layout -------------*/
.shell {
  width: 100%;
  max-width: calc(var(--shell) + var(--pad) * 2);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.shell--narrow { max-width: calc(860px + var(--pad) * 2); }

.band { padding-block: var(--band-y); }
.band--dark { background: var(--ink-950); color: var(--on-dark); }
.band--cream { background: var(--cream); color: var(--on-cream); }

.band__head { max-width: 30ch; margin-bottom: clamp(40px, 6vw, 80px); }

.display {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.35rem + 2.9vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 1.1rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.band--dark .eyebrow, .contact .eyebrow, .booking .eyebrow { color: var(--gold); }
.band--cream .eyebrow { color: var(--gold-deep); }

.rule {
  display: block;
  width: 40px;
  height: 1px;
  flex: none;
  background: currentColor;
  opacity: .7;
}

.lede {
  max-width: 46ch;
  font-size: clamp(1rem, .96rem + .25vw, 1.1875rem);
  line-height: 1.65;
}
.band--dark .lede, .booking .lede, .contact .lede { color: var(--on-dark-dim); }
.band--cream .lede { color: var(--on-cream-dim); }

/* -------------------------------------------------- 4. Buttons ------------*/
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-size: .9375rem;
  font-weight: 650;
  letter-spacing: .01em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform .35s var(--ease-out), background-color .3s var(--ease),
              color .3s var(--ease), border-color .3s var(--ease);
}
.btn > * { position: relative; z-index: 1; }

/* gold fill that wipes in from the bottom on hover */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s var(--ease-out);
}
.btn:hover::before { transform: scaleY(1); }
.btn:active { transform: translateY(1px); }

.btn--gold { background: var(--gold-bright); color: var(--ink-950); }
.btn--gold::before { background: #fff; }
.btn--gold:hover { color: var(--ink-950); }

.btn--outline { border-color: var(--hair-strong); color: var(--on-dark); }
.btn--outline::before { background: var(--on-dark); }
.btn--outline:hover { color: var(--ink-950); border-color: var(--on-dark); }

.btn--outline-dark { border-color: var(--on-cream); color: var(--on-cream); }
.btn--outline-dark::before { background: var(--on-cream); }
.btn--outline-dark:hover { color: var(--cream); }

.btn--lg { min-height: 56px; padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }
.icon { flex: none; }

/* -------------------------------------------------- 5. Masthead -----------*/
.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .4s var(--ease), border-color .4s var(--ease);
}
.masthead.is-stuck {
  background: rgba(11, 12, 14, .92);
  backdrop-filter: saturate(1.3) blur(12px);
  border-bottom-color: var(--hair);
}

.masthead__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: var(--masthead-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  text-decoration: none;
  color: var(--on-dark);
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--gold-bright);
  border: 1px solid var(--hair-strong);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.brand:hover .brand__mark { border-color: var(--gold-bright); }
.brand__mark--lg { width: 56px; height: 56px; font-size: 1.25rem; }

.brand__words { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.brand__name { font-family: var(--font-display); font-size: 1.0625rem; white-space: nowrap; }
.brand__tag {
  display: none;              /* too wide to sit beside the burger on small phones */
  font-size: .625rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--on-dark-dim);
}

/* the drawer is opaque, so the masthead above it must be too */
body.nav-open .masthead { background: var(--ink-950); border-bottom-color: transparent; }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 30px); }

.nav__list a {
  display: inline-block;
  padding: 8px 0;
  font-size: .875rem;
  font-weight: 550;
  letter-spacing: .02em;
  text-decoration: none;
  color: var(--on-dark);
}
.nav__list a span { position: relative; display: inline-block; }
.nav__list a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .38s var(--ease-out);
}
.nav__list a:hover span::after,
.nav__list a.is-active span::after { transform: scaleX(1); transform-origin: left; }
.nav__list a.is-active { color: var(--gold-bright); }

.masthead__cta { display: none; }

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--hair-strong);
  border-radius: var(--radius);
  cursor: pointer;
}
.burger__bars,
.burger__bars::before,
.burger__bars::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--on-dark);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger__bars { position: relative; }
.burger__bars::before, .burger__bars::after { content: ""; position: absolute; left: 0; }
.burger__bars::before { top: -6px; }
.burger__bars::after { top: 6px; }
.burger[aria-expanded="true"] .burger__bars { background: transparent; }
.burger[aria-expanded="true"] .burger__bars::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__bars::after { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.nav.is-open {
  display: block;
  position: fixed;
  inset: var(--masthead-h) 0 auto 0;
  max-height: calc(100dvh - var(--masthead-h));
  overflow-y: auto;
  padding: 12px var(--pad) 32px;
  background: var(--ink-950);
  border-bottom: 1px solid var(--hair);
  animation: drawer .32s var(--ease-out);
}
.nav.is-open .nav__list { display: block; }
.nav.is-open .nav__list a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 1.375rem;
  border-bottom: 1px solid var(--hair);
}
.nav.is-open .nav__list li:last-child a { border-bottom: 0; }
.nav.is-open .nav__list a span::after { display: none; }

@keyframes drawer { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
body.nav-open { overflow: hidden; }

/* -------------------------------------------------- 6. Hero ---------------*/
.hero {
  /* the fleet cut-out is 1774x767 (2.31:1) — used as a bottom band from 768px
     up, where it gets capped against the viewport height so it cannot swallow
     a 100svh hero */
  --hero-fleet-h: min(43.3vw, 28vh);

  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  /* the copy always starts directly under the masthead. Centring or
     bottom-aligning it leaves the slack above the headline, which on a tall
     desktop viewport opens a 200px hole between the header and the copy; put
     the slack below instead, where the fleet fills it. */
  justify-content: flex-start;
  min-height: 100vh;      /* fallback for browsers without small-viewport units */
  min-height: 100svh;
  margin-top: calc(var(--masthead-h) * -1);
  padding-top: calc(var(--masthead-h) + clamp(20px, 4vh, 40px));
  /* The cut-out is bottom-anchored inside the full-hero media box, so it
     always occupies the last 43.3vw of the hero. Reserve that band here or the
     copy runs down into it — on a short phone the action row landed on the
     bodywork, exactly where the scrim has already cleared to nothing. */
  padding-bottom: calc(var(--callbar-h) + 43.3vw + clamp(16px, 3vh, 28px));
  background: var(--ink-950);
}

/* Phones: the fleet is the hero's backdrop rather than a block beneath it — it
   fills the foot of the hero behind the copy, at full width so the whole
   line-up stays visible, with the scrim below carrying the copy over it. */
.hero__media {
  position: absolute;
  inset: 0 0 var(--callbar-h);
  z-index: -2;
}
/* <picture> is the img's actual containing block, so it has to carry the box
   size too — otherwise height:100% below resolves against auto and the cut-out
   renders at its full intrinsic size */
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  animation: fleet-in 1.1s var(--ease-out) both;
}
@keyframes fleet-in {
  from { opacity: 0; transform: translateY(26px) scale(.985); }
  to   { opacity: 1; transform: none; }
}

/* scrim over the backdrop: heavy where the headline sits, clearing to nothing
   over the cars so the white bodywork stays bright */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(11,12,14,.94) 0%,
    rgba(11,12,14,.86) 34%,
    rgba(11,12,14,.52) 62%,
    rgba(11,12,14,.10) 84%,
    rgba(11,12,14,0) 100%);
}

/* warm pool of light under the cars — kept behind them, so nothing dims the
   white bodywork the way the old photo scrim did */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(120% 58% at 62% 98%, rgba(198,160,86,.20) 0%, rgba(198,160,86,.05) 44%, rgba(11,12,14,0) 72%),
    linear-gradient(180deg, rgba(11,12,14,.85) 0%, rgba(11,12,14,0) 32%);
}

.hero__inner { width: 100%; }
.hero__inner > * { max-width: 20ch; }
.hero__lede { max-width: 44ch; }
.hero__actions { max-width: none; }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 1.4rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  max-width: none;
}

.hero__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 4.4vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.hero__title span { display: block; }
.hero__title em { font-style: italic; color: var(--gold-bright); }

.hero__lede {
  margin-bottom: clamp(28px, 4vw, 44px);
  font-size: clamp(1.0625rem, 1rem + .4vw, 1.3125rem);
  line-height: 1.6;
  color: #d8d4cc;
}

/* Narrow phones cannot fit both buttons on one line, so they wrap — and the
   call button is wider than the WhatsApp one, which left the stack ragged.
   Stretch them to the column until there is room for them side by side. */
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
/* compact on phones: at --lg the stacked pair is 124px of the hero, which
   pushed the fleet cut-out down behind the fixed call bar */
.hero__actions .btn { width: 100%; min-height: 46px; padding: 11px 20px; font-size: .9375rem; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: none;         /* shown from 1024px up, once the fleet moves off-centre */
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: .6875rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  text-decoration: none;
  transition: color .3s var(--ease);
}
.hero__scroll:hover { color: var(--gold-bright); }

/* the shared `rise` keyframes animate transform, which would wipe out the
   translateX(-50%) centring above and dump this off to the left */
.hero__scroll.anim { animation-name: rise-centred; }
@keyframes rise-centred {
  from { opacity: 0; transform: translate(-50%, 26px); }
  to   { opacity: 1; transform: translateX(-50%); }
}
.hero__scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, transparent, var(--hair-strong));
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-bright);
  animation: trickle 2.6s var(--ease) infinite;
}
@keyframes trickle {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* -------------------------------------------------- 7. Stats --------------*/
.stats {
  background: var(--ink-900);
  border-block: 1px solid var(--hair);
  padding-block: clamp(32px, 4vw, 52px);
}
.stats__grid { display: grid; gap: 28px 24px; grid-template-columns: repeat(2, minmax(0, 1fr)); }

.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 1.9vw, 3rem);
  line-height: 1;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: .8125rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
}

/* -------------------------------------------------- 8. Booking ------------*/
.booking__grid { display: grid; gap: clamp(36px, 5vw, 72px); }
.booking__intro .display { margin-bottom: .6em; }

.ticklist { display: grid; gap: 12px; margin-top: 28px; }
.ticklist li {
  position: relative;
  padding-left: 26px;
  font-size: .9375rem;
  color: var(--on-dark-dim);
}
.ticklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 12px;
  height: 6px;
  border-left: 1.5px solid var(--gold-bright);
  border-bottom: 1.5px solid var(--gold-bright);
  transform: rotate(-45deg);
}

.booking__form {
  display: grid;
  gap: 18px 20px;
  padding: clamp(24px, 3.5vw, 40px);
  background: var(--ink-850);
  border: 1px solid var(--hair);
}

.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 2px;
  font: inherit;
  font-size: 1rem;
  color: var(--on-dark);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hair-strong);
  border-radius: 0;
  transition: border-color .3s var(--ease);
}
.field select {
  appearance: none;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23a8a79f' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 20px;
}
.field select option { color: #111; background: #fff; }
.field input:hover, .field select:hover { border-bottom-color: var(--on-dark-dim); }
.field input:focus-visible, .field select:focus-visible {
  outline: none;
  border-bottom-color: var(--gold-bright);
  box-shadow: 0 1px 0 0 var(--gold-bright);
}
.field input[aria-invalid="true"] { border-bottom-color: #e2725b; }
.field input::placeholder { color: #6d6b64; }

/* date/time pickers are near-invisible on dark without this */
.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(.6);
  cursor: pointer;
}

.form-error { margin: 0; color: #ffab91; font-weight: 600; font-size: .9375rem; }
.form-note { margin: 10px 0 0; font-size: .875rem; color: var(--on-dark-dim); text-align: center; }

/* -------------------------------------------------- 9. Services -----------*/
/* seven items stacked full-width ran to roughly two screens on its own, so the
   rows are tighter here than the other bands and the list splits into two
   columns from 1024px up */
.svc { border-top: 1px solid var(--cream-line); }

.svc__item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 18px;
  padding: clamp(15px, 2.1vw, 24px) 0;
  border-bottom: 1px solid var(--cream-line);
  transition: padding-left .45s var(--ease-out);
}
.svc__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
  z-index: 0;
}
.svc__item > * { position: relative; z-index: 1; }
.svc__item:hover::before { transform: scaleX(1); }
.svc__item:hover { padding-left: clamp(14px, 2vw, 28px); }

.svc__no {
  font-family: var(--font-display);
  font-size: .875rem;
  color: var(--gold-deep);
  padding-top: .35em;
}

.svc__body h3 {
  margin: 0 0 .25em;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.1rem + .7vw, 1.75rem);
  color: var(--on-cream);
}
.svc__body p { margin: 0; max-width: 62ch; color: var(--on-cream-dim); font-size: .9688rem; line-height: 1.55; }

/* this band alone runs tighter than --band-y; seven rows already give it plenty
   of presence without the full gutter */
#services { padding-block: clamp(48px, 7vw, 104px); }
#services .band__head { margin-bottom: clamp(28px, 4vw, 52px); }

/* -------------------------------------------------- 10. Fleet -------------*/
/* one swipeable row rather than a wrapped grid: five cards across three
   columns left an orphan row of two, and a scroller keeps the section to a
   single band whatever the count grows to */
.fleet {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: var(--gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* a scroll container clips both axes, so this leaves room for the hover lift */
  padding-block: 10px;
  /* bleed out to the shell edge so cards scroll away under it instead of
     stopping short at the gutter */
  margin-inline: calc(var(--pad) * -1);
  padding-inline: var(--pad);
  scroll-padding-inline: var(--pad);
  scrollbar-width: none;
}
.fleet::-webkit-scrollbar { display: none; }

.car {
  position: relative;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  /* a shade lighter than the band, so the card reads as a surface rather than
     as a photo floating on the section background */
  background: var(--ink-850);
  border: 1px solid var(--hair);
  transition: border-color .4s var(--ease), transform .5s var(--ease-out);
}
/* a gold rule draws across the head of the card on hover — the same accent the
   eyebrows and section rules carry elsewhere */
.car::after {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease-out);
}
.car:hover { border-color: var(--hair-strong); transform: translateY(-6px); }
.car:hover::after { transform: scaleX(1); }

/* the well sits a shade darker than the card and matches the colour the
   cut-outs are flattened onto, so nothing seams around the vehicle. The ratio
   comes from a spacer rather than `aspect-ratio`, which would feed a stretched
   height back into the width. */
.car__media {
  position: relative;
  overflow: hidden;
  background: var(--ink-900);
  border-bottom: 1px solid var(--hair);
}
.car__media::before { content: ""; display: block; padding-top: 66.667%; }  /* 3:2 */
.car__media picture { position: absolute; inset: 0; display: block; }
.car__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .8s var(--ease-out);
}
.car:hover .car__img { transform: scale(1.04); }

.car__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(20px, 2.4vw, 28px);
}
.car__type {
  order: -1;                 /* the gold label reads as an eyebrow above the name */
  margin: 0 0 .55em;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.car__body h3 {
  margin: 0 0 clamp(18px, 2vw, 24px);
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 1.28rem + .38vw, 1.625rem);
  line-height: 1.15;
}

/* label above value in a divided plate, rather than a stack of full-width
   leader rows that read like a receipt. The 1px gap over a --hair ground is
   what draws the dividers. */
.spec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: auto 0 0;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.spec > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 14px;
  background: var(--ink-850);
}
.spec > div:last-child { grid-column: 1 / -1; }   /* "Best for" takes the full row */
.spec dt {
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
}
.spec dd { margin: 0; color: var(--on-dark); font-size: .9375rem; line-height: 1.35; }

/* --- fleet motion -------------------------------------------------------- */
/* The row deals its cards in when it scrolls into view. `.is-ready` is set by
   the script, so with JS off the cards are simply visible and nothing hides
   them. The stagger is nth-child rather than a per-node delay so the entrance
   costs no layout work. */
.fleet.is-ready .car { opacity: 0; }
.fleet.is-ready.is-in .car { animation: car-deal .75s var(--ease-out) both; }
.fleet.is-ready.is-in .car:nth-child(2) { animation-delay: .08s; }
.fleet.is-ready.is-in .car:nth-child(3) { animation-delay: .16s; }
.fleet.is-ready.is-in .car:nth-child(4) { animation-delay: .24s; }
.fleet.is-ready.is-in .car:nth-child(5) { animation-delay: .32s; }
@keyframes car-deal {
  from { opacity: 0; transform: translateY(28px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

/* the well brightens fractionally under the pointer, which makes the card feel
   lit rather than merely lifted */
.car__media { transition: background-color .45s var(--ease); }
.car:hover .car__media { background: var(--ink-850); }

/* the eyebrow opens up a touch as the card comes forward */
.car__type { transition: letter-spacing .45s var(--ease), color .45s var(--ease); }
.car:hover .car__type { letter-spacing: .22em; color: var(--gold-bright); }

/* --- carousel progress rail ---------------------------------------------- */
/* doubles as the affordance that tells you the row scrolls at all */
.fleet__rail {
  position: relative;
  height: 2px;
  margin-top: clamp(22px, 3vw, 34px);
  background: var(--hair);
  overflow: hidden;
}
.fleet__rail[hidden] { display: none; }
.fleet__rail-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 33%;
  background: var(--gold);
  will-change: transform;
  transition: transform .12s linear, width .2s var(--ease);
}

/* -------------------------------------------------- 11. Why us ------------*/
.why__grid { display: grid; gap: clamp(40px, 5vw, 72px); }
.why__lead .display { margin-bottom: .5em; }

.why__figure { margin: 32px 0 0; overflow: hidden; }
.why__figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.why__figure:hover img { transform: scale(1.04); }

.why__list { display: grid; gap: 0; border-top: 1px solid var(--cream-line); }
.why__item { padding: clamp(20px, 2.6vw, 28px) 0; border-bottom: 1px solid var(--cream-line); }
.why__item h3 {
  margin: 0 0 .35em;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  color: var(--on-cream);
}
.why__item p { margin: 0; color: var(--on-cream-dim); font-size: .9375rem; }

/* -------------------------------------------------- 12. Destinations ------*/
.routes { display: grid; gap: 0; border-top: 1px solid var(--hair); }

.route {
  position: relative;
  padding: clamp(24px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--hair);
  transition: padding-left .45s var(--ease-out);
}
.route:hover { padding-left: clamp(12px, 1.6vw, 24px); }

.route__no {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: .8125rem;
  color: var(--gold);
}
.route h3 {
  margin: 0 0 .4em;
  font-family: var(--font-display);
  font-size: clamp(1.1875rem, 1.08rem + .5vw, 1.5rem);
}
.route p { margin: 0; color: var(--on-dark-dim); font-size: .9375rem; max-width: 54ch; }
.route__meta {
  margin-top: 12px !important;
  font-size: .6875rem !important;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold) !important;
}

.routes__cta {
  margin-top: clamp(32px, 4vw, 48px);
  font-size: 1.0625rem;
  color: var(--on-dark-dim);
}
.routes__cta a { color: var(--gold-bright); text-decoration-thickness: 1px; }

.marquee {
  margin-top: clamp(48px, 6vw, 88px);
  padding-block: clamp(18px, 2.4vw, 28px);
  border-block: 1px solid var(--hair);
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: slide 52s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__set {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1.1vw, 2rem);
  white-space: nowrap;
  color: #33373f;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* -------------------------------------------------- 13. Tours -------------*/
/* Phones: six full-width cards is a very long scroll, so the row becomes a
   swipeable carousel like the fleet. It reverts to a plain grid at 640px. */
.tours__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: var(--gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-block: 10px;
  margin-inline: calc(var(--pad) * -1);
  padding-inline: var(--pad);
  scroll-padding-inline: var(--pad);
  scrollbar-width: none;
}
.tours__grid::-webkit-scrollbar { display: none; }

.dest {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--cream-line);
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease), border-color .5s var(--ease);
}

/* --- the photo carries the name, which keeps the body short and the cards
       an even height whether a trip has six stops or ten --------------------- */
.dest__media { position: relative; overflow: hidden; background: var(--cream-2); }
.dest__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}
/* scrim: transparent up top so the view reads, solid enough at the foot to
   carry the name at AA against any of the six photos */
.dest__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(12, 14, 12, 0) 34%,
    rgba(12, 14, 12, .42) 60%,
    rgba(12, 14, 12, .82) 100%);
}

.dest__head {
  position: absolute;
  z-index: 1;
  inset: auto 0 0 0;
  padding: clamp(16px, 2vw, 22px);
  color: #fff;
}
.dest__meta {
  margin: 0 0 .3em;
  font-size: .625rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.dest__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 1.2rem + .7vw, 1.75rem);
  line-height: 1.1;
  color: #fff;
}

.dest__count {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  padding: 5px 11px;
  background: rgba(255, 255, 255, .93);
  border-radius: 100px;
  font-size: .6875rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--on-cream);
}

/* --- body ---------------------------------------------------------------- */
.dest__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(18px, 2.2vw, 24px);
}
.dest__blurb {
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-line);
  font-size: .9375rem;
  line-height: 1.55;
  color: var(--on-cream-dim);
}

/* the stop list flows into as many columns as the card is wide enough for,
   so it stays compact on a 3-up desktop grid and single file on a phone */
.dest__places {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(136px, 1fr));
  gap: 7px 14px;
  margin: 0;
}
.dest__places li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: .8125rem;
  line-height: 1.35;
  color: var(--on-cream);
}
.dest__places li::before {
  content: "";
  flex: none;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-deep);
  transform: translateY(-2px);
}

.tours__cta { margin-top: clamp(32px, 4vw, 48px); font-size: 1.0625rem; color: var(--on-cream-dim); }
.tours__cta a { color: var(--gold-deep); text-decoration-thickness: 1px; }

/* --- Tours: motion ------------------------------------------------------- */
/* Entrance timings are deliberately short: main.js strips .reveal/.is-visible
   once REVEAL_MS (800ms) elapses, so anything still animating then would snap.
   Every sequence below finishes inside ~750ms. */
.dest.reveal .dest__img { transform: scale(1.09); }
.dest.reveal.is-visible .dest__img { transform: none; transition: transform .75s var(--ease-out); }

.dest.is-visible .dest__places li { animation: chip-in .38s var(--ease-out) both; }
@keyframes chip-in { from { opacity: 0; transform: translateY(9px); } }
.dest.is-visible .dest__places li:nth-child(1) { animation-delay: 120ms; }
.dest.is-visible .dest__places li:nth-child(2) { animation-delay: 148ms; }
.dest.is-visible .dest__places li:nth-child(3) { animation-delay: 176ms; }
.dest.is-visible .dest__places li:nth-child(4) { animation-delay: 204ms; }
.dest.is-visible .dest__places li:nth-child(5) { animation-delay: 232ms; }
.dest.is-visible .dest__places li:nth-child(6) { animation-delay: 260ms; }
.dest.is-visible .dest__places li:nth-child(7) { animation-delay: 288ms; }
.dest.is-visible .dest__places li:nth-child(8) { animation-delay: 316ms; }
.dest.is-visible .dest__places li:nth-child(9) { animation-delay: 344ms; }
.dest.is-visible .dest__places li:nth-child(10) { animation-delay: 372ms; }

.dest:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(26, 26, 25, .15); border-color: rgba(128, 97, 0, .38); }
.dest:hover .dest__img { transform: scale(1.06); }
/* the name lifts a touch with the card, so the overlay feels attached to it */
.dest__head { transition: transform .5s var(--ease-out); }
.dest:hover .dest__head { transform: translateY(-3px); }
.dest__meta { transition: letter-spacing .5s var(--ease); }
.dest:hover .dest__meta { letter-spacing: .24em; }
.dest__count { transition: background-color .35s var(--ease), color .35s var(--ease); }
.dest:hover .dest__count { background: var(--gold-bright); color: var(--ink-950); }

/* -------------------------------------------------- 14. Reviews -----------*/
.reviews__status p { margin: 0; color: var(--on-cream-dim); }

.reviews { display: grid; gap: var(--gap); }

.review {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  background: #fbf9f5;
  border: 1px solid var(--cream-line);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease);
}
.review:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(26, 26, 25, .08); }

.review__stars { display: flex; gap: 3px; margin-bottom: 16px; color: var(--gold-deep); }
.review__stars svg { width: 17px; height: 17px; }

.review__text {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--on-cream);
}

.review__meta { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.review__avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  font-family: var(--font-display);
  color: var(--on-cream);
  border: 1px solid var(--cream-line);
  border-radius: 50%;
}
.review__name { margin: 0; font-size: .9375rem; font-weight: 650; color: var(--on-cream); }
.review__date { margin: 0; font-size: .8125rem; color: var(--on-cream-dim); }

.reviews__cta { margin-top: clamp(32px, 4vw, 48px); }

/* -------------------------------------------------- 15. Contact -----------*/
.contact__grid { display: grid; gap: clamp(40px, 5vw, 72px); }
/* grid children default to min-width:auto, which lets long strings (the email
   address) push the column wider than the viewport */
.contact__info, .contact__map { min-width: 0; }

.contact__list { display: grid; gap: 0; margin: clamp(32px, 4vw, 44px) 0; border-top: 1px solid var(--hair); }
.contact__list li {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hair);
}
.contact__k {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact__v { font-size: 1.0625rem; color: var(--on-dark); text-decoration: none; word-break: break-word; }
a.contact__v { transition: color .3s var(--ease); }
a.contact__v:hover { color: var(--gold-bright); }

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

.contact__map-title {
  margin-bottom: 16px;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.map {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-800);
  border: 1px solid var(--hair);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

.map__load {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  width: 100%;
  padding: 24px;
  font: inherit;
  font-weight: 650;
  color: var(--on-dark);
  text-align: center;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background-color .3s var(--ease);
}
.map__load small { font-weight: 400; font-size: .8125rem; color: var(--on-dark-dim); }
.map__load:hover { background: rgba(255, 255, 255, .05); }

/* -------------------------------------------------- 16. Footer ------------*/
.footer {
  padding-top: clamp(56px, 7vw, 96px);
  background: var(--ink-900);
  border-top: 1px solid var(--hair);
  color: var(--on-dark-dim);
}

.footer__grid { display: grid; gap: clamp(36px, 4vw, 56px); }

.footer__name {
  margin: 18px 0 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--on-dark);
}
.footer__brand p:last-child { max-width: 40ch; font-size: .9375rem; }

.footer__title {
  margin: 0 0 18px;
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-dark);
}

/* the email address is long enough to blow out a narrow footer column */
.footer__col ul { display: grid; gap: 12px; font-size: .9375rem; overflow-wrap: anywhere; }
.footer a { color: var(--on-dark-dim); text-decoration: none; transition: color .3s var(--ease); }
.footer a:hover { color: var(--gold-bright); }

.footer__areas { margin-top: clamp(40px, 5vw, 64px); padding-top: 32px; border-top: 1px solid var(--hair); }
.footer__areas p { font-size: .875rem; line-height: 2.1; color: #85847d; }

.footer__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 28px;
  margin-top: 32px;
  padding-block: 24px;
  border-top: 1px solid var(--hair);
  font-size: .8125rem;
  color: #85847d;
}
.footer__bar p { margin: 0; }

/* -------------------------------------------------- 17. Call bar ----------*/
.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hair);
  border-top: 1px solid var(--hair);
  padding-bottom: env(safe-area-inset-bottom);
}
.callbar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  font-size: .9375rem;
  font-weight: 650;
  text-decoration: none;
}
.callbar__btn--call { background: var(--gold-bright); color: var(--ink-950); }
.callbar__btn--wa { background: var(--wa); color: #fff; }

body { padding-bottom: var(--callbar-h); }

/* -------------------------------------------------- 18. Motion ------------*/
/* hero entrance — pure CSS so it runs even if the script never loads */
.anim { animation: rise 1s var(--ease-out) both; }
[data-anim="1"] { animation-delay: .10s; }
[data-anim="2"] { animation-delay: .22s; }
[data-anim="3"] { animation-delay: .34s; }
[data-anim="4"] { animation-delay: .48s; }
[data-anim="5"] { animation-delay: .60s; }
[data-anim="6"] { animation-delay: .90s; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* Scroll reveal. JS adds .is-visible, then removes both classes once the
   entrance finishes so that `transform: none` below cannot outrank the
   component hover rules. no-js.css unhides everything if the script is off. */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__img { transform: none; }
  .marquee__track { animation: none; }
  .car:hover, .review:hover, .btn:active { transform: none; }
  .fleet.is-ready .car { opacity: 1; }
  .fleet.is-ready.is-in .car { animation: none; }
  .car:hover .car__type { letter-spacing: .18em; }
  .svc__item:hover, .route:hover { padding-left: 0; }
  .dest:hover { transform: none; box-shadow: none; }
  .dest.reveal .dest__img, .dest:hover .dest__img { transform: none; }
  .dest.is-visible .dest__places li { animation: none; }
  .dest:hover .dest__head { transform: none; }
  .dest:hover .dest__meta { letter-spacing: .18em; }
}

/* ==========================================================================
   18. Breakpoints
   ========================================================================== */

/* --- Short phones --------------------------------------------------------
   On a 568-680px tall screen the full-size hero copy pushes the fleet cut-out
   down behind the fixed call bar. Tighten the type and spacing so the line-up
   is actually on screen; taller phones keep the full scale. */
@media (max-width: 767px) and (max-height: 780px) {
  .hero { padding-top: calc(var(--masthead-h) + 10px); }
  .hero__eyebrow { margin-bottom: .8rem; font-size: .6875rem; letter-spacing: .16em; }
  .hero__title { margin-bottom: .85rem; font-size: clamp(1.75rem, 1rem + 3.4vw, 2.375rem); }
  .hero__lede {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 38ch;
  }
  .hero__actions .btn { min-height: 44px; padding: 10px 18px; font-size: .875rem; }
}

/* --- Mobile large: 480px+ ------------------------------------------------ */
@media (min-width: 480px) {
  .hero__actions .btn { width: auto; min-height: 56px; padding: 16px 32px; font-size: 1rem; }
  .booking__form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand__tag { display: block; }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --- Tablet portrait: 640px+ --------------------------------------------- */
@media (min-width: 640px) {
  .stats__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .fleet { grid-auto-columns: 44%; }
  .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tours__grid {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
    scroll-snap-type: none;
    padding: 0;
    margin-inline: 0;
  }
  .why__list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--gap); }
  .why__item { border-bottom: 1px solid var(--cream-line); }
  .svc__item { grid-template-columns: 56px 1fr; }
}

/* --- Tablet landscape: 768px+ -------------------------------------------- */
@media (min-width: 768px) {
  :root { --masthead-h: 84px; --callbar-h: 0px; }

  /* landscape room: the fleet stops being a backdrop and becomes a band across
     the foot of the hero, clear of the copy */
  .hero { padding-bottom: calc(var(--hero-fleet-h) + clamp(16px, 3vh, 32px)); }
  .hero__media { inset: auto 0 0 0; height: var(--hero-fleet-h); }
  .hero__media::after { display: none; }

  .callbar { display: none; }

  .masthead__cta { display: inline-flex; }
  .booking__form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact__grid { grid-template-columns: minmax(0, 1fr) minmax(0, .85fr); align-items: start; }
  .routes { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(28px, 4vw, 64px); }
  .route:nth-child(2) { border-top: 0; }
}

@media (min-width: 768px) and (min-height: 880px) {
  .hero { --hero-fleet-h: min(43.3vw, 38vh); }
}

/* --- Laptop: 1024px+ ------------------------------------------------------ */
@media (min-width: 1024px) {
  .burger { display: none; }
  /* the fixed .brand margin below replaces the base `margin-right: auto`, so
     the free space has to be re-introduced here — without it the whole header
     packs left and leaves a void after the Call now button */
  .nav { display: block; margin-left: auto; margin-right: clamp(20px, 3vw, 44px); }
  .nav.is-open { position: static; padding: 0; background: none; border: 0; animation: none; max-height: none; overflow: visible; }
  .nav.is-open .nav__list { display: flex; }
  .nav.is-open .nav__list a {
    display: inline-block;
    padding: 8px 0;
    font-family: var(--font-body);
    font-size: .875rem;
    border-bottom: 0;
  }
  .nav.is-open .nav__list a span::after { display: block; }
  .brand { margin-right: clamp(24px, 4vw, 64px); }


  .fleet { grid-auto-columns: 29%; }
  .reviews { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tours__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .booking__grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1fr); align-items: start; }
  .booking__form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why__grid { grid-template-columns: minmax(0, 440px) minmax(0, 1fr); align-items: start; }
  .why__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  /* "Seven services, one number." needs 621px at this width and the shell gives
     922px, so the manual break goes and the head widens to let it sit on one
     line; .lede carries its own 46ch measure, so it does not stretch with it */
  #services .band__head { max-width: none; }
  #services-title br { display: none; }

  .svc { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(32px, 4vw, 72px); }
  .svc__item { grid-template-columns: 80px 1fr; align-items: baseline; }
  .svc__item:last-child { grid-column: 1 / -1; }
  .band__head { max-width: 34ch; }
  .footer__grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.3fr);
  }
}

/* --- Desktop: 1280px+ ----------------------------------------------------- */
@media (min-width: 1280px) {
  .why__grid { grid-template-columns: minmax(0, 480px) minmax(0, 1fr); }
  .hero__inner > * { max-width: 22ch; }
  /* The copy narrows to 22ch here, which is too tight for both buttons side by
     side — and widening the row runs it straight into the fleet cut-out on the
     right. So stack them flush inside the copy column instead, which keeps the
     pair aligned and clear of the artwork. */
  .hero__actions { max-width: 22ch; }
  .hero__actions .btn { width: 100%; }

  /* the copy narrows to 22ch here, which frees the right half of the hero:
     stand the fleet beside it instead of under it and the bottom band's
     vertical reservation goes away */
  .hero { padding-bottom: clamp(88px, 12vh, 140px); }
  .hero__media {
    inset: auto 0 0 auto;
    width: min(68%, 1180px);
    height: auto;
  }
  .hero__media picture { height: auto; }
  .hero__img { height: auto; }
  .hero__scroll { display: flex; left: auto; right: clamp(24px, 3vw, 56px); transform: none; }
  .hero__scroll.anim { animation-name: rise; }
}

/* --- Large desktop: 1440px+ ----------------------------------------------- */
@media (min-width: 1440px) {
  :root { --band-y: 150px; }
}

/* --- Extra large / 4K: 1920px+ -------------------------------------------- */
@media (min-width: 1920px) {
  :root { --shell: 1440px; --pad: 64px; }
}

/* --- Short landscape phones ----------------------------------------------- */
@media (max-height: 560px) and (orientation: landscape) {
  .hero { min-height: 0; padding-block: calc(var(--masthead-h) + 32px) 72px; }
  .hero__scroll { display: none; }
}

/* --- Print ---------------------------------------------------------------- */
@media print {
  .masthead, .callbar, .booking, .map, .marquee, .hero__scroll { display: none; }
  .hero::after { display: none; }
  body { color: #000; background: #fff; }
}
