/* =========================================================
   Swift Shine Mobile Detailing
   Brand: dark blue · light blue · chrome
   ========================================================= */

:root {
  /* Brand */
  --navy-950: #03070e;
  --navy-900: #06101f;
  --navy-850: #0a182d;
  --navy-800: #0e2140;
  --blue-dark: #1a56a0;
  --blue: #2c78d0;
  --blue-light: #58aef5;
  --sky: #a6d8ff;

  /* Semantic */
  --bg: var(--navy-950);
  --bg-alt: var(--navy-900);
  --surface: rgba(20, 44, 82, 0.35);
  --surface-solid: var(--navy-850);
  --line: rgba(150, 200, 255, 0.12);
  --line-strong: rgba(150, 200, 255, 0.28);
  --text: #eef4fb;
  --text-muted: #a3b4ca;
  --focus: #7cc4ff;

  --chrome: linear-gradient(180deg,
      #ffffff 0%, #dfe7f0 22%, #9aa8b8 46%, #5f6d7e 52%,
      #c9d4e0 64%, #f4f8fc 82%, #aab7c6 100%);
  --blue-gradient: linear-gradient(120deg, var(--sky) 0%, var(--blue-light) 45%, var(--blue) 100%);
  --btn-gradient: linear-gradient(135deg, #6cbcff 0%, #2f86e0 55%, #1a56a0 100%);

  /* Type */
  --font-display: "Unbounded", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing (8pt) */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 180ms;
  --dur: 280ms;

  --header-h: 72px;
  --z-header: 40;
  --z-bar: 50;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; margin: 0; letter-spacing: -0.01em; font-weight: 600; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 6px; }

.container { width: min(1180px, 100% - 32px); margin-inline: auto; }
.narrow { width: min(820px, 100% - 32px); }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--blue); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
  font-weight: 700; text-decoration: none; transition: top var(--dur-fast);
}
.skip-link:focus { top: 12px; }

/* ---------- Highlight text ---------- */
.chrome {
  background: var(--chrome);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.08)) drop-shadow(0 6px 18px rgba(88,174,245,0.18));
}
.blue-grad {
  background: var(--blue-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 6px 24px 6px 6px;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 1rem; text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer; touch-action: manipulation;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur) var(--ease-out),
              background-color var(--dur), border-color var(--dur);
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--btn-gradient); color: #fff;
  box-shadow: 0 10px 30px -8px rgba(44, 120, 208, 0.7), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary:hover { box-shadow: 0 14px 40px -6px rgba(88, 174, 245, 0.8), inset 0 1px 0 rgba(255,255,255,0.45); transform: translateY(-2px); }
.btn-icon {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(3, 7, 14, 0.55); border: 1px solid rgba(255,255,255,0.25);
}
.btn-icon svg { width: 18px; height: 18px; }
.btn-ghost {
  padding: 6px 22px; color: var(--text);
  border-color: var(--line-strong); background: rgba(255,255,255,0.03);
}
.btn-ghost:hover { border-color: var(--blue-light); background: rgba(88,174,245,0.08); }
.btn-ghost svg { width: 18px; height: 18px; color: var(--blue-light); }
.btn-sm { min-height: 44px; padding: 6px 18px; font-size: 0.9375rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: var(--z-header);
  height: var(--header-h);
  transition: background-color var(--dur), border-color var(--dur), backdrop-filter var(--dur);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(3, 7, 14, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-icon { width: 56px; height: auto; }
.brand-text { font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; letter-spacing: 0.02em; }
.main-nav { display: flex; gap: var(--s-6); }
.main-nav a { text-decoration: none; font-size: 0.9375rem; font-weight: 500; color: var(--text-muted); transition: color var(--dur-fast); padding: 8px 0; }
.main-nav a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: var(--s-3); }
.menu-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-top: calc(var(--header-h) + var(--s-8));
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(44,120,208,0.22), transparent 70%),
    var(--bg);
}
.hero::before { /* diagonal light streak, Inspo #2 */
  content: ""; position: absolute; inset: -20% auto auto -10%; width: 60%; height: 120%;
  background: linear-gradient(115deg, transparent 40%, rgba(166,216,255,0.06) 50%, transparent 60%);
  pointer-events: none;
}
.hero-glow {
  position: absolute; left: 50%; top: 58%; width: 900px; height: 320px; translate: -50% 0;
  background: radial-gradient(closest-side, rgba(88,174,245,0.35), transparent);
  filter: blur(40px); pointer-events: none;
}
.hero-content { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-strong);
  font-size: 0.875rem; font-weight: 600; color: var(--text);
  margin-bottom: var(--s-5);
}
.pill svg { width: 16px; height: 16px; color: var(--blue-light); }
.hero-title {
  font-size: clamp(2.25rem, 7vw, 5.25rem);
  font-weight: 600; letter-spacing: -0.025em; line-height: 1.05;
  text-wrap: balance;
}
.hero-sub {
  max-width: 580px; margin-top: var(--s-5);
  font-size: clamp(1rem, 1.6vw, 1.1875rem); color: var(--text-muted);
}
.hero-sub strong { color: var(--text); font-weight: 700; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; margin-top: var(--s-6); }

.hero-stage {
  position: relative; width: min(1100px, 100% - 32px); margin: var(--s-7) auto 0;
}
.hero-car {
  width: 100%; aspect-ratio: 16 / 7; object-fit: cover; object-position: center 60%;
  --fade: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent),
          linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent);
  -webkit-mask-image: var(--fade); -webkit-mask-composite: source-in;
          mask-image: var(--fade);         mask-composite: intersect;
}
.hero-reflect-wrap { /* wet-floor reflection, Inspo #1 */
  height: clamp(60px, 12vw, 150px); overflow: hidden; margin-top: 2px;
  opacity: 0.3; filter: blur(2px) saturate(1.2);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent);
          mask-image: linear-gradient(to bottom, #000, transparent);
}
.hero-car-reflect {
  width: 100%; aspect-ratio: 16 / 7; object-fit: cover; object-position: center 60%;
  transform: scaleY(-1);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}
.stats {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5);
  margin: var(--s-5) auto 0; padding: var(--s-6) 0 var(--s-8);
  border-top: 1px solid var(--line);
  max-width: 960px;
}
.stats li { display: flex; align-items: center; justify-content: center; gap: 10px; }
.stat-num { font-family: var(--font-display); font-size: clamp(1.375rem, 2.6vw, 2rem); font-weight: 600; white-space: nowrap; }
.stat-label { font-size: 0.8125rem; line-height: 1.3; color: var(--text-muted); }

/* ---------- Sections ---------- */
.section { padding: var(--s-10) 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--bg-alt), var(--bg)); border-top: 1px solid var(--line); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto var(--s-8); }
.section-head h2 { font-size: clamp(1.875rem, 4.5vw, 3.25rem); text-wrap: balance; }
.section-head p:not(.eyebrow) { margin-top: var(--s-4); color: var(--text-muted); font-size: 1.0625rem; }
.eyebrow {
  display: inline-block; margin-bottom: var(--s-3);
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-light);
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); counter-reset: step; }
.step {
  position: relative; text-align: center;
  padding: var(--s-7) var(--s-5) var(--s-6);
  border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line);
  transition: border-color var(--dur), transform var(--dur) var(--ease-out);
}
.step:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.step-num {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-display); font-size: 0.875rem; color: var(--blue-light); opacity: 0.7;
}
.step-icon {
  display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto var(--s-5);
  border-radius: 20px; color: var(--sky);
  background: linear-gradient(145deg, rgba(88,174,245,0.2), rgba(26,86,160,0.08));
  border: 1px solid var(--line-strong);
}
.step-icon svg { width: 28px; height: 28px; }
.step h3 { font-size: 1.25rem; margin-bottom: var(--s-3); }
.step p { color: var(--text-muted); }
.center-cta { display: flex; justify-content: center; margin-top: var(--s-7); }

/* ---------- Pricing ---------- */
.vehicle-picker { border: 0; padding: 0; margin: 0 0 var(--s-6); text-align: center; }
.vehicle-picker legend {
  width: 100%; margin-bottom: var(--s-4);
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted);
}
.vehicle-options { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-2); }
.vehicle-options label {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 4px;
  min-width: 128px; padding: 14px 16px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  cursor: pointer; transition: border-color var(--dur-fast), background-color var(--dur-fast);
}
.vehicle-options label:hover { border-color: var(--line-strong); }
.vehicle-options input { position: absolute; opacity: 0; pointer-events: none; }
.vehicle-options input:focus-visible + .v-inner { outline: 3px solid var(--focus); outline-offset: 6px; border-radius: 8px; }
.vehicle-options label:has(input:checked) {
  border-color: var(--blue-light);
  background: linear-gradient(160deg, rgba(88,174,245,0.22), rgba(26,86,160,0.12));
  box-shadow: 0 0 0 1px var(--blue-light), 0 10px 30px -12px rgba(88,174,245,0.6);
}
.v-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.v-inner svg { width: 40px; height: 22px; color: var(--sky); stroke-width: 1.6; }
.v-name { font-weight: 700; font-size: 0.9375rem; }
.v-sub { font-size: 0.75rem; color: var(--text-muted); }

.tabs {
  display: flex; gap: 4px; padding: 6px; margin: 0 auto var(--s-6); width: fit-content; max-width: 100%;
  border-radius: var(--radius-pill); background: rgba(255,255,255,0.03); border: 1px solid var(--line);
  overflow-x: auto; scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tabs button {
  flex-shrink: 0; min-height: 44px; padding: 8px 20px; border-radius: var(--radius-pill);
  border: 0; background: transparent; color: var(--text-muted); font-weight: 700; font-size: 0.9375rem;
  transition: background-color var(--dur-fast), color var(--dur-fast);
}
.tabs button:hover { color: var(--text); }
.tabs button[aria-selected="true"] { background: var(--btn-gradient); color: #fff; box-shadow: 0 6px 20px -8px rgba(88,174,245,0.8); }

.panel-intro { text-align: center; color: var(--text-muted); margin: 0 auto var(--s-6); max-width: 620px; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: var(--s-5); align-items: start; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  padding: var(--s-6); border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
  animation: cardIn 420ms var(--ease-out) both;
}
.price-card:nth-child(2) { animation-delay: 60ms; }
.price-card:nth-child(3) { animation-delay: 120ms; }
@keyframes cardIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.price-card.featured {
  background: linear-gradient(170deg, rgba(44,120,208,0.28), rgba(10,24,45,0.6) 55%);
  border-color: transparent;
  box-shadow: 0 30px 60px -30px rgba(44,120,208,0.7);
}
.price-card.featured::before { /* chrome border */
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: var(--chrome);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.badge {
  position: absolute; top: -14px; left: 50%; translate: -50% 0;
  padding: 6px 16px; border-radius: var(--radius-pill);
  background: var(--chrome); color: var(--navy-950);
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
  box-shadow: 0 6px 20px -6px rgba(255,255,255,0.4);
}
.card-level { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-light); }
.card-title { font-size: 1.375rem; margin: 8px 0 4px; }
.card-tagline { color: var(--text-muted); font-size: 0.9375rem; }
.card-price { display: flex; align-items: baseline; gap: 8px; margin: var(--s-5) 0; padding-bottom: var(--s-5); border-bottom: 1px solid var(--line); }
.card-price .from { font-size: 0.8125rem; color: var(--text-muted); }
.card-price .amount { font-family: var(--font-display); font-size: 2.75rem; font-weight: 600; line-height: 1; font-variant-numeric: tabular-nums; }
.card-highlight {
  margin-bottom: var(--s-4); padding: 10px 14px; border-radius: var(--radius-sm);
  background: rgba(88,174,245,0.1); border: 1px solid rgba(88,174,245,0.25);
  font-size: 0.875rem; font-weight: 600; color: var(--sky);
}
.includes { display: grid; gap: 10px; margin-bottom: var(--s-6); }
.includes li { display: flex; gap: 10px; font-size: 0.9375rem; line-height: 1.45; color: #d4deea; }
.includes li svg { width: 18px; height: 18px; margin-top: 1px; color: var(--blue-light); }
.includes li.upgrade { color: var(--text); font-weight: 600; }
.includes li.upgrade svg { color: var(--sky); }
.includes-group { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }
.price-card .btn { margin-top: auto; width: 100%; }

.ceramic {
  margin-top: var(--s-6); display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--s-6); align-items: center;
  padding: var(--s-7) var(--s-6); border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(166,216,255,0.18), transparent 60%),
    linear-gradient(160deg, rgba(20,44,82,0.6), rgba(3,7,14,0.6));
  border: 1px solid var(--line-strong);
  animation: cardIn 420ms 180ms var(--ease-out) both;
}
.ceramic h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 6px 0 var(--s-4); }
.ceramic ul { display: grid; gap: 8px; color: var(--text-muted); font-size: 0.9375rem; }
.ceramic ul li { display: flex; gap: 10px; }
.ceramic ul svg { width: 18px; height: 18px; color: var(--sky); margin-top: 2px; }
.ceramic-price { text-align: center; }
.ceramic-price .amount { font-family: var(--font-display); font-size: clamp(2.75rem, 6vw, 4rem); font-weight: 600; display: block; line-height: 1; margin: 6px 0 var(--s-5); }
.ceramic-price .from { color: var(--text-muted); font-size: 0.875rem; }

.fine-print { text-align: center; margin: var(--s-7) auto 0; max-width: 640px; font-size: 0.875rem; color: var(--text-muted); }
.fine-print strong { color: var(--text); }

/* ---------- Add-ons ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: var(--s-3); }
.addon {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  padding: 18px 20px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line);
  transition: border-color var(--dur-fast);
}
.addon:hover { border-color: var(--line-strong); }
.addon-name { font-weight: 600; }
.addon-note { display: block; font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.addon-price { font-family: var(--font-display); font-weight: 600; color: var(--sky); white-space: nowrap; font-variant-numeric: tabular-nums; }

/* ---------- Membership ---------- */
.membership {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--s-8); align-items: center;
  padding: var(--s-8); border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 0% 100%, rgba(44,120,208,0.3), transparent 60%),
    var(--surface-solid);
  border: 1px solid var(--line-strong);
}
.membership h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: var(--s-4); }
.membership-copy > p:not(.eyebrow) { color: var(--text-muted); margin-bottom: var(--s-6); max-width: 460px; }
.plans { display: grid; gap: var(--s-3); }
.plan {
  display: flex; flex-direction: column; gap: 2px; padding: 20px 24px; border-radius: var(--radius);
  background: rgba(255,255,255,0.03); border: 1px solid var(--line);
}
.plan-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.plan-desc { color: var(--text-muted); font-size: 0.9375rem; }
.plan-featured { border-color: var(--blue-light); background: linear-gradient(120deg, rgba(88,174,245,0.18), rgba(88,174,245,0.03)); }
.plan-featured .plan-name { color: var(--sky); }

/* ---------- Recent work reel ---------- */
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); grid-auto-flow: dense; }
.work {
  position: relative; margin: 0; overflow: hidden; aspect-ratio: 9 / 16;
  border-radius: var(--radius); background: var(--surface-solid); border: 1px solid var(--line);
}
.work-featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.work-featured-right { grid-column: 3 / span 2; }
.work video, .work img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.work:hover video, .work:hover img { transform: scale(1.04); }
.work figcaption {
  position: absolute; inset: auto 0 0; padding: 40px 14px 12px;
  background: linear-gradient(to top, rgba(3,7,14,0.92), transparent);
  font-weight: 700; font-size: 0.875rem; line-height: 1.3;
}
.work-featured figcaption { font-family: var(--font-display); font-size: clamp(1rem, 2vw, 1.375rem); padding: 60px 20px 18px; }
.work-featured::after { /* chrome frame on the hero tile */
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; pointer-events: none;
  background: var(--chrome);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.work-controls { display: flex; justify-content: center; margin-top: var(--s-5); }
.work-controls svg { width: 16px; height: 16px; }

/* ---------- Before / After ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.ba { margin: 0; }
.ba-frame {
  --pos: 50%;
  position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, rgba(88,174,245,0.05) 0 12px, transparent 12px 24px),
    var(--surface-solid);
  border: 1px solid var(--line);
}
.ba-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-frame.missing .ba-handle, .ba-frame.missing .ba-tag, .ba-frame.missing .ba-range { display: none; }
.ba-frame.missing::after {
  content: "Photo coming soon"; position: absolute; inset: 0; display: grid; place-items: center;
  font-weight: 600; color: var(--text-muted); font-size: 0.9375rem;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; translate: -1px 0;
  background: var(--chrome); pointer-events: none; z-index: 2;
}
.ba-handle::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; translate: -50% -50%;
  border-radius: 50%; background: var(--navy-950) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a6d8ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18-6-6 6-6M15 6l6 6-6 6'/%3E%3C/svg%3E") center / 22px no-repeat;
  border: 2px solid #dfe7f0; box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; z-index: 3;
  opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none; touch-action: pan-y;
}
.ba-range:focus-visible ~ .ba-handle::after, .ba-frame:has(.ba-range:focus-visible) .ba-handle::after { outline: 3px solid var(--focus); outline-offset: 3px; }
.ba-tag {
  position: absolute; top: 12px; z-index: 2; padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(3,7,14,0.7); backdrop-filter: blur(6px); pointer-events: none;
}
.ba-tag-before { left: 12px; }
.ba-tag-after { right: 12px; color: var(--sky); }
.ba figcaption { margin-top: var(--s-3); text-align: center; font-weight: 600; color: var(--text-muted); }

/* ---------- Reviews ---------- */
.reviews-widget { max-width: 760px; margin: 0 auto; }
.reviews-placeholder {
  text-align: center; padding: var(--s-8) var(--s-6); border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
}
.g-logo { width: 44px; height: 44px; margin: 0 auto var(--s-3); stroke: none; }
.stars { font-size: 1.75rem; letter-spacing: 4px; color: #f5c451; margin-bottom: var(--s-3); }
.reviews-placeholder p { color: var(--text-muted); }
.reviews-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; margin-top: var(--s-5); }

/* ---------- Service area ---------- */
.area { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--s-8); align-items: center; }
.area h2 { font-size: clamp(1.875rem, 4.5vw, 3rem); margin-bottom: var(--s-4); }
.area-copy > p:not(.eyebrow) { color: var(--text-muted); }
.towns { display: flex; flex-wrap: wrap; gap: var(--s-2); margin: var(--s-6) 0; }
.towns li {
  padding: 8px 16px; border-radius: var(--radius-pill); font-weight: 600; font-size: 0.9375rem;
  background: rgba(88,174,245,0.1); border: 1px solid rgba(88,174,245,0.3); color: var(--sky);
}
.hours { display: flex; align-items: center; gap: var(--s-4); padding: var(--s-4) var(--s-5); border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); width: fit-content; }
.hours svg { width: 28px; height: 28px; color: var(--blue-light); }
.hours div { display: flex; flex-direction: column; }
.hours span { color: var(--text-muted); font-size: 0.9375rem; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-strong); aspect-ratio: 4 / 3.2; background: var(--surface-solid); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(0.9) hue-rotate(180deg) saturate(0.8) contrast(0.9); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: var(--s-3); }
.faq details { border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); transition: border-color var(--dur-fast); }
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-4);
  padding: 20px 24px; cursor: pointer; font-weight: 700; font-size: 1.0625rem; list-style: none; min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; width: 12px; height: 12px; flex-shrink: 0;
  border-right: 2px solid var(--blue-light); border-bottom: 2px solid var(--blue-light);
  rotate: 45deg; translate: 0 -3px; transition: rotate var(--dur) var(--ease-out);
}
.faq details[open] summary::after { rotate: 225deg; translate: 0 3px; }
.faq details p { padding: 0 24px 22px; color: var(--text-muted); }
.faq details a { color: var(--sky); }

/* ---------- Final CTA ---------- */
.final-cta { padding: var(--s-9) 0 var(--s-10); }
.final-card {
  position: relative; overflow: hidden; text-align: center;
  padding: var(--s-9) var(--s-6); border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 60% 70% at 50% 110%, rgba(88,174,245,0.45), transparent 70%),
    linear-gradient(180deg, var(--navy-850), var(--navy-900));
  border: 1px solid var(--line-strong);
}
.final-logo { width: 140px; margin: 0 auto var(--s-5); filter: drop-shadow(0 10px 30px rgba(88,174,245,0.5)); }
.final-card h2 { font-size: clamp(1.875rem, 5vw, 3.5rem); text-wrap: balance; }
.final-card p { margin-top: var(--s-4); color: var(--text-muted); font-size: 1.0625rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: var(--s-8) 0 var(--s-6); background: var(--navy-900); }
.footer-inner { display: flex; justify-content: space-between; gap: var(--s-7); flex-wrap: wrap; align-items: flex-start; }
.footer-logo { width: 220px; }
.footer-cols { display: flex; gap: var(--s-8); flex-wrap: wrap; }
.footer-cols div { display: flex; flex-direction: column; gap: 8px; }
.footer-cols h3 { font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 4px; font-family: var(--font-body); font-weight: 700; }
.footer-cols a, .footer-cols span { color: var(--text-muted); text-decoration: none; font-size: 0.9375rem; }
.footer-cols a:hover { color: var(--text); }
.socials { display: flex; gap: var(--s-3); }
.socials a {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,0.04); color: var(--sky);
  transition: background-color var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}
.socials a:hover { background: var(--btn-gradient); border-color: transparent; color: #fff; }
.socials svg { width: 20px; height: 20px; }
.copyright { margin-top: var(--s-7); padding-top: var(--s-5); border-top: 1px solid var(--line); font-size: 0.8125rem; color: var(--text-muted); }

/* ---------- Mobile sticky bar ---------- */
.mobile-bar { display: none; }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .main-nav { gap: var(--s-5); }
  .membership, .area { grid-template-columns: 1fr; gap: var(--s-7); }
  .membership { padding: var(--s-7) var(--s-6); }
  .ceramic { grid-template-columns: 1fr; text-align: left; }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .menu-toggle {
    display: grid; place-content: center; gap: 6px; width: 48px; height: 48px;
    border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(255,255,255,0.04);
  }
  .menu-toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform var(--dur) var(--ease-out); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto; flex-direction: column; gap: 0;
    padding: var(--s-3) 16px var(--s-5);
    background: rgba(3,7,14,0.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity var(--dur), transform var(--dur) var(--ease-out), visibility var(--dur);
  }
  .main-nav.open { opacity: 1; transform: none; visibility: visible; }
  .main-nav a { padding: 16px 4px; font-size: 1.0625rem; color: var(--text); border-bottom: 1px solid var(--line); }
  .site-header:has(.main-nav.open) { background: rgba(3,7,14,0.97); }
  .header-call { display: none; }

  .section { padding: var(--s-9) 0; }
  .section-head { margin-bottom: var(--s-7); }
  .steps, .ba-grid { grid-template-columns: 1fr; }
  .ba-grid { max-width: 480px; margin-inline: auto; }
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-2); }
  .work-featured { grid-row: auto; aspect-ratio: 4 / 5; }
  .work-featured-right { grid-column: span 2; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--s-5) var(--s-3); padding-bottom: var(--s-7); }
  .stats li { justify-content: flex-start; padding-left: 8%; }

  /* Sticky call / text bar */
  .mobile-bar {
    position: fixed; inset: auto 0 0; z-index: var(--z-bar);
    display: grid; grid-template-columns: 1fr 1.6fr; gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(3,7,14,0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line-strong);
  }
  .mobile-bar a {
    display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px;
    border-radius: var(--radius-pill); font-weight: 800; text-decoration: none; font-size: 1rem;
  }
  .mobile-bar svg { width: 20px; height: 20px; }
  .mb-call { border: 1px solid var(--line-strong); background: rgba(255,255,255,0.04); }
  .mb-text { background: var(--btn-gradient); color: #fff; box-shadow: 0 6px 24px -8px rgba(88,174,245,0.9); }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
}

@media (max-width: 560px) {
  .brand-icon { width: 46px; }
  .brand-text { font-size: 1rem; }
  .hero { padding-top: calc(var(--header-h) + var(--s-6)); }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .hero-car, .hero-car-reflect { aspect-ratio: 16 / 10; }
  .hero-stage { width: 100%; }
  .stats li { flex-direction: column; align-items: flex-start; gap: 4px; padding-left: 12%; }
  .stat-label br { display: none; }
  .vehicle-options { display: grid; grid-template-columns: repeat(2, 1fr); }
  .vehicle-options label { min-width: 0; }
  .vehicle-options label:last-child { grid-column: 1 / -1; }
  .tabs { width: 100%; justify-content: flex-start; }
  .price-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .price-card.featured { order: -1; }
  .price-card, .ceramic { padding: var(--s-6) var(--s-5); }
  .membership { padding: var(--s-6) var(--s-5); }
  .final-card { padding: var(--s-8) var(--s-5); }
  .footer-cols { gap: var(--s-6); }
}

@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; }
  .js .reveal { opacity: 1; transform: none; }
}
