/* ═══════════════════════════════════════════════════════════════════════════
   BEVERLY HILLS LUX RIDE — HOMEPAGE v3 "Graphite & Emerald"  (2026-07)
   ─────────────────────────────────────────────────────────────────────────
   Scope contract:
   · Page content lives under <main id="hlv" class="home-lux-v3 hp-s">.
     The #hlv ID gives every rule ID-level specificity so the global
     (0,4,0) text repaint in theme-styles.css:148 can never recolor us,
     and the hp-s class uses the site's documented opt-out contract.
   · Chrome (header/footer/floating) overrides are gated behind
     body.home-lux-v3 — this file loads ONLY on the homepage, so nothing
     here can ever reach a landing page.
   · The booking widget markup is FROZEN (includes/booking-widget-hero.php).
     We style .hp-bk-* / state classes (active, is-hid, is-ok, is-err, on)
     and never rename them.
   · Theming: follows html[data-theme="light|dark"] + html[data-accent].
     Emerald is the homepage interaction accent under gold/green accents
     (gold remains the prestige + booking-action color); sapphire under blue.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── 1. TOKENS ─────────────────────────────────────────────────────────── */
.home-lux-v3 {
  /* day (default) */
  --hlv-bg:        #fafbf9;
  --hlv-bg-soft:   #f2f4f2;
  --hlv-card:      #ffffff;
  --hlv-ink:       #101513;
  --hlv-slate:     #545f59;
  --hlv-faint:     #79837d;
  --hlv-line:      rgba(16, 21, 19, 0.09);
  --hlv-line-soft: rgba(16, 21, 19, 0.055);
  --hlv-ac:        #0b6b53;            /* emerald — primary interaction    */
  --hlv-ac-bright: #0f8264;
  --hlv-ac-ink:    #ffffff;
  --hlv-ac-bg:     rgba(11, 107, 83, 0.09);
  --hlv-gold:      #a8823c;            /* champagne ink (AA on pearl)      */
  --hlv-gold-soft: #c7a75a;
  --hlv-gold-grad: linear-gradient(135deg, #e6cd85 0%, #cfab56 52%, #a8823c 100%);
  --hlv-gold-ink:  #221703;
  --hlv-glass:        rgba(255, 255, 255, 0.72);
  --hlv-glass-strong: rgba(255, 255, 255, 0.86);
  --hlv-glass-line:   rgba(255, 255, 255, 0.55);
  --hlv-panel:      #101613;           /* graphite booking panel, both modes */
  --hlv-panel-2:    #161d19;
  --hlv-panel-ink:  #eef3f0;
  --hlv-panel-mut:  rgba(238, 243, 240, 0.6);
  --hlv-panel-line: rgba(255, 255, 255, 0.11);
  --hlv-shadow:    0 22px 56px -28px rgba(22, 32, 27, 0.28);
  --hlv-shadow-lg: 0 34px 90px -36px rgba(22, 32, 27, 0.38);
  --hlv-r:  20px;
  --hlv-r-lg: 26px;
  --hlv-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --hlv-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --hlv-ease: cubic-bezier(0.22, 1, 0.36, 1);

  background: var(--hlv-bg);
  color: var(--hlv-ink);
  font-family: var(--hlv-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* night */
[data-theme="dark"] .home-lux-v3 {
  --hlv-bg:        #0b100e;
  --hlv-bg-soft:   #101613;
  --hlv-card:      #141b17;
  --hlv-ink:       #eef3f0;
  --hlv-slate:     #a3aea8;
  --hlv-faint:     #7d8983;
  --hlv-line:      rgba(255, 255, 255, 0.09);
  --hlv-line-soft: rgba(255, 255, 255, 0.055);
  --hlv-ac:        #2aa584;            /* brighter emerald for dark AA     */
  --hlv-ac-bright: #35b893;
  --hlv-ac-ink:    #06231a;
  --hlv-ac-bg:     rgba(42, 165, 132, 0.13);
  --hlv-gold:      #d3b672;
  --hlv-gold-soft: #e0c98d;
  --hlv-glass:        rgba(16, 22, 19, 0.66);
  --hlv-glass-strong: rgba(16, 22, 19, 0.82);
  --hlv-glass-line:   rgba(255, 255, 255, 0.13);
  --hlv-shadow:    0 26px 64px -30px rgba(0, 0, 0, 0.72);
  --hlv-shadow-lg: 0 38px 100px -38px rgba(0, 0, 0, 0.82);
}

/* accent mapping: sapphire owners keep their choice; green/gold → emerald  */
html[data-accent="blue"] .home-lux-v3 {
  --hlv-ac: #2563eb; --hlv-ac-bright: #3b76f0; --hlv-ac-ink: #ffffff;
  --hlv-ac-bg: rgba(37, 99, 235, 0.1);
}
html[data-theme="dark"][data-accent="blue"] .home-lux-v3 {
  --hlv-ac: #6d9bf5; --hlv-ac-bright: #85acf7; --hlv-ac-ink: #0a1a33;
  --hlv-ac-bg: rgba(109, 155, 245, 0.14);
}
html[data-accent="green"] .home-lux-v3 { --hlv-ac: #0b6b53; }
html[data-theme="dark"][data-accent="green"] .home-lux-v3 { --hlv-ac: #2aa584; }

/* normalized accent tokens — every supported accent assigns ALL of them, so
   motion/glow/border styling never hardcodes one accent's hex. Transforms and
   timings live entirely outside these tokens: switching accent recolors,
   never re-animates. */
.home-lux-v3 {
  --accent:          var(--hlv-ac);
  --accent-rgb:      11 107 83;
  --accent-soft:     var(--hlv-ac-bg);
  --accent-border:   rgb(var(--accent-rgb) / 0.45);
  --accent-glow:     0 12px 32px -12px rgb(var(--accent-rgb) / 0.55);
  --accent-contrast: var(--hlv-ac-ink);
}
[data-theme="dark"] .home-lux-v3 { --accent-rgb: 42 165 132; }
html[data-accent="blue"] .home-lux-v3 { --accent-rgb: 37 99 235; }
html[data-theme="dark"][data-accent="blue"] .home-lux-v3 { --accent-rgb: 109 155 245; }
html[data-accent="green"] .home-lux-v3 { --accent-rgb: 11 107 83; }
html[data-theme="dark"][data-accent="green"] .home-lux-v3 { --accent-rgb: 42 165 132; }

/* accent switches recolor smoothly (color/border/shadow only — transform
   transitions are declared separately on each component and stay untouched) */
#hlv .hlv-eyebrow, #hlv .hlv-h2 em, #hlv .hlv-step-num, #hlv .hlv-fleet-tag,
#hlv .hlv-card-tag, #hlv .hlv-trust-item, #hlv .hlv-faq-q svg {
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* ── 2. FOUNDATIONS ────────────────────────────────────────────────────── */
#hlv *, #hlv *::before, #hlv *::after { box-sizing: border-box; }
#hlv img { display: block; max-width: 100%; height: auto; }
#hlv a { color: inherit; text-decoration: none; }
#hlv :focus-visible {
  outline: 2px solid var(--hlv-ac-bright);
  outline-offset: 3px;
  border-radius: 6px;
}
#hlv .hlv-wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(18px, 3vw, 28px); }
#hlv .hlv-sec { padding: clamp(56px, 7vw, 92px) 0; position: relative; }
#hlv .hlv-sec--soft { background: var(--hlv-bg-soft); border-top: 1px solid var(--hlv-line-soft); border-bottom: 1px solid var(--hlv-line-soft); }

#hlv .hlv-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--hlv-ac-bright); margin: 0 0 16px;
}
#hlv .hlv-eyebrow::before { content: ''; width: 30px; height: 1px; background: linear-gradient(90deg, transparent, var(--hlv-ac-bright)); }
#hlv .hlv-eyebrow--center::after { content: ''; width: 30px; height: 1px; background: linear-gradient(270deg, transparent, var(--hlv-ac-bright)); }
#hlv .hlv-eyebrow--gold { color: var(--hlv-gold); }
#hlv .hlv-eyebrow--gold::before, #hlv .hlv-eyebrow--gold::after { background: linear-gradient(90deg, transparent, var(--hlv-gold)); }

#hlv .hlv-h2 {
  font-family: var(--hlv-serif); font-weight: 600;
  font-size: clamp(30px, 3.6vw, 46px); line-height: 1.1;
  letter-spacing: 0.002em; margin: 0 0 14px; color: var(--hlv-ink);
}
#hlv .hlv-h2 em { font-style: italic; color: var(--hlv-ac); }
#hlv .hlv-lead {
  font-size: clamp(15.5px, 1.2vw, 17px); font-weight: 400; line-height: 1.75;
  color: var(--hlv-slate); max-width: 62ch; margin: 0;
}
#hlv .hlv-center { text-align: center; }
#hlv .hlv-center .hlv-lead { margin-inline: auto; }
#hlv .hlv-ico { width: 20px; height: 20px; flex: 0 0 auto; }

/* ── LAYERED REVEALS — armed ONLY when home-lux-v3.js has booted (.hlv-js on
   #hlv); without JS every element stays fully visible. One-time, container-
   observed, choreographed per element role:
   eyebrow → headline (+90ms, 18px rise) → copy (+200ms) → media (masked)
   → cards (staggered) → CTA last. */

/* base: simple containers reveal as a block */
#hlv.hlv-js [data-rv] { opacity: 0; transform: translateY(16px); transition: opacity 0.65s ease, transform 0.7s var(--hlv-ease); }
#hlv.hlv-js [data-rv].in { opacity: 1; transform: none; }

/* choreographed containers stay visible — their children carry the motion */
#hlv.hlv-js :is(.hlv-center, .hlv-cards, .hlv-rev-grid, .hlv-steps, .hlv-routes, .hlv-faq, .hlv-fleet)[data-rv] { opacity: 1; transform: none; }

/* section header blocks */
#hlv.hlv-js .hlv-center[data-rv] .hlv-eyebrow { opacity: 0; transition: opacity 0.55s ease; }
#hlv.hlv-js .hlv-center[data-rv] .hlv-h2 { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease 0.09s, transform 0.72s var(--hlv-ease) 0.09s; }
#hlv.hlv-js .hlv-center[data-rv] :is(.hlv-lead, .hlv-rev-head) { opacity: 0; transform: translateY(12px); transition: opacity 0.6s ease 0.2s, transform 0.65s var(--hlv-ease) 0.2s; }
#hlv.hlv-js .hlv-center[data-rv].in :is(.hlv-eyebrow, .hlv-h2, .hlv-lead, .hlv-rev-head) { opacity: 1; transform: none; }

/* card & step grids: stagger children */
#hlv.hlv-js :is(.hlv-cards, .hlv-rev-grid, .hlv-steps)[data-rv] > * { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.78s var(--hlv-ease); }
#hlv.hlv-js :is(.hlv-cards, .hlv-rev-grid, .hlv-steps)[data-rv].in > * { opacity: 1; transform: none; }
#hlv.hlv-js [data-rv].in > *:nth-child(2) { transition-delay: 0.09s; }
#hlv.hlv-js [data-rv].in > *:nth-child(3) { transition-delay: 0.18s; }
#hlv.hlv-js [data-rv].in > *:nth-child(4) { transition-delay: 0.27s; }
#hlv.hlv-js [data-rv].in > *:nth-child(5) { transition-delay: 0.36s; }
#hlv.hlv-js [data-rv].in > *:nth-child(6) { transition-delay: 0.45s; }

/* route chips: lighter, quicker cascade */
#hlv.hlv-js .hlv-routes[data-rv] > * { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.55s var(--hlv-ease); }
#hlv.hlv-js .hlv-routes[data-rv].in > * { opacity: 1; transform: none; }
#hlv.hlv-js .hlv-routes[data-rv].in > *:nth-child(n+7) { transition-delay: 0.42s; }

/* FAQ rows */
#hlv.hlv-js .hlv-faq[data-rv] > * { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.6s var(--hlv-ease); }
#hlv.hlv-js .hlv-faq[data-rv].in > * { opacity: 1; transform: none; }

/* large imagery: soft masked reveal */
#hlv.hlv-js .hlv-exp[data-rv] { transform: none; clip-path: inset(7% 4% 7% 4% round var(--hlv-r-lg)); transition: opacity 0.9s ease, clip-path 1.05s var(--hlv-ease); }
#hlv.hlv-js .hlv-exp[data-rv].in { clip-path: inset(0 0 0 0 round var(--hlv-r-lg)); }

/* fleet: cards drive in from the right, one after another (JS starts
   autoplay only after this entrance completes) */
#hlv.hlv-js .hlv-fleet[data-rv] .hlv-fleet-card { opacity: 0; transform: translateX(38px); transition: opacity 0.7s ease, transform 0.8s var(--hlv-ease); }
#hlv.hlv-js .hlv-fleet[data-rv].in .hlv-fleet-card { opacity: 1; transform: none; }
#hlv.hlv-js .hlv-fleet[data-rv].in .hlv-fleet-card:nth-child(2) { transition-delay: 0.1s; }
#hlv.hlv-js .hlv-fleet[data-rv].in .hlv-fleet-card:nth-child(3) { transition-delay: 0.2s; }
#hlv.hlv-js .hlv-fleet[data-rv].in .hlv-fleet-card:nth-child(4) { transition-delay: 0.3s; }
#hlv.hlv-js .hlv-fleet[data-rv].in .hlv-fleet-card:nth-child(5) { transition-delay: 0.4s; }

/* final band: CTAs land last */
#hlv.hlv-js .hlv-final[data-rv] .hlv-final-ctas { opacity: 0; transform: translateY(10px); transition: opacity 0.6s ease 0.28s, transform 0.65s var(--hlv-ease) 0.28s; }
#hlv.hlv-js .hlv-final[data-rv].in .hlv-final-ctas { opacity: 1; transform: none; }

/* ── 3. HEADER — homepage glass & hide/reveal behavior ────────────────── */
body.home-lux-v3 .site-header {
  transition: background 0.35s ease, border-color 0.35s ease, height 0.3s ease,
              transform 0.3s var(--hlv-ease, cubic-bezier(0.22, 1, 0.36, 1)),
              box-shadow 0.35s ease;
  will-change: transform;
}
/* over the hero: discreet dark glass, light chrome */
body.home-lux-v3:not(.hlv-head-solid):not(.menu-open) .site-header {
  background: linear-gradient(180deg, rgba(10, 14, 12, 0.52) 0%, rgba(10, 14, 12, 0.18) 78%, transparent 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: transparent;
  box-shadow: none;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  body.home-lux-v3:not(.hlv-head-solid):not(.menu-open) .site-header { background: rgba(10, 14, 12, 0.78); }
}
body.home-lux-v3:not(.hlv-head-solid):not(.menu-open) .site-header .logo,
body.home-lux-v3:not(.hlv-head-solid):not(.menu-open) .site-header .logo-text,
body.home-lux-v3:not(.hlv-head-solid):not(.menu-open) .site-header .logo-text b,
body.home-lux-v3:not(.hlv-head-solid):not(.menu-open) .site-header .logo-op,
body.home-lux-v3:not(.hlv-head-solid):not(.menu-open) .site-header .nav-link:not(.nav-cta),
body.home-lux-v3:not(.hlv-head-solid):not(.menu-open) .site-header .dropdown-toggle,
body.home-lux-v3:not(.hlv-head-solid):not(.menu-open) .site-header .settings-gear { color: #f4f7f5 !important; }
body.home-lux-v3:not(.hlv-head-solid):not(.menu-open) .site-header .logo-text b i { color: var(--logo-gold-soft, #e4cb88) !important; }
body.home-lux-v3:not(.hlv-head-solid):not(.menu-open) .site-header .logo-op-co { color: var(--logo-gold-soft, #e4cb88) !important; }
body.home-lux-v3:not(.hlv-head-solid):not(.menu-open) .site-header .logo-text small { color: rgba(244, 247, 245, 0.72) !important; }
body.home-lux-v3:not(.hlv-head-solid):not(.menu-open) .site-header .mobile-toggle span { background: #f4f7f5; }
body.home-lux-v3:not(.hlv-head-solid):not(.menu-open) .site-header .nav-link:not(.nav-cta):hover,
body.home-lux-v3:not(.hlv-head-solid):not(.menu-open) .site-header .dropdown-toggle:hover { background: rgba(255, 255, 255, 0.12); }
/* past the hero: readable theme glass */
body.home-lux-v3.hlv-head-solid .site-header {
  background: var(--hlv-hd, rgba(250, 251, 249, 0.78));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 12px 34px -18px rgba(18, 26, 22, 0.22);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  body.home-lux-v3.hlv-head-solid .site-header { background: #fafbf9; }
  [data-theme="dark"] body.home-lux-v3.hlv-head-solid .site-header { background: #0d1210; }
}
[data-theme="dark"] body.home-lux-v3.hlv-head-solid .site-header { --hlv-hd: rgba(13, 18, 16, 0.78); }
/* hide on scroll-down, reveal on scroll-up (JS toggles the class) */
body.home-lux-v3 .site-header.hlv-head-hidden { transform: translateY(-102%); }
/* never lose the header while the mobile drawer is open */
body.home-lux-v3.menu-open .site-header { transform: none; }

/* ── 4. HERO ───────────────────────────────────────────────────────────── */
#hlv .hlv-hero {
  position: relative; isolation: isolate; overflow: clip;
  display: flex; align-items: flex-end;
  min-height: clamp(560px, 86svh, 860px);
  padding: clamp(140px, 18vh, 200px) 0 clamp(210px, 22vw, 250px);
}
#hlv .hlv-hero-media { position: absolute; inset: 0; z-index: -2; }
#hlv .hlv-hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 72% 38%;
}
#hlv.hlv-js .hlv-hero-media img { transform: scale(1.025); }
#hlv.hlv-js.hlv-hero-in .hlv-hero-media img { transform: scale(1); transition: transform 1.7s var(--hlv-ease); }
/* cinematic scrim — graphite left field for copy, soft base for the panel */
#hlv .hlv-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(78deg, rgba(9, 13, 11, 0.78) 0%, rgba(9, 13, 11, 0.55) 34%, rgba(9, 13, 11, 0.12) 62%, rgba(9, 13, 11, 0) 78%),
    linear-gradient(180deg, rgba(9, 13, 11, 0.30) 0%, rgba(9, 13, 11, 0) 26%, rgba(9, 13, 11, 0) 55%, rgba(9, 13, 11, 0.62) 100%);
}
#hlv .hlv-hero-inner { width: 100%; }
#hlv .hlv-hero-copy { max-width: 640px; }
#hlv .hlv-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase;
  color: #e7d9ac; margin: 0 0 20px;
}
#hlv .hlv-hero-eyebrow::before { content: ''; width: 34px; height: 1px; background: linear-gradient(90deg, transparent, #e7d9ac); }
#hlv .hlv-hero h1 {
  font-family: var(--hlv-serif); font-weight: 600;
  font-size: clamp(42px, 5.4vw, 72px); line-height: 1.03; letter-spacing: 0.002em;
  color: #fbfdfb; margin: 0 0 20px;
  text-wrap: balance;
}
#hlv .hlv-hero h1 em { font-style: italic; color: #dcc17b; }
#hlv .hlv-hero-sub {
  font-size: clamp(15.5px, 1.25vw, 17.5px); font-weight: 350; line-height: 1.72;
  color: rgba(240, 245, 242, 0.88); max-width: 56ch; margin: 0 0 30px;
}
#hlv .hlv-hero-ctas { display: flex; flex-wrap: wrap; gap: 13px; }
#hlv .hlv-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 30px; border-radius: 999px; border: 0; cursor: pointer;
  font: 700 14px/1 var(--hlv-sans); letter-spacing: 0.04em; white-space: nowrap;
  transition: transform 0.22s var(--hlv-ease), box-shadow 0.28s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}
#hlv .hlv-btn svg { width: 17px; height: 17px; transition: transform 0.25s var(--hlv-ease); }
#hlv .hlv-btn--gold:hover svg, #hlv .hlv-btn--emerald:hover svg { transform: translateX(3px); }
#hlv .hlv-btn--gold {
  background: var(--hlv-gold-grad); color: var(--hlv-gold-ink);
  box-shadow: 0 16px 36px -14px rgba(207, 171, 86, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
#hlv .hlv-btn--gold:hover { transform: translateY(-2px); box-shadow: 0 22px 46px -14px rgba(207, 171, 86, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.55); }
#hlv .hlv-btn--gold:active { transform: translateY(0); }
#hlv .hlv-btn--ghost {
  background: rgba(255, 255, 255, 0.09); color: #f5f8f6;
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
#hlv .hlv-btn--ghost:hover { border-color: #dcc17b; color: #eede9f; transform: translateY(-2px); }
#hlv .hlv-btn--emerald {
  background: var(--hlv-ac); color: var(--hlv-ac-ink);
  box-shadow: 0 14px 32px -14px var(--hlv-ac);
}
#hlv .hlv-btn--emerald:hover { background: var(--hlv-ac-bright); transform: translateY(-2px); }
#hlv .hlv-btn--line {
  background: transparent; color: var(--hlv-ink);
  border: 1px solid var(--hlv-line); box-shadow: none;
}
#hlv .hlv-btn--line:hover { border-color: var(--hlv-ac); color: var(--hlv-ac); transform: translateY(-2px); }

/* ── 5. BOOKING PANEL — graphite glass over the hero base ─────────────── */
#hlv .hlv-bookzone { position: relative; z-index: 3; margin-top: clamp(-190px, -16vw, -120px); padding-bottom: 6px; }
#hlv .hlv-bookpanel {
  position: relative; overflow: hidden;
  /* substantial graphite glass: translucent enough that the hero photograph
     reads through it, thick enough that fields stay perfectly legible */
  background:
    radial-gradient(130% 100% at 50% -25%, rgba(207, 171, 86, 0.09) 0%, transparent 50%),
    linear-gradient(172deg, rgba(20, 27, 24, 0.76) 0%, rgba(16, 22, 19, 0.72) 40%, rgba(13, 18, 15, 0.9) 100%);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--hlv-r-lg);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.24),
    0 8px 28px rgba(0, 0, 0, 0.16),
    var(--hlv-shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22);
  padding: clamp(24px, 3vw, 38px) clamp(20px, 3vw, 36px) clamp(20px, 2.4vw, 30px);
  color: var(--hlv-panel-ink);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  #hlv .hlv-bookpanel { background: rgba(18, 24, 22, 0.97); }
}
#hlv .hlv-bookpanel::after {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 205, 133, 0.75), transparent);
  pointer-events: none;
}
#hlv .hlv-bookpanel-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin: 0 0 16px; }
#hlv .hlv-bookpanel-title {
  font-family: var(--hlv-serif); font-weight: 600; font-size: clamp(21px, 2.2vw, 27px);
  color: var(--hlv-panel-ink); margin: 0; letter-spacing: 0.002em;
}
#hlv .hlv-bookpanel-title b { color: var(--hlv-gold-soft); font-weight: 600; }
#hlv .hlv-bookpanel-note { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--hlv-panel-mut); }
#hlv .hlv-bookpanel-note strong { color: var(--hlv-gold-soft); font-weight: 700; }

/* — frozen widget reskin (.hp-bk-* markup, styling is host-page's job) — */
#hlv .hp-bk { max-width: none; margin: 0; text-align: left; font-family: var(--hlv-sans); }
#hlv .hp-bk-tabs {
  display: inline-flex; gap: 4px; padding: 4px; margin: 0 0 14px;
  background: rgba(0, 0, 0, 0.42); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px; box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.45);
}
#hlv .hp-bk-tab {
  padding: 10px 20px; min-height: 40px; background: transparent; border: 0; cursor: pointer;
  color: var(--hlv-panel-mut); font: 650 12.5px/1 var(--hlv-sans); letter-spacing: 0.04em;
  border-radius: 999px; transition: color 0.2s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
#hlv .hp-bk-tab:hover:not(.active) { color: var(--hlv-panel-ink); }
#hlv .hp-bk-tab.active {
  background: var(--hlv-gold-grad); color: var(--hlv-gold-ink);
  box-shadow: 0 6px 16px -6px rgba(207, 171, 86, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
#hlv .hp-bk-bar { display: grid; grid-template-columns: 1.3fr 1.3fr 0.85fr 1fr auto; gap: 10px; align-items: stretch; }
#hlv .hp-bk-f {
  position: relative; padding: 10px 15px; border-radius: 14px; min-width: 0; min-height: 60px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.035) 100%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 -10px 20px -16px rgba(0, 0, 0, 0.55);
  display: flex; flex-direction: column; justify-content: center; gap: 3px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
#hlv .hp-bk-f:hover { border-color: rgba(230, 205, 133, 0.4); }
#hlv .hp-bk-f:focus-within {
  border-color: var(--hlv-ac-bright);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hlv-ac-bright) 22%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
#hlv .hp-bk-f.is-hid { display: none; }
#hlv .hp-bk-f label {
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--hlv-panel-mut); cursor: pointer;
}
#hlv .hp-bk-wrap { display: flex; align-items: center; gap: 9px; min-width: 0; }
#hlv .hp-bk-point { width: 17px; height: 17px; display: inline-grid; place-items: center; flex: 0 0 auto; }
#hlv .hp-bk-point svg { width: 14px; height: 14px; display: block; }
#hlv .hp-bk-point--pu { color: var(--hlv-ac-bright); }
#hlv .hp-bk-point--do { color: #e08d8d; }
#hlv .hp-bk-ico { width: 15px; height: 15px; color: var(--hlv-gold-soft); flex: 0 0 auto; opacity: 0.92; }
#hlv .hp-bk-caret { width: 12px; height: 12px; color: var(--hlv-gold-soft); opacity: 0.5; margin-left: auto; flex: 0 0 auto; }
#hlv .hp-bk-check {
  width: 15px; height: 15px; color: var(--hlv-ac-bright); flex: 0 0 auto; margin-left: auto;
  opacity: 0; transform: scale(0.5);
  transition: opacity 0.25s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#hlv .hp-bk-f.is-ok .hp-bk-check { opacity: 1; transform: scale(1); }
#hlv .hp-bk-f.is-ok { border-color: color-mix(in srgb, var(--hlv-ac-bright) 55%, transparent); }
#hlv .hp-bk-f.is-err { border-color: rgba(224, 141, 141, 0.6); }
#hlv .hp-bk-f.is-err .hp-bk-point { animation: hlvShake 0.4s ease-in-out; }
@keyframes hlvShake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-3px); } 75% { transform: translateX(3px); } }
#hlv .hp-bk-f input, #hlv .hp-bk-f select {
  width: 100%; min-width: 0; border: 0; background: transparent; color: var(--hlv-panel-ink);
  font-size: 16px; font-weight: 500; padding: 0; outline: none;
  font-family: var(--hlv-sans); appearance: none; -webkit-appearance: none; line-height: 1.3; cursor: pointer;
}
/* address inputs: real text fields — text caret, full flex width, and a
   graceful tail-ellipsis only when unfocused (a focused input scrolls with
   the caret natively, so the full address stays typeable and readable) */
#hlv .hp-bk-f input[type="text"] { cursor: text; flex: 1 1 auto; text-overflow: ellipsis; }
#hlv .hp-bk-f input::placeholder { color: rgba(238, 243, 240, 0.44); font-weight: 400; }
#hlv .hp-bk-f input[type="date"] { color-scheme: dark; cursor: pointer; }
#hlv .hp-bk-f input[type="date"]::-webkit-calendar-picker-indicator,
#hlv .hp-bk-f input[type="time"]::-webkit-calendar-picker-indicator { opacity: 0; width: 0; height: 0; padding: 0; margin: 0; }
#hlv .hp-bk-f input[type="date"]::-webkit-datetime-edit { color: var(--hlv-panel-ink); font-weight: 600; padding: 0; }
#hlv .hp-bk-f input[type="date"]::-webkit-datetime-edit-text { color: rgba(238, 243, 240, 0.42); padding: 0 1px; }
#hlv .hp-bk-time-group { display: inline-flex; align-items: center; gap: 0; width: fit-content; white-space: nowrap; }
#hlv .hp-bk-f select.hp-bk-time-sel { width: 2.6ch; min-width: 0; flex: 0 0 auto; padding: 0; font-weight: 600; font-variant-numeric: tabular-nums; }
#hlv .hp-bk-f select#hpTimeHour { text-align: right; text-align-last: right; }
#hlv .hp-bk-time-sep { color: rgba(238, 243, 240, 0.4); font-weight: 600; padding: 0 2px; flex: 0 0 auto; }
#hlv .hp-bk-f select.hp-bk-time-ampm { color: var(--hlv-gold-soft); width: 3.4ch; }
#hlv .hp-bk-submit {
  position: relative; overflow: hidden;
  align-self: stretch; padding: 0 28px; min-height: 60px;
  background: var(--hlv-gold-grad); background-size: 200% auto; color: var(--hlv-gold-ink);
  border: 0; border-radius: 14px; cursor: pointer;
  font: 800 13px/1.2 var(--hlv-sans); letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; white-space: nowrap;
  box-shadow: 0 14px 32px -12px rgba(207, 171, 86, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -2px 0 rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background-position 0.4s ease;
  -webkit-tap-highlight-color: transparent;
}
#hlv .hp-bk-submit svg { width: 15px; height: 15px; color: var(--hlv-gold-ink); }
#hlv .hp-bk-submit:hover { transform: translateY(-2px); background-position: right center; box-shadow: 0 18px 42px -12px rgba(207, 171, 86, 0.78), inset 0 1px 0 rgba(255, 255, 255, 0.55); }
#hlv .hp-bk-submit:active { transform: translateY(0); }
#hlv .hp-bk-submit::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
  transform: skewX(-18deg); transition: left 0.55s ease; pointer-events: none;
}
#hlv .hp-bk-submit:hover::after { left: 135%; }
#hlv .hp-bk-trust {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin: 14px 0 0; font-size: 11.5px; font-weight: 500; color: var(--hlv-panel-mut); letter-spacing: 0.03em;
}
#hlv .hp-bk-trust svg { width: 12px; height: 12px; color: var(--hlv-gold-soft); }
#hlv .hp-bk-notice {
  display: none; align-items: center; gap: 9px; margin: 12px 0 0; padding: 12px 16px;
  border-radius: 12px; font-size: 13px; font-weight: 500;
  background: rgba(224, 141, 141, 0.12); border: 1px solid rgba(224, 141, 141, 0.42); color: #f3c1c1;
}
#hlv .hp-bk-notice.on { display: flex; }
#hlv .hp-bk-notice svg { width: 15px; height: 15px; flex: 0 0 auto; }
@media (max-width: 1023px) {
  #hlv .hp-bk-bar { grid-template-columns: 1fr 1fr; }
  #hlv .hp-bk-f--lg, #hlv .hp-bk-submit { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  #hlv .hp-bk-bar { gap: 8px; }
  #hlv .hp-bk-f { padding: 9px 13px; min-height: 56px; }
  #hlv .hp-bk-tab { padding: 9px 13px; font-size: 11.5px; }
}

/* Google Places dropdown — premium floating glass panel, themed per mode and
   accent. Page-scoped by delivery (this file loads only on the homepage);
   doubled class beats the l4r sheet's rules. The panel is body-appended by
   Google, so no ancestor overflow can clip it; z-index sits above the header
   (1101) and booking panel, below full-screen modals (100002+). */
.home-lux-v3 { --hlv-pac-ac: 168 130 60; }                     /* gold accent → gold */
[data-theme="dark"] .home-lux-v3 { --hlv-pac-ac: 211 182 114; }
html[data-accent="green"] .home-lux-v3 { --hlv-pac-ac: 11 107 83; }
html[data-theme="dark"][data-accent="green"] .home-lux-v3 { --hlv-pac-ac: 42 165 132; }
html[data-accent="blue"] .home-lux-v3 { --hlv-pac-ac: 37 99 235; }
html[data-theme="dark"][data-accent="blue"] .home-lux-v3 { --hlv-pac-ac: 109 155 245; }

.pac-container.pac-container {
  background: #131a16 !important;
  border: 1px solid rgb(var(--hlv-pac-ac, 211 182 114) / 0.34) !important;
  border-radius: 14px !important; margin-top: 8px !important; padding: 5px 0 !important;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55), 0 4px 16px rgba(0, 0, 0, 0.3) !important;
  font-family: 'Inter', sans-serif !important;
  z-index: 100001 !important;
  overflow: hidden;
}
/* day mode: warm pearl surface, charcoal text, accent-lit selection */
[data-theme="light"] .pac-container.pac-container {
  background: rgba(250, 249, 245, 0.98) !important;
  border: 1px solid rgb(var(--hlv-pac-ac, 168 130 60) / 0.24) !important;
  box-shadow: 0 18px 50px rgba(20, 20, 18, 0.2), 0 4px 14px rgba(20, 20, 18, 0.1) !important;
}
[data-theme="light"] .pac-container.pac-container .pac-item { color: rgba(35, 42, 38, 0.78) !important; }
[data-theme="light"] .pac-container.pac-container .pac-item-query { color: #161b18 !important; }
[data-theme="light"] .pac-container.pac-container .pac-matched { color: rgb(var(--hlv-pac-ac, 168 130 60)) !important; font-weight: 700 !important; }
[data-theme="light"] .pac-container.pac-container .pac-item:hover,
[data-theme="light"] .pac-container.pac-container .pac-item-selected {
  background: rgb(var(--hlv-pac-ac, 168 130 60) / 0.1) !important;
}
/* keyboard-highlighted row: visible accent rail in both themes */
.pac-container.pac-container .pac-item-selected {
  box-shadow: inset 2.5px 0 0 rgb(var(--hlv-pac-ac, 211 182 114)) !important;
}
.pac-container.pac-container {
  /* long airport/hotel addresses: give the dropdown room and let rows wrap */
  min-width: min(440px, calc(100vw - 28px)) !important;
  max-width: calc(100vw - 28px) !important;
}
.pac-container.pac-container .pac-item {
  padding: 12px 18px !important; min-height: 44px; height: auto !important;
  box-sizing: border-box; display: block;
  border: none !important; cursor: pointer; line-height: 1.5 !important;
  color: rgba(238, 243, 240, 0.78) !important; font-size: 13px !important;
  white-space: normal !important; overflow: visible !important; text-overflow: clip !important;
}
.pac-container.pac-container .pac-item span { white-space: normal !important; }
.pac-container.pac-container .pac-item:hover,
.pac-container.pac-container .pac-item-selected { background: rgb(var(--hlv-pac-ac, 211 182 114) / 0.14) !important; }
.pac-container.pac-container .pac-item-query { color: #fff !important; font-size: 15px !important; font-weight: 600 !important; }
.pac-container.pac-container .pac-matched { color: #e0c98d !important; }
.pac-container.pac-container .pac-icon, .pac-container.pac-container .pac-icon-marker { display: none !important; }
.pac-container.pac-container .pac-logo::after { filter: grayscale(1) invert(1) brightness(1.4); opacity: 0.55; }

/* ── 6. TRUST STRIP ────────────────────────────────────────────────────── */
#hlv .hlv-trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 22px;
}
#hlv .hlv-trust-item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 5px;
  padding: 22px 14px 20px;
  /* glass look without backdrop-filter: the strip sits on a flat pearl field,
     so blur has nothing to sample — a translucent layered surface reads the
     same and paints reliably everywhere */
  background: linear-gradient(180deg, var(--hlv-glass-strong) 0%, var(--hlv-glass) 100%);
  border: 1px solid var(--hlv-glass-line); border-radius: var(--hlv-r);
  box-shadow: var(--hlv-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
#hlv .hlv-trust-num {
  font-family: var(--hlv-serif); font-weight: 600; font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1; color: var(--hlv-ink); letter-spacing: 0.01em;
}
#hlv .hlv-trust-label { font-size: 12px; font-weight: 650; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hlv-faint); }
#hlv .hlv-stars { display: inline-flex; gap: 2px; color: var(--hlv-gold-soft); margin-bottom: 2px; }
#hlv .hlv-stars svg { width: 17px; height: 17px; }
@media (max-width: 900px) { #hlv .hlv-trust { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ── 7. SIGNATURE SERVICES — editorial photo cards ─────────────────────── */
#hlv .hlv-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
#hlv .hlv-card {
  display: flex; flex-direction: column; overflow: hidden; position: relative;
  background: var(--hlv-card); border: 1px solid var(--hlv-line);
  border-radius: var(--hlv-r-lg); box-shadow: var(--hlv-shadow);
  transition: transform 0.3s var(--hlv-ease), border-color 0.3s ease, box-shadow 0.3s ease;
}
#hlv a.hlv-card:hover { transform: translateY(-4px); border-color: var(--accent-border, color-mix(in srgb, var(--hlv-ac) 45%, transparent)); box-shadow: var(--hlv-shadow-lg), var(--accent-glow, 0 0 0 transparent); }
/* subtle 3D: pointer devices only, ~1 degree — depth, never a gimmick */
@media (hover: hover) and (pointer: fine) {
  #hlv a.hlv-card:hover { transform: perspective(1100px) translateY(-4px) rotateX(1deg); }
  #hlv .hlv-fleet-card:hover { transform: perspective(1100px) translateY(-3px) rotateX(0.8deg); }
}
#hlv .hlv-card-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--hlv-bg-soft); }
#hlv .hlv-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--hlv-ease); }
#hlv a.hlv-card:hover .hlv-card-media img { transform: scale(1.045); }
#hlv .hlv-card-tag {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: #f4f7f5; padding: 7px 12px; border-radius: 999px;
  background: rgba(11, 16, 13, 0.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
#hlv .hlv-card-body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 24px; }
#hlv .hlv-card-body h3 {
  font-family: var(--hlv-serif); font-weight: 600; font-size: 23px; line-height: 1.15;
  color: var(--hlv-ink); margin: 0 0 8px;
}
#hlv .hlv-card-body p { font-size: 14px; font-weight: 400; line-height: 1.68; color: var(--hlv-slate); margin: 0 0 16px; }
#hlv .hlv-card-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: auto; min-height: 24px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.03em; color: var(--hlv-ac);
}
#hlv .hlv-card-link svg { width: 15px; height: 15px; transition: transform 0.25s var(--hlv-ease); }
#hlv a.hlv-card:hover .hlv-card-link svg { transform: translateX(4px); }
@media (max-width: 980px) { #hlv .hlv-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { #hlv .hlv-cards { grid-template-columns: 1fr; gap: 16px; } }

/* ── 8. ROUTES RAIL ────────────────────────────────────────────────────── */
#hlv .hlv-routes { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 36px; }
#hlv .hlv-route {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 11px 19px;
  background: var(--hlv-card); border: 1px solid var(--hlv-line); border-radius: 999px;
  font-size: 13.5px; font-weight: 600; color: var(--hlv-slate);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--hlv-ease);
}
#hlv .hlv-route:hover { color: var(--hlv-ac); border-color: var(--hlv-ac); transform: translateY(-2px); }
#hlv .hlv-route svg { width: 13px; height: 13px; color: var(--hlv-ac); }

/* ── 9. FLEET RAIL ─────────────────────────────────────────────────────── */
#hlv .hlv-fleet { position: relative; margin-top: 40px; }
#hlv .hlv-fleet-track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 20px; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  cursor: grab;
}
#hlv .hlv-fleet-track.is-drag { cursor: grabbing; scroll-snap-type: none; }
#hlv .hlv-fleet-track::-webkit-scrollbar { display: none; }
#hlv .hlv-fleet-card {
  flex: 0 0 min(330px, 80vw); scroll-snap-align: center;
  background: var(--hlv-card); border: 1px solid var(--hlv-line);
  border-radius: var(--hlv-r-lg); padding: 22px 22px 24px; position: relative; overflow: hidden;
  box-shadow: var(--hlv-shadow);
  transition: border-color 0.25s ease, transform 0.25s var(--hlv-ease);
}
#hlv .hlv-fleet-card:hover { border-color: color-mix(in srgb, var(--hlv-ac) 45%, transparent); transform: translateY(-3px); }
#hlv .hlv-fleet-card::before {
  content: ''; position: absolute; left: 12%; right: 12%; bottom: 74px; height: 26px;
  border-radius: 50%; background: radial-gradient(closest-side, rgba(14, 20, 17, 0.22), transparent 70%);
  filter: blur(5px);
}
[data-theme="dark"] #hlv .hlv-fleet-card::before { background: radial-gradient(closest-side, rgba(0, 0, 0, 0.55), transparent 70%); }
#hlv .hlv-fleet-card img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: contain; margin: 4px 0 14px; position: relative;
  filter: drop-shadow(0 18px 20px rgba(14, 20, 17, 0.2));
  transition: transform 0.4s var(--hlv-ease);
}
#hlv .hlv-fleet-card:hover img { transform: translateY(-5px) scale(1.02); }
#hlv .hlv-fleet-tag {
  position: absolute; top: 16px; right: 16px; z-index: 1;
  font-size: 10px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--hlv-ac); background: var(--hlv-ac-bg);
  border: 1px solid color-mix(in srgb, var(--hlv-ac) 55%, transparent);
  padding: 6px 11px; border-radius: 999px;
}
#hlv .hlv-fleet-tag--gold { color: var(--hlv-gold); background: rgba(199, 167, 90, 0.12); border-color: rgba(199, 167, 90, 0.5); }
#hlv .hlv-fleet-card h3 { font-family: var(--hlv-serif); font-size: 23px; font-weight: 600; margin: 0 0 5px; color: var(--hlv-ink); }
#hlv .hlv-fleet-meta { display: flex; gap: 16px; font-size: 12.5px; font-weight: 500; color: var(--hlv-slate); margin-bottom: 15px; }
#hlv .hlv-fleet-meta span { display: inline-flex; align-items: center; gap: 6px; }
#hlv .hlv-fleet-meta svg { width: 14px; height: 14px; color: var(--hlv-ac); }
#hlv .hlv-fleet-cta {
  display: inline-flex; align-items: center; gap: 7px; min-height: 44px; align-items: center;
  font-size: 13px; font-weight: 700; color: var(--hlv-ac); letter-spacing: 0.03em;
}
#hlv .hlv-fleet-cta svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
#hlv .hlv-fleet-cta:hover svg { transform: translateX(3px); }
#hlv .hlv-fleet-nav { display: flex; gap: 10px; justify-content: center; margin-top: 8px; }
#hlv .hlv-fleet-btn {
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  background: var(--hlv-card); border: 1px solid var(--hlv-line); color: var(--hlv-slate);
  display: inline-grid; place-items: center;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--hlv-ease);
}
#hlv .hlv-fleet-btn:hover { color: var(--hlv-ac); border-color: var(--hlv-ac); transform: translateY(-2px); }
#hlv .hlv-fleet-btn svg { width: 19px; height: 19px; }

/* ── 10. EXPERIENCE — cinematic crossfade band ─────────────────────────── */
#hlv .hlv-exp {
  position: relative; border-radius: var(--hlv-r-lg); overflow: hidden;
  box-shadow: var(--hlv-shadow-lg); aspect-ratio: 21 / 10; max-height: 600px;
  background: #0d1310; margin-top: 40px;
}
@media (max-width: 640px) { #hlv .hlv-exp { aspect-ratio: 4 / 3.4; } }
#hlv .hlv-exp figure { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 1.1s ease; }
#hlv .hlv-exp figure.on { opacity: 1; }
#hlv .hlv-exp img { width: 100%; height: 100%; object-fit: cover; }
#hlv.hlv-js .hlv-exp figure.on img { animation: hlvKen 6.8s ease-out forwards; }
@keyframes hlvKen { from { transform: scale(1.02); } to { transform: scale(1.06); } }
#hlv .hlv-exp figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(22px, 4vw, 46px);
  background: linear-gradient(180deg, transparent 0%, rgba(8, 12, 10, 0.85) 92%);
  color: #f2f6f3;
}
#hlv .hlv-exp figcaption h3 {
  font-family: var(--hlv-serif); font-size: clamp(23px, 3vw, 38px); font-weight: 600;
  margin: 0 0 7px; color: #f7faf8;
}
#hlv .hlv-exp figcaption h3 em { font-style: italic; color: #dfc888; }
#hlv .hlv-exp figcaption p { margin: 0; font-size: clamp(13px, 1.1vw, 15px); font-weight: 400; line-height: 1.6; color: rgba(242, 246, 243, 0.85); max-width: 56ch; }
#hlv .hlv-exp-dots { position: absolute; top: 20px; right: 22px; display: flex; gap: 8px; z-index: 2; }
#hlv .hlv-exp-dot {
  width: 44px; height: 30px; border: 0; background: transparent; cursor: pointer;
  display: grid; place-items: center; padding: 0;
}
#hlv .hlv-exp-dot::before {
  content: ''; width: 30px; height: 4px; border-radius: 999px;
  background: rgba(242, 246, 243, 0.35); transition: background-color 0.3s ease;
}
#hlv .hlv-exp-dot.on::before { background: #dfc888; }

/* ── 11. REVIEWS ───────────────────────────────────────────────────────── */
#hlv .hlv-rev-head { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; }
#hlv .hlv-rev-score { font-family: var(--hlv-serif); font-weight: 600; font-size: 28px; color: var(--hlv-ink); }
#hlv .hlv-rev-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
#hlv .hlv-rev-card {
  display: flex; flex-direction: column; gap: 13px; margin: 0;
  background: var(--hlv-card); border: 1px solid var(--hlv-line);
  border-radius: var(--hlv-r); padding: 26px 24px; box-shadow: var(--hlv-shadow);
}
#hlv .hlv-rev-card .hlv-stars svg { width: 14px; height: 14px; }
#hlv .hlv-rev-card blockquote { margin: 0; font-size: 14px; font-weight: 400; line-height: 1.72; color: var(--hlv-slate); }
#hlv .hlv-rev-card figcaption { margin-top: auto; font-size: 12.5px; font-weight: 700; color: var(--hlv-ink); }
#hlv .hlv-rev-card figcaption span { display: block; font-weight: 500; color: var(--hlv-faint); margin-top: 2px; }
@media (max-width: 1020px) { #hlv .hlv-rev-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { #hlv .hlv-rev-grid { grid-template-columns: 1fr; } }

/* ── 12. PROCESS ───────────────────────────────────────────────────────── */
#hlv .hlv-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
#hlv .hlv-step { text-align: center; padding: 8px 18px; position: relative; }
#hlv .hlv-step-num {
  width: 58px; height: 58px; margin: 0 auto 16px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid color-mix(in srgb, var(--hlv-ac) 40%, transparent);
  background: var(--hlv-ac-bg);
  font-family: var(--hlv-serif); font-style: italic; font-size: 24px; color: var(--hlv-ac);
}
#hlv .hlv-step h3 { font-size: 16.5px; font-weight: 700; margin: 0 0 8px; color: var(--hlv-ink); }
#hlv .hlv-step p { font-size: 14px; font-weight: 400; line-height: 1.7; color: var(--hlv-slate); margin: 0; max-width: 36ch; margin-inline: auto; }
@media (max-width: 760px) { #hlv .hlv-steps { grid-template-columns: 1fr; gap: 30px; } }

/* ── 13. FAQ ───────────────────────────────────────────────────────────── */
#hlv .hlv-faq { max-width: 780px; margin: 40px auto 0; }
#hlv .hlv-faq-item { border-bottom: 1px solid var(--hlv-line); }
#hlv .hlv-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 21px 6px; min-height: 56px; color: var(--hlv-ink);
  font: 600 16px/1.45 var(--hlv-sans);
  transition: color 0.2s ease;
}
#hlv .hlv-faq-q:hover { color: var(--hlv-ac); }
#hlv .hlv-faq-q svg { width: 18px; height: 18px; color: var(--hlv-ac); flex: 0 0 auto; transition: transform 0.28s var(--hlv-ease); }
#hlv .hlv-faq-item.open .hlv-faq-q svg { transform: rotate(45deg); }
#hlv .hlv-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s var(--hlv-ease); }
#hlv .hlv-faq-item.open .hlv-faq-a { max-height: 460px; }
#hlv .hlv-faq-a p { padding: 0 6px 22px; margin: 0; font-size: 14.5px; font-weight: 400; line-height: 1.75; color: var(--hlv-slate); }
#hlv .hlv-faq-a a { color: var(--hlv-ac); font-weight: 600; }
#hlv .hlv-faq-a a:hover { text-decoration: underline; }

/* ── 14. FINAL CTA + footer bridge ─────────────────────────────────────── */
#hlv .hlv-final {
  position: relative; overflow: hidden; text-align: center;
  border-radius: var(--hlv-r-lg); padding: clamp(48px, 7vw, 84px) 28px;
  background:
    radial-gradient(720px 320px at 50% -8%, rgba(207, 171, 86, 0.13), transparent 62%),
    radial-gradient(900px 420px at 82% 110%, rgba(17, 130, 99, 0.16), transparent 60%),
    linear-gradient(158deg, #161d19 0%, #101613 55%, #0a0f0c 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--hlv-shadow-lg);
}
#hlv .hlv-final::before {
  content: ''; position: absolute; top: 0; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 205, 133, 0.7), transparent);
}
#hlv .hlv-final .hlv-h2 { color: #f2f6f3; }
#hlv .hlv-final .hlv-h2 em { color: #dfc888; }
#hlv .hlv-final .hlv-lead { color: rgba(242, 246, 243, 0.72); margin-inline: auto; }
#hlv .hlv-final-ctas { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; margin-top: 30px; }
#hlv .hlv-final .hlv-btn--line { color: #eef3f0; border-color: rgba(255, 255, 255, 0.32); }
#hlv .hlv-final .hlv-btn--line:hover { border-color: #dfc888; color: #eede9f; }
#hlv .hlv-final-note { margin: 26px auto 0; max-width: 62ch; font-size: 12.5px; line-height: 1.7; color: rgba(242, 246, 243, 0.6); }
#hlv .hlv-final-note strong { color: #dfc888; font-weight: 600; }
#hlv .hlv-final-note a { color: rgba(242, 246, 243, 0.85); text-decoration: underline; text-underline-offset: 2px; }
/* seamless run into the dark shared footer */
#hlv .hlv-outro { padding-bottom: clamp(56px, 7vw, 88px); background: linear-gradient(180deg, var(--hlv-bg) 0%, var(--hlv-bg) 58%, #0a0d0b 100%); }
[data-theme="dark"] #hlv .hlv-outro { background: linear-gradient(180deg, var(--hlv-bg) 0%, #0a0d0b 100%); }

/* ── 15. MOBILE BOOKING CTA (homepage's single floating promotion) ─────── */
.home-lux-v3 .hlv-mbar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 9500;
  display: none; align-items: center; gap: 10px;
  padding: 10px 10px 10px 18px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px) * 0.4);
  border-radius: 999px;
  background: rgba(14, 19, 16, 0.88);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(230, 205, 133, 0.34);
  box-shadow: 0 24px 54px -18px rgba(0, 0, 0, 0.6);
  transform: translateY(calc(100% + 18px)); opacity: 0;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .home-lux-v3 .hlv-mbar { background: #101613; }
}
.home-lux-v3 .hlv-mbar.is-in { transform: translateY(0); opacity: 1; }
.home-lux-v3 .hlv-mbar-txt { flex: 1; min-width: 0; color: #eef3f0; font: 600 12.5px/1.35 'Inter', sans-serif; letter-spacing: 0.01em; }
.home-lux-v3 .hlv-mbar-txt small { display: block; font-weight: 400; font-size: 11px; color: rgba(238, 243, 240, 0.62); }
.home-lux-v3 .hlv-mbar-cta {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px;
  min-height: 44px; padding: 0 18px; border: 0; border-radius: 999px; cursor: pointer;
  background: linear-gradient(135deg, #e6cd85 0%, #cfab56 52%, #a8823c 100%);
  color: #221703; font: 800 12.5px/1 'Inter', sans-serif; letter-spacing: 0.05em; text-transform: uppercase;
  box-shadow: 0 10px 24px -10px rgba(207, 171, 86, 0.7);
}
.home-lux-v3 .hlv-mbar-cta svg { width: 14px; height: 14px; }
.home-lux-v3 .hlv-mbar-x {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  background: transparent; border: 0; cursor: pointer;
  display: inline-grid; place-items: center; color: rgba(238, 243, 240, 0.6);
}
.home-lux-v3 .hlv-mbar-x:hover { color: #fff; }
.home-lux-v3 .hlv-mbar-x svg { width: 16px; height: 16px; }
@media (max-width: 820px) { .home-lux-v3 .hlv-mbar { display: flex; } }

/* ── 16. FOOTER POLISH (homepage only, CSS-only bridge) ────────────────── */
body.home-lux-v3 .site-footer { border-top: 1px solid rgba(230, 205, 133, 0.16); }
body.home-lux-v3 .site-footer a:hover { color: rgb(var(--accent-rgb, 42 165 132)) !important; }

/* ── 16b. HEADER ACCENT NORMALIZATION (homepage only) ──────────────────
   lux-polish hardcodes the nav underline to --logo-gold; on the homepage the
   active indicators inherit the SELECTED accent instead, and recolor over
   300ms without touching any transform/timing. */
body.home-lux-v3 .nav-menu .nav-link:not(.nav-cta)::after {
  background: var(--accent-color, var(--logo-gold, #c9a24b)) !important;
  transition: transform 0.3s var(--hlv-ease, ease), background-color 0.3s ease !important;
}
body.home-lux-v3 .site-header .nav-link,
body.home-lux-v3 .site-header .dropdown-toggle,
body.home-lux-v3 .site-header .dropdown-link,
body.home-lux-v3 .site-header .settings-gear {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* ── 17. DEEP-SECTION RENDER HINTS ─────────────────────────────────────── */
#hlv .hlv-cv { content-visibility: auto; contain-intrinsic-size: auto 660px; }
.hlv-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; }

/* ── 17b. THE JOURNEY — scroll-driven Escalade transition ──────────────────
   Position is computed in home-lux-v3.js from section scroll progress and
   applied as translate3d — pure transform/opacity, no layout impact, no
   horizontal overflow (section clips). Layers move at different fractions of
   the vehicle's speed for depth. */
#hlv .hlv-drive {
  position: relative; overflow: clip; isolation: isolate;
  height: min(78vh, 760px);
  display: flex; flex-direction: column; justify-content: flex-start;
  background:
    radial-gradient(120% 90% at 78% 108%, rgb(var(--accent-rgb, 42 165 132) / 0.16), transparent 58%),
    radial-gradient(90% 70% at 12% -10%, rgba(207, 171, 86, 0.07), transparent 55%),
    linear-gradient(180deg, #0b100e 0%, #101b16 55%, #0a0e0c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
#hlv .hlv-drive-atmos {
  position: absolute; inset: -4% -12%; z-index: 0; pointer-events: none;
  background: radial-gradient(60% 45% at 50% 60%, rgb(var(--accent-rgb, 42 165 132) / 0.1), transparent 70%);
}
#hlv .hlv-drive-streaks {
  position: absolute; left: -15%; right: -15%; top: 52%; height: 34%; z-index: 0; pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(230, 205, 133, 0.05) 18%, transparent 32%, rgba(255, 255, 255, 0.04) 55%, transparent 70%, rgb(var(--accent-rgb, 42 165 132) / 0.05) 86%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
/* copy: upper-left editorial block on its own track, well clear of the
   vehicle's lower driving lane. Each child is animated in opposition to the
   car (rising from below-left) by progress bands in home-lux-v3.js. */
#hlv .hlv-drive-copy {
  position: relative; z-index: 2; text-align: left;
  max-width: clamp(480px, 52vw, 620px);
  padding: clamp(48px, 8vh, 88px) 0 0;
  pointer-events: none;
}
#hlv .hlv-drive-copy a { pointer-events: auto; color: #eede9f; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(238, 222, 159, 0.35); transition: border-color 0.2s ease; }
#hlv .hlv-drive-copy a:hover { border-bottom-color: #eede9f; }
/* armed only when the script is live — without JS the copy stays visible */
#hlv.hlv-js .hlv-drive-eyebrow, #hlv.hlv-js .hlv-drive-h,
#hlv.hlv-js .hlv-drive-p, #hlv.hlv-js .hlv-drive-line {
  opacity: 0; will-change: opacity, transform;
}
#hlv:not(.hlv-js) .hlv-drive-copy { pointer-events: auto; }
#hlv .hlv-drive-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: clamp(10px, 1vw, 11px); font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--hlv-gold-soft, #e0c98d); margin: 0 0 14px;
}
#hlv .hlv-drive-eyebrow::before {
  content: ''; width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 201, 141, 0.8));
}
#hlv .hlv-drive-h {
  font-family: var(--hlv-serif); font-weight: 600; font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.12; color: #f2f6f3; margin: 0 0 12px; text-wrap: balance;
}
#hlv .hlv-drive-h em { font-style: italic; color: #dfc888; }
#hlv .hlv-drive-p {
  font-size: clamp(13.5px, 1.15vw, 15.5px); line-height: 1.7;
  color: rgba(242, 246, 243, 0.72); margin: 0 0 12px; max-width: 56ch;
}
#hlv .hlv-drive-line {
  font-size: clamp(10.5px, 1vw, 11.5px); font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(224, 201, 141, 0.85); margin: 0;
}
#hlv .hlv-drive-car {
  position: absolute; z-index: 1; bottom: 9%;
  width: min(46vw, 620px); pointer-events: none;
  transform: translate3d(120vw, 0, 0);
}
#hlv .hlv-drive-live .hlv-drive-car,
#hlv .hlv-drive-live .hlv-drive-streaks,
#hlv .hlv-drive-live .hlv-drive-atmos { will-change: transform; }
#hlv .hlv-drive-car img { width: 100%; height: auto; display: block; position: relative; z-index: 1; filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35)); }
#hlv .hlv-drive-shadow {
  position: absolute; left: 6%; right: 6%; bottom: -4%; height: 16%;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.55), transparent 72%);
  filter: blur(7px); z-index: 0;
}
#hlv .hlv-drive-road {
  position: absolute; left: 0; right: 0; bottom: 0; height: 12%; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
  border-top: 1px solid rgba(255, 255, 255, 0.045);
}
@media (max-width: 700px) {
  #hlv .hlv-drive { height: min(72vh, 620px); }
  #hlv .hlv-drive-car { width: 74vw; bottom: 10%; }
  #hlv .hlv-drive-copy { max-width: none; padding-top: clamp(40px, 6vh, 56px); }
}

/* ── THE EXECUTIVE LINE — S-Class variant: quiet pearl/champagne register.
   Same engine, opposite direction, softer light. Works in both themes. */
#hlv .hlv-drive--exec {
  height: min(74vh, 700px);
  background:
    radial-gradient(110% 85% at 22% 110%, rgba(207, 171, 86, 0.14), transparent 58%),
    radial-gradient(90% 70% at 88% -10%, rgba(255, 255, 255, 0.05), transparent 55%),
    linear-gradient(180deg, #191f1c 0%, #232a26 52%, #171d1a 100%);
}
[data-theme="dark"] #hlv .hlv-drive--exec {
  background:
    radial-gradient(110% 85% at 22% 110%, rgba(207, 171, 86, 0.12), transparent 58%),
    linear-gradient(180deg, #101512 0%, #1a201c 55%, #0e1310 100%);
}
#hlv .hlv-drive--exec .hlv-drive-atmos {
  background: radial-gradient(58% 42% at 50% 62%, rgba(230, 205, 133, 0.1), transparent 70%);
}
#hlv .hlv-drive--exec .hlv-drive-streaks {
  background:
    linear-gradient(90deg, transparent 0%, rgba(230, 205, 133, 0.07) 22%, transparent 38%, rgba(255, 255, 255, 0.05) 60%, transparent 78%, rgba(230, 205, 133, 0.05) 92%, transparent 100%);
}
#hlv .hlv-drive-copy--right { margin-left: auto; text-align: right; }
#hlv .hlv-drive-copy--right .hlv-drive-eyebrow { flex-direction: row-reverse; }
#hlv .hlv-drive-copy--right .hlv-drive-eyebrow::before { transform: scaleX(-1); }
#hlv .hlv-drive-copy--right .hlv-drive-p { margin-left: auto; }
#hlv .hlv-drive-car--exec { width: min(40vw, 540px); bottom: 11%; }
@media (max-width: 700px) {
  #hlv .hlv-drive--exec { height: min(66vh, 560px); }
  #hlv .hlv-drive-car--exec { width: 66vw; bottom: 12%; }
  #hlv .hlv-drive-copy--right { text-align: left; margin-left: 0; }
  #hlv .hlv-drive-copy--right .hlv-drive-eyebrow { flex-direction: row; }
  #hlv .hlv-drive-copy--right .hlv-drive-eyebrow::before { transform: none; }
  #hlv .hlv-drive-copy--right .hlv-drive-p { margin-left: 0; }
}

/* ── SCATTER-TO-GRID (routes) + DIRECTIONAL REVIEWS — transforms are set
   inline per frame by the shared controller; CSS only supplies stabilizers.
   Without JS nothing is ever offset. */
#hlv .hlv-routes.is-stable > *, #hlv .hlv-rev-grid.is-stable > * {
  transition: transform 0.35s var(--hlv-ease), opacity 0.3s ease;
  transform: none !important; opacity: 1 !important;
}
#hlv .hlv-drive-live .hlv-routes > *, #hlv .hlv-routes.hlv-anim > * { will-change: transform, opacity; }
#hlv .hlv-rev-grid.hlv-anim > * { will-change: transform, opacity; }
#hlv .hlv-rev-card { transition: box-shadow 0.5s ease; }
#hlv .hlv-rev-grid.is-settled .hlv-rev-card { box-shadow: var(--hlv-shadow-lg); }

/* ── 17c. CUSTOM DATE & TIME CONTROLS ──────────────────────────────────────
   Progressive enhancement over the FROZEN widget: home-lux-v3.js hides the
   native date input / time selects and drives them from these controls, so
   the booking workflow still receives its exact ISO date and HH:MM time.
   Without JS the native controls render untouched. */
#hlv .hlv-pick-btn {
  display: flex; align-items: center; gap: 8px; width: 100%; min-width: 0;
  background: transparent; border: 0; padding: 0; cursor: pointer;
  color: var(--hlv-panel-ink); font: 600 16px/1.3 var(--hlv-sans);
  text-align: left; -webkit-tap-highlight-color: transparent;
}
#hlv .hlv-pick-btn:focus-visible { outline: none; }
#hlv .hp-bk-f:has(.hlv-pick-btn:focus-visible) {
  border-color: var(--hlv-ac-bright);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--hlv-ac-bright) 22%, transparent);
}
#hlv .hlv-pick-btn .hlv-pick-ampm { color: var(--hlv-gold-soft); font-weight: 700; }
#hlv .hlv-native-off { position: absolute !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; overflow: hidden; }

/* floating panel (desktop popover / mobile bottom sheet) */
.hlv-pop {
  position: fixed; z-index: 100000; width: 316px;
  background:
    radial-gradient(120% 90% at 50% -20%, rgba(207, 171, 86, 0.08), transparent 52%),
    linear-gradient(165deg, #1a221d 0%, #131a16 100%);
  border: 1px solid rgba(230, 205, 133, 0.3);
  border-radius: 18px; padding: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 6px 22px rgba(0, 0, 0, 0.3);
  color: #eef3f0; font-family: 'Inter', sans-serif;
  opacity: 0; transform: translateY(6px); pointer-events: none;
  transition: opacity 0.22s ease, transform 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}
.hlv-pop.on { opacity: 1; transform: none; pointer-events: auto; }
.hlv-pop-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 0 0 10px; }
.hlv-pop-title { font: 700 14px/1.2 'Cormorant Garamond', Georgia, serif; font-size: 18px; letter-spacing: 0.01em; }
.hlv-pop-nav { display: inline-flex; gap: 4px; }
.hlv-pop-nav button {
  width: 34px; height: 34px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05); color: #eef3f0; cursor: pointer;
  display: inline-grid; place-items: center; transition: border-color 0.2s ease, color 0.2s ease;
}
.hlv-pop-nav button:hover:not(:disabled) { border-color: rgba(230, 205, 133, 0.5); color: #eede9f; }
.hlv-pop-nav button:disabled { opacity: 0.32; cursor: default; }
.hlv-pop-nav svg { width: 15px; height: 15px; }
.hlv-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.hlv-cal-dow { font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(238, 243, 240, 0.42); text-align: center; padding: 6px 0; }
.hlv-cal-day {
  height: 38px; border: 0; border-radius: 10px; background: transparent; cursor: pointer;
  color: #eef3f0; font: 600 13.5px/1 'Inter', sans-serif;
  display: inline-grid; place-items: center; transition: background-color 0.15s ease, color 0.15s ease;
  font-variant-numeric: tabular-nums;
}
.hlv-cal-day:hover:not(:disabled) { background: rgba(255, 255, 255, 0.09); }
.hlv-cal-day:disabled { color: rgba(238, 243, 240, 0.22); cursor: default; }
.hlv-cal-day.is-today { box-shadow: inset 0 0 0 1px rgba(230, 205, 133, 0.55); }
.hlv-cal-day.is-sel {
  background: linear-gradient(135deg, #e6cd85 0%, #cfab56 52%, #a8823c 100%);
  color: #221703; font-weight: 800;
}
.hlv-cal-day:focus-visible { outline: 2px solid #e0c98d; outline-offset: 1px; }

/* time list */
.hlv-time-list { max-height: 288px; overflow-y: auto; display: grid; gap: 2px; scrollbar-width: thin; padding: 2px; }
.hlv-time-opt {
  min-height: 44px; border: 0; border-radius: 10px; background: transparent; cursor: pointer;
  color: #eef3f0; font: 600 14px/1 'Inter', sans-serif; text-align: left; padding: 0 14px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background-color 0.15s ease; font-variant-numeric: tabular-nums;
}
.hlv-time-opt small { color: var(--hlv-gold-soft, #e0c98d); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; }
.hlv-time-opt:hover { background: rgba(255, 255, 255, 0.09); }
.hlv-time-opt.is-sel { background: linear-gradient(135deg, #e6cd85 0%, #cfab56 52%, #a8823c 100%); color: #221703; }
.hlv-time-opt.is-sel small { color: #5c4413; }
.hlv-time-opt:focus-visible { outline: 2px solid #e0c98d; outline-offset: -2px; }

/* mobile: bottom sheet */
.hlv-pop-scrim {
  position: fixed; inset: 0; z-index: 99999; background: rgba(8, 11, 9, 0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.hlv-pop-scrim.on { opacity: 1; pointer-events: auto; }
@media (max-width: 700px) {
  .hlv-pop {
    left: 0 !important; right: 0 !important; top: auto !important; bottom: 0 !important;
    width: auto; border-radius: 22px 22px 0 0; border-bottom: 0;
    padding: 18px 18px calc(18px + env(safe-area-inset-bottom, 0px));
    transform: translateY(100%);
  }
  .hlv-pop.on { transform: none; }
  .hlv-cal-day { height: 44px; }
  .hlv-time-list { max-height: 46vh; }
}
html.hlv-pop-lock { overflow: hidden; }
@media (min-width: 701px) { .hlv-pop-scrim { display: none; } }

/* day mode: the pickers become pearl panels matching the address dropdown,
   so date, time and address surfaces read as ONE designed system */
[data-theme="light"] .hlv-pop {
  background:
    radial-gradient(120% 90% at 50% -20%, rgba(168, 130, 60, 0.06), transparent 52%),
    linear-gradient(165deg, #fdfcf9 0%, #f7f5ef 100%);
  border: 1px solid rgba(168, 130, 60, 0.26);
  box-shadow: 0 18px 50px rgba(20, 20, 18, 0.2), 0 4px 14px rgba(20, 20, 18, 0.1);
  color: #161b18;
}
[data-theme="light"] .hlv-pop-title { color: #161b18; }
[data-theme="light"] .hlv-pop-nav button { border-color: rgba(22, 27, 24, 0.14); background: rgba(22, 27, 24, 0.04); color: #2a322d; }
[data-theme="light"] .hlv-pop-nav button:hover:not(:disabled) { border-color: rgba(168, 130, 60, 0.55); color: #8a6a2e; }
[data-theme="light"] .hlv-cal-dow { color: rgba(22, 27, 24, 0.4); }
[data-theme="light"] .hlv-cal-day { color: #232a26; }
[data-theme="light"] .hlv-cal-day:hover:not(:disabled) { background: rgba(22, 27, 24, 0.06); }
[data-theme="light"] .hlv-cal-day:disabled { color: rgba(22, 27, 24, 0.24); }
[data-theme="light"] .hlv-cal-day.is-today { box-shadow: inset 0 0 0 1px rgba(168, 130, 60, 0.6); }
[data-theme="light"] .hlv-time-opt { color: #232a26; }
[data-theme="light"] .hlv-time-opt:hover { background: rgba(22, 27, 24, 0.06); }
[data-theme="light"] .hlv-time-opt small { color: #8a6a2e; }
[data-theme="light"] .hlv-cal-day:focus-visible, [data-theme="light"] .hlv-time-opt:focus-visible { outline-color: #a8823c; }

/* day mode: the booking wells lift a touch so the whole field row reads
   lighter and perfectly uniform (identical treatment on all four fields) */
[data-theme="light"] #hlv .hp-bk-f {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.07) 100%);
  border-color: rgba(255, 255, 255, 0.2);
}

/* quick-time layout */
.hlv-tp-label { display: block; font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(238, 243, 240, 0.45); margin: 12px 2px 6px; }
[data-theme="light"] .hlv-tp-label { color: rgba(22, 27, 24, 0.42); }
.hlv-tp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hlv-tp-row--4 { grid-template-columns: repeat(4, 1fr); }
.hlv-tp-row--6 { grid-template-columns: repeat(6, 1fr); }
.hlv-tp-btn {
  min-height: 44px; border-radius: 11px; cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.13); background: rgba(255, 255, 255, 0.05);
  color: #eef3f0; font: 650 13.5px/1 'Inter', sans-serif;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  font-variant-numeric: tabular-nums; -webkit-tap-highlight-color: transparent;
}
.hlv-tp-btn:hover { border-color: rgba(230, 205, 133, 0.55); }
.hlv-tp-btn[aria-pressed="true"], .hlv-tp-btn.is-on {
  background: linear-gradient(135deg, #e6cd85 0%, #cfab56 52%, #a8823c 100%);
  border-color: transparent; color: #221703; font-weight: 800;
}
.hlv-tp-btn:focus-visible { outline: 2px solid #e0c98d; outline-offset: 1px; }
[data-theme="light"] .hlv-tp-btn { border-color: rgba(22, 27, 24, 0.14); background: rgba(22, 27, 24, 0.035); color: #232a26; }
[data-theme="light"] .hlv-tp-btn:hover { border-color: rgba(168, 130, 60, 0.55); }
.hlv-tp-done {
  width: 100%; min-height: 48px; margin-top: 14px; border: 0; border-radius: 12px; cursor: pointer;
  background: linear-gradient(135deg, #e6cd85 0%, #cfab56 52%, #a8823c 100%); color: #221703;
  font: 800 12.5px/1 'Inter', sans-serif; letter-spacing: 0.09em; text-transform: uppercase;
  box-shadow: 0 10px 26px -10px rgba(207, 171, 86, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.hlv-tp-done:focus-visible { outline: 2px solid #e0c98d; outline-offset: 2px; }

/* ── 18. REDUCED MOTION ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  #hlv.hlv-js [data-rv] { opacity: 1; transform: none; transition: none; clip-path: none; }
  /* neutralize every choreographed child (the exp figures keep their .on
     opacity mechanics — one visible slide at a time — just without motion) */
  #hlv.hlv-js .hlv-center[data-rv] :is(.hlv-eyebrow, .hlv-h2, .hlv-lead, .hlv-rev-head),
  #hlv.hlv-js :is(.hlv-cards, .hlv-rev-grid, .hlv-steps, .hlv-routes, .hlv-faq)[data-rv] > *,
  #hlv.hlv-js .hlv-fleet[data-rv] .hlv-fleet-card,
  #hlv.hlv-js .hlv-final[data-rv] .hlv-final-ctas { opacity: 1; transform: none; transition: none; }
  #hlv *, #hlv *::before, #hlv *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  #hlv.hlv-js .hlv-hero-media img { transform: none; transition: none; }
  #hlv.hlv-js .hlv-exp figure.on img { animation: none; }
  #hlv .hp-bk-submit::after { display: none; }
  body.home-lux-v3 .site-header { transition: none; }
  .home-lux-v3 .hlv-mbar { transition: opacity 0.01ms; }
  /* drive transition: static, centered, fully readable */
  #hlv .hlv-drive-car { position: absolute; left: 50%; transform: translateX(-50%) !important; }
  #hlv .hlv-drive-copy { opacity: 1 !important; transform: none !important; }
  #hlv .hlv-drive-copy :is(.hlv-drive-eyebrow, .hlv-drive-h, .hlv-drive-p, .hlv-drive-line) { opacity: 1 !important; transform: none !important; }
  #hlv .hlv-drive-copy { pointer-events: auto; }
  #hlv .hlv-drive-streaks { display: none; }
}

/* ── 19. RESPONSIVE HERO TUNING ────────────────────────────────────────── */
@media (max-width: 900px) {
  #hlv .hlv-hero { min-height: clamp(520px, 78svh, 760px); padding-top: 128px; padding-bottom: 230px; }
  #hlv .hlv-hero-media img { object-position: 70% 42%; }
}
@media (max-width: 640px) {
  /* narrow screens: the diagonal copy-field scrim would cover the whole
     photo — switch to a lighter vertical gradient that lets the image live */
  #hlv .hlv-hero::before {
    background:
      linear-gradient(180deg, rgba(9, 13, 11, 0.62) 0%, rgba(9, 13, 11, 0.38) 34%, rgba(9, 13, 11, 0.30) 60%, rgba(9, 13, 11, 0.66) 100%);
  }
}
@media (max-width: 560px) {
  #hlv .hlv-hero { padding-top: 116px; padding-bottom: 240px; }
  #hlv .hlv-hero-copy { max-width: none; }
  #hlv .hlv-hero-ctas .hlv-btn { flex: 1 1 auto; }
  #hlv .hlv-bookzone { margin-top: -215px; }
  #hlv .hlv-trust-num { font-size: 24px; }
  #hlv .hlv-trust-label { font-size: 10.5px; letter-spacing: 0.09em; }
}
