﻿/* =============================================================
   Murray Auto Repair — Main Stylesheet
   Color palette: dark + blue accent + white
   Inspired by modern auto shops: clean, bold, trustworthy
   ============================================================= */

/* ── Reset & Tokens ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #f8f9fc;
  --surface:    #ffffff;
  --surface-2:  #f1f5f9;
  --border:     #e2e8f0;
  --blue:       #2563eb;
  --blue-dark:  #1d4ed8;
  --text:       #0f172a;
  --muted:      #64748b;
  --dark:       #09090b;
  --yellow:     #f0ff44;
  --red:        #dc2626;

  --font-head: 'Barlow', sans-serif;
  --font-body: 'Inter', sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container: 1200px;
  --radius:    6px;
  --radius-lg: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

/* ── Utility ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section { padding: var(--space-2xl) 0; }
.section--alt { background: var(--surface); }

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.section__sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background: var(--blue);
  color: var(--surface);
  border-color: var(--blue);
}
.btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

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

.btn--sm  { padding: 0.4rem 1rem;   font-size: 0.875rem; }
.btn--lg  { padding: 0.8rem 1.8rem; font-size: 1rem; }
.btn--xl  { padding: 1rem 2.4rem;   font-size: 1.15rem; font-weight: 700; }
.btn--full { width: 100%; justify-content: center; padding: 0.85rem; font-size: 1rem; }

/* ── Announcement Bar ────────────────────────────────────────── */
.announce-bar {
  background: var(--blue);
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.announce-bar__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.announce-bar__track span { flex-shrink: 0; }

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

/* ── Header / Nav ────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  height: 64px;
}

.nav__logo { flex-shrink: 0; }
.nav__logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.nav__logo-text em {
  font-style: normal;
  color: var(--blue);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}
.nav__logo-img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--blue);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.trust-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--muted);
  font-family: var(--font-body);
}

.address-block p {
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.address-block a {
  color: var(--blue);
}

.special-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}
.special-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: var(--space-xs);
}
.special-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: var(--space-xs);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  margin-left: auto;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.nav__link--active,
.mobile-menu__links a.nav__link--active {
  color: var(--blue) !important;
  font-weight: 600;
}

.nav__cta { display: flex; align-items: center; gap: var(--space-sm); margin-left: var(--space-sm); }

.nav__phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav__phone:hover { color: var(--blue); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ── Page hero (sub-pages) ───────────────────────────────────── */
.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.page-hero .section__title { margin-bottom: var(--space-xs); }
.page-hero .section__sub { margin: 0; font-size: 1.25rem; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--bg) 100%);
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-sm);
}

.hero__heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}
.hero__heading em {
  font-style: normal;
  color: var(--blue);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(240,240,240,0.8);
  max-width: 480px;
  margin: 0 auto var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
}
.hero__actions .btn--primary {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
}
.hero__actions .btn--ghost {
  width: 100%;
  text-align: center;
  justify-content: center;
}


/* ── Trust Bar ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md) 0;
}

.trust-bar__grid {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
}

.trust-bar__icon {
  width: 22px;
  height: 22px;
  color: var(--blue);
  flex-shrink: 0;
}

/* ── Book CTA bar ────────────────────────────────────────────── */
.book-cta-bar {
  padding: var(--space-md) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

/* ── Service list ─────────────────────────────────────────────── */
.svc-list-wrap { max-width: 100%; }

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.svc-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.svc-item:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 8px 32px rgba(37, 99, 235, 0.08);
}

@media (min-width: 680px) {
  .svc-item { flex-direction: row; min-height: 220px; }
  .svc-item:nth-child(even) { flex-direction: row-reverse; }
}

.svc-item__img-link {
  display: block;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

/* Gradient fades image edge into card background, always toward the text side */
@media (min-width: 680px) {
  .svc-item__img-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 55%, #111 100%);
    pointer-events: none;
  }
  .svc-item:nth-child(even) .svc-item__img-link::after {
    background: linear-gradient(to left, transparent 55%, #111 100%);
  }
}

.svc-item__img {
  width: 100%;
  aspect-ratio: 16 / 7;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
.svc-item__img-link:hover .svc-item__img {
  opacity: 0.9;
  transform: scale(1.03);
}

@media (min-width: 680px) {
  .svc-item__img-link { width: 50%; align-self: stretch; }
  .svc-item__img { width: 100%; height: 100%; min-height: 100%; aspect-ratio: unset; }
  .svc-item__body { width: 50%; }
}

/* Even cards: text faces the image (right-aligned within text panel) */
@media (min-width: 680px) {
  .svc-item:nth-child(even) .svc-item__body {
    align-items: flex-end;
    text-align: right;
    width: 38%;
    flex: 0 0 38%;
  }
  .svc-item:nth-child(even) .svc-item__img-link {
    width: 62%;
    flex: 0 0 62%;
  }
  .svc-item:nth-child(even) .svc-item__name {
    border-left: none;
    border-right: 3px solid var(--blue);
    padding-left: 0;
    padding-right: 0.75rem;
  }
}

.svc-item__img--oil    { background-color: #2d1400; background-image: url('../img/webp/oil.webp'); }
.svc-item__img--brakes { background-color: #2d0000; background-image: url('../img/webp/brake.webp'); }
.svc-item__img--tires  { background-color: #141414; background-image: url('../img/webp/tire.webp'); }
.svc-item__img--align  { background-color: #001828; background-image: url('../img/webp/wheel-alignment.webp'); }
.svc-item__img--diag   { background-color: #1f1000; background-image: url('../img/webp/engine.webp'); }
.svc-item__img--ac     { background-color: #001420; background-image: url('../img/webp/air-con.webp'); }
.svc-item__img--body   { background-color: #141a20; background-image: url('../img/webp/body-repair.webp'); }
.svc-item__img--detail { background-color: #001a14; background-image: url('../img/webp/detailing.webp'); }

@media (max-width: 680px) {
  .svc-item__img--oil    { background-image: url('../img/webp/oil-mobile.webp'); }
  .svc-item__img--brakes { background-image: url('../img/webp/brake-mobile.webp'); }
  .svc-item__img--tires  { background-image: url('../img/webp/tire-mobile.webp'); }
  .svc-item__img--align  { background-image: url('../img/webp/wheel-alignment-mobile.webp'); }
  .svc-item__img--diag   { background-image: url('../img/webp/engine-mobile.webp'); }
  .svc-item__img--ac     { background-image: url('../img/webp/air-con-mobile.webp'); }
  .svc-item__img--body   { background-image: url('../img/webp/body-repair-mobile.webp'); }
  .svc-item__img--detail { background-image: url('../img/webp/detailing-mobile.webp'); }
}

.svc-item__body {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-sm);
  flex: 1;
}

.svc-item__body .btn { margin-top: var(--space-xs); }

/* Ghost button accent on hover — yellow underline reinforces the CTA */
.svc-item__body .btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(37, 99, 235, 0.06);
}

/* Service name: slightly larger with a blue left-bar accent */
.svc-item__name {
  font-size: 1.55rem;
  font-weight: 700;
  padding-left: 0.75rem;
  border-left: 3px solid var(--blue);
  line-height: 1.2;
}

.svc-item__desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
}

/* ── Service detail page ─────────────────────────────────────── */
.svc-detail__img {
  width: 100%;
  aspect-ratio: 16 / 7;
  max-height: 340px;
  background-size: cover;
  background-position: center;
}
.svc-detail__img--oil    { background-color: #2d1400; background-image: url('../img/webp/oil.webp'); }
.svc-detail__img--brakes { background-color: #2d0000; background-image: url('../img/webp/brake.webp'); }
.svc-detail__img--tires  { background-color: #141414; background-image: url('../img/webp/tire.webp'); }
.svc-detail__img--align  { background-color: #001828; background-image: url('../img/webp/wheel-alignment.webp'); }
.svc-detail__img--diag   { background-color: #1f1000; background-image: url('../img/webp/engine.webp'); }
.svc-detail__img--ac     { background-color: #001420; background-image: url('../img/webp/air-con.webp'); }
.svc-detail__img--body   { background-color: #141a20; background-image: url('../img/webp/body-repair.webp'); }
.svc-detail__img--detail { background-color: #001a14; background-image: url('../img/webp/detailing.webp'); }

@media (max-width: 680px) {
  .svc-detail__img--oil    { background-image: url('../img/webp/oil-mobile.webp'); }
  .svc-detail__img--brakes { background-image: url('../img/webp/brake-mobile.webp'); }
  .svc-detail__img--tires  { background-image: url('../img/webp/tire-mobile.webp'); }
  .svc-detail__img--align  { background-image: url('../img/webp/wheel-alignment-mobile.webp'); }
  .svc-detail__img--diag   { background-image: url('../img/webp/engine-mobile.webp'); }
  .svc-detail__img--ac     { background-image: url('../img/webp/air-con-mobile.webp'); }
  .svc-detail__img--body   { background-image: url('../img/webp/body-repair-mobile.webp'); }
  .svc-detail__img--detail { background-image: url('../img/webp/detailing-mobile.webp'); }
}

.svc-detail__content {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.svc-detail__content p {
  color: var(--muted);
  line-height: 1.7;
}

.svc-detail__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.svc-detail__includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}
.svc-detail__includes li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.svc-detail__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.svc-detail__cta .btn {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

@media (min-width: 480px) {
  .svc-detail__cta {
    flex-direction: row;
    align-items: center;
  }
  .svc-detail__cta .btn {
    width: auto;
    flex: 1;
  }
}

/* ── Service Cards (grid) ────────────────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

@media (min-width: 700px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
.svc-card:active { transform: scale(0.97); }
@media (hover: hover) {
  .svc-card:hover { border-color: var(--blue); }
  .svc-card:hover .svc-card__name { color: var(--blue); }
}

.svc-card__img {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-card__img svg {
  width: 38%;
  height: 38%;
  color: #fff;
  opacity: 0.35;
}

/* Placeholder colors — swap for background-image when photos arrive */
.svc-card__img--oil    { background: #2d1400; }
.svc-card__img--brakes { background: #2d0000; }
.svc-card__img--tires  { background: #141414; }
.svc-card__img--balance{ background: #001828; }
.svc-card__img--diag   { background: #1f1000; }
.svc-card__img--ac     { background: #001420; }
.svc-card__img--body   { background: #141a20; }
.svc-card__img--detail { background: #001a14; }
.svc-card__img--other  { background: #18181e; }

.svc-card__body {
  padding: 0.65rem 0.75rem 0.8rem;
  flex: 1;
}

.svc-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  transition: color 0.15s;
  line-height: 1.2;
}

.svc-card__desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

.svc-card--other .svc-card__img { opacity: 0.6; }

/* ── Services List ───────────────────────────────────────────── */
.service-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.service-row:last-child { border-bottom: none; }
.service-row:hover { background: var(--surface-2); }
.service-row:hover .service-row__cta { color: var(--blue-dark); }

.service-row__body { flex: 1; }
.service-row__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.service-row__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}
.service-row__cta {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: color 0.15s;
}

.service-row--other { opacity: 0.75; }
.service-row--other:hover { opacity: 1; }

/* ── Offers / Coupons ────────────────────────────────────────── */
.offers__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.offer-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  transition: border-color 0.2s;
}
.offer-card:hover { border-color: var(--blue); }

/* Highlight variant — accent left border */
.offer-card--highlight { border-left: 4px solid var(--blue); }

.offer-card__body {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  justify-content: center;
}

.offer-card__title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}

.offer-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.offer-card__pricing {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.offer-card__pricing li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.offer-card__pricing li span { flex: 1; }

.price {
  color: var(--blue);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}
.price--cta {
  color: var(--blue-dark);
  font-size: 1.1rem;
}

.offer-card__includes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1rem;
}
.offer-card__includes li {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.offer-card__includes li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 0.75rem;
}

.offer-card__cta { align-self: flex-start; margin-top: var(--space-xs); }



/* ── Booking Form ────────────────────────────────────────────── */
.booking__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.booking__form {
  max-width: 680px;
  margin: 0 auto;
}

.booking__avail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: var(--space-sm);
  font-size: 0.875rem;
  min-height: 48px;
}

/* Form styles */
.booking__form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group__legend {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: var(--space-xs);
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.form-row--3 { grid-template-columns: 1fr 1fr 1fr; }

.field { display: flex; flex-direction: column; gap: 0.3rem; }
.field--checkbox { flex-direction: row; align-items: center; gap: 0.5rem; cursor: pointer; }
.field--checkbox input { width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }

.field__label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; color: var(--muted); }
.field__hint   { font-size: 0.75rem; color: var(--muted); }
.field__optional { font-weight: 400; }

.field input,
.field select,
.field textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.6rem 0.75rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--blue); }
.field textarea { resize: vertical; }
.field select option { background: var(--surface-2); }

.booking__fine-print { font-size: 0.75rem; color: var(--muted); text-align: center; }

.booking__feedback {
  padding: var(--space-sm);
  border-radius: var(--radius);
  font-size: 0.9rem;
  text-align: center;
}
.booking__feedback.success { background: rgba(76,175,80,0.15); border: 1px solid #4caf50; color: #81c784; }
.booking__feedback.error   { background: rgba(244,67,54,0.15);  border: 1px solid #f44336; color: #e57373; }

/* ── Reviews ─────────────────────────────────────────────────── */
.reviews__eyebrow {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-sm);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
}

.review-card__stars { color: var(--blue); font-size: 1rem; letter-spacing: 0.05em; }

.review-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
  font-style: italic;
}

.review-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}

.review-card__author { display: flex; align-items: center; gap: 0.6rem; }

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  flex-shrink: 0;
}

.review-card__name { font-size: 0.85rem; font-weight: 600; color: var(--text); }

.review-card__g { width: 20px; height: 20px; flex-shrink: 0; }

.reviews__cta {
  display: block;
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: underline;
  transition: color 0.2s;
}
.reviews__cta:hover { color: var(--blue); }

/* ── About ───────────────────────────────────────────────────── */
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__img-wrap { border-radius: var(--radius-lg); overflow: hidden; }

.about__img {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about__img-placeholder {
  aspect-ratio: 4/3;
  background: var(--surface-2);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--muted);
}
.about__img-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.4;
}
.about__img-placeholder p {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
  margin: 0;
}

.about__copy .section__title { text-align: left; margin-bottom: var(--space-sm); }
.about__copy p { color: var(--muted); margin-bottom: var(--space-sm); }
.about__creds { list-style: none; margin-top: var(--space-md); display: flex; flex-direction: column; gap: 0.4rem; }
.about__creds li { font-size: 0.9rem; color: var(--text); }

/* ── Contact ─────────────────────────────────────────────────── */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__info .section__title { text-align: left; margin-bottom: var(--space-md); }

.contact__address { font-style: normal; color: var(--muted); margin-bottom: var(--space-md); }

.contact__hours { margin-bottom: var(--space-md); overflow-x: auto; }
.contact__hours h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; text-transform: uppercase; margin-bottom: var(--space-xs); }
.contact__hours table { border-collapse: collapse; font-size: 0.85rem; min-width: 240px; }
.contact__hours td { padding: 0.2rem 1rem 0.2rem 0; color: var(--muted); }
.contact__hours td:first-child { color: var(--text); font-weight: 500; }

.contact__channels { display: flex; flex-direction: column; gap: var(--space-xs); }

.contact__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
  transition: color 0.2s;
}
.contact__link:hover { color: var(--blue); }
.contact__link svg { width: 18px; height: 18px; flex-shrink: 0; }

.contact__map { border-radius: var(--radius-lg); overflow: visible; display: flex; flex-direction: column; gap: var(--space-sm); }
.contact__map iframe { border-radius: var(--radius-lg); overflow: hidden; }
.contact__directions { align-self: flex-start; }
.contact__map-placeholder {
  aspect-ratio: 16/9;
  background: var(--surface-2);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--muted);
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

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

.footer__brand-tagline { font-size: 0.875rem; color: var(--muted); margin: var(--space-sm) 0; line-height: 1.6; }

.footer__socials { display: flex; gap: var(--space-sm); margin-top: var(--space-sm); }
.footer__social { color: var(--muted); transition: color 0.2s; }
.footer__social:hover { color: var(--blue); }
.footer__social svg { width: 20px; height: 20px; }

.footer__col-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-sm);
}

.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--text); }

.footer__contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.footer__contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: var(--muted); }
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--blue); }
.footer__contact-item a { color: var(--muted); transition: color 0.2s; }
.footer__contact-item a:hover { color: var(--text); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: var(--space-sm) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.footer__copy { font-size: 0.78rem; color: var(--muted); }
.footer__powered { font-size: 0.78rem; color: var(--muted); }
.footer__powered strong { color: var(--text); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ── Sticky booking bar (mobile only) ───────────────────────── */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  padding: 0.75rem var(--space-md);
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}

/* ── Mobile nav drawer ───────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.mobile-menu.is-open { display: block; }

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  animation: fadeIn 0.2s ease;
}

.mobile-menu__drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--surface);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) var(--space-md);
  gap: var(--space-md);
  animation: slideIn 0.25s ease;
  overflow-y: auto;
}

@keyframes fadeIn  { from { opacity: 0; }           to { opacity: 1; } }
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.mobile-menu__close:hover { border-color: var(--blue); }

.mobile-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.mobile-menu__links li { border-bottom: 1px solid var(--border); }
.mobile-menu__links a {
  display: block;
  padding: var(--space-sm) var(--space-xs);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-menu__links a:hover { color: var(--blue); }

.mobile-menu__book { margin-top: auto; }

/* Hamburger → X animation */
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__hamburger span { transition: transform 0.2s, opacity 0.2s; }

/* ── Responsive — Tablet ─────────────────────────────────────── */
@media (max-width: 960px) {
  .about__layout  { grid-template-columns: 1fr; }
  .about__img-wrap { order: -1; }
  .about__copy .section__title { text-align: center; }
  .about__creds { align-items: center; }

  .contact__layout { grid-template-columns: 1fr; }
  .contact__info .section__title { text-align: center; }
  .contact__address { text-align: center; }
  .contact__hours { text-align: center; }
  .contact__hours table { margin: 0 auto; }
  .contact__channels { align-items: center; }
}

/* ── Responsive — Mobile ─────────────────────────────────────── */
@media (max-width: 700px) {
  /* Nav */
  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__phone { display: none; }

  /* Announce bar — slower, readable on small screen */
  .announce-bar { font-size: 0.72rem; }
  .announce-bar__track { animation-duration: 40s; }

  /* Hero */
  .hero { padding: clamp(3rem, 12vw, 5rem) 0; align-items: center; }
  .hero__content { max-width: 100%; padding-top: var(--space-lg); }
  .hero__heading { font-size: clamp(1.9rem, 10vw, 3rem); }
  .hero__sub { font-size: 1rem; }

  /* Trust bar — 2 col on mobile */
  .trust-bar__grid { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
  .trust-bar__item { font-size: 0.8rem; }

  /* Services — tighter rows on mobile */
  .service-row { padding: var(--space-sm) var(--space-md); }
  .service-row__desc { display: none; }

  /* Offers */
  .offer-card__body { padding: var(--space-md); }
  .offer-card__title { font-size: 1.3rem; }

  /* Sticky bar — always visible on mobile by default. The home page opts
     into the scroll-gated behavior via body[data-page="home"] below. */
  .sticky-book {
    display: block;
    transition: transform 220ms ease-out;
  }
  /* Add padding so form submit button isn't hidden behind sticky bar */
  body { padding-bottom: 70px; }

  /* Home page only: hide the bar until user scrolls past the hero
     (JS toggles .is-visible on .sticky-book). */
  body[data-page="home"] .sticky-book {
    transform: translateY(110%);
    pointer-events: none;
  }
  body[data-page="home"] .sticky-book.is-visible {
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Booking form */
  .booking__form { padding: var(--space-md); }
  .form-row,
  .form-row--3 { grid-template-columns: 1fr; }
  /* Bigger tap targets on inputs */
  .field input,
  .field select,
  .field textarea { font-size: 1rem; padding: 0.75rem; }

  /* Reviews — single col */
  .reviews__grid { grid-template-columns: 1fr; }

  /* Contact map full width */
  .contact__map-placeholder { aspect-ratio: 4/3; }

  /* Section spacing tighter on mobile */
  .section { padding: var(--space-xl) 0; }
  .section__title { font-size: clamp(1.8rem, 8vw, 2.5rem); }

}

/* ── Responsive — Desktop ────────────────────────────────────── */
@media (min-width: 768px) {
  .svc-list-wrap { max-width: 100%; }

  /* Offers: 2 columns on desktop */
  .offers__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  /* Hide sticky booking bar on desktop */
  .sticky-book { display: none !important; }
}

/* ── Booking page ────────────────────────────────────────────── */
.book--hidden { display: none !important; }

.book-rate-limit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
  color: var(--muted);
}
.book-rate-limit a { color: var(--blue); }

.book-section {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
}
.book-section:last-of-type { border-bottom: none; }
.book-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--text);
}
.book-section__sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: var(--space-sm);
}

.book-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
}
@media (min-width: 500px) {
  .book-svc-grid { grid-template-columns: repeat(3, 1fr); }
}
.book-svc-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.6rem 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
}
.book-svc-item:hover { border-color: var(--blue); }
.book-svc-item input[type="checkbox"] { accent-color: var(--blue); }
.book-svc-item--wide {
  grid-column: 1 / -1;
  justify-content: center;
}

.book-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: var(--space-sm);
}
.book-field__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.book-field__opt { color: var(--muted); font-weight: 400; }
.book-field__hint { font-size: 0.75rem; color: var(--muted); }
.book-field input,
.book-field select,
.book-field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  width: 100%;
  box-sizing: border-box;
}
.book-field select:disabled { opacity: 0.5; cursor: not-allowed; }
.book-field input:focus,
.book-field select:focus,
.book-field textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}
.book-field textarea { resize: vertical; min-height: 80px; }

.book-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.book-row--3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 500px) {
  .book-row,
  .book-row--3 { grid-template-columns: 1fr; }
}

.book-check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text);
  cursor: pointer;
  margin-bottom: var(--space-sm);
}
.book-check-row input[type="checkbox"] { accent-color: var(--blue); margin-top: 2px; flex-shrink: 0; }
.book-checks {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
}
.book-checks .book-section__title { margin-bottom: var(--space-md); }
.book-checks .book-check-row { margin-bottom: 0.75rem; }
.book-checks .book-check-row:last-child { margin-bottom: 0; }
.book-check-row--required { font-weight: 500; }
.book-check-row--required a { color: var(--blue); text-decoration: underline; }
.book-check-row__required { color: var(--muted); font-size: 0.8rem; }

.book-foot { margin-top: var(--space-md); }
.book-error {
  background: rgba(220, 50, 50, 0.12);
  border: 1px solid rgba(220, 50, 50, 0.4);
  border-radius: var(--radius);
  color: #ff6b6b;
  padding: 0.6rem 0.9rem;
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.book-success {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}
.book-success__icon {
  font-size: 3rem;
  color: var(--blue);
  margin-bottom: var(--space-sm);
}

/* ── About page ──────────────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-color: #141414;
  background-image: url('../img/webp/tire-swap.webp');
}
@media (max-width: 680px) {
  .about-hero__bg { background-image: url('../img/webp/tire-swap-mobile.webp'); }
}
.about-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}
.about-hero__body {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) 0;
  text-align: center;
  width: 100%;
}
.about-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-sm);
}
.about-hero__title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: #ffffff;
  margin-bottom: var(--space-md);
}
.about-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: var(--space-lg);
  text-align: left;
}
.stat-item__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.stat-item__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.4rem;
}
.stat-item__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  max-width: 560px;
  margin: 0 auto;
}
.team-grid--wide {
  max-width: 900px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}
.team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.team-card__avatar svg { width: 36px; height: 36px; }
.team-card__name { font-size: 1rem; font-weight: 700; }
.team-card__role { font-size: 0.82rem; color: var(--muted); }

.mission-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.mission-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.mission-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
}
.mission-section__body {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) 0;
  max-width: 520px;
}
.mission-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-sm);
}
.mission-section__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}
.mission-section__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.values-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}
.values-header__copy { flex: 1; }
.values-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-sm);
}
.values-header__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.value-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.value-card__icon {
  width: 44px;
  height: 44px;
  color: var(--muted);
}
.value-card__name {
  font-size: 1rem;
  font-weight: 700;
}
.value-card__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FAQ — "Service Bay" work-ticket style ───────────────────── */
.faq { position: relative; }
.faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    135deg,
    var(--blue) 0 14px,
    #0b0c0e 14px 28px
  );
  opacity: 0.55;
}

.faq__head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--space-xl);
  align-items: end;
  margin-bottom: 2.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--border);
}
.faq__head-left { min-width: 0; }
.faq__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 0.9rem;
}
.faq__tag-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}
.faq__title {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--text);
  margin: 0;
  text-transform: uppercase;
}
.faq__lead {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 34ch;
  margin: 0;
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.faq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  transition: border-left-color 0.2s, background 0.2s;
  position: relative;
}
.faq-card:hover { background: var(--surface-2); border-left-color: rgba(37, 99, 235, 0.45); }
.faq-card[open] {
  background: var(--surface-2);
  border-left-color: var(--blue);
}

.faq-card__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  cursor: pointer;
  list-style: none;
}
.faq-card__head::-webkit-details-marker { display: none; }

.faq-card__num {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.18);
  padding: 0.18rem 0.5rem;
  border-radius: 2px;
  flex-shrink: 0;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.faq-card[open] .faq-card__num {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.45);
}

.faq-card__q {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.faq-card__plus {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.faq-card__plus::before,
.faq-card__plus::after {
  content: '';
  position: absolute;
  background: var(--muted);
  transition: transform 0.22s, background 0.22s;
}
.faq-card__plus::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}
.faq-card__plus::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}
.faq-card[open] .faq-card__plus::after {
  transform: translateX(-50%) rotate(90deg);
  background: var(--blue);
}
.faq-card[open] .faq-card__plus::before {
  background: var(--blue);
}

.faq-card__body {
  padding: 0 1.25rem 1.1rem 3.65rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 60ch;
}
.faq-card__body p { margin: 0; }

@media (max-width: 820px) {
  .faq__head {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    align-items: start;
  }
  .faq__lead { max-width: none; }
  .faq__grid { grid-template-columns: 1fr; }
  .faq-card__head { padding: 0.95rem 1rem; gap: 0.85rem; }
  .faq-card__body { padding: 0 1rem 1rem 3.2rem; }
  .faq-card__q { font-size: 0.94rem; }
}

@media (max-width: 700px) {
  .about-hero { min-height: 0; padding: 0; }
  .about-hero__body { padding: var(--space-xl) var(--space-md); }
  .about-hero__title { font-size: clamp(2.4rem, 11vw, 3.4rem); }
  .about-hero__sub { font-size: 0.95rem; line-height: 1.6; }

  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
    padding-top: var(--space-md);
    margin-top: var(--space-lg);
  }
  .stat-item { display: flex; flex-direction: column; align-items: center; }
  .stat-item__number { font-size: 2.6rem; }
  .stat-item__desc { max-width: 320px; margin: 0 auto; }

  .values-grid  { grid-template-columns: 1fr 1fr; }
  .values-header { flex-direction: column; align-items: flex-start; }
  .mission-section__body { max-width: 100%; }
}

/* ════════════════════════════════════════════════════════════════════
   Booking Wizard — industrial 4-step flow (/pages/book.html)
   ══════════════════════════════════════════════════════════════════ */

.bwiz {
  color: var(--text);
  font-family: inherit;
}

.bwiz-rate-limit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
  color: var(--muted);
}
.bwiz-rate-limit a { color: var(--blue); }

/* ─── Stepper ──────────────────────────────────────────────────── */
.bwiz-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: var(--space-md) 0 var(--space-lg);
  position: relative;
}
.bwiz-stepper__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  min-width: 64px;
}
.bwiz-stepper__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
  transition: border-color 120ms, background 120ms, color 120ms, transform 120ms;
}
.bwiz-stepper__step.is-active .bwiz-stepper__dot {
  background: var(--blue);
  border-color: var(--blue);
  color: #111;
  transform: scale(1.08);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
.bwiz-stepper__step.is-done .bwiz-stepper__dot {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.bwiz-stepper__label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.bwiz-stepper__step.is-active .bwiz-stepper__label,
.bwiz-stepper__step.is-done   .bwiz-stepper__label { color: var(--text); }
.bwiz-stepper__line {
  flex: 1 1 auto;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--border) 0 6px,
    transparent 6px 12px
  );
  margin: -1.2rem 0 0; /* nudge up to align with dot center */
  min-width: 20px;
}
.bwiz-stepper__line.is-done {
  background: var(--blue);
}

/* ─── Step pane ────────────────────────────────────────────────── */
.bwiz-pane {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  min-height: 420px;
  position: relative;
}
.bwiz-pane::before {
  /* Hazard-stripe industrial accent */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: repeating-linear-gradient(
    135deg,
    var(--blue) 0 12px,
    #000 12px 22px
  );
  opacity: 0.85;
}

.bwiz-step__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin: 0 0 0.25rem;
}
.bwiz-step__title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  color: var(--text);
}
.bwiz-step__sub {
  color: var(--muted);
  margin: 0 0 var(--space-md);
  font-size: 0.95rem;
}
.bwiz-subhead {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

/* ─── VIN shortcut row (above the picker) ──────────────────────── */
.bwiz-vin-row {
  background: rgba(37, 99, 235, 0.04);
  border: 1px dashed rgba(37, 99, 235, 0.25);
  padding: 0.85rem 1rem;
  margin: 0 0 1.2rem;
  border-radius: 2px;
}
.bwiz-vin-row__label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.55rem;
}
.bwiz-vin-row__hint {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
  font-family: inherit;
  font-size: 0.72rem;
}
.bwiz-vin-row__wrap {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.bwiz-vin-row__input {
  flex: 1;
  font-family: 'Courier New', Courier, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 0;
}
.bwiz-vin-row__btn {
  background: var(--blue);
  color: #000;
  border: 0;
  padding: 0 1.1rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background 0.15s, opacity 0.15s;
}
.bwiz-vin-row__btn:hover:not(:disabled) { background: var(--blue-dark); }
.bwiz-vin-row__btn:disabled { opacity: 0.35; cursor: not-allowed; }
.bwiz-vin-row__msg {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  min-height: 1em;
}
.bwiz-vin-row__msg.is-ok  { color: var(--blue); }
.bwiz-vin-row__msg.is-err { color: #ff6b6b; }
@media (max-width: 640px) {
  .bwiz-vin-row__wrap { flex-direction: column; }
  .bwiz-vin-row__btn { padding: 0.65rem 1rem; }
}

/* ─── Vehicle picker (3 cols + mileage) ────────────────────────── */
.bwiz-pick {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--space-sm);
}
@media (max-width: 800px) {
  .bwiz-pick { grid-template-columns: 1fr 1fr; }
}
.bwiz-pick__col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  max-height: 420px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.bwiz-pick__col.is-disabled { opacity: 0.5; pointer-events: none; }
.bwiz-pick__col--input { overflow: visible; }
.bwiz-pick__col-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 800;
  font-family: 'Courier New', monospace;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.5rem;
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 1;
}
.bwiz-pick__list {
  display: flex;
  flex-direction: column;
}
.bwiz-pick__option {
  background: transparent;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 0.55rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: background 120ms, color 120ms, border-color 120ms;
}
.bwiz-pick__option:hover { background: rgba(37, 99, 235, 0.08); color: var(--blue); }
.bwiz-pick__option.is-active {
  background: rgba(37, 99, 235, 0.15);
  color: var(--blue);
  border-left-color: var(--blue);
}
.bwiz-pick__option:disabled { cursor: not-allowed; }

.bwiz-pick__hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
  line-height: 1.4;
}
.bwiz-pick__hint--faint { opacity: 0.6; }

.bwiz-text-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.6rem 0.75rem;
  font: inherit;
}
.bwiz-text-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

/* ─── Services list ────────────────────────────────────────────── */
.bwiz-svc-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: var(--space-md);
}
.bwiz-svc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  background: var(--bg);
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 120ms, color 120ms;
}
.bwiz-svc-row:last-child { border-bottom: none; }
.bwiz-svc-row:hover { background: var(--surface-2); color: var(--blue); }
.bwiz-svc-row.is-active { background: rgba(37, 99, 235, 0.08); color: var(--blue); }
.bwiz-svc-row__label { flex: 1 1 auto; }
.bwiz-svc-row__check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #111;
  flex: 0 0 auto;
}
.bwiz-svc-row__check.is-active {
  background: var(--blue);
  border-color: var(--blue);
}

.bwiz-note__label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.bwiz-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.75rem;
  font: inherit;
  min-height: 90px;
  resize: vertical;
}
.bwiz-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

/* ─── Transportation cards ─────────────────────────────────────── */
.bwiz-trans {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
@media (max-width: 800px) { .bwiz-trans { grid-template-columns: 1fr; } }
.bwiz-trans__card {
  position: relative;
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 1.25rem 1rem 1.5rem;
  cursor: pointer;
  transition: border-color 120ms, background 120ms, transform 120ms;
}
.bwiz-trans__card:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}
.bwiz-trans__card.is-active {
  border-color: var(--blue);
  background: rgba(37, 99, 235, 0.06);
  box-shadow: 0 0 0 1px var(--blue);
}
.bwiz-trans__title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--blue);
}
.bwiz-trans__sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}
.bwiz-trans__check {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #111;
}
.bwiz-trans__check.is-active {
  background: var(--blue);
  border-color: var(--blue);
}
.bwiz-trans__foot {
  margin-top: var(--space-md);
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* ─── Calendar ────────────────────────────────────────────────── */
.bwiz-cal {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-sm);
  background: var(--bg);
  margin-bottom: var(--space-md);
}
.bwiz-cal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.bwiz-cal__range {
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Courier New', monospace;
}
.bwiz-cal__nav-wrap { display: flex; gap: 0.25rem; }
.bwiz-cal__nav {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}
.bwiz-cal__nav:hover:not(:disabled) { border-color: var(--blue); color: var(--blue); }
.bwiz-cal__nav:disabled { opacity: 0.35; cursor: not-allowed; }

.bwiz-cal__row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.bwiz-cal__dow {
  font-size: 0.7rem;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.25rem 0;
}
.bwiz-cal__day {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  height: 44px;
  font-weight: 700;
  cursor: pointer;
  transition: background 120ms, border-color 120ms, color 120ms;
}
.bwiz-cal__day:hover:not(:disabled):not(.is-empty) {
  border-color: var(--blue);
  color: var(--blue);
}
.bwiz-cal__day.is-selected {
  background: var(--blue);
  border-color: var(--blue);
  color: #111;
}
.bwiz-cal__day.is-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: repeating-linear-gradient(
    45deg,
    transparent 0 4px,
    rgba(255,255,255,0.03) 4px 8px
  );
}
.bwiz-cal__day.is-empty {
  border: none;
  cursor: default;
  background: transparent;
}

/* ─── Time pills ──────────────────────────────────────────────── */
.bwiz-times {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-sm);
  background: var(--bg);
  margin-bottom: var(--space-md);
}
.bwiz-times__header {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.bwiz-times__part {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0.5rem 0 0.4rem;
}
.bwiz-times__empty {
  color: var(--muted);
  font-style: italic;
  text-align: center;
  padding: 1rem 0;
}
.bwiz-time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.bwiz-time-pill {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.7rem 0.5rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1;
  transition: border-color 120ms, background 120ms, color 120ms, transform 120ms;
}
.bwiz-time-pill:hover { border-color: var(--blue); color: var(--blue); }
.bwiz-time-pill.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #000;
  font-weight: 900;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
}
@media (max-width: 600px) {
  .bwiz-time-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
  }
  .bwiz-time-pill {
    padding: 0.85rem 0.25rem;
    font-size: 1rem;
    min-height: 44px; /* iOS tap target */
  }
}

/* ─── Contact / consent ───────────────────────────────────────── */
.bwiz-contact {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
}
.bwiz-contact__title {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 var(--space-sm);
  color: var(--blue);
}
.bwiz-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
@media (max-width: 500px) { .bwiz-contact__row { grid-template-columns: 1fr; } }

.bwiz-field { margin-bottom: var(--space-sm); }
.bwiz-field__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.bwiz-consent {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
}
.bwiz-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.45;
  cursor: pointer;
}
.bwiz-check__box {
  accent-color: var(--blue);
  margin-top: 2px;
  flex-shrink: 0;
}
.bwiz-check__label a {
  color: var(--blue);
  text-decoration: underline;
}
.bwiz-check--required .bwiz-check__label { font-weight: 600; }

.bwiz-error {
  margin-top: var(--space-sm);
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.5);
  color: #f87171;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

/* ─── Nav bar ─────────────────────────────────────────────────── */
.bwiz-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--border);
}
.bwiz-nav__btn {
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Courier New', monospace;
  transition: background 120ms, color 120ms, border-color 120ms, transform 120ms;
}
.bwiz-nav__btn--back {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}
.bwiz-nav__btn--back:hover { color: var(--text); border-color: var(--muted); }
.bwiz-nav__btn--next {
  background: var(--blue);
  color: #111;
  border-color: var(--blue);
  box-shadow: 0 2px 0 rgba(0,0,0,0.4);
}
.bwiz-nav__btn--next:hover:not(:disabled) {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
}
.bwiz-nav__btn--next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
.bwiz-nav__hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

/* ─── Success state ────────────────────────────────────────────── */
.bwiz-success {
  background: var(--surface);
  border: 1px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
}
.bwiz-success::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: repeating-linear-gradient(
    135deg,
    var(--blue) 0 12px,
    #000 12px 22px
  );
}
.bwiz-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto var(--space-md);
}
.bwiz-success h2 {
  font-size: 1.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}
.bwiz-success p { color: var(--muted); margin-bottom: 0.5rem; }
.bwiz-success a { color: var(--blue); font-weight: 700; }

/* ─── Mobile responsive (booking wizard) ───────────────────────── */
@media (max-width: 640px) {
  .bwiz-pane {
    padding: var(--space-md) var(--space-sm);
    min-height: 380px;
  }
  .bwiz-step__title { font-size: 1.3rem; letter-spacing: 0.5px; }
  .bwiz-step__sub { font-size: 0.9rem; }

  /* Stepper: shrink dots, hide labels except the active one */
  .bwiz-stepper { padding: var(--space-sm) 0 var(--space-md); }
  .bwiz-stepper__step { min-width: 0; flex: 0 0 auto; }
  .bwiz-stepper__dot { width: 30px; height: 30px; font-size: 0.85rem; }
  .bwiz-stepper__label { display: none; font-size: 0.65rem; letter-spacing: 1.5px; }
  .bwiz-stepper__step.is-active .bwiz-stepper__label { display: block; }
  .bwiz-stepper__line { margin-top: -0.5rem; min-width: 10px; }

  /* Pick columns: keep compact scrollable boxes so the wizard doesn't become
     a 1200px vertical scroll on mobile. 2-col grid preserves columns even on
     narrow screens. */
  .bwiz-pick { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .bwiz-pick__col {
    max-height: 260px;
    padding: 0.5rem;
  }
  .bwiz-pick__col-label { font-size: 0.95rem; letter-spacing: 1px; padding-bottom: 0.4rem; margin-bottom: 0.4rem; }
  .bwiz-pick__option {
    padding: 0.5rem 0.4rem;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
  }
  .bwiz-pick__hint { font-size: 0.75rem; }
  .bwiz-pick__col--input { max-height: none; overflow: visible; }

  /* Services rows: bigger tap targets */
  .bwiz-svc-row { padding: 1rem; font-size: 1rem; }

  /* Transport cards: give each the full card width */
  .bwiz-trans__card { padding: 1rem; }
  .bwiz-trans__title { font-size: 1rem; letter-spacing: 0.5px; }

  /* Calendar: compact day cells */
  .bwiz-cal__day { height: 40px; font-size: 0.95rem; }
  .bwiz-cal__dow { font-size: 0.65rem; letter-spacing: 1px; }
  .bwiz-cal__range { font-size: 0.85rem; letter-spacing: 1px; }

  /* Nav buttons: always visible + proper tap size, wrap if needed */
  .bwiz-nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .bwiz-nav__hint {
    grid-column: 1 / -1;
    order: -1;
    text-align: center;
    padding: 0.25rem 0;
  }
  .bwiz-nav__btn {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
    min-height: 44px;
  }
}

