/* =====================================================================
   Ellis To Go — stylesheet
   Design system: design-system/ellis-to-go/MASTER.md
   Palette: Luxury/Premium Brand (products.csv 33) — premium black + WCAG-safe gold
   Type: Cormorant Garamond (display) + Jost (UI/body)
   ===================================================================== */

/* --------------------------- 0. FONTS (self-hosted) ---------------------
   Served from /fonts instead of fonts.gstatic.com. Google Fonts transmits
   every visitor's IP address to Google in the US; self-hosting removes that
   transfer entirely, so it no longer has to appear in the privacy notice.
   Both families are SIL Open Font License 1.1 — see fonts/README.md.
   Latin subset only: enough for Italian and English.

   VARIABLE fonts — one file per family covering weights 300-600, which is
   every weight this design uses. 63 KB total, against 214 KB for the seven
   static cuts they replace. The `font-weight: 300 600` range is what tells the
   browser this is variable; do not change it to a single number.
   ----------------------------------------------------------------------- */
@font-face { font-family:'Cormorant Garamond'; font-style:normal; font-weight:300 600;
  font-display:swap; src:url('../fonts/CormorantGaramond-var.woff2') format('woff2'); }
@font-face { font-family:'Jost'; font-style:normal; font-weight:300 600;
  font-display:swap; src:url('../fonts/Jost-var.woff2') format('woff2'); }

/* ------------------------------ 1. TOKENS ------------------------------ */
:root {
  --ink:        #0C0A09;
  --ink-2:      #1C1917;
  --ink-3:      #292524;
  --cream:      #FAF8F5;
  --cream-2:    #F3EEE7;
  --white:      #FFFFFF;
  --gold:       #A16207;
  --gold-soft:  #C08A2E;
  --gold-deco:  #D4AF37;
  --fg:         #1C1917;
  --fg-invert:  #F5F1EA;
  --muted:      #6B625B;
  --muted-dark: #A8A29E;
  --border:     #E4DDD3;
  --border-dark:#332E2A;
  --danger:     #B3261E;
  --wa:         #1EA952;

  --space-1: 8px;  --space-2: 16px; --space-3: 24px; --space-4: 32px;
  --space-5: 48px; --space-6: 64px; --space-7: 96px; --space-8: 128px;

  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-pill: 999px;

  --dur-fast: 180ms;
  --dur-mid:  300ms;
  --dur-slow: 700ms;
  --ease-out:   cubic-bezier(.22,.61,.36,1);
  --ease-inout: cubic-bezier(.65,0,.35,1);

  --shadow-sm: 0 1px 2px rgba(12,10,9,.06), 0 2px 8px rgba(12,10,9,.04);
  --shadow-md: 0 4px 12px rgba(12,10,9,.08), 0 12px 32px rgba(12,10,9,.06);
  --shadow-lg: 0 12px 28px rgba(12,10,9,.12), 0 32px 72px rgba(12,10,9,.14);

  --container: 1240px;
  --gutter: 20px;
  --header-h: 76px;

  --ff-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-body: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
/* Neither webfont carries a single CJK glyph, so on the Chinese site every
   character falls through to whatever the browser picks by itself — which on
   Windows is often a Japanese face with the wrong glyph forms. The Latin fonts
   stay first (brand name, "Mercedes V-Class", dates), with the platform's
   Simplified Chinese faces right behind them. */
:root:lang(zh) {
  --ff-display: 'Cormorant Garamond', 'Songti SC', 'Noto Serif SC', 'Source Han Serif SC',
    'Microsoft YaHei', Georgia, serif;
  --ff-body: 'Jost', 'PingFang SC', 'Noto Sans SC', 'Source Han Sans SC',
    'Microsoft YaHei', 'Hiragino Sans GB', system-ui, sans-serif;
}
/* Display sizes are tuned for Cormorant's tall Latin caps; CJK glyphs sit on a
   full em box and read heavy at the same size, so ease them back a touch. */
:lang(zh) h1, :lang(zh) h2 { letter-spacing: 0; line-height: 1.25; font-weight: 400; }
:lang(zh) h3, :lang(zh) h4 { letter-spacing: 0; line-height: 1.4; }
:lang(zh) .eyebrow { letter-spacing: .1em; }
:lang(zh) body, :lang(zh) p { line-height: 1.85; }
/* uppercase does nothing to CJK but does stretch the Latin around it */
:lang(zh) .eyebrow, :lang(zh) .foot-col h2, :lang(zh) .rev figcaption span,
:lang(zh) .brand-sub { text-transform: none; }
.lang-btn-zh { font-size: .8125rem; letter-spacing: .02em; }
@media (min-width: 768px)  { :root { --gutter: 32px; } }
@media (min-width: 1280px) { :root { --gutter: 48px; } }

/* ------------------------------ 2. RESET ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
/* `hidden` must beat every `display` rule below — the booking modal, its
   conditional field rows and the step buttons all rely on it. */
[hidden] { display: none !important; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 300; line-height: 1.08;
  letter-spacing: -.01em; text-wrap: balance; }
p { text-wrap: pretty; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
.dark :focus-visible, .hero :focus-visible, .modal :focus-visible { outline-color: var(--gold-deco); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: var(--gutter); z-index: 200;
  background: var(--ink); color: var(--fg-invert);
  padding: 12px 20px; border-radius: var(--r-sm); font-size: .875rem;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: 12px; }

/* ---------------------------- 3. PRIMITIVES ---------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto;
  padding-inline: var(--gutter); }

.ico { width: 20px; height: 20px; flex: 0 0 auto; fill: none;
  stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
/* solid glyphs */
.stars .ico, .rev-stars .ico, .trust-item .ico use[href="#i-star"],
.rating-link .ico { }
.stars .ico, .rev-stars .ico { fill: var(--gold-deco); stroke: var(--gold-deco); width: 16px; height: 16px; }
.rating-link .ico { fill: currentColor; stroke: none; }

.eyebrow {
  font-family: var(--ff-body); font-size: .75rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: var(--space-2);
}
.dark .eyebrow, .hero .eyebrow, .feature-card .eyebrow, .modal .eyebrow { color: var(--gold-deco); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 26px; border-radius: var(--r-pill);
  font-family: var(--ff-body); font-size: .9375rem; font-weight: 500;
  letter-spacing: .02em; white-space: nowrap; cursor: pointer;
  border: 1px solid transparent;
  transition: background-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.btn .ico { width: 18px; height: 18px; transition: transform var(--dur-mid) var(--ease-out); }
.btn:hover .ico[href], .btn:hover .ico { transform: translateX(3px); }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: .875rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--ink); color: var(--fg-invert); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--ink-3); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold-deco); color: var(--ink); }
.btn-gold:hover { background: #E0BC4E; }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--cream-2); }
.btn-ghost { border-color: var(--border); color: var(--fg); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(12,10,9,.04); }
.dark .btn-ghost, .modal .btn-ghost { border-color: var(--border-dark); color: var(--fg-invert); }
.dark .btn-ghost:hover { background: rgba(245,241,234,.08); border-color: var(--muted-dark); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: #179044; }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .5; cursor: not-allowed; }
.btn:disabled:hover { transform: none; }

/* Sections */
.section { padding-block: var(--space-7); position: relative; }
@media (min-width: 1024px) { .section { padding-block: var(--space-8); } }
.dark { background: var(--ink); color: var(--fg-invert); }
.dark h2, .dark h3 { color: var(--fg-invert); }

.sec-head { max-width: 46rem; margin-bottom: var(--space-6); }
.sec-head-center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem); }
.sec-lede { margin-top: var(--space-3); color: var(--muted); font-size: 1.0625rem; max-width: 62ch; }
.dark .sec-lede { color: var(--muted-dark); }
.sec-head-center .sec-lede { margin-inline: auto; }

/* ----------------------------- 4. REVEALS ----------------------------- */
.reveal { opacity: 0; transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
html.no-js .reveal, .no-anim .reveal { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ------------------------------ 5. HEADER ------------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out),
              height var(--dur-mid) var(--ease-out);
}
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(12,10,9,.75), rgba(12,10,9,0));
  transition: opacity var(--dur-mid) var(--ease-out);
}
.site-header.is-stuck {
  height: 66px; background: rgba(250,248,245,.92);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.site-header.is-stuck::before { opacity: 0; }

.header-inner { display: flex; align-items: center; gap: var(--space-3); }

.brand { display: flex; align-items: center; margin-right: auto; }
/* Wordmark only — the lettermark badge was removed. Hover feedback moved onto
   the wordmark so the link still responds to the pointer. */
.brand:hover .brand-name { color: var(--gold-deco); }
.is-stuck .brand:hover .brand-name { color: var(--gold); }
/* The mark is painted with currentColor, so it needs the same four states the
   wordmark has — it does not inherit them from .brand-name. */
.site-header .brand-mark { color: var(--fg-invert);
  transition: color var(--dur-mid) var(--ease-out); }
.is-stuck .brand-mark { color: var(--ink); }
.brand:hover .brand-mark { color: var(--gold-deco); }
.is-stuck .brand:hover .brand-mark { color: var(--gold); }
/* The mark is nearly four times as wide as it is tall, so beside the wordmark
   it only fits on a wide header. Below that it goes above the wordmark instead
   — the row has no horizontal room to spare but plenty of vertical, and the
   stacked lockup still clears the 44px touch target. */
@media (max-width: 1179px) {
  .site-header .brand { flex-direction: column; align-items: flex-start; gap: 3px; }
  /* sized so the mark ends up about as wide as the wordmark under it — a
     narrower mark reads as an accident rather than a lockup */
  .site-header .brand-mark { --mark-h: 26px; margin-right: 0; }
  /* three stacked lines would overflow a 76px header, and the hero eyebrow
     immediately below repeats this line word for word */
  .site-header .brand-sub { display: none; }
}
/* The van-and-trees mark from Ellis's card. It ships as a transparent PNG used
   as a CSS mask rather than an <img>, so the artwork takes `currentColor` and
   follows the wordmark through all three header states — cream over the hero,
   ink once the header sticks, gold on hover — which a fixed-colour bitmap
   could not do. The source was a photo of the card, so the paper background is
   keyed out into the alpha channel. */
.brand-mark {
  flex: 0 0 auto; align-self: center;
  width: calc(var(--mark-h, 30px) * 3.88); height: var(--mark-h, 30px);
  margin-right: 11px;
  background-color: currentColor;
  -webkit-mask: url('../images/logo-mark.png') no-repeat center / contain;
  mask: url('../images/logo-mark.png') no-repeat center / contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
/* The wordmark is the headline act — Ellis himself is the product, not the
   vehicle — so it carries real weight in the 76px header instead of sitting at
   nav-link scale. Fluid so it never crowds the nav on narrow desktops. */
/* Cormorant's variable range stops at 600, so font-weight has nothing left to
   give — 700 and 800 render identically to 600. The extra weight comes from
   stroking the glyphs in the same colour, which thickens the hairlines of a
   high-contrast serif more than the stems and reads as a heavier cut rather
   than a smudged one. */
.brand-name { font-family: var(--ff-display); font-size: clamp(1.375rem, 1.15rem + 1.1vw, 1.9375rem);
  font-weight: 600; white-space: nowrap;
  -webkit-text-stroke: .6px currentColor;
  letter-spacing: .015em; color: var(--fg-invert); transition: color var(--dur-mid) var(--ease-out); }
.brand-sub { font-size: .625rem; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-deco); white-space: nowrap; }
/* The footer keeps "Private Chauffeur · Florence" at every width; in the header
   it is hidden below 1180px — see the stacked-lockup rule above. */
.is-stuck .brand-name { color: var(--ink); }
.is-stuck .brand-sub { color: var(--gold); }

.nav { display: none; gap: 4px; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a {
  position: relative; padding: 8px 12px; font-size: .875rem; font-weight: 400;
  color: rgba(245,241,234,.86); border-radius: var(--r-sm);
  /* two-word items like "The Van" would otherwise break across two lines when
     the row tightens, which is worse than the row simply being tight */
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav a::after {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: 3px; height: 1px;
  background: var(--gold-deco); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-out);
}
.nav a:hover::after, .nav a.is-current::after { transform: scaleX(1); }
.nav a:hover { color: #fff; }
.is-stuck .nav a { color: var(--fg); }
.is-stuck .nav a:hover { color: var(--ink); }
.is-stuck .nav a::after { background: var(--gold); }

.header-actions { display: flex; align-items: center; gap: var(--space-2); }
.lang-switch { display: flex; align-items: center; gap: 2px; }
.lang-btn {
  min-width: 34px; min-height: 34px; padding: 4px 6px; border-radius: var(--r-sm);
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  color: rgba(245,241,234,.6);
  transition: color var(--dur-fast) var(--ease-out), background-color var(--dur-fast) var(--ease-out);
}
.lang-btn:hover { color: #fff; background: rgba(255,255,255,.1); }
.lang-btn.is-active { color: var(--gold-deco); }
.lang-sep { color: rgba(245,241,234,.3); font-size: .75rem; }
/* A third language pushed this row past what a 375px header holds: the
   wordmark was being squeezed until it wrapped to two lines. The separators
   are decorative (aria-hidden) so they go first, and the buttons keep their
   44px touch height while giving back horizontal padding. */
@media (max-width: 559px) {
  .lang-sep { display: none; }
  .lang-switch { gap: 0; }
  .lang-btn { min-width: 38px; padding-inline: 3px; letter-spacing: .04em; }
  .header-actions { gap: 6px; }
}
.is-stuck .lang-btn { color: var(--muted); }
.is-stuck .lang-btn:hover { color: var(--ink); background: rgba(12,10,9,.06); }
.is-stuck .lang-btn.is-active { color: var(--gold); }
.is-stuck .lang-sep { color: var(--border); }

.header-actions .btn-wa { display: none; }
@media (min-width: 560px) { .header-actions .btn-wa { display: inline-flex; } }

.nav-toggle {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: var(--r-sm);
  color: var(--fg-invert);
}
.is-stuck .nav-toggle { color: var(--ink); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle .ico { width: 24px; height: 24px; grid-area: 1/1;
  transition: opacity var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out); }
.nav-toggle .ico-x { opacity: 0; transform: rotate(-45deg); }
.nav-toggle[aria-expanded="true"] .ico-menu { opacity: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .ico-x { opacity: 1; transform: none; }

/* mobile drawer */
@media (max-width: 1023px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    display: flex; flex-direction: column; gap: 0;
    background: rgba(250,248,245,.98);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    padding: var(--space-2) var(--gutter) var(--space-4);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out);
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { color: var(--fg); font-size: 1.0625rem; padding: 14px 4px;
    border-bottom: 1px solid var(--border); }
  .nav a::after { display: none; }
}

/* ------------------------------- 6. HERO ------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: flex-end; padding-top: calc(var(--header-h) + var(--space-6));
  padding-bottom: var(--space-5); background: var(--ink);
  /* NOT overflow:hidden — that clipped the autocomplete dropdown, which has to
     be able to escape the hero. The Ken Burns scale is clipped on .hero-media. */
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  /* Guarantees contrast for the white headline AND the gold subline over a
     bright sunset frame. Tuned against the actual hero image, not guessed. */
  background:
    linear-gradient(to top, rgba(12,10,9,.95) 0%, rgba(12,10,9,.74) 28%, rgba(12,10,9,.52) 55%, rgba(12,10,9,.62) 100%),
    linear-gradient(100deg, rgba(12,10,9,.72) 0%, rgba(12,10,9,.34) 58%, rgba(12,10,9,.08) 100%);
}
.kenburns { animation: kb 26s var(--ease-inout) infinite alternate; transform-origin: 55% 45%; }
@keyframes kb { from { transform: scale(1.02); } to { transform: scale(1.12); } }
@media (prefers-reduced-motion: reduce) { .kenburns { animation: none; } }

.hero-inner { position: relative; z-index: 1; margin-bottom: var(--space-5); }
.hero-title {
  font-size: clamp(2.5rem, 1.4rem + 5.4vw, 5.25rem);
  color: #fff; max-width: 20ch; margin-bottom: var(--space-3);
}
.hero-title em { display: block; font-style: normal; color: var(--gold-deco);
  font-size: .62em; margin-top: .25em; letter-spacing: 0; }
.hero-sub { color: rgba(245,241,234,.86); font-size: clamp(1rem,.95rem + .3vw,1.1875rem);
  max-width: 52ch; }
.hero-badges { display: flex; flex-wrap: wrap; gap: var(--space-1) var(--space-4);
  margin-top: var(--space-4); }
.hero-badges li { display: flex; align-items: center; gap: 8px;
  font-size: .875rem; color: rgba(245,241,234,.78); }
.hero-badges .ico { width: 17px; height: 17px; color: var(--gold-deco); }
/* Flags sit tight to their badge and stay together if the row wraps. No fill or
   stroke declared here on purpose — the sprite carries its own colours. */
.flag-row { display: inline-flex; align-items: center; gap: 5px; margin-left: 2px; }
.flag { width: 18px; height: 12px; flex: 0 0 auto; border-radius: 2px;
  overflow: hidden; box-shadow: 0 0 0 1px rgba(255,255,255,.22); }

/* -------------------------- 7. BOOKING WIDGET -------------------------- */
.booking-wrap { position: relative; z-index: 2; }
.booking-card {
  background: rgba(250,248,245,.9);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  /* no overflow:hidden — the suggestion list must extend past the card edge */
}
.booking-tabs { display: flex; gap: 4px; padding: 10px 10px 0; }
.bk-tab {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 0 16px; border-radius: var(--r-pill);
  font-size: .875rem; font-weight: 500; color: var(--muted);
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.bk-tab .ico { width: 18px; height: 18px; }
.bk-tab:hover { color: var(--ink); background: rgba(12,10,9,.05); }
.bk-tab.is-active { background: var(--ink); color: var(--fg-invert); }
@media (max-width: 419px) { .bk-tab { padding: 0 12px; font-size: .8125rem; } .bk-tab .ico { display: none; } }

.booking-form { padding: 10px; }
.bk-fields { display: grid; gap: 8px; }
@media (min-width: 1024px) {
  .bk-fields { grid-template-columns: 1.3fr auto 1.3fr 1.15fr .8fr auto; align-items: end; gap: 6px; }
}

.bk-field { position: relative; display: flex; flex-direction: column; gap: 5px;
  padding: 10px 12px; border-radius: var(--r-md); background: var(--white);
  border: 1px solid var(--border);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out); }
.bk-field:focus-within { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(161,98,7,.14); }
.bk-field > label { font-size: .6875rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); }
.bk-input-wrap { display: flex; align-items: center; gap: 8px; }
.bk-ico { width: 17px; height: 17px; color: var(--gold); }
.bk-input-wrap input, .bk-input-wrap select {
  width: 100%; min-width: 0; border: 0; background: none; outline: none;
  font-size: .9375rem; font-weight: 400; padding: 2px 0; min-height: 26px;
}
.bk-input-wrap input::placeholder { color: #A8A29E; font-weight: 300; }
.bk-when { display: flex; gap: 6px; }
.bk-when input[type="date"] { flex: 1 1 auto; }
.bk-when input[type="time"] { flex: 0 0 auto; width: 84px; border-left: 1px solid var(--border);
  padding-left: 8px; }

.bk-swap { display: none; width: 34px; height: 34px; align-self: center;
  border-radius: 50%; border: 1px solid var(--border); background: var(--white);
  color: var(--muted); place-items: center; margin-bottom: 8px;
  transition: color var(--dur-fast) var(--ease-out), transform var(--dur-mid) var(--ease-out); }
@media (min-width: 1024px) { .bk-swap { display: grid; } }
.bk-swap:hover { color: var(--ink); transform: rotate(180deg); }
.bk-swap .ico { width: 16px; height: 16px; }

.bk-stepper { display: flex; align-items: center; justify-content: space-between; gap: 4px; }
.step-btn { width: 32px; height: 32px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--border); color: var(--fg);
  transition: background-color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out), opacity var(--dur-fast); }
.step-btn:hover:not(:disabled) { background: var(--ink); color: var(--fg-invert); border-color: var(--ink); }
.step-btn:disabled { opacity: .32; cursor: not-allowed; }
.step-btn .ico { width: 15px; height: 15px; }
.bk-stepper output { font-size: 1.0625rem; font-weight: 500; font-variant-numeric: tabular-nums;
  min-width: 2ch; text-align: center; }

.bk-submit { margin-top: 2px; }
@media (min-width: 1024px) { .bk-submit { height: 100%; min-height: 66px; } }

.bk-note { display: flex; align-items: flex-start; gap: 8px;
  padding: 12px 12px 6px; font-size: .8125rem; color: var(--muted); }
.bk-note .ico { width: 15px; height: 15px; color: var(--gold); margin-top: 3px; }
.bk-error { margin: 0 12px 10px; padding: 10px 14px; border-radius: var(--r-sm);
  background: rgba(179,38,30,.08); color: var(--danger); font-size: .875rem;
  border-left: 3px solid var(--danger); }

/* combobox listbox */
.bk-list {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 30;
  max-height: 296px; overflow-y: auto; overscroll-behavior: contain;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 6px;
}
.bk-list li { display: flex; align-items: center; gap: 11px; padding: 9px 11px;
  border-radius: var(--r-sm); cursor: pointer; font-size: .9375rem; }
/* Flipped above the field when there isn't room below (the widget sits at the
   bottom of a full-height hero). Toggled by booking.js. */
.bk-list.is-up { top: auto; bottom: calc(100% + 6px); }
.bk-list li .ico { width: 17px; height: 17px; color: var(--gold); flex: 0 0 auto; }
.bk-list li:hover, .bk-list li.is-active { background: var(--cream-2); }
.bk-list li[aria-selected="true"] { background: var(--cream-2); }
.bk-list li > span { min-width: 0; }
.opt-main { font-weight: 400; display: block; overflow: hidden;
  text-overflow: ellipsis; white-space: nowrap; }
.opt-sub { display: block; font-size: .75rem; color: var(--muted); line-height: 1.35;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bk-list .no-res { color: var(--muted); font-size: .875rem; cursor: default; }
.bk-list .no-res:hover { background: none; }
/* geocoder results are visually separated from the curated shortlist */
.bk-list li.is-remote .ico { color: var(--muted); }
.bk-list .grp { padding: 8px 11px 4px; font-size: .625rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  cursor: default; }
.bk-list .grp:hover { background: none; }
.bk-list .busy { display: flex; align-items: center; gap: 9px; color: var(--muted);
  font-size: .8125rem; cursor: default; }
.bk-list .busy:hover { background: none; }
.bk-list .busy::before { content: ''; width: 13px; height: 13px; flex: 0 0 auto;
  border: 2px solid var(--border); border-top-color: var(--gold);
  border-radius: 50%; animation: spin 700ms linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .bk-list .busy::before { animation-duration: 2s; } }

/* ---------------------------- 8. TRUST STRIP ---------------------------- */
.trust { background: var(--ink); color: var(--fg-invert);
  padding-block: var(--space-4); border-bottom: 1px solid var(--border-dark); }
.trust-grid { display: grid; gap: var(--space-3); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .trust-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-4); } }
.trust-item { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto;
  gap: 2px var(--space-2); align-items: center; }
.trust-item .ico { grid-row: 1 / span 2; width: 26px; height: 26px; color: var(--gold-deco); }
.trust-item strong { font-family: var(--ff-display); font-size: 1.125rem; font-weight: 600;
  line-height: 1.2; }
.trust-item span { font-size: .8125rem; color: var(--muted-dark); line-height: 1.35; }
/* Rating tile: stacked, stars first, so the five gold stars land before any
   reading happens. Overrides the sibling grid rather than fighting it. */
.trust-rating { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.trust-rating .trust-stars { display: flex; gap: 3px; margin-bottom: 1px; }
.trust-rating .trust-stars .ico { width: 20px; height: 20px;
  fill: var(--gold-deco); stroke: var(--gold-deco); }
.trust-rating strong { transition: color var(--dur-fast) var(--ease-out); }
.trust-rating:hover strong { color: var(--gold-deco); }
.trust-rating:hover .trust-stars .ico { fill: var(--gold); stroke: var(--gold); }

/* ----------------------------- 9. SERVICES ----------------------------- */
.svc-grid { display: grid; gap: var(--space-4); }
@media (min-width: 700px)  { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1180px) { .svc-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-3); } }

.svc { display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid) var(--ease-out); }
.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.svc-media img { width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms var(--ease-out); }
.svc:hover .svc-media img { transform: scale(1.06); }
.svc-body { padding: var(--space-3); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-ico { width: 30px; height: 30px; color: var(--gold); stroke-width: 1.25; }
.svc-body h3 { font-size: 1.5rem; }
/* keeps the four card paragraphs on a shared baseline when one title wraps */
@media (min-width: 1180px) { .svc-body h3 { min-height: 2.2em; } }
.svc-body > p { font-size: .9375rem; color: var(--muted); }
.svc-list { margin-top: auto; padding-top: var(--space-2); border-top: 1px solid var(--border);
  display: grid; gap: 5px; }
.svc-list li { position: relative; padding-left: 15px; font-size: .8125rem; color: var(--muted); }
.svc-list li::before { content: ''; position: absolute; left: 0; top: .62em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold-deco); }

/* ------------------------------ 10. FLEET ------------------------------ */
.fleet-grid { display: grid; gap: var(--space-6); align-items: center; }
@media (min-width: 1024px) { .fleet-grid { grid-template-columns: 1fr 1.1fr; gap: var(--space-7); } }
.fleet-copy h2 { font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem); margin-bottom: var(--space-3); }
.fleet-copy > p { color: var(--muted-dark); font-size: 1.0625rem; max-width: 56ch; }

.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3);
  margin-block: var(--space-4); padding-block: var(--space-4);
  border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); }
@media (min-width: 560px) { .spec-grid { grid-template-columns: repeat(4, 1fr); } }
.spec-grid dt { font-size: .6875rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-dark); margin-bottom: 4px; }
.spec-grid dd { font-family: var(--ff-display); font-size: 1.1875rem; font-weight: 400;
  color: var(--gold-deco); line-height: 1.25;
  /* four narrow columns: never hyphen-break "3-zone" mid-word */
  hyphens: none; overflow-wrap: normal; text-wrap: balance; }
@media (min-width: 1280px) { .spec-grid dd { font-size: 1.3125rem; } }

.tick-list { display: grid; gap: 10px; margin-bottom: var(--space-4); }
.tick-list li { display: flex; align-items: flex-start; gap: 11px; font-size: .9375rem;
  color: var(--muted-dark); }
.tick-list .ico { width: 17px; height: 17px; color: var(--gold-deco); margin-top: 4px; }

.fleet-media { display: grid; gap: var(--space-2); }
.fleet-hero, .fleet-cabin { border-radius: var(--r-lg); overflow: hidden;
  background: var(--ink-2); }
.fleet-hero img { width: 100%; aspect-ratio: 10 / 7; object-fit: cover; }
/* the cabin shot is wide and detailed — give it its own full-width row rather
   than shrinking it into a thumbnail. The ratio is the photo's own 550x330, so
   nothing is cropped away. */
.fleet-cabin img { width: 100%; aspect-ratio: 550 / 330; object-fit: cover; }

/* --------------------------- 11. WINE FEATURE --------------------------- */
.feature { position: relative; min-height: 78svh; display: grid; place-items: center;
  overflow: hidden; background: var(--ink); padding-block: var(--space-7); }
.feature-media { position: absolute; inset: -8% 0; z-index: 0; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.feature-media::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(12,10,9,.9) 0%, rgba(12,10,9,.62) 45%, rgba(12,10,9,.25) 100%); }
.feature-inner { position: relative; z-index: 1; }
.feature-card { max-width: 44rem; }
.feature-card h2 { font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.75rem); color: #fff;
  margin-bottom: var(--space-3); }
.feature-card p { color: rgba(245,241,234,.86); font-size: 1.0625rem; margin-bottom: var(--space-4);
  max-width: 58ch; }

/* -------------------------- 12. DESTINATIONS -------------------------- */
.dest-grid { display: grid; gap: var(--space-2); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .dest-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-3); } }
.dest-card { position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 3 / 4; background: var(--ink-2); isolation: isolate; }
@media (min-width: 900px) {
  .dest-card { aspect-ratio: 4 / 5; }
  .dest-lg { grid-column: span 2; aspect-ratio: 8 / 5; }
}
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -1; transition: transform 1000ms var(--ease-out); }
.dest-card::after { content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(12,10,9,.9) 0%, rgba(12,10,9,.35) 45%, rgba(12,10,9,.05) 75%);
  transition: opacity var(--dur-mid) var(--ease-out); }
.dest-card:hover img { transform: scale(1.07); }
.dest-body { position: absolute; inset: auto 0 0 0; padding: var(--space-3); color: #fff; }
.dest-body h3 { font-size: clamp(1.25rem, 1rem + 1vw, 1.875rem); }
.dest-body p { font-size: .8125rem; color: rgba(245,241,234,.8); margin-top: 3px; line-height: 1.45; }

/* ------------------------------ 13. ABOUT ------------------------------ */
.about-grid { display: grid; gap: var(--space-5); align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: .85fr 1fr; gap: var(--space-7); } }
.about-media { position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: var(--cream-2); }
.about-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
@media (min-width: 1024px) { .about-media img { aspect-ratio: 9 / 11; } }
.about-badge { position: absolute; inset: auto var(--space-3) var(--space-3);
  display: flex; align-items: center; gap: 11px; padding: 13px 16px;
  border-radius: var(--r-md); font-size: .8125rem; line-height: 1.4;
  background: rgba(250,248,245,.94); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); box-shadow: var(--shadow-md); }
.about-badge .ico { width: 20px; height: 20px; color: var(--gold); }
.about-copy h2 { font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem); margin-bottom: var(--space-3); }
.about-copy > p { color: var(--muted); font-size: 1.0625rem; margin-bottom: var(--space-3);
  max-width: 60ch; }
.pull { margin-block: var(--space-4); padding-left: var(--space-3);
  border-left: 2px solid var(--gold-deco); }
.pull p { font-family: var(--ff-display); font-size: clamp(1.25rem,1.05rem + .9vw,1.75rem);
  line-height: 1.35; color: var(--fg); }
.pull cite { display: block; margin-top: 10px; font-size: .75rem; font-style: normal;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.about-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* ----------------------------- 14. REVIEWS ----------------------------- */
.rating { display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--space-2) var(--space-3); margin-top: var(--space-3); }
.rating-num { font-family: var(--ff-display); font-size: 3rem; font-weight: 400;
  line-height: 1; color: var(--gold-deco); }
.stars { display: flex; gap: 3px; }
/* The score and its stars are one clickable unit through to Google. Stars are
   sized up here (the 16px default is for the small per-review rows) so the
   rating reads from across the section. */
.rating-score { display: inline-flex; align-items: center; gap: var(--space-2); }
.rating .stars .ico { width: 24px; height: 24px; }
.rating-score:hover .rating-num { color: var(--gold); }
.rating-score .rating-num { transition: color var(--dur-fast) var(--ease-out); }
.rating-link { display: inline-flex; align-items: center; gap: 8px; font-size: .875rem;
  color: var(--muted-dark); border-bottom: 1px solid transparent;
  transition: color var(--dur-fast), border-color var(--dur-fast); }
.rating-link:hover { color: var(--fg-invert); border-color: var(--gold-deco); }
.rating-link .ico { width: 17px; height: 17px; }

.rev-grid { display: grid; gap: var(--space-3); }
@media (min-width: 700px)  { .rev-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .rev-grid { grid-template-columns: repeat(3, 1fr); } }
.rev { display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-3); border-radius: var(--r-md);
  background: var(--ink-2); border: 1px solid var(--border-dark);
  transition: border-color var(--dur-mid) var(--ease-out), transform var(--dur-mid) var(--ease-out); }
.rev:hover { border-color: rgba(212,175,55,.4); transform: translateY(-3px); }
.rev-stars { display: flex; gap: 2px; }
.rev blockquote { font-size: .9375rem; color: var(--muted-dark); line-height: 1.65; }
.rev figcaption { margin-top: auto; padding-top: var(--space-2);
  border-top: 1px solid var(--border-dark); display: flex; flex-direction: column; gap: 1px; }
.rev figcaption strong { font-family: var(--ff-display); font-size: 1.125rem; font-weight: 600;
  color: var(--fg-invert); }
.rev figcaption span { font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-dark); }

/* ---------------------------- 15. NCC INFO ---------------------------- */
.ncc { background: var(--cream-2); }
.ncc-grid { display: grid; gap: var(--space-5); }
@media (min-width: 1024px) { .ncc-grid { grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: start; } }
.ncc-copy h2 { font-size: clamp(1.85rem, 1.25rem + 2.6vw, 3rem); margin-bottom: var(--space-3); }
.ncc-copy p { color: var(--muted); margin-bottom: var(--space-3); max-width: 58ch; }
.ncc-copy em { font-style: italic; color: var(--fg); }
.ncc-list { display: grid; gap: var(--space-2); }
.ncc-list li { display: grid; grid-template-columns: auto 1fr; gap: 3px var(--space-2);
  padding: var(--space-3); background: var(--white); border-radius: var(--r-md);
  border: 1px solid var(--border); }
.ncc-list .ico { grid-row: 1 / span 2; width: 20px; height: 20px; color: var(--gold);
  margin-top: 4px; }
.ncc-list strong { font-weight: 500; font-size: .9375rem; }
.ncc-list span { font-size: .875rem; color: var(--muted); line-height: 1.55; }

/* ------------------------------- 16. FAQ ------------------------------- */
.faq-inner { max-width: 56rem; margin-inline: auto; }
.faq-list { display: grid; gap: 8px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--white); overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease-out); }
.faq-item[open] { border-color: var(--gold-deco); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-2); padding: 18px var(--space-3); cursor: pointer;
  font-size: 1.0625rem; font-weight: 400; list-style: none; min-height: 60px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary .ico { color: var(--muted); transition: transform var(--dur-mid) var(--ease-out); }
.faq-item[open] summary .ico { transform: rotate(180deg); }
.faq-a { padding: 0 var(--space-3) var(--space-3); }
.faq-a p { color: var(--muted); font-size: .9375rem; max-width: 68ch; }

/* ----------------------------- 17. CONTACT ----------------------------- */
.contact { background: var(--ink); color: var(--fg-invert); overflow: hidden; }
.contact-bg { position: absolute; inset: 0; z-index: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.contact-bg::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(12,10,9,.94), rgba(12,10,9,.7)); }
.contact-inner { position: relative; z-index: 1; display: grid; gap: var(--space-5);
  align-items: start; }
@media (min-width: 1024px) { .contact-inner { grid-template-columns: 1.25fr .85fr; gap: var(--space-7); } }
.contact-copy h2 { font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem); margin-bottom: var(--space-3); }
.contact-copy > p { color: var(--muted-dark); font-size: 1.0625rem; max-width: 50ch; }
.contact-methods { display: grid; gap: 8px; margin-top: var(--space-4); }
@media (min-width: 560px) { .contact-methods { grid-template-columns: repeat(2, 1fr); } }
.cmethod { display: flex; align-items: center; gap: 13px; padding: 15px 17px;
  border-radius: var(--r-md); border: 1px solid var(--border-dark);
  background: rgba(245,241,234,.03); min-height: 66px;
  transition: border-color var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) var(--ease-out); }
.cmethod:hover { border-color: var(--gold-deco); background: rgba(212,175,55,.08); }
.cmethod .ico { width: 22px; height: 22px; color: var(--gold-deco); }
.cmethod strong { display: block; font-weight: 500; font-size: .9375rem; }
.cmethod small { display: block; font-size: .8125rem; color: var(--muted-dark); }

.contact-cta { padding: var(--space-4); border-radius: var(--r-lg);
  background: rgba(250,248,245,.06); border: 1px solid var(--border-dark);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.contact-cta h3 { font-size: 1.875rem; margin-bottom: 10px; }
.contact-cta p { font-size: .9375rem; color: var(--muted-dark); margin-bottom: var(--space-3); }
.cta-ticks { display: grid; gap: 8px; margin-top: var(--space-3); }
.cta-ticks li { display: flex; align-items: center; gap: 9px; font-size: .8125rem;
  color: var(--muted-dark); }
.cta-ticks .ico { width: 15px; height: 15px; color: var(--gold-deco); }

/* ------------------------------ 18. FOOTER ------------------------------ */
.site-footer { background: #080605; color: var(--fg-invert);
  padding-top: var(--space-6); border-top: 1px solid var(--border-dark); }
.foot-grid { display: grid; gap: var(--space-4); padding-bottom: var(--space-5); }
@media (min-width: 700px)  { .foot-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); } }
@media (min-width: 1024px) { .foot-grid { grid-template-columns: 1.7fr 1fr 1fr 1.2fr; } }
.foot-brand p { font-size: .875rem; color: var(--muted-dark); margin-top: var(--space-2);
  max-width: 38ch; }
.foot-brand .brand-name { color: var(--fg-invert); }
/* Stacked in the footer: the column is narrower than the mark is wide beside a
   wordmark, and there is vertical room here that the header does not have. */
.brand-stacked { flex-direction: column; align-items: flex-start; gap: 12px; }
.foot-brand .brand-mark { --mark-h: 42px; margin-right: 0; color: var(--fg-invert); }
.foot-brand .brand:hover .brand-mark { color: var(--gold-deco); }
.foot-social { display: flex; gap: 8px; margin-top: var(--space-3); }
.foot-social a { width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--border-dark); color: var(--muted-dark);
  transition: color var(--dur-fast), border-color var(--dur-fast), background-color var(--dur-fast); }
.foot-social a:hover { color: var(--ink); background: var(--gold-deco); border-color: var(--gold-deco); }
.foot-col { display: flex; flex-direction: column; gap: 9px; }
.foot-col h2 { font-family: var(--ff-body); font-size: .6875rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deco);
  margin-bottom: 4px; }
.foot-col a { font-size: .875rem; color: var(--muted-dark); width: fit-content;
  transition: color var(--dur-fast) var(--ease-out); }
.foot-col a:hover { color: var(--fg-invert); }
.foot-contact p { display: flex; gap: 10px; font-size: .875rem; color: var(--muted-dark);
  line-height: 1.5; }
.foot-contact .ico { width: 16px; height: 16px; color: var(--gold-deco); margin-top: 4px; }

.foot-legal { padding-block: var(--space-3) var(--space-4);
  border-top: 1px solid var(--border-dark); display: grid; gap: 7px; }
.legal-line { font-size: .75rem; color: var(--muted-dark); line-height: 1.6; }
.legal-line a { border-bottom: 1px solid rgba(168,162,158,.4); }
.legal-line a:hover { color: var(--fg-invert); border-color: var(--gold-deco); }
.legal-line strong { color: var(--fg-invert); font-weight: 500; }
/* #7C736D measured 4.36:1 on the #080605 footer — below AA for 12px text */
.legal-sub { color: #8A817A; }
.legal-sub span + a, .legal-sub span + span { margin-left: 6px; }

/* ---------------------------- 19. FLOATING WA ---------------------------- */
.fab-wa {
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 50%; background: var(--wa); color: #fff;
  box-shadow: 0 6px 20px rgba(30,169,82,.4);
  transform: translateY(90px); opacity: 0; pointer-events: none;
  transition: transform var(--dur-mid) var(--ease-out), opacity var(--dur-mid) var(--ease-out),
              background-color var(--dur-fast);
}
.fab-wa.is-in { transform: none; opacity: 1; pointer-events: auto; }
.fab-wa:hover { background: #179044; }
.fab-wa .ico { width: 26px; height: 26px; }
@media (min-width: 560px) { .fab-wa { right: 24px; bottom: 24px; width: 58px; height: 58px; } }

/* ------------------------------ 20. MODAL ------------------------------ */
/* minmax(0,1fr) is required: with an `auto` column the track sizes to the
   panel's max-content (the 2-up field rows), making the panel wider than a
   375px viewport. */
.modal { position: fixed; inset: 0; z-index: 150; display: grid;
  grid-template-columns: minmax(0, 1fr); place-items: end center; }
@media (min-width: 700px) { .modal { place-items: center; } }
.modal-scrim { position: absolute; inset: 0; background: rgba(8,6,5,.62);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  animation: fadeIn var(--dur-mid) var(--ease-out); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-panel {
  position: relative; width: 100%; max-width: 720px; max-height: 94svh;
  display: flex; flex-direction: column;
  background: var(--ink); color: var(--fg-invert);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  box-shadow: var(--shadow-lg);
  animation: slideUp 380ms var(--ease-out);
}
@media (min-width: 700px) { .modal-panel { border-radius: var(--r-lg); max-height: 90svh; } }
@keyframes slideUp { from { transform: translateY(28px); opacity: 0; } to { transform: none; opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .modal-panel, .modal-scrim { animation: none; }
}

.modal-head { display: flex; align-items: flex-start; justify-content: space-between;
  gap: var(--space-2); padding: var(--space-3) var(--space-3) var(--space-2);
  border-bottom: 1px solid var(--border-dark); }
.modal-head h2 { font-size: 1.75rem; }
.modal-head .eyebrow { margin-bottom: 3px; }
.modal-x { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%;
  color: var(--muted-dark); flex: 0 0 auto;
  transition: color var(--dur-fast), background-color var(--dur-fast); }
.modal-x:hover { color: var(--fg-invert); background: rgba(245,241,234,.08); }

.steps { display: flex; gap: 4px; padding: var(--space-2) var(--space-3);
  border-bottom: 1px solid var(--border-dark); overflow-x: auto;
  scrollbar-width: none; }
.steps::-webkit-scrollbar { display: none; }
.steps li { display: flex; align-items: center; gap: 8px; padding: 5px 11px 5px 5px;
  border-radius: var(--r-pill); flex: 0 0 auto; }
.step-n { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%;
  font-size: .8125rem; font-weight: 500; background: var(--ink-3); color: var(--muted-dark);
  transition: background-color var(--dur-mid), color var(--dur-mid); }
.step-l { font-size: .8125rem; color: var(--muted-dark); transition: color var(--dur-mid); }
.steps li.is-active .step-n { background: var(--gold-deco); color: var(--ink); }
.steps li.is-active .step-l { color: var(--fg-invert); }
.steps li.is-done .step-n { background: rgba(212,175,55,.22); color: var(--gold-deco); }

.modal-body { padding: var(--space-3); overflow-y: auto; flex: 1;
  overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
.step-pane { display: none; }
.step-pane.is-active { display: block; animation: paneIn var(--dur-mid) var(--ease-out); }
@keyframes paneIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .step-pane.is-active { animation: none; } }

/* trip summary */
.trip-summary { display: grid; gap: 2px; padding: var(--space-3); border-radius: var(--r-md);
  background: var(--ink-2); border: 1px solid var(--border-dark); margin-bottom: var(--space-3); }
.ts-row { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: start;
  padding: 9px 0; }
.ts-row + .ts-row { border-top: 1px solid var(--border-dark); }
.ts-row .ico { width: 18px; height: 18px; color: var(--gold-deco); margin-top: 3px; }
.ts-k { font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-dark); }
.ts-v { font-size: .9375rem; color: var(--fg-invert); }
.ts-badge { font-size: .75rem; color: var(--gold-deco); white-space: nowrap; }

/* fields */
.field-row { display: grid; gap: var(--space-2); margin-bottom: var(--space-2); }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field > label { font-size: .8125rem; font-weight: 400; color: var(--muted-dark); }
.field > label abbr { color: var(--gold-deco); text-decoration: none; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 11px 14px; border-radius: var(--r-sm);
  background: var(--ink-2); border: 1px solid var(--border-dark); color: var(--fg-invert);
  font-size: .9375rem; outline: none;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field textarea { min-height: 84px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold-deco); box-shadow: 0 0 0 3px rgba(212,175,55,.16); }
.field input::placeholder, .field textarea::placeholder { color: #7C736D; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] {
  border-color: #E5675E; box-shadow: 0 0 0 3px rgba(229,103,94,.14); }
.field .hint { font-size: .75rem; color: #8B827C; line-height: 1.45; }
.field .err-msg { font-size: .75rem; color: #E5675E; display: flex; align-items: center; gap: 5px; }
.modal .bk-stepper { justify-content: flex-start; gap: var(--space-3);
  padding: 8px 14px; border-radius: var(--r-sm); background: var(--ink-2);
  border: 1px solid var(--border-dark); min-height: 48px; width: fit-content; }
.modal .step-btn { border-color: var(--border-dark); color: var(--fg-invert); }
.modal .step-btn:hover:not(:disabled) { background: var(--gold-deco); color: var(--ink);
  border-color: var(--gold-deco); }

/* switch */
.switch { display: flex; align-items: center; gap: 12px; cursor: pointer; font-size: .9375rem;
  color: var(--fg-invert); min-height: 44px; }
.switch input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.switch-track { width: 46px; height: 26px; border-radius: var(--r-pill); flex: 0 0 auto;
  background: var(--ink-3); border: 1px solid var(--border-dark); padding: 2px;
  display: flex; align-items: center;
  transition: background-color var(--dur-fast) var(--ease-out); }
.switch-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--muted-dark);
  transition: transform var(--dur-fast) var(--ease-out), background-color var(--dur-fast); }
.switch input:checked + .switch-track { background: rgba(212,175,55,.3); border-color: var(--gold-deco); }
.switch input:checked + .switch-track .switch-dot { transform: translateX(20px); background: var(--gold-deco); }
.switch input:focus-visible + .switch-track { outline: 2px solid var(--gold-deco); outline-offset: 2px; }

/* vehicle card */
.veh-card { display: grid; border-radius: var(--r-md); overflow: hidden;
  background: var(--ink-2); border: 1px solid var(--gold-deco); }
@media (min-width: 560px) { .veh-card { grid-template-columns: .85fr 1fr; } }
.veh-media img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; }
.veh-body { padding: var(--space-3); display: flex; flex-direction: column; gap: var(--space-2); }
.veh-top { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); }
.veh-top h3 { font-size: 1.5rem; }
.pill { font-size: .6875rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 11px; border-radius: var(--r-pill); background: rgba(212,175,55,.16);
  color: var(--gold-deco); white-space: nowrap; }
.veh-specs { display: grid; gap: 7px; }
.veh-specs li { display: flex; align-items: center; gap: 10px; font-size: .875rem;
  color: var(--muted-dark); }
.veh-specs .ico { width: 17px; height: 17px; color: var(--gold-deco); }
.veh-quote { display: flex; gap: 9px; font-size: .8125rem; color: var(--gold-deco);
  padding-top: var(--space-2); border-top: 1px solid var(--border-dark); }
.veh-quote .ico { width: 15px; height: 15px; margin-top: 3px; flex: 0 0 auto; }
.veh-note { margin-top: var(--space-3); font-size: .8125rem; color: var(--muted-dark);
  line-height: 1.6; }

/* review block */
.review-block { display: grid; gap: 0; border-radius: var(--r-md);
  background: var(--ink-2); border: 1px solid var(--border-dark); padding: var(--space-3); }
.rb-group + .rb-group { margin-top: var(--space-3); padding-top: var(--space-3);
  border-top: 1px solid var(--border-dark); }
.rb-title { font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deco); margin-bottom: 9px; }
.rb-line { display: grid; grid-template-columns: minmax(96px, .4fr) 1fr; gap: 6px var(--space-2);
  padding: 5px 0; font-size: .875rem; }
.rb-line dt { color: var(--muted-dark); }
/* long emails and addresses must wrap rather than widen the panel */
.rb-line dd { color: var(--fg-invert); overflow-wrap: anywhere; }
.ts-v { overflow-wrap: anywhere; }
.review-note { display: flex; gap: 10px; margin-top: var(--space-3); padding: 13px 15px;
  border-radius: var(--r-sm); background: rgba(30,169,82,.1);
  border-left: 3px solid var(--wa); font-size: .8125rem; color: var(--muted-dark);
  line-height: 1.55; }
.review-note .ico { width: 17px; height: 17px; color: var(--wa); flex: 0 0 auto; margin-top: 2px; }

.mail-status { margin-top: var(--space-2); padding: 11px 14px; border-radius: var(--r-sm);
  font-size: .8125rem; line-height: 1.55; color: var(--muted-dark);
  background: rgba(255,255,255,.04); border: 1px solid var(--border-dark); }
.mail-status.is-ok { color: var(--fg-invert); background: rgba(30,169,82,.12);
  border-color: rgba(30,169,82,.5); }
.mail-status.is-err { color: var(--fg-invert); background: rgba(200,60,50,.12);
  border-color: rgba(200,60,50,.5); }

/* Shown only after the email button is pressed — see booking.js */
.mail-fb { margin-top: var(--space-2); padding: 13px 15px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.04); border: 1px solid var(--border-dark); }
.mail-fb-title { font-size: .8125rem; color: var(--fg-invert); margin-bottom: 10px; }
.mail-fb-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.mail-fb-addr { margin-top: 10px; font-size: .8125rem; color: var(--muted-dark); }
.mail-fb-addr a { color: var(--gold-deco); border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease-out); }
.mail-fb-addr a:hover { border-color: var(--gold-deco); }

.modal-foot { display: flex; align-items: center; gap: var(--space-2); flex-wrap: wrap;
  padding: var(--space-3); border-top: 1px solid var(--border-dark); }
.modal-foot-right { display: flex; align-items: center; gap: var(--space-2); margin-left: auto;
  flex-wrap: wrap; }
.modal-err { flex-basis: 100%; margin: 0; padding: 10px 14px; border-radius: var(--r-sm);
  background: rgba(229,103,94,.12); color: #F0A19A; font-size: .8125rem;
  border-left: 3px solid #E5675E; }
@media (max-width: 559px) {
  .modal-foot { flex-direction: column-reverse; align-items: stretch; }
  .modal-foot-right { margin-left: 0; flex-direction: column; align-items: stretch; }
  .modal-foot .btn { width: 100%; }
}

body.is-locked { overflow: hidden; }

/* -------------------------- 21. LEGAL PAGE -------------------------- */
.legal-page { background: var(--cream); }
.legal-main { padding-top: calc(var(--header-h) + var(--space-5));
  padding-bottom: var(--space-7); }
.legal-wrap { max-width: 46rem; }
.legal-title { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem); margin-bottom: var(--space-1); }
.legal-updated { font-size: .8125rem; color: var(--muted); margin-bottom: var(--space-4); }
.legal-lede { font-size: 1.0625rem; color: var(--muted); padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border); }

.legal-sec { margin-top: var(--space-5); }
.legal-sec h2 { font-size: clamp(1.375rem, 1.1rem + 1vw, 1.75rem); margin-bottom: var(--space-2);
  padding-top: var(--space-1); }
.legal-sec p { color: var(--muted); margin-bottom: var(--space-2); max-width: 68ch; }
.legal-sec a { color: var(--gold); border-bottom: 1px solid rgba(161,98,7,.35); }
.legal-sec a:hover { border-bottom-color: var(--gold); }
.legal-addr { font-style: normal; padding: var(--space-2) var(--space-3);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md);
  color: var(--fg) !important; line-height: 1.7; }
.legal-note { font-size: .875rem; color: var(--muted); }

.legal-highlight { padding: var(--space-3); border-radius: var(--r-md);
  background: var(--white); border: 1px solid var(--gold-deco); }
.legal-highlight h2 { margin-top: 0; padding-top: 0; }
.legal-highlight p:last-child { margin-bottom: 0; }

.legal-dl { display: grid; gap: 0; margin-top: var(--space-2); }
.legal-dl dt { font-weight: 500; font-size: .9375rem; color: var(--fg);
  padding-top: var(--space-2); }
.legal-dl dd { margin: 4px 0 0; padding-bottom: var(--space-2); font-size: .9375rem;
  color: var(--muted); border-bottom: 1px solid var(--border); max-width: 68ch; }
.legal-dl dd:last-child { border-bottom: 0; }

.legal-ul { display: grid; gap: 7px; margin-bottom: var(--space-2); }
.legal-ul li { position: relative; padding-left: 20px; color: var(--muted);
  font-size: .9375rem; max-width: 68ch; }
.legal-ul li::before { content: ''; position: absolute; left: 2px; top: .65em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold-deco); }
.legal-ul-spaced li { padding-bottom: 7px; }
.legal-ul strong { color: var(--fg); font-weight: 500; }

.legal-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border); border-radius: var(--r-md); background: var(--white); }
.legal-table { width: 100%; min-width: 34rem; border-collapse: collapse; font-size: .875rem; }
.legal-table th { text-align: left; font-weight: 500; font-size: .6875rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  padding: 12px var(--space-2); border-bottom: 1px solid var(--border); }
.legal-table td { padding: 12px var(--space-2); color: var(--muted);
  border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.55; }
.legal-table tr:last-child td { border-bottom: 0; }

.legal-foot-note { margin-top: var(--space-5); padding-top: var(--space-3);
  border-top: 1px solid var(--border); font-size: .875rem; color: var(--muted);
  font-style: italic; }
.legal-actions { display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin-top: var(--space-4); }

/* --------------------- 22. TOUCH TARGETS (>=44px) ---------------------
   Audited at 375px: these controls measured below the 44x44 minimum.
   Sizes are raised here rather than at each definition so the rule set
   stays auditable against the checklist. */
.lang-btn { min-width: 44px; min-height: 44px; }
.brand { min-height: 44px; }
.step-btn { width: 40px; height: 40px; }
.bk-input-wrap input, .bk-input-wrap select { min-height: 40px; }
.rating-link { padding-block: 10px; }
.cmethod { min-height: 68px; }
.foot-contact a { display: inline-flex; align-items: center; min-height: 44px; }
/* Inline links inside .legal-line are exempt (WCAG 2.5.8 inline-text exception):
   padding them to 44px would break the dense legal block. */
@media (max-width: 699px) {
  .step-btn { width: 44px; height: 44px; }
  .foot-col a { padding-block: 10px; }
  .foot-col { gap: 0; }
  .foot-social a { width: 46px; height: 46px; }
}

/* --------------------------- 23. PRINT --------------------------- */
@media print {
  .site-header, .fab-wa, .booking-wrap, .modal, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .dark, .contact, .hero, .feature { background: #fff !important; color: #000 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
