/* ==========================================================================
   Rocket's Mobile Oil - Design System
   ==========================================================================
   Tokens → base → layout → components → sections → utilities
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand palette (source of truth) */
  --color-primary: #d37c04;  /* CTA, buttons, highlights, active states */
  --color-dark: #202b32;     /* headers, nav, footer, dark sections */
  --color-muted: #888985;    /* borders, secondary icons */
  --color-light: #eee4d0;    /* brand cream - accent sections and soft surfaces only */

  /* Derived color roles */
  --bg: #ffffff;             /* page background */
  --ink: var(--color-dark);
  --ink-2: #2b3841;          /* raised dark surface */
  --ink-3: #3c4a54;          /* borders on dark */
  --paper: #ffffff;          /* card / form surface */
  --paper-2: var(--color-light); /* tinted accent section background */
  --line: #cfc9ba;           /* subtle borders on light (from --color-muted) */
  --muted: #5d6266;          /* secondary text on light, AA on --paper & --color-light */
  --muted-dark: #b7bfc2;     /* secondary text on dark, AA on --color-dark */
  --flame: var(--color-primary); /* bright accent: stars, brand word, small icons */
  --flame-fill: #a86206;     /* deeper bronze-amber for buttons/fills; white text clears AA 4.5:1 */
  --flame-hover: #935705;    /* button / fill hover */
  --flame-deep: #8f5402;     /* AA (4.5:1+) on light surfaces for small text */
  --flame-soft: #f6e7cb;
  --danger: #c92a2a;         /* form validation errors */

  /* Type */
  --font-display: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-lg: 1.1875rem;
  --text-xl: 1.375rem;
  --text-2xl: clamp(1.5rem, 1.2rem + 1.4vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.4rem + 2.2vw, 2.75rem);
  --text-hero: clamp(2.375rem, 1.5rem + 4.4vw, 4.25rem);
  --tracking-caps: 0.12em;   /* one tracking for every uppercase eyebrow label */

  /* Space (4px base) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --section-y: clamp(4rem, 3rem + 5vw, 7.5rem);

  /* Shape & elevation */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgb(32 43 50 / 0.06), 0 2px 8px rgb(32 43 50 / 0.05);
  --shadow-md: 0 2px 6px rgb(32 43 50 / 0.06), 0 12px 32px rgb(32 43 50 / 0.10);
  --shadow-lg: 0 4px 12px rgb(32 43 50 / 0.08), 0 24px 64px rgb(32 43 50 / 0.16);

  --header-h: 4.25rem;
  --container: 72rem;

  /* Motion: one easing curve for every micro-interaction so hovers,
     reveals, and transitions share the same hand. */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Native controls (radios, calendar pickers, spinners) inherit the brand
     instead of the browser default blue. */
  accent-color: var(--flame-fill);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
  /* Reserve the scrollbar's width so locking scroll (open menu) never nudges
     the page sideways on platforms that draw a classic scrollbar. */
  scrollbar-gutter: stable;
  /* Backstop against phantom horizontal scroll (e.g. the reviews carousel on
     iOS Safari). iOS scrolls the root element, so the clip has to live here --
     clipping `body` alone doesn't stop it. `clip` (not `hidden`) prevents
     sideways scroll without creating a scroll container, so the fixed sticky
     CTA and vertical scrolling are unaffected. */
  overflow-x: clip;
}

body {
  margin: 0;
  /* Reserve space for the fixed .site-header so page content starts below it
     (matches the flow space the header used to occupy when it was sticky). */
  padding-top: var(--header-h);
  /* Backstop against phantom horizontal scroll (e.g. the reviews carousel on
     iOS Safari, where clip on the inner track alone doesn't reliably contain
     it). `clip` stops sideways scroll without creating a scroll container, so
     the fixed-position sticky CTA and vertical scrolling are unaffected -- the
     way `overflow-x: hidden` here would break them. */
  overflow-x: clip;
  -webkit-tap-highlight-color: transparent;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-4);
  text-wrap: balance;
}

/* Display sizes want tighter tracking than the rest of the ramp */
h1 { font-size: var(--text-hero); letter-spacing: -0.025em; }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p { margin: 0 0 var(--s-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-underline-offset: 0.16em; text-decoration-thickness: 1px; }

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

ul, ol { padding-left: 1.25rem; }

/* [hidden] must win over display rules like .form-grid { display: grid } */
[hidden] { display: none !important; }

/* The outline follows each element's own border-radius, so pills stay pills */
:focus-visible {
  outline: 3px solid var(--flame);
  outline-offset: 3px;
}

/* A translucent brand tint reads more refined than a solid block, and keeps
   text its own color so it stays legible on both light and dark surfaces */
::selection { background: rgb(211 124 4 / 0.24); }

/* Aligned digits for prices, specs, and contact numbers reads as precision */
.hero__proof strong,
.card__meta,
.choice__price,
.spec-list li,
.summary-box,
.header-call__num { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Layout ---------- */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding-block: var(--section-y); }
.section--tint { background: var(--paper-2); }
.section--dark { background: var(--ink); color: #fff; }
.section--dark .section-kicker { color: var(--flame); }
.section--dark .section-lede { color: var(--muted-dark); }

.section-head {
  max-width: 44rem;
  margin-bottom: var(--s-7);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker,
.wizard__step-count {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--flame-deep);
  margin-bottom: var(--s-3);
}
/* outranks .wizard__panel > p, which would repaint it muted */
.wizard__panel > .wizard__step-count {
  color: var(--flame-deep);
  margin-bottom: var(--s-2);
}

.section-lede {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 38rem;
}
.section-head--center .section-lede { margin-inline: auto; }

.grid { display: grid; gap: var(--s-5); }
/* Long unbreakable content (emails, URLs) must not blow out grid tracks */
.grid > * { min-width: 0; }
.card p { overflow-wrap: break-word; }
.grid--start { align-items: start; }
.grid--center { align-items: center; }
@media (min-width: 42rem) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 62rem) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Header ---------- */
.site-header {
  /* Fixed, not sticky: position:sticky silently fails to stay pinned when an
     ancestor uses overflow:clip (our anti-horizontal-scroll backstop on
     html/body) or when the open menu toggles overflow:hidden on body. Fixed
     pins to the viewport regardless. Body reserves --header-h to compensate
     for the header leaving normal flow (see body { padding-top }). */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgb(32 43 50 / 0.9);
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  color: #fff;
}
/* The frosted blur lives on a child layer, NOT on .site-header itself. A
   backdrop-filter (like filter/transform) on the header would make it the
   containing block for the position:fixed mobile nav nested inside it, pinning
   the drawer to the page's top instead of the viewport. Keeping the filter off
   the header also means the header always paints a solid background, so it never
   flashes blank on mobile when a compositing layer would otherwise be dropped. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.brand__mark { flex: none; }
.brand__accent { color: var(--flame); }

/* Primary logo in the hero: the main brand moment. Loaded as a background
   inside the desktop breakpoint only, so phones (where the art is hidden)
   never download the large image. */
.hero__art--brand {
  display: flex;
  justify-content: center;
}
@media (min-width: 62rem) {
  .hero__art--brand {
    aspect-ratio: 1 / 1;
    width: min(26rem, 100%);
    margin-inline: auto;
    background: center / contain no-repeat url("../img/main-logo-720.webp");
    filter: drop-shadow(0 24px 48px rgb(0 0 0 / 0.35));
  }
}

/* Secondary mark accents (footer, CTA bands) */
.site-footer__mark { margin-bottom: var(--s-4); }
.cta-band__mark {
  width: 4.75rem;
  height: 4.75rem;
  margin-inline: auto;
  margin-bottom: var(--s-4);
}
@media (max-width: 40rem) {
  .cta-band__mark {
    width: 4.25rem;
    height: 4.25rem;
  }
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--s-5);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  display: block;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgb(255 255 255 / 0.78);
  text-decoration: none;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.site-nav__link:hover { color: #fff; background: rgb(255 255 255 / 0.08); }
.site-nav__link[aria-current="page"] {
  color: #fff;
  background: rgb(255 255 255 / 0.12);
}

/* Phone button inside the mobile menu only */
.site-nav .site-nav__phone { display: none; }
@media (max-width: 56rem) {
  .site-nav .site-nav__phone { display: inline-flex; }
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  white-space: nowrap;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.header-call:hover { border-color: rgb(255 255 255 / 0.5); background: rgb(255 255 255 / 0.06); }
.header-call svg { flex: none; color: var(--flame); }
@media (max-width: 56rem) {
  .header-call { margin-left: auto; }
}
@media (max-width: 36rem) {
  .site-header__inner { gap: var(--s-3); }
  .header-call {
    padding: 0.6rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    justify-content: center;
  }
  .header-call__num { display: none; }
}
/* Tiny phones: the logo alone carries the brand */
@media (max-width: 23rem) {
  .brand__name { display: none; }
}

/* "Book" shortcut in the mobile header; the desktop nav has its own */
.site-header .header-book { display: none; }
@media (max-width: 56rem) {
  .site-header .header-book {
    display: inline-flex;
    margin-left: auto;
    padding: 0.55rem 1.1rem;
    min-height: 2.75rem;
    font-size: var(--text-sm);
  }
  .header-call { margin-left: 0; }
}
/* Small phones: Book + menu only; call and text live in the menu */
@media (max-width: 36rem) {
  .header-call { display: none; }
  .site-header .header-book,
  .nav-toggle { flex: none; }
  .brand { min-width: 0; }
  .brand__name { font-size: 1rem; }
}

/* Availability note under the hero CTAs */
.hero__note {
  margin: var(--s-4) 0 0;
  font-size: var(--text-sm);
  color: rgb(255 255 255 / 0.75);
}

/* Calm reassurance line (e.g. no-trip-fee) above a section's content */
.section-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 var(--s-6);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--muted);
}
.section-note svg { flex: none; color: var(--flame-deep); }

/* Sticky mobile CTA bar (injected by main.js on non-booking pages) */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 40;
  display: none;
  gap: var(--s-3);
  padding: 0.75rem var(--s-5) calc(0.75rem + env(safe-area-inset-bottom));
  background: var(--ink);
  border-top: 1px solid var(--ink-3);
  box-shadow: 0 -6px 24px rgb(0 0 0 / 0.25);
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.sticky-cta .btn--primary { flex: 1; }
.sticky-cta.is-visible { transform: translateY(0); }
@media (max-width: 56rem) {
  .sticky-cta { display: flex; }
  body.has-sticky-cta { padding-bottom: calc(5rem + env(safe-area-inset-bottom)); }
  body.nav-open .sticky-cta { visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: none; }
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: var(--radius-sm);
  background: transparent;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (max-width: 56rem) {
  .nav-toggle { display: inline-flex; order: 2; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-4);
    padding: var(--s-5);
    background: var(--ink);
    border-bottom: 1px solid var(--ink-3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-0.5rem);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: var(--s-1); }
  .site-nav__link { padding: 0.85rem 1rem; font-size: var(--text-base); border-radius: var(--radius-sm); }
  .site-nav .btn { width: 100%; }
  /* Keep the page put while the menu is open */
  body.nav-open { overflow: hidden; }
  body.nav-open main,
  body.nav-open footer { pointer-events: none; }
}

/* Decorative artwork: desktop only; on phones it just adds scroll */
@media (max-width: 62rem) {
  .hero__art,
  .art-desktop { display: none; }
}

/* On single-column layouts, lead cards (price + CTA) jump above long lists */
@media (max-width: 42rem) {
  .grid--2 > .card--lead { order: -1; }
}

.page-hero__lede a { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.99); }
@media (prefers-reduced-motion: reduce) {
  .btn:hover, .btn:active { transform: none; }
}

.btn--primary {
  background: var(--flame-fill);
  color: #fff;
  box-shadow: 0 1px 2px rgb(32 43 50 / 0.14);
}
.btn--primary:hover {
  background: var(--flame-hover);
  box-shadow: 0 6px 16px rgb(32 43 50 / 0.16);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover { background: var(--ink-2); }

/* Secondary button: dark outline, subtle dark fill on hover */
.btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { background: rgb(32 43 50 / 0.08); }

.btn--ghost-light {
  border-color: rgb(255 255 255 / 0.35);
  color: #fff;
  background: transparent;
}
.btn--ghost-light:hover { border-color: #fff; background: rgb(255 255 255 / 0.06); }

.btn--lg { padding: 1rem 2rem; font-size: var(--text-base); }
.btn--block { width: 100%; }

/* ---------- Cards ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
a.card { text-decoration: none; display: block; }
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-muted);
}
@media (prefers-reduced-motion: reduce) {
  .card--hover:hover { transform: none; }
}
/* Link cards pin their price/CTA row to the bottom, so those rows align across
   a grid even when titles or descriptions differ in length */
a.card--hover { display: flex; flex-direction: column; }
a.card--hover .card__meta { margin-top: auto; }

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: var(--flame-soft);
  color: var(--flame-deep);
  margin-bottom: var(--s-4);
}

.card__meta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  font-size: var(--text-sm);
  color: var(--muted);
}
/* Price leads the meta row: display face, brand color, so it scans first */
.card__meta > span:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--ink);
}
/* The middot separators recede */
.card__meta > span:nth-child(2) { color: var(--line); }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--s-4);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--flame-deep);
}
.card__link > span[aria-hidden] {
  transition: transform 0.2s var(--ease);
}
.card--hover:hover .card__link > span[aria-hidden] { transform: translateX(3px); }
@media (prefers-reduced-motion: reduce) {
  .card--hover:hover .card__link > span[aria-hidden] { transform: none; }
}

.card p { color: var(--muted); }
.card h3 { margin-bottom: var(--s-2); }

/* Dark card */
.card--dark {
  background: var(--ink-2);
  border-color: var(--ink-3);
  color: #fff;
}
.card--dark p { color: var(--muted-dark); }
.card--dark .card__icon { background: rgb(211 124 4 / 0.18); color: var(--flame); }

/* ---------- Badges / chips ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge--outline-light {
  border: 1px solid rgb(255 255 255 / 0.25);
  color: rgb(255 255 255 / 0.9);
  background: rgb(255 255 255 / 0.06);
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.trust-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3) var(--s-6);
  list-style: none;
  margin: 0;
  padding: var(--s-5) 0;
}
.trust-bar__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--ink);
}
.trust-bar__list svg { flex: none; color: var(--flame-deep); }
@media (max-width: 40rem) {
  /* Two-up grid reads tidier than four stacked rows on a phone */
  .trust-bar__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3) var(--s-4);
    justify-items: start;
  }
}

/* ---------- Check list ---------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--s-3);
}
.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.check-list svg { flex: none; margin-top: 0.2rem; color: var(--flame-deep); }
.section--dark .check-list svg,
.card--dark .check-list svg { color: var(--flame); }

/* Centered horizontal variant: used where a section leads with a centered head
   and the proof points read as a single quiet row instead of a column. */
.check-list--row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3) var(--s-6);
  max-width: 52rem;
  margin-inline: auto;
}
.check-list--row li { align-items: center; }
.check-list--row svg { margin-top: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding-block: clamp(4.5rem, 3rem + 7vw, 9rem) var(--section-y);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Soft overhead light for depth, no pattern or colored bloom */
  background: radial-gradient(120% 90% at 50% -10%, rgb(255 255 255 / 0.06), transparent 60%);
}

.hero__inner {
  position: relative;
  display: grid;
  gap: var(--s-7);
  align-items: center;
}
@media (min-width: 62rem) {
  .hero__inner { grid-template-columns: 1.1fr 0.9fr; }
}

.hero h1 { margin-block: var(--s-4) var(--s-5); }
.hero__lede {
  font-size: var(--text-lg);
  color: var(--muted-dark);
  max-width: 34rem;
  margin-bottom: var(--s-6);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}

.hero__proof {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4) var(--s-6);
  padding: var(--s-5) 0 0;
  border-top: 1px solid rgb(255 255 255 / 0.12);
  font-size: var(--text-sm);
  color: var(--muted-dark);
}
.hero__proof strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #fff;
}

.hero__art { position: relative; }

/* Page hero (interior pages) */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding-block: clamp(3.5rem, 2.5rem + 4vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero .section-kicker { color: var(--flame); }
.page-hero__lede {
  font-size: var(--text-lg);
  color: var(--muted-dark);
  max-width: 40rem;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 50% -20%, rgb(255 255 255 / 0.05), transparent 55%);
  pointer-events: none;
}

/* ---------- Steps (How it works) ---------- */
.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 62rem) { .steps { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 42rem) and (max-width: 61.99rem) { .steps { grid-template-columns: repeat(2, 1fr); } }

.step {
  counter-increment: step;
  position: relative;
  padding: var(--s-5);
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
}
.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  color: var(--flame);
  margin-bottom: var(--s-3);
}
.step h3 { font-size: var(--text-lg); margin-bottom: var(--s-2); }
.step p { font-size: var(--text-sm); color: var(--muted-dark); margin: 0; }

/* ---------- Legal prose (privacy policy) ---------- */
.legal-prose {
  max-width: 46rem;
  margin-inline: auto;
}
.legal-prose h2 {
  font-size: var(--text-2xl);
  margin-top: var(--s-7);
}
.legal-prose ul { margin: 0 0 var(--s-4); }
.legal-prose li + li { margin-top: var(--s-2); }

/* ---------- FAQ accordion ---------- */
.faq-list {
  display: grid;
  gap: var(--s-3);
  max-width: 46rem;
  margin-inline: auto;
}

.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.faq[open] {
  border-color: var(--color-muted);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.faq summary:hover { color: var(--flame-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease), border-color 0.2s var(--ease);
  margin-right: 0.25rem;
  margin-top: -0.2rem;
}
.faq summary:hover::after { border-color: var(--flame-deep); }
.faq[open] summary::after { transform: rotate(225deg); border-color: var(--flame-deep); }
.faq__body {
  padding: 0 var(--s-5) var(--s-5);
  color: var(--muted);
}
/* The answer settles in instead of snapping open (reduced-motion disables it
   via the global rule that zeroes animation-duration). */
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}
.faq[open] .faq__body { animation: faq-open 0.3s var(--ease); }

/* ---------- Forms ---------- */
.field { display: grid; gap: 0.4rem; align-content: start; }
.field > label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
}
.field__hint { font-size: var(--text-xs); color: var(--muted); }
/* Inline text links (booking intro, escape hatch) read as clearly tappable */
.field__hint a,
.page-hero__lede a { font-weight: 600; text-underline-offset: 2px; }

.input,
select.input,
textarea.input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  caret-color: var(--flame-fill);
  font: inherit;
  font-size: var(--text-base);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

/* Autofill keeps the form on-brand: paper fill and ink text instead of the
   browser's yellow wash. The near-infinite transition holds the fill so it
   never flashes on load. */
.input:-webkit-autofill,
.input:-webkit-autofill:hover,
.input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink);
  -webkit-box-shadow: 0 0 0 100px var(--paper) inset;
  caret-color: var(--flame-fill);
  transition: background-color 100000s ease 0s, border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 100px var(--paper) inset, 0 0 0 3px rgb(211 124 4 / 0.22);
}
.input:hover:not(:focus) { border-color: var(--color-muted); }
/* Consistent, intentional placeholder tone (Firefox fades it by default) */
.input::placeholder { color: var(--color-muted); opacity: 1; }
/* One height for every single-line control so grid rows align */
input.input,
select.input {
  height: 3.5rem;
  padding-block: 0;
}

/* Selects: strip the native chrome (Safari ignores sizing otherwise)
   and draw our own chevron so they match the text fields. This is what
   no-JS visitors get; with JS the .select component below takes over. */
select.input {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%235d6266' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.85rem auto;
  padding-right: 2.75rem;
  cursor: pointer;
}
select.input:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23d37c04' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.input:focus {
  outline: none;
  border-color: var(--flame);
  box-shadow: 0 0 0 3px rgb(211 124 4 / 0.22);
}
.input[aria-invalid="true"] { border-color: var(--danger); }
/* p.field__error: must outrank `.card p` so errors stay red inside cards */
p.field__error {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--danger);
}

textarea.input { resize: vertical; min-height: 6.5rem; }

/* ---------- Custom drop-downs ----------
   A browser draws an open <select>'s option list itself, and nothing in CSS
   reaches inside it, so each select gets a button + listbox rendered in front
   of it (built in main.js). The native select stays in the form as the source
   of truth; everything here is JS-created, so no-JS visitors keep the native
   control styled by the select.input rules above. */
.select { position: relative; }

/* Invisible but still submitted: the select keeps its name, value, and
   validation state. main.js forwards focus aimed at it (label clicks, the
   validator's focus on the first bad field) to the button. */
.select__native {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

/* .input supplies the frame (border, radius, paper fill, focus ring); the
   height rule there only targets input/select, so buttons repeat it. */
.select__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  height: 3.5rem;
  padding-block: 0;
  appearance: none;
  -webkit-appearance: none;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
}
.select__value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select__value--placeholder { color: var(--muted); }
.select__chevron {
  flex: none;
  color: var(--muted);
  transition: transform 0.2s var(--ease), color 0.15s var(--ease);
}
/* Open reads like focus (the visitor is mid-interaction either way) */
.select__button[aria-expanded="true"] {
  border-color: var(--flame);
  box-shadow: 0 0 0 3px rgb(211 124 4 / 0.22);
}
.select__button[aria-expanded="true"] .select__chevron {
  transform: rotate(180deg);
  color: var(--flame-deep);
}

.select__menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  z-index: 30; /* over page content, under the fixed header (50) */
  padding: 0.35rem;
  max-height: 17rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  scrollbar-width: thin;
  /* The open animation slides in from whichever side the panel is on. The
     direction rides a custom property rather than a second animation-name,
     because placement re-toggles --up on scroll and changing animation-name
     would restart the fade every time (the panel visibly flickered). */
  --select-from: -0.35rem;
  animation: select-open 0.16s var(--ease);
}
/* Flipped above the button when the list would run off the bottom */
.select__menu--up {
  top: auto;
  bottom: calc(100% + 0.4rem);
  --select-from: 0.35rem;
}
@keyframes select-open {
  from { opacity: 0; transform: translateY(var(--select-from)); }
}
@media (prefers-reduced-motion: reduce) {
  .select__menu { animation: none; }
  .select__chevron { transition: none; }
}

/* <optgroup> label. Sticky so the visitor always knows which part of the day
   they're scrolling through; options carry a matching scroll-margin so
   keyboard navigation never parks a row underneath one. */
.select__group {
  position: sticky;
  top: -0.35rem; /* cancels the menu's padding */
  z-index: 1;
  padding: 0.5rem 0.75rem 0.25rem;
  background: var(--paper);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--muted);
}

.select__option {
  scroll-margin-block: 2.25rem 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  cursor: pointer;
}
/* One highlight for both hover and keyboard, so there's never a second
   "which one am I on?" indicator competing with it */
.select__option.is-active { background: var(--flame-soft); }
.select__option[aria-selected="true"] { font-weight: 600; }
/* Checkmark on the current choice, drawn as a mask so it needs no markup */
.select__option[aria-selected="true"]::after {
  content: "";
  flex: none;
  width: 0.85rem;
  height: 0.85rem;
  background: var(--flame-deep);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 10.5l4 4 8-9' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 10.5l4 4 8-9' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
/* "Choose a date…" is a prompt, not a choice: no checkmark when it's current */
.select__option--placeholder { color: var(--muted); }
.select__option--placeholder[aria-selected="true"]::after { content: none; }
.select__option[aria-disabled="true"] {
  color: var(--muted);
  cursor: not-allowed;
  background: none;
}

/* Type-ahead field wrapper: anchors the suggestion panel (styled by the
   .select__menu rules above) to the input. */
.combo { position: relative; }

/* ---------- Quick-pick chips ----------
   Tap-instead-of-type shortcuts under a text field. Filling the field is a JS
   job, so they stay hidden when JS hasn't run rather than sitting there dead. */
.chips { display: none; }
.js .chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-1);
}
.chip {
  font: inherit;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  cursor: pointer;
  touch-action: manipulation;
  transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease),
    color 0.15s var(--ease);
}
.chip:hover {
  border-color: var(--color-muted);
  color: var(--ink);
}
.chip[aria-pressed="true"] {
  border-color: var(--flame);
  background: var(--flame-soft);
  color: var(--flame-deep);
}

.form-grid { display: grid; gap: var(--s-4); }
@media (min-width: 42rem) {
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
  .form-grid--2 .field--full { grid-column: 1 / -1; }
}

/* Choice cards (radio-as-card) */
.choice-grid { display: grid; gap: var(--s-3); }
@media (min-width: 42rem) { .choice-grid { grid-template-columns: 1fr 1fr; } }

.choice {
  position: relative;
  display: block;
  cursor: pointer;
}
.choice input {
  position: absolute;
  opacity: 0;
  inset: 0;
  pointer-events: none;
}
/* Icon and title share the top row; the description spans the full width
   underneath so it isn't squeezed into a narrow column beside the icon. */
.choice__body {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--s-3);
  row-gap: var(--s-2);
  align-items: center;
  align-content: start;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-4) var(--s-5);
  transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
  height: 100%;
}
/* Vehicle-type mark, on a tinted tile that flips to paper once the card is
   picked (the card itself takes the tint) */
.choice__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  background: var(--flame-soft);
  color: var(--flame-deep);
  transition: background-color 0.15s var(--ease);
}
.choice input:checked + .choice__body .choice__icon { background: var(--paper); }
.choice:hover .choice__body { border-color: var(--color-muted); }
.choice input:checked + .choice__body {
  border-color: var(--flame);
  background: var(--flame-soft);
  box-shadow: inset 0 0 0 1px var(--flame);
}
.choice input:focus-visible + .choice__body {
  outline: 3px solid var(--flame);
  outline-offset: 3px;
}
.choice__title {
  grid-column: 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  font-family: var(--font-display);
  font-weight: 600;
}
.choice__price { color: var(--flame-deep); white-space: nowrap; }
.choice__desc {
  grid-column: 1 / -1;
  display: block;
  font-size: var(--text-sm);
  color: var(--muted);
}


/* ---------- Booking wizard ---------- */
.wizard {
  max-width: 46rem;
  margin-inline: auto;
}

.wizard__progress {
  display: flex;
  gap: var(--s-2);
  list-style: none;
  margin: 0 0 var(--s-6);
  padding: 0;
}
.wizard__progress li {
  flex: 1;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--muted);
  padding-top: var(--s-2);
  border-top: 3px solid var(--line);
}
.wizard__progress li[aria-current="step"] {
  color: var(--flame-deep);
  border-top-color: var(--flame);
}
.wizard__progress li.is-done {
  color: var(--ink);
  border-top-color: var(--ink);
}
@media (max-width: 42rem) {
  .wizard__progress li span { display: none; }
  .wizard__progress li[aria-current="step"] span { display: inline; }
}

.wizard__panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.wizard__panel h2 { font-size: var(--text-2xl); margin-bottom: var(--s-2); }
.wizard__panel > p { color: var(--muted); margin-bottom: var(--s-5); }

.wizard__nav {
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
  margin-top: var(--s-6);
}
.wizard__nav .btn:only-child { margin-left: auto; }
@media (max-width: 36rem) {
  /* Column (not reverse) keeps the primary action at the bottom, nearest the thumb */
  .wizard__nav { flex-direction: column; }
  .wizard__nav .btn { width: 100%; }
}

/* Trust signals under the booking wizard */
.trust-row {
  list-style: none;
  margin: var(--s-5) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3) var(--s-6);
  font-size: var(--text-xs);
  color: var(--muted);
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.trust-row svg { flex: none; color: var(--flame-deep); }

.summary-box {
  background: var(--paper-2);
  border-radius: var(--radius);
  padding: var(--s-5);
  display: grid;
  gap: var(--s-3);
}
.summary-box dl { margin: 0; display: grid; gap: var(--s-2); }
.summary-box .summary-row {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  font-size: var(--text-sm);
}
.summary-box dt { color: var(--muted); }
.summary-box dd { margin: 0; font-weight: 600; text-align: right; }

/* ---------- Tables (spec rows) ---------- */
.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--text-sm);
}
.spec-list span:first-child { color: var(--muted); }
.spec-list span:last-child { font-weight: 600; text-align: right; }

/* ---------- Reviews ---------- */
/* Hang the opening quote into the margin so the text edge aligns optically
   (Safari supports it; other browsers simply ignore it) */
.review-card blockquote p,
.review-inline blockquote p,
.pull-quote blockquote p { hanging-punctuation: first; }

.stars {
  display: inline-flex;
  gap: 3px;
  line-height: 1;
  color: var(--flame);
}
/* svg is display:block globally; pin size and keep them on one row */
.stars svg { display: block; width: 16px; height: 16px; flex: none; }

.review-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.review-card blockquote { margin: var(--s-4) 0 0; padding: 0; flex: 1; }
.review-card blockquote p { margin: 0; color: var(--ink); }
.review-card figcaption {
  margin-top: var(--s-4);
  font-size: var(--text-sm);
}
.review-card figcaption strong { font-family: var(--font-display); }
.review-card figcaption span { color: var(--muted); }

/* The wrapper clips the track's horizontal overflow so the scrolling reviews
   never leak onto the page and trigger a phantom horizontal scroll (notably on
   iOS Safari). `clip` keeps the internal track scrollable and, unlike hidden,
   leaves vertical card shadows free; the small clip-margin lets those shadows
   breathe at the left/right edges. */
.carousel {
  overflow-x: clip;
  overflow-clip-margin: 14px;
  /* iOS Safari only honors the clip above while this element owns a compositing
     layer. The reveal animation holds a transform on the carousel until the
     section scrolls in, then sets `transform: none` -- dropping the layer, so
     the clip stops working and the ~1800px track leaks, making the whole page
     scroll sideways from anywhere. `will-change` keeps a persistent layer so
     the clip survives the reveal. */
  will-change: transform;
}

/* Reveal ends at `transform: none` (see the .reveal rules), which would drop
   the carousel's compositing layer and break the clip on iOS. Land on a no-op
   3D transform instead so the layer -- and the clip -- persist. */
.js .carousel.reveal.is-visible {
  transform: translateZ(0);
}

/* Carousel: scroll-snap track, three cards per view on desktop */
.carousel__track {
  display: flex;
  gap: var(--s-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* Keep the swipe inside the track: without this, momentum scrolling on iOS
     Safari chains out of the carousel and drags the whole page sideways once
     you reach the last review (the phantom horizontal scroll). */
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  /* breathing room so card shadows aren't clipped by the scroll box */
  padding: 6px 6px 14px;
  margin: -6px -6px -14px;
  /* The -6px left margin above pulls the track's snap start 6px past the
     carousel's clip edge. Where iOS Safari doesn't honor `overflow-clip-margin`,
     that 6px gets clipped off the left of every snapped card. Offset the snap by
     the same 6px so cards land flush with the clip edge instead. */
  scroll-padding-left: 6px;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track:focus-visible { outline: 3px solid var(--flame); outline-offset: 3px; border-radius: var(--radius); }
.carousel__track .review-card {
  flex: 0 0 calc((100% - 2 * var(--s-5) - 12px) / 3);
  scroll-snap-align: start;
}
@media (max-width: 62rem) {
  .carousel__track .review-card { flex-basis: calc((100% - var(--s-5) - 12px) / 2); }
}
@media (max-width: 42rem) {
  /* one card with a peek of the next: invites the swipe */
  .carousel__track .review-card { flex-basis: 86%; }
}
@media (prefers-reduced-motion: reduce) {
  .carousel__track { scroll-behavior: auto; }
}

.carousel__nav {
  display: flex;
  justify-content: flex-end;
  gap: var(--s-2);
  margin-top: var(--s-5);
}
.carousel__btn {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  /* Rapid taps on the arrows read as a double-tap to iOS Safari, which zooms
     the page. `manipulation` opts out of double-tap-to-zoom on these buttons. */
  touch-action: manipulation;
  transition: background-color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.carousel__btn:hover:not(:disabled) { background: rgb(32 43 50 / 0.08); }
.carousel__btn:disabled { opacity: 0.35; cursor: default; }

/* Single quote near the booking form */
.review-inline {
  max-width: 32rem;
  margin: var(--s-6) auto 0;
  text-align: center;
}
.review-inline blockquote { margin: var(--s-2) 0 0; }
.review-inline blockquote p { color: var(--ink); font-size: var(--text-sm); }
.review-inline figcaption { margin-top: var(--s-2); font-size: var(--text-xs); color: var(--muted); }
.review-inline figcaption strong { font-family: var(--font-display); color: var(--ink); }

/* Rotating variant: quotes stack in one grid cell so the tallest one
   sets the height and swaps never shift the layout */
.review-rotator__track { display: grid; }
.review-rotator__item {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.review-rotator__item.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .review-rotator__item { transition: none; }
}

/* Editorial pull-quote (About page) */
.pull-quote {
  margin: var(--s-6) 0 0;
  border-left: 3px solid var(--flame);
  padding-left: var(--s-5);
}
.pull-quote blockquote { margin: 0; }
.pull-quote blockquote p {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}
.pull-quote figcaption { margin-top: var(--s-2); font-size: var(--text-sm); color: var(--muted); }
.pull-quote figcaption strong { color: var(--ink); }

/* Rating inside CTA bands: stars stacked above the text */
.cta-band__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-5);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted-dark);
}
.cta-band__rating .stars { gap: 4px; }
.cta-band__rating .stars svg { width: 16px; height: 16px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 50% 0%, rgb(255 255 255 / 0.05), transparent 55%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { max-width: 30ch; margin-inline: auto; }
.cta-band p { color: var(--muted-dark); max-width: 44ch; margin-inline: auto; }
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
  margin-top: var(--s-6);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--muted-dark);
  padding-block: var(--s-8) var(--s-6);
  font-size: var(--text-sm);
}
.site-footer a { color: rgb(255 255 255 / 0.82); text-decoration: none; }
.site-footer a:hover { color: var(--flame); text-decoration: underline; }
/* Inline links inside the copyright line (e.g. Privacy policy) sit within a
   sentence, so underline them: color alone can't distinguish them (WCAG 1.4.1). */
.site-footer__bottom a { text-decoration: underline; }

.site-footer__grid {
  display: grid;
  gap: var(--s-6);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}
@media (min-width: 62rem) {
  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* Footer column headings are h2: they are top-level sections of the footer
   landmark, so h3 skipped a level on pages whose last section heading was h1. */
.site-footer h2 {
  font-size: var(--text-sm);
  color: #fff;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-2); }
/* Thumb-sized footer links on touch layouts */
@media (max-width: 56rem) {
  .site-footer ul { gap: 0; }
  .site-footer ul a { display: inline-block; padding-block: 0.65rem; }
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-3);
  padding-top: var(--s-5);
  font-size: var(--text-xs);
}

/* ---------- Social links ----------
   ul.social-links matches .site-footer ul / .site-footer ul a specificity,
   and sits after them in the source, so the icon row keeps its flex layout,
   circular hit areas, and underline-free hover inside the footer. */
ul.social-links {
  display: flex;
  gap: var(--s-3);
  list-style: none;
  margin: var(--s-5) 0 0;
  padding: 0;
}
ul.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 0.2);
  color: rgb(255 255 255 / 0.82);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
ul.social-links a:hover {
  background: var(--flame);
  border-color: var(--flame);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
ul.social-links--light a {
  border-color: var(--line);
  color: var(--ink);
}

/* "Leave a Google review" prompt under the testimonial carousel */
.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  margin-top: var(--s-6);
}
.reviews-cta p { margin: 0; color: var(--muted); }

/* ---------- Reveal animation (only when JS is available) ----------
   The keyframe fallback guarantees nothing stays invisible if the
   IntersectionObserver never fires (hidden tabs, odd webviews). */
@keyframes reveal-fallback {
  to { opacity: 1; transform: none; }
}
.js .reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
  animation: reveal-fallback 0.6s var(--ease) 2.5s forwards;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  animation: none;
}
/* Cards in a shared grid cascade in rather than snapping together. Delays are
   small enough to read as one gesture, not a slideshow. */
@media (min-width: 42rem) {
  .js .grid > .reveal:nth-child(2) { transition-delay: 0.07s; }
  .js .grid > .reveal:nth-child(3) { transition-delay: 0.14s; }
  .js .grid > .reveal:nth-child(4) { transition-delay: 0.21s; }
  .js .grid > .reveal:nth-child(5) { transition-delay: 0.28s; }
  .js .grid > .reveal:nth-child(6) { transition-delay: 0.35s; }
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; animation: none; }
  .js .grid > .reveal { transition-delay: 0s; }
}

/* ---------- iPhone / small-screen refinements ---------- */
@media (max-width: 40rem) {
  /* Calmer scroll rhythm: the desktop clamp resolves to ~67px per side,
     which is a lot of dead space between blocks on a phone. */
  :root { --section-y: 3rem; }

  /* Tighter hero so the first CTA sits higher on the opening screen */
  .hero { padding-block: 2.5rem var(--section-y); }
  .hero h1 { margin-block: var(--s-3) var(--s-4); }
  .hero__lede { margin-bottom: var(--s-5); }
  .hero__actions { margin-bottom: var(--s-5); }

  /* Proof points as one compact three-up row, not three stacked lines */
  .hero__proof { gap: var(--s-2) var(--s-4); }
  .hero__proof li { flex: 1 1 0; min-width: 0; }
  .hero__proof strong { font-size: var(--text-base); }

  /* More reading width inside cards on narrow screens */
  .card { padding: var(--s-5); }
}

/* ---------- Utilities ---------- */
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }
/* .hp-field: honeypot form field - invisible to people, tempting to bots */
.visually-hidden,
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
