/* ============================================================
   DP Self Drive — public site
   Liquid Glass design system · light & dark · mobile first
   Glass is reserved for the floating control layer (header, booking,
   filter bar, dock, sheets). Content surfaces stay solid for legibility
   and performance.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --brand: #0071e3;                         /* overridden from admin (theme.accent) */
  --accent: var(--brand);
  --accent-hover: color-mix(in oklab, var(--brand) 86%, black);
  --accent-ink: #fff;
  --accent-text: color-mix(in oklab, var(--brand) 88%, black);
  --accent-soft: color-mix(in oklab, var(--brand) 11%, transparent);
  --mark-a: color-mix(in oklab, var(--brand) 72%, white);
  --mark-b: color-mix(in oklab, var(--brand) 82%, black);

  --bg: #f5f5f7;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --surface-2: #f5f5f7;
  --surface-3: #ebebef;
  --text: #1d1d1f;
  --text-2: #424245;
  --text-3: #6e6e73;
  --line: rgba(0, 0, 0, .08);
  --line-2: rgba(0, 0, 0, .14);
  --wa: #0b7f3e;
  --wa-hover: #096c35;
  --wa-ink: #fff;
  --star: #ff9f0a;
  --danger: #d70015;
  --success: #248a3d;

  --glass-bg: rgba(255, 255, 255, .64);
  --glass-bg-strong: rgba(255, 255, 255, .78);
  --glass-border: rgba(255, 255, 255, .72);
  --glass-hi: rgba(255, 255, 255, .95);
  --glass-lo: rgba(0, 0, 0, .04);
  --glass-shadow: 0 1px 2px rgba(0, 0, 0, .06), 0 10px 30px -10px rgba(0, 0, 0, .18);
  --glass-2-bg: rgba(255, 255, 255, .74);
  --glass-2-shadow: 0 30px 70px -20px rgba(0, 0, 0, .32);
  --rim-a: rgba(255, 255, 255, .95);
  --rim-b: rgba(255, 255, 255, .1);
  --rim-c: rgba(255, 255, 255, .45);
  --blur: 22px;
  --blur-2: 34px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05), 0 2px 8px -2px rgba(0, 0, 0, .06);
  --shadow: 0 2px 6px rgba(0, 0, 0, .04), 0 18px 40px -18px rgba(0, 0, 0, .22);
  --scrim: rgba(0, 0, 0, .42);
  --ambient-a: #d6e6ff;
  --ambient-b: #ffe9d6;

  --r-xs: 8px; --r-sm: 12px; --r-md: 16px; --r-lg: 22px; --r-xl: 28px; --r-pill: 999px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", Roboto, system-ui, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Roboto, system-ui, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-sheet: cubic-bezier(.32, .72, 0, 1);
  --container: 1180px;
  --header-h: 64px;
  --header-top: 12px;
  --dock-h: 0px;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --accent: color-mix(in oklab, var(--brand) 78%, white);
  --accent-hover: color-mix(in oklab, var(--brand) 68%, white);
  --accent-ink: #fff;
  --accent-text: color-mix(in oklab, var(--brand) 62%, white);
  --accent-soft: color-mix(in oklab, var(--brand) 22%, transparent);
  --mark-a: color-mix(in oklab, var(--brand) 60%, white);
  --mark-b: color-mix(in oklab, var(--brand) 90%, black);

  --bg: #0b0c0f;
  --bg-alt: #111215;
  --surface: #16171b;
  --surface-2: #1e1f24;
  --surface-3: #2a2b31;
  --text: #f5f5f7;
  --text-2: #c7c7cc;
  --text-3: #98989f;
  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .16);
  --wa: #25d366;
  --wa-hover: #2fe274;
  --wa-ink: #04210f;
  --danger: #ff453a;
  --success: #30d158;

  --glass-bg: rgba(28, 29, 34, .58);
  --glass-bg-strong: rgba(28, 29, 34, .8);
  --glass-border: rgba(255, 255, 255, .12);
  --glass-hi: rgba(255, 255, 255, .16);
  --glass-lo: rgba(0, 0, 0, .3);
  --glass-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 12px 32px -10px rgba(0, 0, 0, .7);
  --glass-2-bg: rgba(24, 25, 30, .74);
  --glass-2-shadow: 0 30px 80px -20px rgba(0, 0, 0, .8);
  --rim-a: rgba(255, 255, 255, .34);
  --rim-b: rgba(255, 255, 255, .03);
  --rim-c: rgba(255, 255, 255, .14);

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .5);
  --shadow: 0 18px 40px -18px rgba(0, 0, 0, .8);
  --scrim: rgba(0, 0, 0, .6);
  --ambient-a: rgba(18, 58, 130, .55);
  --ambient-b: rgba(70, 30, 100, .45);
  color-scheme: dark;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + var(--header-top) + 64px); }
html:has(dialog[open]), html.is-locked { overflow: hidden; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.5; letter-spacing: -.011em;
  color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; overflow-x: clip;
  padding-bottom: var(--dock-h);
}
/* Ambient colour behind the page: gives the glass something to refract */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60vmax 50vmax at 12% -10%, var(--ambient-a), transparent 60%),
    radial-gradient(50vmax 45vmax at 100% 35%, var(--ambient-b), transparent 60%),
    var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; -webkit-tap-highlight-color: transparent; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0; font-weight: 700; letter-spacing: -.022em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
svg { flex: none; }
[hidden] { display: none !important; }
::selection { background: var(--accent-soft); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 8px; box-shadow: 0 0 0 5px color-mix(in oklab, var(--bg) 70%, transparent); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: fixed; left: 12px; top: -60px; z-index: 200; background: var(--text); color: var(--bg); padding: 10px 16px; border-radius: 10px; font-weight: 600; transition: top .2s; }
.skip:focus { top: 12px; }

.container { width: min(var(--container), 100% - 40px); margin-inline: auto; }
.section { padding: clamp(72px, 10vw, 128px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px 40px; flex-wrap: wrap; }
.section-head--row > div:first-child { max-width: 680px; }
.eyebrow { font-size: 14px; font-weight: 600; letter-spacing: 0; color: var(--accent-text); margin-bottom: 10px; }
.section-title { font-size: clamp(32px, 5vw, 52px); letter-spacing: -.03em; line-height: 1.06; text-wrap: balance; }
.section-text { margin-top: 16px; color: var(--text-3); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.5; text-wrap: pretty; }

/* ---------- Glass material ---------- */
.glass {
  position: relative; isolation: isolate;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
  backdrop-filter: blur(var(--blur)) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-hi), inset 0 -1px 0 var(--glass-lo), var(--glass-shadow);
}
.glass--2 {
  background: var(--glass-2-bg);
  -webkit-backdrop-filter: blur(var(--blur-2)) saturate(190%);
  backdrop-filter: blur(var(--blur-2)) saturate(190%);
  border-color: transparent;
  box-shadow: inset 0 1px 0 var(--glass-hi), var(--glass-2-shadow);
}
/* Specular rim: 1px gradient border, bright top-left, fading along the edge */
.glass--2::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; pointer-events: none; z-index: 2;
  background: linear-gradient(150deg, var(--rim-a) 0%, var(--rim-b) 42%, var(--rim-c) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
}
/* Gloss: soft light falling from the top edge */
.glass--2::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, .22), transparent 42%);
}
:root[data-theme="dark"] .glass--2::after { background: linear-gradient(180deg, rgba(255, 255, 255, .06), transparent 40%); }

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass { background: var(--glass-bg-strong); }
  .glass--2 { background: var(--surface); }
}
@media (prefers-reduced-transparency: reduce), (prefers-contrast: more) {
  .glass, .glass--2 { background: var(--surface) !important; -webkit-backdrop-filter: none !important; backdrop-filter: none !important; border-color: var(--line-2) !important; }
}
html.lite .glass, html.lite .glass--2 { background: var(--glass-bg-strong); -webkit-backdrop-filter: none; backdrop-filter: none; }
html.lite .glass--2 { background: var(--surface); }
@media (max-width: 640px) { :root { --blur: 16px; --blur-2: 22px; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 20px; border-radius: var(--r-pill); border: 1px solid transparent;
  font-size: 15px; font-weight: 600; letter-spacing: -.01em; line-height: 1; white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .12s var(--ease), box-shadow .2s var(--ease);
}
.btn:active { transform: scale(.97); }
.btn svg { width: 18px; height: 18px; }
.btn--sm { min-height: 38px; padding: 0 14px; font-size: 14px; }
.btn--sm svg { width: 16px; height: 16px; }
.btn--lg { min-height: 52px; padding: 0 26px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--icon-sm { width: 44px; padding: 0; }
.btn--primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 20px -10px color-mix(in oklab, var(--brand) 80%, transparent); }
.btn--primary:hover { background: var(--accent-hover); }
.btn--wa { background: var(--wa); color: var(--wa-ink); }
.btn--wa:hover { background: var(--wa-hover); }
.btn--line { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--line:hover { background: var(--surface-2); }
.btn--soft { background: var(--surface-2); color: var(--text); }
.btn--soft:hover { background: var(--surface-3); }
.btn--glass { background: var(--glass-bg); color: var(--text); border-color: var(--line); }
.btn--glass:hover { background: var(--surface); }
.btn--glass-dark { color: #fff; background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .28); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.btn--glass-dark:hover { background: rgba(255, 255, 255, .24); }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 0; background: transparent; color: var(--text);
  display: inline-grid; place-items: center; flex: none; transition: background-color .2s var(--ease), transform .12s var(--ease);
}
.icon-btn:hover { background: color-mix(in oklab, var(--text) 8%, transparent); }
.icon-btn:active { transform: scale(.94); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn--line { width: 44px; height: 44px; border: 1px solid var(--line-2); }
.icon-btn:disabled { opacity: .35; cursor: default; }

/* Theme toggle icon swap */
.theme-sun, .theme-moon { display: inline-flex; transition: transform .35s var(--ease), opacity .25s; }
#themeToggle { position: relative; }
#themeToggle > span { position: absolute; }
:root[data-theme="light"] .theme-moon, :root:not([data-theme]) .theme-moon { transform: rotate(-60deg) scale(.6); opacity: 0; }
:root[data-theme="dark"] .theme-sun { transform: rotate(60deg) scale(.6); opacity: 0; }

/* ---------- Announcement ---------- */
.announce { background: var(--text); color: var(--bg); font-size: 14px; font-weight: 500; }
.announce__inner { display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 40px; padding: 6px 36px; position: relative; text-align: center; }
.announce__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 30%, transparent); }
.announce__close { position: absolute; right: -8px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border: 0; border-radius: 50%; background: none; color: inherit; opacity: .7; display: grid; place-items: center; }
.announce__close:hover { opacity: 1; background: color-mix(in oklab, var(--bg) 14%, transparent); }
.announce__close svg { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 60; padding: var(--header-top) 20px 0; pointer-events: none; margin-bottom: calc(-1 * (var(--header-h) + var(--header-top))); }
.header__bar {
  pointer-events: auto; max-width: 1240px; margin-inline: auto; height: var(--header-h); border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 10px 0 14px;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-scrolled .header__bar { background: var(--glass-bg-strong); }
/* Over the dark hero photo the bar starts in "dark glass" for contrast */
.header.on-hero .header__bar { --glass-bg: rgba(20, 22, 28, .32); --glass-border: rgba(255, 255, 255, .18); --glass-hi: rgba(255, 255, 255, .18); color: #fff; }
/* Scrolled but still over the hero (photo or booking card): keep the dark glass so white text stays readable */
.header.on-hero.is-scrolled .header__bar { background: rgba(18, 20, 26, .66); }
html.lite .header.on-hero .header__bar { background: rgba(18, 20, 26, .9); }
.header.on-hero .nav a { color: rgba(255, 255, 255, .86); }
.header.on-hero .nav a:hover, .header.on-hero .nav a.is-active { color: #fff; background: rgba(255, 255, 255, .14); }
.header.on-hero .brand__sub { color: rgba(255, 255, 255, .7); }
.header.on-hero .icon-btn { color: #fff; }
.header.on-hero .icon-btn:hover { background: rgba(255, 255, 255, .14); }
.header.on-hero .btn--glass { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .22); color: #fff; }
.header.on-hero .btn--glass:hover { background: rgba(255, 255, 255, .22); }

.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand__mark { display: inline-flex; flex: none; filter: drop-shadow(0 4px 10px color-mix(in oklab, var(--brand) 35%, transparent)); }
.brand__mark .mark { width: 38px; height: 38px; }
.brand__mark img { height: var(--logo-h, 38px); width: auto; max-width: 180px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; min-width: 0; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand__sub { font-size: 10.5px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--text-3); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand--logo-only .brand__text { display: none; }

.nav { display: flex; gap: 2px; }
.nav a { padding: 8px 14px; border-radius: var(--r-pill); font-size: 14.5px; font-weight: 500; color: var(--text-2); transition: background-color .2s, color .2s; }
.nav a:hover { color: var(--text); background: color-mix(in oklab, var(--text) 7%, transparent); }
.nav a.is-active { color: var(--text); background: color-mix(in oklab, var(--text) 8%, transparent); }
.header__actions { display: flex; align-items: center; gap: 6px; flex: none; }
.nav-toggle { display: none; }

/* Mobile menu */
.menu { position: fixed; inset: 0; z-index: 58; }
.menu__backdrop { position: absolute; inset: 0; background: color-mix(in oklab, var(--bg) 40%, transparent); animation: fade .25s var(--ease); }
.menu__panel {
  position: absolute; left: 12px; right: 12px; top: calc(var(--header-top) + var(--header-h) + 8px); border-radius: var(--r-xl); padding: 10px;
  display: grid; gap: 2px; animation: drop .38s var(--ease-sheet); transform-origin: top center;
}
.menu__panel a { display: flex; align-items: center; gap: 14px; padding: 14px 14px; border-radius: 16px; font-size: 17px; font-weight: 600; }
.menu__panel a:hover, .menu__panel a:focus-visible { background: color-mix(in oklab, var(--text) 7%, transparent); }
.menu__panel a svg { width: 20px; height: 20px; color: var(--accent-text); }
.menu__social { display: flex; gap: 6px; padding: 8px 8px 4px; }
.menu__social:empty { display: none; }
.menu__social a { padding: 0; width: 44px; height: 44px; justify-content: center; border-radius: 50%; background: color-mix(in oklab, var(--text) 6%, transparent); }
@keyframes drop { from { opacity: 0; transform: translateY(-8px) scale(.97); } }
@keyframes fade { from { opacity: 0; } }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; background: #0b0c0f; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 10, .78) 0%, rgba(5, 6, 10, .5) 45%, rgba(5, 6, 10, .12) 100%),
    linear-gradient(0deg, rgba(5, 6, 10, .75) 0%, rgba(5, 6, 10, 0) 40%),
    linear-gradient(180deg, rgba(5, 6, 10, .55) 0%, rgba(5, 6, 10, 0) 22%);
}
@media (prefers-reduced-motion: no-preference) {
  html:not(.lite) .hero__media img { animation: heroIn 1.6s var(--ease) both; }
}
@keyframes heroIn { from { transform: scale(1.06); opacity: .4; } }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 56px; align-items: center;
  min-height: min(860px, 100svh); padding: calc(var(--header-h) + var(--header-top) + 56px) 0 140px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 6px; border-radius: var(--r-pill); font-size: 14px; font-weight: 600;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .2); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); margin-bottom: 24px;
}
.hero__eyebrow-dot { width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid !important; place-items: center; }
.hero__eyebrow-dot svg { width: 13px; height: 13px; }
.hero__title { font-size: clamp(42px, 5.6vw, 72px); letter-spacing: -.04em; line-height: 1.02; text-wrap: balance; }
.hero__title span { display: block; }
.hero__title .hl { background: linear-gradient(90deg, #fff, color-mix(in oklab, var(--brand) 45%, white)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__subtitle { margin-top: 22px; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.5; color: rgba(255, 255, 255, .82); max-width: 560px; text-wrap: pretty; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; }
.hero__badges li { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; color: rgba(255, 255, 255, .88); }
.hero__badges svg { width: 18px; height: 18px; color: color-mix(in oklab, var(--brand) 40%, white); }

/* Booking: the signature glass moment */
.booking { color: var(--text); border-radius: var(--r-xl); padding: 26px; justify-self: end; width: 100%; max-width: 430px; display: grid; gap: 18px; }
.booking__title { font-size: 24px; letter-spacing: -.02em; }
.booking__sub { color: var(--text-3); font-size: 15px; margin-top: 4px; }
.booking__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pill-field {
  display: grid; gap: 2px; padding: 10px 16px; border-radius: var(--r-md); background: color-mix(in oklab, var(--surface) 72%, transparent);
  border: 1px solid var(--line); transition: border-color .2s, box-shadow .2s; cursor: pointer; min-width: 0;
}
.pill-field--full { grid-column: 1 / -1; }
.pill-field span { font-size: 12px; font-weight: 600; color: var(--text-3); }
.pill-field input, .pill-field select { border: 0; background: none; padding: 0; font-size: 16px; font-weight: 600; min-height: 26px; width: 100%; outline: none; appearance: none; -webkit-appearance: none; }
.pill-field:focus-within { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
/* Date pills: custom icon, whole pill opens the native picker */
.pill-field:has(input[type="date"]) { position: relative; padding-right: 44px; }
.pill-field:has(input[type="date"])::after {
  content: ""; position: absolute; right: 14px; top: 50%; width: 20px; height: 20px; transform: translateY(-50%); pointer-events: none;
  background: var(--text-3); transition: background-color .2s;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4.5' width='18' height='16' rx='3'/%3E%3Cpath d='M3 9.5h18M8 2.5v4M16 2.5v4'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4.5' width='18' height='16' rx='3'/%3E%3Cpath d='M3 9.5h18M8 2.5v4M16 2.5v4'/%3E%3C/svg%3E") center / contain no-repeat;
}
.pill-field:has(input[type="date"]):hover::after, .pill-field:has(input[type="date"]):focus-within::after { background: var(--accent); }
.pill-field input[type="date"] { font-size: 15px; font-variant-numeric: tabular-nums; letter-spacing: -.01em; color: var(--text); cursor: pointer; }
.pill-field input[type="date"]::-webkit-datetime-edit { padding: 0; }
.pill-field input[type="date"]::-webkit-datetime-edit-fields-wrapper { padding: 0; }
.pill-field input[type="date"]::-webkit-calendar-picker-indicator { position: absolute; inset: 0; width: auto; height: auto; margin: 0; padding: 0; opacity: 0; cursor: pointer; background: none; }
.booking__hint { font-size: 13px; color: var(--text-3); text-align: center; }

/* ---------- Stats ---------- */
.stats { position: relative; z-index: 2; margin-top: -76px; }
.stats__bar { --glass-bg: var(--glass-bg-strong); display: grid; grid-template-columns: repeat(4, 1fr); border-radius: var(--r-xl); padding: 8px; }
.stat { padding: 18px 16px; text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 24%; bottom: 24%; width: 1px; background: var(--line-2); }
.stat__value { font-family: var(--font-display); font-size: clamp(26px, 3.2vw, 38px); font-weight: 700; letter-spacing: -.035em; line-height: 1.05; }
.stat__label { color: var(--text-3); font-size: 14px; margin-top: 4px; font-weight: 500; }

/* ---------- Offers ---------- */
.promos { padding-top: clamp(40px, 6vw, 72px); }
.promos__frame { position: relative; }
.promos__track { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-x: contain; border-radius: var(--r-xl); }
.promos__track::-webkit-scrollbar { display: none; }
.promo {
  flex: 0 0 100%; scroll-snap-align: center; position: relative; aspect-ratio: 5 / 2; display: block; color: #fff; overflow: hidden;
  border-radius: var(--r-xl); background: #0b0c0f; isolation: isolate;
}
.promo__bg { position: absolute; inset: -30px; background-size: cover; background-position: center; filter: blur(26px) brightness(.55); transform: scale(1.1); z-index: -1; }
.promo__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.promo--cover .promo__img { object-fit: cover; }
.promo__caption { position: absolute; inset: auto 0 0 0; padding: 60px 32px 28px; background: linear-gradient(transparent, rgba(0, 0, 0, .72)); display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.promo__caption h3 { font-size: clamp(18px, 2.2vw, 26px); letter-spacing: -.02em; }
.promo__caption p { color: rgba(255, 255, 255, .8); font-size: 15px; margin-top: 4px; }
.promos__nav { position: absolute; top: 50%; translate: 0 -50%; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: var(--text); z-index: 2; transition: transform .12s var(--ease), opacity .2s; }
.promos__nav:active { transform: scale(.94); }
.promos__nav svg { width: 20px; height: 20px; }
.promos__nav--prev { left: 16px; } .promos__nav--next { right: 16px; }
.promos__dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.promos__dots button { width: 8px; height: 8px; border-radius: var(--r-pill); border: 0; padding: 0; background: var(--line-2); transition: width .3s var(--ease), background-color .3s; position: relative; }
.promos__dots button::after { content: ""; position: absolute; inset: -12px -4px; }
.promos__dots button.is-active { width: 26px; background: var(--text); }
.promos--single .promos__nav, .promos--single .promos__dots { display: none; }

/* ---------- Fleet ---------- */
#fleet .section-head { margin-bottom: 28px; }
.filterbar { position: sticky; top: calc(var(--header-top) + var(--header-h) + 8px); z-index: 40; pointer-events: none; }
.filterbar > .container { pointer-events: auto; }
.filterbar__inner { display: flex; align-items: center; gap: 10px; padding: 6px; border-radius: var(--r-pill); }
.seg { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; flex: 1; min-width: 0; scroll-snap-type: x proximity; mask-image: linear-gradient(90deg, #000 calc(100% - 24px), transparent); }
.seg::-webkit-scrollbar { display: none; }
.seg button {
  flex: none; min-height: 40px; padding: 0 16px; border-radius: var(--r-pill); border: 0; background: none; font-size: 14.5px; font-weight: 600; color: var(--text-2);
  display: inline-flex; align-items: center; gap: 6px; transition: background-color .25s var(--ease), color .25s var(--ease); scroll-snap-align: start;
}
.seg button:hover { color: var(--text); }
.seg button[aria-selected="true"] { background: var(--text); color: var(--bg); }
.seg .count { font-weight: 500; opacity: .55; font-size: 13px; }
.filterbar__end { display: flex; align-items: center; gap: 6px; flex: none; }
.date-chip { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 8px 0 14px; border-radius: var(--r-pill); border: 0; background: var(--accent-soft); color: var(--accent-text); font-size: 14px; font-weight: 600; white-space: nowrap; }
.date-chip svg { width: 16px; height: 16px; }
.date-chip__x { width: 24px; height: 24px; border-radius: 50%; display: grid !important; place-items: center; background: color-mix(in oklab, var(--accent) 16%, transparent); }
.date-chip__x svg { width: 12px; height: 12px; }
.filterbar__toggle { position: relative; background: color-mix(in oklab, var(--text) 6%, transparent); }
.filterbar__badge { position: absolute; top: 2px; right: 2px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); border: 2px solid var(--surface); }
.fleet-controls { display: none; grid-template-columns: repeat(3, 1fr) 1.4fr; gap: 10px; margin-top: 10px; pointer-events: auto; }
.filterbar.is-expanded .fleet-controls { display: grid; animation: drop .3s var(--ease-sheet); }
.control { position: relative; display: block; }
.control select, .control input {
  width: 100%; min-height: 46px; padding: 0 38px 0 16px; border-radius: var(--r-pill); border: 1px solid var(--line-2); background: var(--surface);
  font-size: 15px; font-weight: 500; appearance: none; -webkit-appearance: none; box-shadow: var(--shadow-sm);
}
.control input { padding: 0 16px 0 42px; }
.control select:focus, .control input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.control > span > svg, .control > svg { width: 16px; height: 16px; color: var(--text-3); }
.control > span[data-icon], .control > span:not(.sr) { position: absolute; top: 50%; translate: 0 -50%; pointer-events: none; display: inline-flex; }
.control > span:last-child { right: 14px; }
.control--search > span:not(.sr) { left: 16px; right: auto; }
.fleet-count { color: var(--text-3); font-size: 14px; margin: 22px 0 16px; min-height: 21px; }

.fleet-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.fleet-empty { grid-column: 1 / -1; text-align: center; padding: 64px 20px; color: var(--text-3); background: var(--surface); border-radius: var(--r-lg); }
.fleet-empty h3 { font-size: 22px; color: var(--text); margin-bottom: 6px; }
.fleet-empty .btn { margin-top: 18px; }

.car {
  background: var(--surface); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; position: relative;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
@media (hover: hover) { .car:hover { transform: translateY(-4px); box-shadow: var(--shadow); } .car:hover .car__media img { transform: scale(1.04); } }
.car__media { position: relative; aspect-ratio: 16 / 10; background: var(--surface-3); overflow: hidden; border: 0; padding: 0; width: 100%; display: block; }
.car__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.car__tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.tag { padding: 5px 10px; border-radius: var(--r-pill); font-size: 12px; font-weight: 600; background: rgba(0, 0, 0, .55); color: #fff; line-height: 1.2; }
.tag--accent { background: var(--accent); color: var(--accent-ink); }
.tag--muted { background: rgba(255, 255, 255, .92); color: #1d1d1f; }
.car__photos { position: absolute; right: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 5px; padding: 5px 9px; border-radius: var(--r-pill); font-size: 12px; font-weight: 600; background: rgba(0, 0, 0, .55); color: #fff; }
.car__photos svg { width: 13px; height: 13px; }
.car__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.car__name { font-size: 20px; letter-spacing: -.02em; }
.car__name button { all: unset; cursor: pointer; }
.car__name button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.car__cat { color: var(--text-3); font-size: 14px; margin-top: 4px; }
.car__specs { display: flex; flex-wrap: wrap; gap: 6px; }
.car__specs li { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: var(--r-pill); background: var(--surface-2); font-size: 13px; font-weight: 500; color: var(--text-2); }
.car__specs svg { width: 14px; height: 14px; color: var(--text-3); }
.car__foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.price { line-height: 1.1; min-width: 0; }
.price__amount { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -.03em; }
.price__unit { color: var(--text-3); font-size: 14px; }
.price__est { display: block; margin-top: 5px; font-size: 13px; color: var(--accent-text); font-weight: 600; }
.price__note { display: block; margin-top: 5px; font-size: 12.5px; color: var(--text-3); }
.car__actions { display: flex; gap: 8px; flex: none; }
.car.is-unavailable .car__media img { filter: grayscale(.85) brightness(.9); }
.car.is-skeleton { min-height: 420px; background: linear-gradient(100deg, var(--surface) 30%, var(--surface-2) 50%, var(--surface) 70%) 0 0 / 300% 100%; animation: shimmer 1.4s linear infinite; }
@keyframes shimmer { to { background-position: -150% 0; } }
.fleet-grid.is-swapping .car { animation: cardIn .45s var(--ease) both; }
@keyframes cardIn { from { opacity: 0; transform: translateY(8px); } }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.feature { background: var(--surface); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.section--alt .feature { background: var(--surface-2); box-shadow: none; }
.feature__icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-text); margin-bottom: 18px; }
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 19px; letter-spacing: -.015em; margin-bottom: 8px; }
.feature p { color: var(--text-3); font-size: 15.5px; line-height: 1.55; }

/* ---------- Reviews ---------- */
.reviews__side { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.rating { display: flex; align-items: center; gap: 12px; }
.rating__score { font-family: var(--font-display); font-size: 40px; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.rating__stars { display: flex; gap: 2px; color: var(--star); }
.rating__stars svg { width: 16px; height: 16px; }
.rating__label { font-size: 13px; color: var(--text-3); margin-top: 3px; }
.rating a { color: var(--accent-text); font-weight: 600; }
.carousel-nav { display: flex; gap: 8px; }
.testi-track {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-x: contain;
  padding: 4px max(20px, (100% - var(--container)) / 2) 12px; scroll-padding-inline: max(20px, (100% - var(--container)) / 2);
}
.testi-track::-webkit-scrollbar { display: none; }
.testi { flex: 0 0 min(380px, 84vw); scroll-snap-align: start; background: var(--surface); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 18px; box-shadow: var(--shadow-sm); }
.testi__stars { display: flex; gap: 2px; color: var(--star); }
.testi__stars svg { width: 16px; height: 16px; }
.testi__text { font-size: 17px; line-height: 1.55; color: var(--text-2); flex: 1; }
.testi__author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 15px; color: #fff; background: linear-gradient(135deg, var(--mark-a), var(--mark-b)); flex: none; }
.testi__name { font-weight: 600; font-size: 15px; }
.testi__role { font-size: 13.5px; color: var(--text-3); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 28px; border-radius: var(--r-lg); background: var(--surface-2); }
.step__num { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--text); color: var(--bg); font-weight: 700; font-size: 17px; margin-bottom: 40px; position: relative; z-index: 1; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 49px; left: 80px; right: -20px; height: 2px; background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 12px); }
.step h3 { font-size: 20px; letter-spacing: -.015em; margin-bottom: 8px; }
.step p { color: var(--text-3); font-size: 15.5px; line-height: 1.55; }

/* ---------- Follow ---------- */
.follow__side { display: grid; gap: 14px; justify-items: start; }
.follow__links { display: flex; flex-wrap: wrap; gap: 8px; }
.follow__links a { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 14px; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--line); font-size: 14px; font-weight: 600; transition: background-color .2s; }
.follow__links a:hover { background: var(--surface-2); }
.follow__links svg { width: 16px; height: 16px; }
.follow__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.follow__grid:empty { display: none; }
.embed { background: var(--surface); border-radius: var(--r-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); }
.embed iframe { width: 100%; border: 0; display: block; }
.embed--ig iframe { height: 560px; }
.embed--yt { aspect-ratio: 16 / 9; }
.embed--yt iframe { height: 100%; }
.embed--fb iframe { height: 500px; }
.embed--link { display: flex; align-items: center; gap: 14px; padding: 18px; }
.embed--link .embed__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--surface-2); display: grid; place-items: center; flex: none; }
.embed--link b { display: block; font-size: 15px; }
.embed--link span { font-size: 13px; color: var(--text-3); word-break: break-all; }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr); gap: 56px; align-items: start; }
.faq__intro { position: sticky; top: calc(var(--header-h) + var(--header-top) + 32px); margin-bottom: 0; }
.faq__intro .btn { margin-top: 24px; }
.faq-list { display: grid; gap: 10px; }
.faq { background: var(--surface); border-radius: var(--r-md); box-shadow: var(--shadow-sm); overflow: hidden; interpolate-size: allow-keywords; }
.faq summary { list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 600; font-size: 17px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 20px; height: 20px; flex: none; color: var(--text-3); transition: transform .3s var(--ease); }
.faq[open] summary svg { transform: rotate(180deg); }
.faq::details-content { height: 0; overflow: clip; transition: height .35s var(--ease), content-visibility .35s allow-discrete; }
.faq[open]::details-content { height: auto; }
.faq__a { padding: 0 22px 22px; color: var(--text-3); font-size: 16px; line-height: 1.6; }

/* ---------- Contact ---------- */
.cta {
  border-radius: var(--r-xl); padding: clamp(32px, 5vw, 56px); margin-bottom: 28px; display: grid; grid-template-columns: minmax(0, 1.3fr) auto; gap: 28px; align-items: center;
  background: radial-gradient(120% 140% at 100% 0%, color-mix(in oklab, var(--brand) 26%, transparent), transparent 60%), var(--surface-2); position: relative; overflow: hidden;
}
.cta .section-text { margin-top: 12px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 28px; align-items: start; }
.contact-side { display: grid; gap: 14px; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-card { display: flex; flex-direction: column; gap: 14px; background: var(--surface-2); border-radius: var(--r-md); padding: 20px; transition: background-color .2s, transform .12s var(--ease); min-width: 0; }
.contact-card:hover { background: var(--surface-3); }
.contact-card:active { transform: scale(.98); }
.contact-card--wide { grid-column: 1 / -1; flex-direction: row; align-items: center; }
.contact-card__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--surface); color: var(--accent-text); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-sm); }
.contact-card__icon svg { width: 20px; height: 20px; }
.contact-card b { display: block; font-size: 16px; font-weight: 600; overflow-wrap: anywhere; }
.contact-card b + span { display: block; color: var(--text-3); font-size: 14px; margin-top: 2px; }
.map { border-radius: var(--r-md); overflow: hidden; aspect-ratio: 16 / 10; background: var(--surface-2); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
:root[data-theme="dark"] .map iframe { filter: invert(.9) hue-rotate(180deg) saturate(.8) brightness(.95); }
.card { background: var(--surface); border-radius: var(--r-xl); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.section--alt .card { background: var(--surface-2); border-color: transparent; box-shadow: none; }
.card__title { font-size: 24px; letter-spacing: -.02em; }
.card__sub { color: var(--text-3); font-size: 15px; margin: 6px 0 22px; }
.contact-form form { display: grid; gap: 16px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; min-width: 0; }
.field label { font-size: 14px; font-weight: 600; color: var(--text-2); }
.field label small { color: var(--text-3); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 16px; border-radius: var(--r-sm); border: 1px solid var(--line-2); background: var(--surface);
  font-size: 16px; transition: border-color .2s, box-shadow .2s; appearance: none; -webkit-appearance: none;
}
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--text-3) 50%), linear-gradient(135deg, var(--text-3) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.field textarea { min-height: 100px; resize: vertical; line-height: 1.5; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.field.is-invalid input { border-color: var(--danger); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 64px 0 32px; font-size: 14px; color: var(--text-3); }
:root[data-theme="dark"] .footer { background: #000; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer .brand { color: var(--text); }
.footer__about { margin-top: 18px; line-height: 1.65; max-width: 360px; }
.footer h4 { color: var(--text); font-size: 13px; font-weight: 600; letter-spacing: 0; margin-bottom: 14px; }
.footer li { margin-bottom: 10px; line-height: 1.5; }
.footer a:hover { color: var(--text); }
.social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.social:empty { display: none; }
.social a { width: 40px; height: 40px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; color: var(--text-2); transition: background-color .2s, color .2s; }
.social a:hover { background: var(--accent); color: var(--accent-ink); }
.social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; font-size: 13px; }
.theme-switch { display: inline-flex; gap: 2px; padding: 3px; border-radius: var(--r-pill); background: var(--surface-2); border: 1px solid var(--line); cursor: default; }
.theme-switch button { border: 0; background: none; min-height: 30px; padding: 0 12px; border-radius: var(--r-pill); font-size: 13px; font-weight: 600; color: var(--text-3); display: inline-flex; align-items: center; gap: 6px; }
.theme-switch button svg { width: 14px; height: 14px; }
.theme-switch button[aria-pressed="true"] { background: var(--surface); color: var(--text); box-shadow: var(--shadow-sm); }

/* ---------- Dock (mobile) & to-top ---------- */
.dock { display: none; }
.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 50; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: var(--text); opacity: 0; pointer-events: none; translate: 0 10px; transition: opacity .3s var(--ease), translate .3s var(--ease); }
.to-top.is-visible { opacity: 1; pointer-events: auto; translate: 0 0; }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Sheet (car details) ---------- */
dialog { color: inherit; }
.sheet {
  padding: 0; border: 0; background: transparent; width: min(1080px, calc(100% - 40px)); max-width: none; max-height: calc(100dvh - 48px);
  margin: auto; overflow: visible; outline: none;
}
.sheet::backdrop { background: rgba(0, 0, 0, .5); }
.sheet[open] { animation: sheetIn .42s var(--ease-sheet); }
.sheet[open]::backdrop { animation: fade .3s var(--ease); }
.sheet.is-closing { animation: sheetOut .24s var(--ease) forwards; }
.sheet.is-closing::backdrop { animation: fade .24s var(--ease) reverse forwards; }
@keyframes sheetIn { from { opacity: 0; transform: translateY(18px) scale(.98); } }
@keyframes sheetOut { to { opacity: 0; transform: translateY(12px) scale(.98); } }
.sheet__panel {
  position: relative; background: var(--surface); border-radius: var(--r-xl); overflow: hidden; display: grid;
  grid-template-rows: minmax(0, 1fr) auto; max-height: calc(100dvh - 48px); box-shadow: var(--glass-2-shadow); border: 1px solid var(--line);
}
.sheet__scroll { overflow-y: auto; overscroll-behavior: contain; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); align-items: start; }
.sheet__grabber { display: none; }
.sheet__close { position: absolute; top: 14px; right: 14px; z-index: 5; color: var(--text); }
.sheet__footer {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 22px; border: 0; border-top: 1px solid var(--line); border-radius: 0;
  box-shadow: none; --glass-bg: color-mix(in oklab, var(--surface) 82%, transparent);
}
.sheet__total { min-width: 0; }
.sheet__total small { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 13px; color: var(--text-3); }
.sheet__total b { font-family: var(--font-display); font-size: 22px; letter-spacing: -.03em; }
.sheet__actions { display: flex; gap: 8px; }

.gallery { position: sticky; top: 0; background: var(--surface); min-width: 0; }
.gallery__track { background: #000; }
.gallery__track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; aspect-ratio: 4 / 3; overscroll-behavior-x: contain; }
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__track img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; scroll-snap-align: center; cursor: zoom-in; }
.gallery__nav { position: absolute; top: calc(50% - 40px); width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: var(--text); z-index: 2; }
.gallery__nav svg { width: 18px; height: 18px; }
.gallery__nav--prev { left: 14px; } .gallery__nav--next { right: 14px; }
.gallery__counter { position: absolute; left: 14px; top: 14px; padding: 5px 10px; border-radius: var(--r-pill); background: rgba(0, 0, 0, .55); color: #fff; font-size: 12.5px; font-weight: 600; }
.gallery__thumbs { display: flex; gap: 8px; padding: 12px; overflow-x: auto; scrollbar-width: none; }
.gallery__thumbs::-webkit-scrollbar { display: none; }
.gallery__thumbs button { flex: 0 0 76px; aspect-ratio: 4 / 3; border-radius: 10px; overflow: hidden; border: 2px solid transparent; padding: 0; background: var(--surface-3); opacity: .6; transition: opacity .2s, border-color .2s; }
.gallery__thumbs button.is-active, .gallery__thumbs button:hover { opacity: 1; border-color: var(--accent); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.gallery__dots { display: none; }

.detail { padding: 32px 30px 28px; display: grid; gap: 22px; min-width: 0; }
.detail__cat { color: var(--accent-text); font-weight: 600; font-size: 14px; }
.detail__name { font-size: clamp(26px, 3vw, 32px); letter-spacing: -.03em; margin-top: 4px; padding-right: 44px; }
.detail__desc { color: var(--text-3); font-size: 16px; margin-top: 10px; line-height: 1.55; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.spec { background: var(--surface-2); border-radius: var(--r-sm); padding: 12px 14px; display: flex; align-items: center; gap: 12px; }
.spec svg { width: 20px; height: 20px; color: var(--accent-text); }
.spec small { display: block; color: var(--text-3); font-size: 12px; }
.spec b { font-size: 15px; font-weight: 600; }
.price-table { border-radius: var(--r-md); overflow: hidden; background: var(--surface-2); }
.price-table div { display: flex; justify-content: space-between; gap: 12px; padding: 12px 16px; font-size: 15px; }
.price-table div + div { border-top: 1px solid var(--line); }
.price-table span { color: var(--text-3); }
.price-table b { font-weight: 600; }
.price-table .is-main b { font-size: 19px; font-family: var(--font-display); letter-spacing: -.02em; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.feature-pills li { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: var(--r-pill); background: var(--surface-2); font-size: 13.5px; font-weight: 500; }
.feature-pills svg { width: 14px; height: 14px; color: var(--success); }
.detail__dates h4 { font-size: 17px; margin-bottom: 10px; }
.detail__dates .booking__fields { margin: 0; }
.detail__dates .pill-field { background: var(--surface-2); border-color: transparent; }
.notice { border-radius: var(--r-sm); padding: 12px 14px; font-size: 14.5px; font-weight: 500; }
.notice--warn { background: color-mix(in oklab, var(--danger) 10%, transparent); color: var(--danger); }
.share { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 14px; color: var(--text-3); font-weight: 500; }
.share a, .share button { width: 40px; height: 40px; border-radius: 50%; border: 0; background: var(--surface-2); display: grid; place-items: center; color: var(--text-2); transition: background-color .2s; }
.share a:hover, .share button:hover { background: var(--surface-3); color: var(--text); }
.share svg { width: 17px; height: 17px; }

/* ---------- Lightbox ---------- */
.lightbox { padding: 0; border: 0; margin: 0; width: 100vw; height: 100dvh; max-width: none; max-height: none; background: rgba(0, 0, 0, .95); display: none; align-items: center; justify-content: center; }
.lightbox[open] { display: flex; animation: fade .25s var(--ease); }
.lightbox::backdrop { background: transparent; }
.lightbox img { max-width: 94vw; max-height: 88dvh; object-fit: contain; border-radius: 10px; }
.lightbox__close { position: absolute; top: max(16px, env(safe-area-inset-top)); right: 16px; color: #fff; background: rgba(255, 255, 255, .14); }
.lightbox .gallery__nav { top: 50%; translate: 0 -50%; background: rgba(255, 255, 255, .14); color: #fff; }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: calc(24px + var(--dock-h)); translate: -50% 16px; background: var(--text); color: var(--bg); padding: 12px 18px; border-radius: var(--r-pill); font-size: 14.5px; font-weight: 500; z-index: 300; opacity: 0; pointer-events: none; transition: opacity .25s var(--ease), translate .25s var(--ease); box-shadow: var(--shadow); max-width: calc(100vw - 32px); text-align: center; }
.toast.is-visible { opacity: 1; translate: -50% 0; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .15s !important; }
  .reveal { transform: none; }
}
.theme-switching, .theme-switching * { transition: none !important; }

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 961px) {
  .filterbar__toggle { display: inline-grid; }
}
@media (max-width: 1180px) {
  .header__phone { display: none; }
  .header__call { width: 38px; padding: 0; }
}
@media (max-width: 1100px) {
  .fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .fleet-controls { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  :root { --header-h: 56px; --header-top: 10px; --dock-h: calc(76px + env(safe-area-inset-bottom)); }
  .header { padding-inline: 12px; }
  .nav, .header__call, .header__wa { display: none; }
  .nav-toggle { display: inline-grid; }
  .header__bar { padding: 0 6px 0 12px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; min-height: 0; padding: calc(var(--header-h) + var(--header-top) + 40px) 0 120px; }
  .booking { justify-self: stretch; max-width: none; }
  .stats__bar { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .steps { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .step { background: none; padding: 0 0 32px 64px; }
  .step__num { position: absolute; left: 0; top: 0; margin: 0; }
  .step:not(:last-child)::after { top: 52px; bottom: 8px; left: 21px; right: auto; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--line-2) 0 6px, transparent 6px 12px); }
  .step h3 { padding-top: 8px; }
  .faq-layout, .contact-layout { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .faq__intro { position: static; }
  .cta { grid-template-columns: minmax(0, 1fr); }
  .follow__grid { grid-template-columns: 1fr 1fr; }
  .to-top { display: none; }

  /* Dock */
  .dock {
    display: flex; position: fixed; left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); z-index: 55; height: 62px;
    border-radius: 22px; padding: 6px; gap: 6px; align-items: stretch; transition: translate .35s var(--ease-sheet), opacity .3s;
  }
  .dock a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border-radius: 16px; font-size: 11.5px; font-weight: 600; color: var(--text-2); }
  .dock a:active { background: color-mix(in oklab, var(--text) 8%, transparent); }
  .dock a svg { width: 22px; height: 22px; }
  .dock .dock__primary { flex: 2.2; flex-direction: row; gap: 8px; font-size: 15px; background: var(--wa); color: var(--wa-ink); }
  .dock .dock__primary:active { background: var(--wa-hover); }
  html:has(dialog[open]) .dock, .dock.is-hidden { translate: 0 120%; opacity: 0; }

  /* Bottom sheet */
  .sheet { width: 100%; max-height: none; margin: auto 0 0; }
  .sheet__panel { border-radius: 26px 26px 0 0; max-height: 94dvh; border-bottom: 0; }
  .sheet[open] { animation: sheetUp .42s var(--ease-sheet); }
  .sheet.is-closing { animation: sheetDown .28s var(--ease) forwards; }
  @keyframes sheetUp { from { transform: translateY(100%); } }
  @keyframes sheetDown { to { transform: translateY(100%); } }
  .sheet__scroll { grid-template-columns: minmax(0, 1fr); }
  .sheet__grabber { display: flex; justify-content: center; position: absolute; top: 0; left: 0; right: 0; height: 28px; z-index: 6; touch-action: none; }
  .sheet__grabber span { width: 40px; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, .7); margin-top: 8px; box-shadow: 0 1px 4px rgba(0, 0, 0, .3); }
  .sheet__close { top: 12px; right: 12px; }
  .gallery { position: relative; }
  .gallery__thumbs, .gallery__nav { display: none; }
  .gallery__dots { display: flex; position: absolute; left: 0; right: 0; bottom: 12px; justify-content: center; gap: 5px; pointer-events: none; }
  .gallery__dots i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, .5); transition: background-color .2s, width .2s; }
  .gallery__dots i.is-active { background: #fff; width: 16px; border-radius: 3px; }
  .gallery__counter { top: auto; bottom: 10px; left: auto; right: 12px; }
  .detail { padding: 22px 20px 24px; }
  .sheet__footer { padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 32px); }
  .brand__mark .mark { width: 34px; height: 34px; }
  .brand__name { font-size: 16px; }
  .hero__grid { padding-bottom: 96px; }
  .hero__title { font-size: clamp(38px, 11vw, 52px); }
  .hero__cta .btn { flex: 1 1 auto; }
  .hero__badges { gap: 8px 16px; margin-top: 26px; }
  .hero__badges li { font-size: 13.5px; }
  .booking { padding: 20px; border-radius: 24px; }
  .stats { margin-top: -60px; }
  .stat { padding: 14px 8px; }
  .promo { flex-basis: 88%; aspect-ratio: 16 / 9; border-radius: var(--r-lg); }
  .promos__track { border-radius: 0; padding-inline: 16px; margin-inline: -16px; scroll-padding-inline: 16px; gap: 10px; }
  .promos__nav { display: none; }
  .promo__caption { padding: 40px 18px 18px; }
  .promo__caption p, .promo__caption .btn { display: none; }
  .filterbar__inner { padding: 5px; }
  .seg button { padding: 0 13px; min-height: 38px; font-size: 14px; }
  .date-chip { padding: 0 6px 0 10px; font-size: 13px; }
  .date-chip > span:first-child { display: none; }
  .fleet-controls { grid-template-columns: 1fr 1fr; }
  .control--search { grid-column: 1 / -1; }
  .fleet-grid, .features { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .features { gap: 10px; }
  .feature { padding: 18px; display: grid; grid-template-columns: 40px 1fr; column-gap: 14px; }
  .feature__icon { width: 40px; height: 40px; margin: 0; grid-row: span 2; }
  .feature h3 { margin: 2px 0 4px; }
  .feature__icon svg { width: 20px; height: 20px; }
  .feature h3 { font-size: 16px; }
  .feature p { font-size: 14px; }
  .car__body { padding: 16px 16px 18px; }
  .car__foot { flex-wrap: wrap; }
  .carousel-nav { display: none; }
  .testi { padding: 22px; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .contact-card { padding: 16px; }
  .card { padding: 22px; border-radius: 24px; }
  .row, .booking__fields { grid-template-columns: 1fr 1fr; }
  .contact-form .row:first-of-type { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; }
  .follow__grid { grid-template-columns: 1fr; }
  .announce { font-size: 13px; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .detail__name { font-size: 26px; }
}
@media (max-width: 360px) {
  .brand__sub { display: none; }
  .booking__fields { grid-template-columns: 1fr; }
}

/* Booking details */
.pill-field.is-invalid { border-color: var(--danger); box-shadow: 0 0 0 4px color-mix(in oklab, var(--danger) 14%, transparent); }
.detail__privacy { font-size: 12.5px; color: var(--text-3); margin-top: 8px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Preview inside the admin iframe */
.is-preview .dock, .is-preview .to-top, .is-preview .announce__close { display: none; }
