/* ============================================================
   Mobile Car Detailing Pittsburgh — wet chrome / kinetic
   ============================================================ */

:root {
  --blue-600: #0A8CFF;
  --blue-700: #0669C7;
  --blue-500: #2AA3FF;
  --blue-100: #D6ECFF;
  --blue-50:  #EEF7FF;
  --ink-900:  #071018;
  --ink-700:  #2C3A4A;
  --ink-500:  #5A6B7C;
  --ink-300:  #A3B1C0;
  --line:     #D7E1EC;
  --bg:       #F2F5F8;
  --surface:  #FFFFFF;
  --star:     #F0B429;
  --success:  #0E9F6E;
  --error:    #D93025;
  --chrome:   #C9D2DC;
  --night:    #061018;
  --spark:    #7DF0FF;

  --r-glass: 22px;
  --r-card:  18px;
  --r-input: 12px;
  --r-pill:  999px;

  --shadow-card:  0 10px 30px rgba(7, 16, 24, 0.08);
  --shadow-glass: 0 16px 40px rgba(7, 16, 24, 0.12);

  --font-display: "Unbounded", "Instrument Sans", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.34, 1.45, 0.64, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- base ---------- */

* { box-sizing: border-box; }

/* display:flex/grid on a class would otherwise beat the hidden attribute */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-700);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink-900);
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}

h3 { font-size: 1.25rem; line-height: 1.3; font-weight: 600; }

p { margin: 0; }

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

a { color: var(--blue-600); text-decoration: none; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 20px;
}

.muted { color: var(--ink-500); font-weight: 400; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.ic {
  width: 18px;
  height: 18px;
  flex: none;
  color: currentColor;
}

.ic-star { color: var(--star); }

/* ---------- buttons ---------- */

[data-magnetic] {
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), filter 180ms var(--ease);
  will-change: transform;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 150ms var(--ease), color 150ms var(--ease),
              border-color 150ms var(--ease), transform 150ms var(--ease);
}

.btn:focus-visible { outline: 2px solid var(--blue-600); outline-offset: 2px; }

.btn-primary {
  background: #D8DEE6;
  color: #071018;
  border: 1px solid #9AA6B4;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 4px 14px rgba(7, 16, 24, 0.18);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-primary:hover {
  background: #E8EDF2;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1),
    0 8px 18px rgba(7, 16, 24, 0.22);
}
.btn-primary:disabled {
  background: #C5CCD4;
  color: rgba(7, 16, 24, 0.45);
  border-color: #B0B8C2;
  box-shadow: none;
  text-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  border-color: #9AA6B4;
}
.btn-ghost:hover {
  background: rgba(216, 222, 230, 0.35);
  border-color: #7E8A98;
  transform: translateY(-1px);
}

.btn-white {
  background: #D8DEE6;
  color: #071018;
  border: 1px solid #9AA6B4;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 4px 14px rgba(7, 16, 24, 0.18);
}
.btn-white:hover {
  background: #E8EDF2;
  transform: translateY(-1px);
}

.btn-ghost-white {
  background: transparent;
  color: #D8DEE6;
  border-color: rgba(216, 222, 230, 0.55);
}
.btn-ghost-white:hover {
  border-color: #D8DEE6;
  background: rgba(216, 222, 230, 0.08);
  transform: translateY(-1px);
}

.btn-lg { min-height: 52px; padding: 14px 28px; font-size: 1rem; }

/* ---------- glass ---------- */

.glass,
.frost {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.045)),
    rgba(18, 115, 240, 0.018);
  border: 0;
  border-radius: var(--r-glass);
  box-shadow: var(--shadow-glass);
}

/* Tier B and the no-JS/low-end path: plain CSS frosted blur.
   Tier A elements ([data-glass]) get refraction from liquid-glass.js;
   until it initializes (and on the glass-css path) they use this too. */
.frost,
.glass-css .glass,
.glass:not(.lg-on) {
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
}

/* ---------- background blobs ---------- */

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .blob { animation: blob-drift 60s ease-in-out infinite alternate; }
}

@keyframes blob-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(3%, -3%); }
}

.blob-cyan   { width: 560px; height: 560px; top: -60px; left: -120px;
               background: radial-gradient(circle, rgba(56,214,232,0.40), transparent 65%); }
.blob-azure2 { width: 520px; height: 520px; bottom: -100px; right: -120px;
               background: radial-gradient(circle, rgba(33,150,243,0.35), transparent 65%); }
.blob-review { width: 900px; height: 400px; top: 30%; left: 50%; margin-left: -450px;
               border-radius: 50%;
               background: radial-gradient(ellipse, rgba(33,150,243,0.30), transparent 65%); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 12px;
  left: 16px;
  right: 16px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 10px 0 18px;
  border-radius: 18px;
  max-width: 1120px;
  margin-inline: auto;
  border: 1px solid transparent;
  transition: background 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease), backdrop-filter 280ms var(--ease);
}

/* over the dark hero video: light text in the phone button */
.nav:not(.is-scrolled) .nav-phone {
  color: #D8DEE6;
  border-color: rgba(216, 222, 230, 0.55);
}
.nav:not(.is-scrolled) .nav-phone:hover {
  border-color: #D8DEE6;
  background: rgba(216, 222, 230, 0.1);
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.08);
  border-color: transparent;
  backdrop-filter: blur(32px) saturate(1.9);
  -webkit-backdrop-filter: blur(32px) saturate(1.9);
  box-shadow: 0 10px 32px rgba(7, 16, 24, 0.2);
}

.nav.is-scrolled .nav-phone {
  color: #E8EDF2;
  border-color: rgba(232, 237, 242, 0.45);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.nav.is-scrolled .nav-phone:hover {
  border-color: #E8EDF2;
  background: rgba(255, 255, 255, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  max-width: min(38vw, 160px);
}

.nav-logo img {
  height: 34px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35));
}

.nav.is-scrolled .nav-logo img {
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.5)) brightness(1.2);
}

@media (min-width: 720px) {
  .nav-logo { max-width: min(42vw, 220px); }
  .nav-logo img { height: 48px; }
}

.nav-actions { display: flex; align-items: center; gap: 8px; }

/* ---------- hero (full-screen video) ---------- */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 130px 0 110px;
}

.hero-bg { position: absolute; inset: 0; background: #0E0E0E; }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1100ms ease;
}

.hero-video.is-active { opacity: 1; }

@media (prefers-reduced-motion: no-preference) {
  .hero-video { animation: hero-zoom 26s ease-in-out infinite alternate; }
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.09); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 24, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-title {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 4.75rem);
  text-shadow: none;
}

.hero-title .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.hero-title .w > span {
  display: inline-block;
  transform: translateY(110%);
  animation: word-slam 800ms var(--ease-out-expo) forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes word-slam {
  to { transform: translateY(0); }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  justify-content: center;
}

.hero-fade {
  opacity: 0;
  animation: hero-fade 800ms var(--ease-out-expo) forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes hero-fade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn-glass {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border-color: transparent;
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-1px); }

/* glare sweep across glass panels */
.glare { position: relative; overflow: hidden; }

.glare::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.24) 50%, transparent 58%);
  transform: translateX(-130%);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .glare::after { animation: glare-sweep 7s ease-in-out 2.2s infinite; }
}

@keyframes glare-sweep {
  0%   { transform: translateX(-130%); }
  22%  { transform: translateX(130%); }
  100% { transform: translateX(130%); }
}

.trust-strip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: 100%;
  padding: 14px 20px;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-900);
}

@media (min-width: 720px) {
  .trust-strip {
    gap: 18px;
    padding: 14px 26px;
    border-radius: var(--r-pill);
    font-size: 0.9375rem;
  }
}

.trust-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }

.trust-sep { width: 1px; height: 18px; background: var(--line); }

/* ---------- how it works ---------- */

.how { padding: 40px 20px 72px; }

.how-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  font-size: 1rem;
  color: var(--ink-700);
}

.how-row li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 4px 16px rgba(7, 16, 24, 0.04);
  transition: transform 400ms var(--ease-snap), border-color 250ms var(--ease), box-shadow 250ms var(--ease);
}

.how.is-visible .how-row li {
  animation: how-pop 700ms var(--ease-out-expo) both;
  animation-delay: calc(var(--i, 0) * 120ms);
}

.how-row li:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 140, 255, 0.35);
  box-shadow: 0 12px 28px rgba(10, 140, 255, 0.12);
}

.how-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  flex: none;
  border-radius: 10px;
  background: #071018;
  color: #D8DEE6;
  border: 1px solid #9AA6B4;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.how-copy { font-weight: 600; color: var(--ink-900); }

@keyframes how-pop {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- sections ---------- */

.section-head { text-align: center; margin-bottom: 36px; }

.section-sub {
  margin-top: 10px;
  color: var(--ink-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- booking / wizard ---------- */

.booking {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #111111;
  color: #E0E0E0;
}

.booking-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 88px 0 72px;
  display: flex;
  flex-direction: column;
}

.wizard {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #111111;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  border-top: 0;
}

.wizard-progress,
.wizard-progress-fill {
  display: none;
}

.stepper {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 20px 24px 8px;
}

.stepper li { display: flex; align-items: center; gap: 6px; }

.step-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  cursor: default;
  padding: 0;
}

.step-node .ic { width: 13px; height: 13px; }

.step-node-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #555555;
  color: #888888;
  font-size: 0.8125rem;
  font-weight: 600;
  background: #1C1C1C;
}

.step-node.is-done .step-node-circle {
  background: #D8DEE6;
  border-color: #D8DEE6;
  color: #071018;
}

.step-node.is-done { cursor: pointer; }

.step-node.is-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #E8E8E8;
  color: #111111;
  border-radius: 50%;
  font-size: 0.8125rem;
  font-weight: 700;
}

.step-track { width: 26px; height: 2px; background: #3A3A3A; }

.step-label-sm { display: none; }

.wizard-body {
  padding: 12px 0 24px;
  display: flex;
  flex-direction: column;
}

.step { display: flex; flex-direction: column; }

.step:not(.step-vehicle) {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 20px;
}

.step-title {
  margin: 12px 0 28px;
  outline: none;
  color: #fff;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.step-title .muted { color: #888888; }

.step.is-entering { animation: step-in 220ms var(--ease); }

@keyframes step-in {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.step.is-entering-back { animation: step-in-back 220ms var(--ease); }

@keyframes step-in-back {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* step 1: vehicles — immersive full-width picker */

.step-vehicle .step-title { margin-bottom: 18px; }

.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  flex: 1;
  min-height: 0;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 16px;
}

.vehicle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #3A3A3A;
  border-radius: 24px;
  background: #1C1C1C;
  padding: 0;
  text-align: left;
  font-family: var(--font-body);
  overflow: hidden;
  min-height: 260px;
  transition: border-color 180ms var(--ease), transform 220ms var(--ease),
              box-shadow 220ms var(--ease);
  will-change: transform;
}

.vehicle-card:hover {
  border-color: #9AA6B4;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.vehicle-card.is-pop { animation: card-pop 480ms var(--ease-snap); }

@keyframes card-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.vehicle-card .v-stage {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 200px;
  padding: 28px 22px 18px;
  background: transparent;
  overflow: hidden;
}

.vehicle-card img {
  width: 88%;
  max-width: 640px;
  max-height: 220px;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 450ms var(--ease-snap);
  filter: none;
}

.vehicle-card:hover img { transform: scale(1.04); }

.vehicle-card .v-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 20px 18px;
  border-top: 1px solid #3A3A3A;
  background: #1C1C1C;
  margin-top: auto;
}

.vehicle-card .v-choose {
  width: 100%;
  margin-top: 12px;
  justify-content: center;
}
}

.vehicle-card .v-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #fff;
  letter-spacing: -0.02em;
}

.vehicle-card .v-sub {
  display: block;
  font-size: 0.875rem;
  color: #888888;
}

@media (min-width: 800px) {
  .vehicle-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-inline: 28px;
    min-height: calc(100svh - 280px);
  }

  .vehicle-card { min-height: 100%; }

  .vehicle-card .v-stage {
    min-height: 380px;
    padding: 40px 40px 28px;
  }

  .vehicle-card img {
    width: 90%;
    max-width: 700px;
    max-height: 280px;
  }
}

/* step 2: packages */

.step-package .package-grid,
.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 20px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #3A3A3A;
  border-radius: 22px;
  background: #1C1C1C;
  box-shadow: none;
  padding: 28px 24px 22px;
  text-align: left;
  font-family: var(--font-body);
  transition: border-color 150ms var(--ease), background 150ms var(--ease),
              transform 150ms var(--ease);
}

.package-card:hover {
  transform: translateY(-2px);
  border-color: #666;
}

.package-card.is-pop { animation: card-pop 480ms var(--ease-snap); }

.pkg-tag {
  position: absolute;
  top: -11px;
  left: 20px;
  min-height: 22px;
  background: #E8E8E8;
  color: #111111;
  border-radius: var(--r-pill);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  line-height: 1.2;
}

.pkg-tag.is-spacer {
  visibility: hidden;
  pointer-events: none;
}

.pkg-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 5.75rem;
  margin-bottom: 16px;
}

.pkg-name {
  display: block;
  min-height: 2.5em;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9A9A9A;
  line-height: 1.25;
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  flex-wrap: wrap;
  min-height: 2.25rem;
}

.pkg-price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  font-feature-settings: "tnum";
  line-height: 1;
}

.pkg-old {
  font-size: 0.875rem;
  color: #777;
  text-decoration: line-through;
  font-feature-settings: "tnum";
}

.pkg-save {
  font-size: 0.75rem;
  font-weight: 600;
  color: #111111;
  background: #D8DEE6;
  border-radius: var(--r-pill);
  padding: 3px 10px;
}

.pkg-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 9px;
  font-size: 0.9rem;
  color: #C8C8C8;
  flex: 1;
}

.pkg-features li { display: flex; align-items: baseline; gap: 8px; }

.pkg-features .ic {
  width: 13px;
  height: 13px;
  color: #E8E8E8;
  position: relative;
  top: 1px;
  flex-shrink: 0;
}

.pkg-choose {
  width: 100%;
  margin-top: auto;
  justify-content: center;
}

/* step 3: add-ons */

.addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.addon-tile {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #3A3A3A;
  border-radius: 18px;
  background: #1C1C1C;
  box-shadow: none;
  padding: 16px 18px;
  min-height: 78px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: border-color 150ms var(--ease), background 150ms var(--ease), transform 150ms var(--ease);
}

.addon-tile:hover {
  transform: translateY(-2px);
  border-color: #666;
}

.addon-tile:focus-visible { outline: 2px solid #E8E8E8; outline-offset: 3px; }

.addon-tile.is-selected {
  border-color: #E8E8E8;
  background: #242424;
}

.addon-thumb {
  position: relative;
  width: 48px;
  height: 48px;
  flex: none;
  display: grid;
  place-items: center;
  margin-right: 14px;
  padding-right: 14px;
  border-right: 1px solid #3A3A3A;
}

.addon-thumb .ic {
  width: 28px;
  height: 28px;
  color: #E8E8E8;
}

.addon-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  padding-right: 18px;
}

.addon-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #E8E8E8;
  color: #111111;
  display: grid;
  place-items: center;
}

.addon-check .ic { width: 9px; height: 9px; color: #111111; }

.addon-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  display: block;
  line-height: 1.25;
}

.addon-price {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #9A9A9A;
  font-feature-settings: "tnum";
}

/* step 4: contact + summary */

.confirm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.card {
  background: var(--surface);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
}

.summary {
  padding: 16px 18px;
  align-self: start;
  background: #242424;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
  color: #E0E0E0;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 0.875rem;
  padding: 5px 0;
}

.summary-line .s-label { color: #C8C8C8; }

.summary-line .s-label strong { color: #fff; font-weight: 700; }

.summary-line .s-price { color: #fff; font-weight: 500; font-feature-settings: "tnum"; white-space: nowrap; }

.summary-line .s-price .muted,
.summary .muted {
  color: #777;
  text-decoration: line-through;
}

.summary-edit {
  background: none;
  border: 0;
  padding: 0;
  margin-left: 6px;
  color: #9AB4D0;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
}

.summary-edit:hover { color: #D8DEE6; }

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid #3A3A3A;
  margin-top: 8px;
  padding-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  font-feature-settings: "tnum";
}

.field { margin-bottom: 14px; }

.field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #D0D0D0;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #3A3A3A;
  border-radius: var(--r-input);
  background: #1C1C1C;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #fff;
  transition: border-color 150ms var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #666;
}

.field textarea { resize: vertical; min-height: 64px; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #888;
  box-shadow: 0 0 0 3px rgba(232, 232, 232, 0.08);
}

.field input[aria-invalid="true"] { border-color: #E85A52; }

.field-hint { font-size: 0.8125rem; color: #888; margin-top: 5px; }

.field-err { font-size: 0.8125rem; color: #F07169; margin-top: 5px; }

.field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #D0D0D0;
  margin-bottom: 8px;
}

.field-schedule input[type="date"] {
  color-scheme: dark;
}

.field-schedule input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.85);
  cursor: pointer;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.time-slots.is-invalid .time-slot {
  border-color: #E85A52;
}

.time-slot {
  appearance: none;
  border: 1px solid #3A3A3A;
  background: #1C1C1C;
  color: #D8D8D8;
  border-radius: 12px;
  min-height: 42px;
  padding: 8px 6px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 150ms var(--ease), background 150ms var(--ease), color 150ms var(--ease);
}

.time-slot:hover {
  border-color: #666;
  color: #fff;
}

.time-slot:focus-visible {
  outline: 2px solid #E8E8E8;
  outline-offset: 2px;
}

.time-slot.is-selected {
  border-color: #E8E8E8;
  background: #2A2A2A;
  color: #fff;
}

@media (max-width: 520px) {
  .time-slots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.btn-submit { width: 100%; margin-top: 4px; }

.btn-submit.is-busy { opacity: 0.7; pointer-events: none; }

.submit-note {
  margin-top: 10px;
  font-size: 0.8125rem;
  color: #888;
  text-align: center;
}

.submit-err {
  margin-top: 10px;
  font-size: 0.875rem;
  color: var(--error);
  text-align: center;
}

/* wizard footer */

.wizard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  margin: 20px auto 0;
  max-width: 1040px;
  width: calc(100% - 40px);
  border: 0;
  border-radius: 16px;
  background: #1F1F1F;
}

.wizard-total {
  font-size: 0.9375rem;
  color: #9A9A9A;
  font-feature-settings: "tnum";
}

.wizard-total strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
}

.wizard .btn-ghost {
  color: #D8D8D8;
  border-color: transparent;
  background: transparent;
}

.wizard .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: transparent;
  color: #fff;
}

.wizard-nav { display: flex; gap: 10px; margin-left: auto; }

/* success */

.success-pane {
  text-align: center;
  padding: 28px 12px 20px;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.success-check { width: 64px; height: 64px; color: var(--success); }

.success-tick {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: tick-draw 500ms var(--ease) 150ms forwards;
}

@keyframes tick-draw { to { stroke-dashoffset: 0; } }

.success-recap { color: var(--ink-500); font-size: 0.9375rem; }

.demo-badge {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #8a6d1d;
  background: #FdF2CC;
  border-radius: var(--r-pill);
  padding: 5px 14px;
}

/* mobile sticky bar */

.mobile-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 20px;
  border-radius: var(--r-pill);
}

.mobile-total { font-size: 0.9375rem; color: var(--ink-700); font-feature-settings: "tnum"; }

.mobile-total strong {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--ink-900);
}

/* ---------- reviews ---------- */

.reviews { position: relative; overflow: hidden; padding: 96px 0; }

.review-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.review-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 8px 20px 20px;
}

@media (prefers-reduced-motion: no-preference) {
  .review-marquee.is-visible .review-row {
    animation: marquee-x 42s linear infinite;
  }
  .review-marquee:hover .review-row { animation-play-state: paused; }
}

@keyframes marquee-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  flex: 0 0 320px;
  max-width: 85vw;
  border-radius: var(--r-card);
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 300ms var(--ease), border-color 250ms var(--ease);
}

.review-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  border-color: rgba(10, 140, 255, 0.3);
}

.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }

.avatar {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: 50%;
  background: #D8DEE6;
  color: #071018;
  border: 1px solid #9AA6B4;
  font-weight: 600;
  font-size: 0.8125rem;
  display: grid;
  place-items: center;
}

.review-name { font-weight: 600; font-size: 0.9375rem; color: var(--ink-900); }

.review-meta { font-size: 0.8125rem; color: var(--ink-500); }

.review-stars { display: flex; gap: 3px; color: var(--star); margin-bottom: 10px; }

.review-stars .ic { width: 15px; height: 15px; }

.review-text { font-size: 0.875rem; color: var(--ink-700); }

/* ---------- our work ---------- */

.work { padding: 0 0 96px; }

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 200px;
  gap: 14px;
}

.work-item {
  position: relative;
  margin: 0;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform-style: preserve-3d;
  will-change: transform;
}

.work-item[data-reveal] {
  transform: none;
  transition: none;
}

.work-item[data-reveal].is-visible {
  animation: work-reveal 900ms var(--ease-out-expo) both;
  animation-delay: calc(var(--i, 0) * 100ms);
}

@keyframes work-reveal {
  from {
    opacity: 0;
    clip-path: inset(12% 12% 12% 12% round 18px);
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 18px);
    transform: translateY(0) scale(1);
  }
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out-expo), filter 400ms var(--ease);
  filter: saturate(1.05) contrast(1.04);
}

.work-item:hover img { transform: scale(1.08); }

.work-corvette { grid-column: span 2; }
.work-foam { grid-column: span 2; }

.work-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(6, 16, 24, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.work-tag span { font-weight: 500; color: rgba(255, 255, 255, 0.78); }

@media (min-width: 720px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    grid-template-areas:
      "corvette corvette jaguar"
      "classic  foam     jaguar";
    gap: 16px;
  }

  .work-corvette { grid-area: corvette; }
  .work-jaguar   { grid-area: jaguar; }
  .work-classic  { grid-area: classic; }
  .work-foam     { grid-area: foam; }
}

/* ---------- FAQ ---------- */

.faq { padding: 0 20px 96px; max-width: 720px; }

.faq h2 { text-align: center; margin-bottom: 28px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-900);
  cursor: pointer;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .ic {
  color: var(--ink-500);
  flex-shrink: 0;
  transition: transform 280ms var(--ease);
}

.faq-item[open] summary .ic { transform: rotate(180deg); }

.faq-panel {
  height: 0;
  overflow: hidden;
  transition: height 280ms var(--ease);
}

.faq-item p {
  margin: 0;
  padding: 0 20px 16px;
  font-size: 0.9375rem;
  color: var(--ink-700);
}

@media (prefers-reduced-motion: reduce) {
  .faq-panel { transition: none; }
  .faq-item summary .ic { transition: none; }
}

/* ---------- CTA band ---------- */

.cta { padding-bottom: 96px; }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #111111;
  padding: 56px 40px;
  min-height: 260px;
  display: flex;
  align-items: center;
  border: 1px solid #3A3A3A;
}

.cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-120%);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .cta.is-visible .cta-shine { animation: shine-sweep 2.4s var(--ease-out-expo) 0.3s both; }
  .cta.is-visible .cta-suv { animation: car-drive 1.2s var(--ease-out-expo) both; }
}

@keyframes shine-sweep {
  from { transform: translateX(-120%); }
  to   { transform: translateX(120%); }
}

@keyframes car-drive {
  from { opacity: 0; transform: translateX(18%) translateY(8%); }
  to   { opacity: 0.95; transform: translateX(0) translateY(0); }
}

.cta-copy { position: relative; z-index: 1; }

.cta-band h2 { color: #fff; margin-bottom: 24px; }

.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.cta-suv {
  position: absolute;
  right: -12%;
  bottom: -8%;
  width: 55%;
  min-width: 340px;
  opacity: 0.95;
  pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}

/* ---------- footer ---------- */

.footer {
  background: #F0F5FB;
  border-top: 1px solid var(--line);
  padding: 28px 0;
  font-size: 0.875rem;
  color: var(--ink-500);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  text-align: center;
}

.footer-row img {
  height: 44px;
  width: auto;
  /* chrome mark on light footer */
  filter: brightness(0) saturate(100%);
  opacity: 0.82;
}

.footer-row a { color: var(--ink-700); font-weight: 500; }

.footer-row span { display: inline-flex; align-items: center; gap: 6px; }

.footer-row .ic { width: 14px; height: 14px; }

/* ---------- scroll reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out-expo), transform 700ms var(--ease-out-expo);
  transition-delay: calc(var(--i, 0) * 80ms);
}

[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- kinetic extras ---------- */

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.package-card,
.addon-tile {
  transition: transform 180ms linear, border-color 180ms var(--ease), box-shadow 180ms var(--ease) !important;
}

.pick-burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.pick-burst i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  margin: -3px;
  border-radius: 50%;
  background: var(--spark);
  animation: burst-out 600ms var(--ease-out-expo) forwards;
}

@keyframes burst-out {
  to {
    opacity: 0;
    transform: translate(var(--x), var(--y)) scale(0.2);
  }
}

/* ---------- desktop ---------- */

@media (min-width: 720px) {
  .container { padding-inline: 32px; }

  .booking-inner { padding: 96px 0 96px; }

  .step-package .package-grid,
  .package-grid {
    grid-template-columns: 1fr 1fr;
    padding-inline: 28px;
    gap: 22px;
  }

  .how { padding-bottom: 88px; }

  .how-row { flex-direction: row; gap: 40px; }

  .step-label-sm { display: inline; }

  .step-track { width: 40px; }

  .wizard-body { padding: 12px 0 32px; }

  .step:not(.step-vehicle) { padding-inline: 28px; }

  .addon-grid { grid-template-columns: repeat(3, 1fr); }

  .confirm-grid { grid-template-columns: 1.2fr 1fr; }

  .confirm-grid form { order: -1; }

  .mobile-bar { display: none !important; }
}

@media (max-width: 719.98px) {
  .nav-phone span { display: none; }
  .nav-phone { padding: 10px 14px; }

  .hero-title { font-size: clamp(2.2rem, 10vw, 3.2rem); }

  /* narrow two-up tiles: vehicle name only, no ugly mid-ellipsis */
  .work-jaguar .work-tag span,
  .work-classic .work-tag span { display: none; }

  .wizard-footer .wizard-total { display: none; }

  .vehicle-grid { min-height: calc(100svh - 300px); }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 150ms !important;
  }

  [data-reveal] { transform: none; }

  .btn:hover { transform: none; }
}
