/* ============================================================
   1 DAY DETAILZ — main stylesheet
   Light theme · dark frame · red accent · gold for stars only
   ============================================================ */

:root {
  --red:       #D9232E;
  --red-hot:   #F03640;
  --red-deep:  #A8121C;
  --gold:      #E6B53A;
  --ink:       #0D0E12;   /* hero / footer / nav */
  --ink-soft:  #16181F;
  --steel:     #44464D;   /* "how to schedule" band, like ZZ's gray */
  --paper:     #FFFFFF;
  --paper-alt: #F2F3F6;
  --text:      #16171B;
  --muted:     #5C5E66;
  --line:      #E5E7EB;
  --on-dark-muted: #B9BBC4;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(13, 14, 18, .10);
  --font-display: "Montserrat", sans-serif; /* same heading font as ZZ Details */
  --font-body: "Work Sans", sans-serif;     /* same body font as ZZ Details */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; }

.wrap { width: min(1120px, 92%); margin-inline: auto; }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; font-size: .85rem;
  padding: .95rem 2.1rem; border-radius: 10px;
  border: 1.5px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: scale(1.02); }
.btn:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.btn-solid { background: var(--red); color: #fff; }
.btn-solid:hover { background: var(--red-deep); }

.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.85); }
.btn-ghost-light:hover { background: #fff; color: var(--ink); }

.btn-ghost-dark { background: transparent; color: var(--text); border-color: var(--text); }
.btn-ghost-dark:hover { background: var(--text); color: #fff; }

.btn-wide { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(13, 14, 18, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: .8rem 0;
}
.brand { display: flex; align-items: center; gap: .65rem; }
.brand img { height: 56px; width: auto; }
.brand-text {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: 1.25rem; letter-spacing: .01em; color: #fff; white-space: nowrap;
}
.brand-text .one { color: var(--red); }
.brand-text .dtz { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-links a {
  color: #fff; font-weight: 600; font-size: .95rem; opacity: .9;
  transition: color .15s ease, opacity .15s ease;
}
.nav-links a:hover { color: var(--red-hot); opacity: 1; }
.nav-cta { margin-left: .4rem; }
.nav-cta .btn { padding: .65rem 1.4rem; }

.nav-toggle {
  display: none; background: none; border: 0; color: #fff;
  font-size: 1.7rem; line-height: 1; padding: .3rem .5rem;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--ink); padding: .5rem 4%;
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .85rem 0; }
  .nav-cta { margin: .6rem 0 1rem; }
}

/* ============================================================
   HERO  (dark, like ZZ's navy hero — ours is near-black + red)
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 600px at 85% 110%, rgba(217, 35, 46, .22), transparent 60%),
    radial-gradient(800px 500px at -10% -20%, rgba(217, 35, 46, .10), transparent 55%),
    var(--ink);
  color: #fff;
  padding: 5.5rem 0 0;
}
.hero::after { /* faint diagonal slash echoing the lightning-bolt logo */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 58%, rgba(217,35,46,.07) 58%, rgba(217,35,46,.07) 62%, transparent 62%);
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.3rem);
  font-weight: 900; text-transform: uppercase; letter-spacing: .01em;
}
.hero h1 .accent { color: var(--red-hot); }
.hero .lede { margin-top: 1.6rem; font-size: 1.15rem; color: var(--on-dark-muted); max-width: 56ch; }
.hero .lede strong { color: #fff; }
.hero .slogan {
  margin-top: 1.5rem; font-family: var(--font-display); font-style: italic;
  font-weight: 600; font-size: 1.18rem; color: var(--gold);
}
.hero .rating { margin-top: 1.4rem; font-size: 1.05rem; }
.hero .rating .stars { color: var(--gold); letter-spacing: .12em; }
.hero .rating strong { font-weight: 800; }
.hero-ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; }
.hero .call-link { color: #fff; font-weight: 700; letter-spacing: .06em; }
.hero .call-link:hover { color: var(--red-hot); }
.hero-car {
  position: relative; z-index: 1; margin-top: 1.5rem;
  display: flex; justify-content: flex-end; padding-bottom: 3rem;
}
.hero-car img {
  width: min(600px, 92%);
  filter: drop-shadow(0 26px 36px rgba(0, 0, 0, .55));
}

/* ============================================================
   SECTIONS (light)
   ============================================================ */
.section { padding: 5rem 0; }
.section.alt { background: var(--paper-alt); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 3.2rem; }
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: .02em;
}
.section-head h2 .dashes::before { content: "– "; color: var(--red); }
.section-head h2 .dashes::after  { content: " –"; color: var(--red); }
.section-head p { margin-top: 1.1rem; color: var(--muted); font-size: 1.07rem; }
.section-head p strong { color: var(--text); }

/* ---------- service cards (photo top, white panel overlapping) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.2rem; }
.svc-card { border-radius: var(--radius); overflow: hidden; background: var(--paper); box-shadow: var(--shadow); }
.svc-card .photo { height: 240px; overflow: hidden; }
.svc-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.svc-card:hover .photo img { transform: scale(1.05); }
.svc-card .body { padding: 1.8rem 1.6rem 2rem; text-align: center; }
.svc-card h3 { font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.svc-card p { margin: .8rem 0 1.4rem; color: var(--muted); font-size: .98rem; }
.svc-card .from { display: block; margin-bottom: 1.2rem; font-family: var(--font-display); font-weight: 700; color: var(--red); }

/* ---------- how to schedule (dark steel band, numbered steps) ---------- */
.schedule-band { background: var(--steel); color: #fff; padding: 5rem 0; }
.schedule-band h2 {
  font-size: clamp(2rem, 4.5vw, 2.9rem); font-weight: 900; text-transform: uppercase;
}
.schedule-band h2 .accent { color: var(--red-hot); }
.schedule-band .band-car { width: min(460px, 80%); margin: 2.2rem auto; filter: drop-shadow(0 18px 30px rgba(0,0,0,.35)); border-radius: 14px; }
.step { margin-top: 3rem; max-width: 620px; }
.step .num {
  font-family: var(--font-display); font-weight: 800; font-size: 4.2rem;
  color: var(--red-hot); line-height: 1;
}
.step h3 { font-size: 1.55rem; font-weight: 700; margin-top: .4rem; }
.step p { margin-top: .8rem; color: #D7D8DD; }
.step .step-ctas { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; }
.step .step-ctas .btn { border-radius: 999px; }
.step .link-light { color: #fff; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; font-size: .85rem; }
.step .link-light:hover { color: var(--red-hot); }

/* ---------- reviews ---------- */
.review-summary {
  background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow);
  text-align: center; padding: 2.6rem 1.6rem; max-width: 680px; margin: 0 auto 2rem;
}
.review-summary .g { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--red); }
.review-summary h3 { font-size: 1.6rem; margin-top: .4rem; }
.review-summary p { color: var(--muted); margin-top: .3rem; }
.review-summary .stars { color: var(--gold); font-size: 1.6rem; letter-spacing: .15em; margin-top: .6rem; }

.review-track { display: grid; grid-auto-flow: column; grid-auto-columns: min(420px, 86%); gap: 1.4rem; overflow-x: auto; padding: .4rem .2rem 1.2rem; scroll-snap-type: x mandatory; }
.review-card {
  scroll-snap-align: start; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow);
}
.review-card .who { display: flex; align-items: center; gap: .8rem; }
.review-card .avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff; font-weight: 800; font-family: var(--font-display);
}
.review-card .who strong { display: block; }
.review-card .who span { font-size: .85rem; color: var(--muted); }
.review-card .stars { color: var(--gold); margin: .7rem 0 .5rem; letter-spacing: .12em; }
.review-card p { color: var(--muted); font-size: .97rem; }

/* ---------- quote form (dark section w/ photo backdrop) ---------- */
.quote-section {
  position: relative; color: #fff; padding: 5.5rem 0;
  background: var(--ink);
}
.quote-section .bg {
  position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: .6;
}
.quote-inner { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; text-align: center; }
.quote-inner h2 { font-size: clamp(2rem, 4.5vw, 2.8rem); font-weight: 800; }
.quote-inner > p { margin-top: .8rem; color: var(--on-dark-muted); }
.quote-card {
  margin-top: 2.4rem; text-align: left;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px); border-radius: var(--radius); padding: 2rem 1.7rem;
}
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-weight: 700; margin-bottom: .45rem; font-size: .95rem; }
.field input[type="text"], .field input[type="tel"], .field input[type="email"], .field textarea {
  width: 100%; padding: .9rem 1rem; border-radius: 12px; font: inherit;
  border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.12); color: #fff;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.55); }
.field input:focus, .field textarea:focus { outline: 2px solid var(--red-hot); background: rgba(255,255,255,.18); }
.checks { display: grid; gap: .55rem; }
.checks label { display: flex; gap: .6rem; align-items: center; font-weight: 500; }
.checks input { width: 1.15rem; height: 1.15rem; accent-color: var(--red); }
.quote-card .btn { margin-top: 1.2rem; border-radius: 999px; }

/* ---------- service area ---------- */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.6rem; }
.area-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.6rem; text-align: center; box-shadow: var(--shadow);
}
.area-card .pin { color: var(--red); font-size: 1.6rem; }
.area-card h3 { margin-top: .5rem; font-size: 1.25rem; }
.area-card p { color: var(--muted); font-size: .95rem; margin-top: .4rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #fff; padding: 4rem 0 2.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; }
.site-footer h4 { color: var(--red-hot); font-size: 1.15rem; margin-bottom: .8rem; }
.site-footer p, .site-footer a { color: var(--on-dark-muted); font-size: .97rem; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; display: grid; gap: .5rem; }
.hours-row { display: flex; justify-content: space-between; max-width: 280px; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  color: var(--on-dark-muted); font-size: .85rem;
}

/* ============================================================
   BOOKING FLOW  (book.html)
   ============================================================ */
.book-page { background: var(--paper); min-height: 100vh; display: flex; flex-direction: column; }
.book-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4%;
}
.book-top .back {
  background: none; border: 0; color: var(--red); font-size: 1.6rem; line-height: 1;
  padding: .2rem .6rem; visibility: hidden;
}
.book-top .back.show { visibility: visible; }
.book-top .book-title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; }
.book-top .close-link { color: var(--red); font-weight: 700; }

.progress { height: 5px; background: #E3E6EC; }
.progress .fill { height: 100%; width: 16%; background: var(--red); transition: width .35s ease; border-radius: 0 4px 4px 0; }

.book-stage { flex: 1; width: min(880px, 94%); margin: 0 auto; padding: 1.6rem 0 8rem; }
.bstep { display: none; }
.bstep.active { display: block; animation: stepIn .35s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }

.bstep h1 { font-size: clamp(1.5rem, 4vw, 2.1rem); color: var(--red); font-weight: 700; margin-bottom: 1.2rem; }

/* step 1 — address */
.addr-box { position: relative; }
.addr-box input {
  width: 100%; font: inherit; font-size: 1.05rem;
  padding: 1.05rem 1.2rem 1.05rem 3rem; border-radius: 999px;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff;
}
.addr-box input:focus { outline: 2.5px solid var(--red); }
.addr-box .mag { position: absolute; left: 1.1rem; top: 50%; translate: 0 -50%; color: var(--muted); }
.addr-list {
  position: absolute; top: calc(100% + .5rem); left: 0; right: 0; z-index: 20;
  background: #fff; border-radius: 16px; box-shadow: 0 16px 44px rgba(13,14,18,.18);
  overflow: hidden; display: none;
}
.addr-list.open { display: block; }
.addr-list button {
  display: flex; gap: .7rem; align-items: baseline; width: 100%; text-align: left;
  padding: .95rem 1.2rem; background: none; border: 0; border-bottom: 1px solid var(--paper-alt);
  font: inherit; font-size: .98rem;
}
.addr-list button:hover, .addr-list button:focus-visible { background: var(--paper-alt); }
.addr-list .main { color: var(--red); font-weight: 700; }
.addr-list .sub { color: var(--muted); font-size: .88rem; }
#map { height: 52vh; min-height: 320px; border-radius: var(--radius); margin-top: 1.2rem; z-index: 1; box-shadow: var(--shadow); }

/* step 2 — vehicles & services */
.crumbs { display: flex; gap: .6rem; align-items: center; color: var(--red); font-weight: 600; margin-bottom: 1.3rem; flex-wrap: wrap; }
.crumbs .sep { color: var(--muted); }
.crumbs button { background: none; border: 0; color: var(--red); font: inherit; font-weight: 700; }

.veh-grid, .pkg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.4rem; }
.veh-card, .pkg-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.2rem; text-align: center; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.veh-card:hover, .pkg-card:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-3px); }
.veh-card svg, .veh-card img { width: 86%; height: auto; margin: 0 auto .9rem; object-fit: contain; aspect-ratio: 4 / 3; }
.veh-card h3, .pkg-card h3 { color: var(--red); font-weight: 700; font-size: 1.15rem; }
.veh-card span, .pkg-card .price { display: block; margin-top: .5rem; color: var(--muted); }
/* service tile: colored border, bold heading, the shop's own car */
.pkg-card .tile {
  display: block; background: #fff; border: 3px solid #2F6BD9;
  border-radius: 18px; padding: 1rem .8rem .7rem; margin-bottom: 1rem;
}
.pkg-card.v-int .tile { border-color: #8C3FD9; }
.pkg-card.v-ext .tile { border-color: #2FA84F; }
.tile-head {
  display: block; text-align: center; color: var(--text);
  font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; line-height: 1.04;
}
.tile-img {
  display: block; width: 100%; max-width: 190px; height: 100px;
  object-fit: contain; margin: .5rem auto 0;
}
/* finished tile graphic (user-provided) — shown full, no extra frame */
.pkg-card .tile.tile-photo { border: 0; padding: 0; background: transparent; }
.tile-full { display: block; width: 100%; max-width: 220px; margin: 0 auto; border-radius: 16px; }

/* service detail sheet */
.sheet-veil {
  position: fixed; inset: 0; background: rgba(13,14,18,.45); z-index: 80;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.sheet-veil.open { opacity: 1; pointer-events: auto; }
.sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: #fff; border-radius: 26px 26px 0 0; max-height: 88vh; overflow-y: auto;
  transform: translateY(102%); transition: transform .32s cubic-bezier(.3,.8,.3,1);
  padding: 1.4rem 5% 7.5rem;
}
.sheet.open { transform: none; }
.sheet-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.sheet-head h2 { font-size: 1.3rem; }
.sheet-head .close-sheet { background: none; border: 0; color: var(--red); font-weight: 700; font-size: 1rem; }
.sheet .desc { color: var(--text); white-space: pre-line; }
.sheet .desc.blue { color: var(--red); }
.sheet .meta { display: flex; align-items: center; justify-content: space-between; margin: 1.3rem 0; padding-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.sheet .meta .price { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; }
.sheet .meta .dur { color: var(--muted); margin-left: .5rem; }
.sheet h3.extras-title { text-align: center; font-size: 1.25rem; margin: 1.6rem 0 .2rem; }
.sheet .extras-sub { text-align: center; color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }
#extraRows { display: grid; gap: .7rem; }
.extra-row {
  display: flex; align-items: center; gap: .9rem; padding: .8rem .9rem;
  background: #fff; border: 1.5px solid var(--line); border-radius: 16px;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.extra-row.picked {
  border-color: var(--red); background: #FFF6F6;
  box-shadow: 0 4px 14px rgba(217, 35, 46, .10);
}
.extra-row .ico {
  width: 3.1rem; height: 3.1rem; flex: none; border-radius: 13px;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden;
  transition: border-color .18s ease;
}
.extra-row.picked .ico { border-color: var(--red); }
.extra-row .info { flex: 1; min-width: 0; }
.extra-row .info strong { color: var(--text); font-weight: 700; display: block; line-height: 1.3; }
.extra-row .info span { color: var(--muted); font-size: .9rem; }
.extra-row .info span b { color: var(--red); font-weight: 800; }
.extra-toggle {
  flex: none; border-radius: 999px; padding: .5rem 1.2rem;
  border: 1.5px solid var(--line); background: #fff; color: var(--text);
  font-family: var(--font-display); font-weight: 700; font-size: .88rem;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.extra-toggle:hover { border-color: var(--red); color: var(--red); }
.extra-toggle.on { background: var(--red); border-color: var(--red); color: #fff; }
.extra-toggle.on:hover { background: var(--red-deep); border-color: var(--red-deep); color: #fff; }

.sheet-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; padding: 1rem 5% 1.4rem;
  background: linear-gradient(transparent, #fff 38%);
  display: none;
}
.sheet-cta.show { display: block; }
.sheet-cta .btn { width: 100%; border-radius: 999px; font-size: 1rem; padding: 1.1rem; }

/* sticky cart bar / step nav */
.cart-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: #fff; border-top: 1px solid var(--line);
  padding: 1rem 5% calc(1rem + env(safe-area-inset-bottom));
  display: none; align-items: center; gap: 1rem; justify-content: space-between;
}
.cart-bar.show { display: flex; }
.cart-bar .pill {
  flex: 1; display: flex; align-items: center; gap: 1rem;
  background: var(--paper-alt); border-radius: 16px; padding: .85rem 1.2rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
}
.cart-bar .pill .badge {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  font-size: .95rem; padding: .15rem .7rem;
}
.cart-bar .pill small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .8rem; color: var(--muted); }
.cart-bar .btn { border-radius: 16px; padding: 1rem 2.4rem; font-size: 1rem; }

/* step 3 — calendar */
.cal-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); }
.cal-svc { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); margin-bottom: 1.1rem; }
.cal-svc strong { color: var(--red); font-size: 1.1rem; }
.cal-svc span { color: var(--muted); }
.cal-svc .mini {
  border: 1.5px solid var(--red); border-radius: 10px; padding: .35rem .6rem;
  font-family: var(--font-display); font-weight: 700; font-size: .72rem; text-align: center; line-height: 1.15;
}
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .9rem; }
.cal-head .mon { color: var(--red); font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.cal-head button {
  width: 2.4rem; height: 2.4rem; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--muted); font-size: 1.05rem;
}
.cal-head button:hover:not(:disabled) { border-color: var(--red); color: var(--red); }
.cal-head button:disabled { opacity: .3; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: .3rem; text-align: center; }
.cal-grid .dow { font-weight: 700; color: var(--text); padding: .4rem 0; font-size: .95rem; }
.cal-grid .day {
  aspect-ratio: 1; border: 0; background: none; border-radius: 12px;
  font: inherit; font-weight: 600; color: var(--red); display: grid; place-items: center;
}
.cal-grid .day:hover:not(:disabled) { background: var(--paper-alt); }
.cal-grid .day:disabled { color: #C3C6CE; cursor: default; }
.cal-grid .day.today { outline: 1.5px solid var(--line); }
.cal-grid .day.sel { background: var(--red); color: #fff; }
.times { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.times .slot {
  border: 1.5px solid var(--red); color: var(--red); background: #fff;
  border-radius: 14px; padding: .8rem 1.5rem; font: inherit; font-weight: 700;
}
.times .slot.sel, .times .slot:hover { background: var(--red); color: #fff; }
.times-empty { margin-top: 1.5rem; color: var(--muted); }

/* step 4 — details + review */
.review-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); margin-bottom: 1.6rem; }
.review-box .row { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid var(--paper-alt); font-size: .98rem; }
.review-box .row:last-child { border: 0; }
.review-box .row span { color: var(--muted); }
.review-box .row.total { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; }
.review-box .row.total span { color: var(--text); }
.bstep .field input { border-color: var(--line); background: #fff; color: var(--text); }
.bstep .field input:focus { outline: 2.5px solid var(--red); }
.bstep .field label { color: var(--text); }
.form-grid { display: grid; gap: .2rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 0 1.2rem; } .form-grid .full { grid-column: 1 / -1; } }

/* step 5 — confirmation */
.confirm-wrap { text-align: center; padding-top: 2.5rem; }
.confirm-wrap .check {
  width: 92px; height: 92px; margin: 0 auto 1.6rem; border-radius: 50%;
  background: #E8F7EE; color: #2FA84F; display: grid; place-items: center; font-size: 2.8rem;
  animation: pop .5s cubic-bezier(.3, 1.6, .5, 1);
}
@keyframes pop { from { transform: scale(.4); opacity: 0; } }
.confirm-wrap h1 { color: var(--text); }
.confirm-wrap .sub { color: var(--muted); margin: .6rem auto 2rem; max-width: 48ch; }
.confirm-wrap .review-box { text-align: left; max-width: 560px; margin-inline: auto; }
.confirm-note {
  max-width: 560px; margin: 1.2rem auto 0; background: #FFF6E8; border: 1px solid #F2DCAE;
  color: #7A5A12; border-radius: 14px; padding: 1rem 1.2rem; font-size: .92rem; text-align: left;
}

@media (max-width: 640px) {
  .cart-bar .btn { padding: 1rem 1.6rem; }
  .sheet { padding-inline: 5.5%; }
}

/* ============================================================
   V2 ENRICHMENT LAYER — bolder look to match the logo
   (overrides above rules via the cascade)
   ============================================================ */

/* richer red buttons */
.btn-solid {
  background: linear-gradient(135deg, var(--red-hot), var(--red-deep));
  box-shadow: 0 10px 26px rgba(217, 35, 46, .35);
}
.btn-solid:hover { background: linear-gradient(135deg, var(--red), #8C0E16); box-shadow: 0 6px 18px rgba(217, 35, 46, .45); }
.btn-ghost-light:hover { box-shadow: 0 8px 22px rgba(255, 255, 255, .18); }

/* section kicker labels */
.kicker {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-display); font-weight: 700; font-size: .78rem;
  letter-spacing: .24em; text-transform: uppercase; color: var(--red);
  margin-bottom: .9rem;
}
.kicker::before, .kicker::after {
  content: ""; width: 36px; height: 2.5px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red));
}
.kicker::after { background: linear-gradient(90deg, var(--red), var(--gold)); }

/* hero: badges, stats */
.hero {
  background:
    radial-gradient(1100px 600px at 85% 110%, rgba(217, 35, 46, .26), transparent 60%),
    radial-gradient(800px 500px at -10% -20%, rgba(217, 35, 46, .12), transparent 55%),
    var(--ink);
}
.hero .slogan {
  position: relative; display: inline-block; padding-left: 1rem;
  border-left: 3px solid var(--gold);
}
.hero-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.hero-chips .chip {
  display: inline-flex; align-items: center; gap: .45rem;
  border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.06);
  border-radius: 999px; padding: .4rem 1rem; font-size: .85rem; font-weight: 600;
  color: #E8E9EE;
}
.hero-chips .chip b { color: var(--gold); }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.6rem;
  margin-top: 2.6rem; padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,.13);
}
.hero-stats .stat .v {
  font-family: var(--font-display); font-weight: 800; font-size: 2rem; line-height: 1.1;
  color: #fff;
}
.hero-stats .stat .v em { font-style: normal; color: var(--gold); }
.hero-stats .stat .l {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--on-dark-muted); margin-top: .25rem;
}

/* scrolling ticker tape */
.tape {
  background: linear-gradient(90deg, var(--red-deep), var(--red), var(--red-deep));
  border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
  overflow: hidden; padding: .85rem 0; position: relative; z-index: 2;
}
.tape-track {
  display: inline-flex; gap: 0; white-space: nowrap; will-change: transform;
  animation: tapeScroll 30s linear infinite;
}
.tape span {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: 1.02rem; letter-spacing: .12em; text-transform: uppercase; color: #fff;
  padding: 0 1.4rem; display: inline-flex; align-items: center; gap: 2.8rem;
}
.tape span::after { content: "⚡"; color: var(--gold); font-style: normal; }
@keyframes tapeScroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .tape-track { animation: none; } }

/* service cards: photo chips, ribbon, lift */
.svc-card { position: relative; transition: transform .25s ease, box-shadow .25s ease; }
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 22px 48px rgba(13, 14, 18, .16); }
.svc-card .photo { position: relative; height: 250px; }
.svc-card .price-chip {
  position: absolute; right: .9rem; bottom: .9rem; z-index: 2;
  background: rgba(13, 14, 18, .82); color: #fff; backdrop-filter: blur(4px);
  font-family: var(--font-display); font-weight: 700; font-size: .9rem;
  padding: .4rem .95rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.25);
}
.svc-card .price-chip b { color: var(--gold); }
.svc-card .ribbon {
  position: absolute; left: -8px; top: 14px; z-index: 3;
  background: linear-gradient(135deg, var(--gold-light, #F2C765), var(--gold));
  color: #4A3508; font-family: var(--font-display); font-weight: 800;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .45rem 1rem .45rem 1.1rem; border-radius: 0 999px 999px 0;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.svc-card .ribbon::before {
  content: ""; position: absolute; left: 0; top: 100%;
  border: 4px solid transparent; border-top-color: #8a6a1d; border-right-color: #8a6a1d;
}
.svc-card .meta-row {
  display: flex; justify-content: center; gap: 1.4rem; margin-bottom: 1.3rem;
  color: var(--muted); font-size: .88rem; font-weight: 600;
}
.svc-card .meta-row span { display: inline-flex; align-items: center; gap: .35rem; }

/* schedule band → heading + car on the left, numbered list on the right */
.schedule-band {
  background: linear-gradient(180deg, #3C3E44, #34363C);
}
.sched-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 880px) {
  .sched-grid { grid-template-columns: 1fr 1.05fr; gap: 4rem; }
}
.schedule-band h2 .accent { display: block; }
.sched-car {
  width: min(380px, 78%); margin: 3.5rem auto 0; display: block;
  filter: drop-shadow(0 26px 38px rgba(0, 0, 0, .45));
}

.steps-list .step {
  margin: 0 0 3.4rem; max-width: 560px;
  display: grid; grid-template-columns: 84px 1fr; gap: 0 1.4rem; align-items: start;
}
.steps-list .step:last-child { margin-bottom: 0; }
.steps-list .num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 4.8rem; line-height: .88; color: var(--red-hot);
}
.steps-list h3 { font-size: 1.42rem; font-weight: 700; }
.steps-list p { margin-top: .75rem; color: #D7D8DD; }
@media (max-width: 480px) {
  .steps-list .step { grid-template-columns: 60px 1fr; }
  .steps-list .num { font-size: 3.4rem; }
}

/* reviews: oversized quote mark, gold underline */
.review-summary { border-top: 4px solid var(--gold); }
.review-card { position: relative; overflow: hidden; }
.review-card::before {
  content: "“"; position: absolute; right: .6rem; top: -1.4rem;
  font-family: var(--font-display); font-weight: 800; font-size: 7rem; line-height: 1;
  color: rgba(217, 35, 46, .09); pointer-events: none;
}

/* quote form */
.quote-card { border-top: 3px solid var(--red); box-shadow: 0 30px 70px rgba(0, 0, 0, .45); }

/* service area cards */
.area-card { border-top: 4px solid var(--red); transition: transform .2s ease, box-shadow .2s ease; }
.area-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(13, 14, 18, .14); }

/* CTA band before footer */
.cta-band {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  background: linear-gradient(120deg, #8C0E16, var(--red) 55%, var(--red-hot));
  padding: 4.5rem 0;
}
.cta-band .bolt {
  position: absolute; right: -1rem; top: -2.5rem; font-size: 13rem;
  opacity: .12; transform: rotate(12deg); pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem); font-weight: 900;
  font-style: italic; max-width: 22ch; margin-inline: auto;
}
.cta-band p { margin: 1rem auto 2rem; color: #FFD9DC; max-width: 50ch; }
.cta-band .btn-white {
  background: #fff; color: var(--red-deep);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .3);
}
.cta-band .btn-white:hover { background: var(--ink); color: #fff; }

/* footer: gold/red hairline + logo */
.site-footer { border-top: 4px solid; border-image: linear-gradient(90deg, var(--gold), var(--red), var(--gold)) 1; }
.site-footer .foot-logo { height: 74px; width: auto; margin-bottom: .4rem; }

/* ---------- Google-style review widget ---------- */
.gr-summary {
  background: var(--paper-alt); border-radius: 22px;
  text-align: center; padding: 2.4rem 1.6rem; max-width: 760px; margin: 0 auto 1.6rem;
}
.gr-head {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--text);
}
.gr-head .g-logo { width: 1.7rem; height: 1.7rem; }
.gr-sub { margin-top: .4rem; color: var(--muted); font-size: 1.05rem; }
.gr-sub strong { color: var(--text); font-weight: 800; }
.gr-stars { margin-top: .7rem; color: var(--gold); font-size: 1.9rem; letter-spacing: .12em; }

.gr-carousel { position: relative; max-width: 760px; margin: 0 auto; }
.gr-viewport { overflow: hidden; border-radius: 22px; }
.gr-track { display: flex; transition: transform .4s cubic-bezier(.4,.7,.3,1); }
.gr-card {
  flex: 0 0 100%; box-sizing: border-box;
  background: var(--paper-alt); border-radius: 22px; padding: 2rem 2.2rem;
}
.gr-who { display: flex; align-items: center; gap: .9rem; }
.gr-avatar {
  position: relative; width: 52px; height: 52px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff; font-weight: 800;
  font-family: var(--font-display); font-size: 1.3rem;
}
.gr-badge-g {
  position: absolute; right: -3px; bottom: -3px; width: 22px; height: 22px;
  background: #fff; border-radius: 50%; padding: 3px; box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.gr-meta strong {
  display: flex; align-items: center; gap: .4rem;
  font-family: var(--font-body); font-weight: 700; color: var(--text); font-size: 1.05rem;
}
.gr-verified { width: 1rem; height: 1rem; flex: none; }
.gr-meta span { color: var(--muted); font-size: .9rem; }
.gr-card-stars { color: var(--gold); font-size: 1.25rem; letter-spacing: .1em; margin: .9rem 0 .5rem; }
.gr-card p { color: var(--text); font-size: 1.02rem; line-height: 1.6; }

.gr-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: #6b6d74; color: #fff; font-size: 1.5rem; line-height: 1;
  display: grid; place-items: center; box-shadow: 0 4px 12px rgba(0,0,0,.2);
  transition: background .15s ease, transform .15s ease;
}
.gr-arrow:hover { background: var(--red); }
.gr-arrow.prev { left: -22px; }
.gr-arrow.next { right: -22px; }
@media (max-width: 820px) {
  .gr-arrow.prev { left: 6px; }
  .gr-arrow.next { right: 6px; }
}
.gr-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.3rem; }
.gr-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0;
  background: #C3C6CE; cursor: pointer; transition: background .15s ease, transform .15s ease;
}
.gr-dots button.on { background: var(--red); transform: scale(1.25); }

/* ============================================================
   UNIFIED DARK THEME + framed book buttons
   ============================================================ */
body { background: var(--ink); }

/* hollow white rectangular "Book Online" buttons */
.btn-frame {
  background: transparent; border: 2px solid #fff; color: #fff;
  border-radius: 2px; box-shadow: none;
}
.btn-frame:hover { background: #fff; color: var(--ink); box-shadow: none; transform: scale(1.02); }
.step-ctas .btn { border-radius: 2px; }

/* content sections go black like the hero (the part with the car) */
.section { background: var(--ink); }
.section.alt { background: #131520; }
.section-head h2 { color: #fff; }
.section-head p { color: var(--on-dark-muted); }
.section-head p strong { color: #fff; }

/* service cards become dark */
.svc-card {
  background: #16181F; border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 16px 34px rgba(0,0,0,.4);
}
.svc-card:hover { box-shadow: 0 24px 50px rgba(0,0,0,.55); }
.svc-card h3 { color: #fff; }
.svc-card p { color: var(--on-dark-muted); }
.svc-card .meta-row { color: #93959E; }

/* premium services (quote-only) — dark section */
.premium-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.premium-card {
  background: #16181F; border: 1px solid rgba(255,255,255,.09); border-left: 4px solid var(--red);
  border-radius: 18px; padding: 2rem 1.8rem; box-shadow: 0 16px 34px rgba(0,0,0,.4);
}
.premium-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: .8rem; }
.premium-top h3 { color: #fff; font-size: 1.45rem; font-weight: 700; }
.premium-price { font-family: var(--font-display); font-weight: 800; color: var(--gold); font-size: 1.18rem; white-space: nowrap; }
.premium-card p { color: var(--on-dark-muted); line-height: 1.62; }
.premium-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.4rem; }

/* schedule band keeps its grey */
.schedule-band { background: linear-gradient(180deg, #3C3E44, #34363C); border-top: 0; }

/* Services section stays light/white like before */
#services { background: var(--paper-alt); }
#services .section-head h2 { color: var(--text); }
#services .section-head p { color: var(--muted); }
#services .section-head p strong { color: var(--text); }
#services .svc-card {
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
}
#services .svc-card:hover { box-shadow: 0 22px 48px rgba(13,14,18,.16); }
#services .svc-card h3 { color: var(--text); }
#services .svc-card p { color: var(--muted); }
#services .svc-card .meta-row { color: var(--muted); }
/* book buttons stay hollow + rectangular, but dark-framed so they show on white */
#services .btn-frame { border-color: var(--ink); color: var(--ink); }
#services .btn-frame:hover { background: var(--ink); color: #fff; }

/* reviews section is white (Google cards stay light grey, as in the widget) */
#reviews { background: #fff; }
#reviews .section-head h2 { color: var(--text); }

/* service-area cards become dark */
.area-card {
  background: #16181F; border: 1px solid rgba(255,255,255,.09);
  border-top: 4px solid var(--red); box-shadow: 0 16px 34px rgba(0,0,0,.4);
}
.area-card h3 { color: #fff; }
.area-card p { color: var(--on-dark-muted); }

/* booking page: gradient progress + logo touch */

/* ---------- maintenance-plan step ---------- */
.plan-intro { color: var(--muted); margin: -.4rem 0 1.4rem; }
.plan-grid { display: grid; gap: 1.1rem; }
.plan-card {
  display: flex; gap: 1rem; align-items: flex-start; text-align: left; width: 100%;
  background: #fff; border: 2px solid var(--line); border-radius: 18px;
  padding: 1.4rem 1.5rem; font: inherit; cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.plan-card:hover { border-color: var(--red); }
.plan-card.sel { border-color: var(--red); background: #FFF6F6; box-shadow: 0 6px 18px rgba(217,35,46,.12); }
.plan-radio {
  flex: none; width: 22px; height: 22px; border-radius: 50%; margin-top: .2rem;
  border: 2px solid var(--line); position: relative; transition: border-color .18s ease;
}
.plan-card.sel .plan-radio { border-color: var(--red); }
.plan-card.sel .plan-radio::after {
  content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--red);
}
.plan-body { flex: 1; min-width: 0; display: block; }
.plan-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.plan-top strong { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--text); }
.plan-price { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--red); white-space: nowrap; }
.plan-price small { font-size: .7rem; font-weight: 700; color: var(--muted); }
.plan-desc { display: block; margin-top: .5rem; color: var(--text); font-size: .97rem; line-height: 1.55; }
.plan-desc b { color: var(--red); }
.plan-extras { display: block; margin-top: .4rem; color: var(--muted); font-size: .9rem; }
.plan-note { display: block; margin-top: .7rem; color: var(--muted); font-size: .85rem; font-style: italic; }

/* booking page: gradient progress + logo touch */
.progress .fill { background: linear-gradient(90deg, var(--red-deep), var(--red-hot)); }
.book-top .book-title { letter-spacing: .02em; }

/* inline SVG icon sizing */
.svc-card .meta-row svg { width: .95rem; height: .95rem; color: var(--red); flex: none; }
.area-card .pin svg { width: 1.8rem; height: 1.8rem; color: var(--red); }
.cta-band .bolt { font-size: 0; color: #fff; }
.cta-band .bolt svg { width: 15rem; height: 15rem; }
.extra-row .ico svg { width: 2.1rem; height: 2.1rem; display: block; }
.extra-row .ico img.ico-img { width: 2.5rem; height: 2.5rem; object-fit: contain; display: block; }
.map-hint { margin-top: .8rem; color: var(--muted); font-size: .92rem; text-align: center; }
.addr-box .mag svg { width: 1.15rem; height: 1.15rem; display: block; }
.confirm-wrap .check svg { width: 2.7rem; height: 2.7rem; }
.confirm-note svg { width: 1.05rem; height: 1.05rem; vertical-align: -0.18em; display: inline-block; }
