/* ==========================================================================
   Glowtek Auto Care
   Mobile-first. Breakpoints: 640px, 1024px.
   ========================================================================== */

:root {
  /* Brand: black, white and blue, taken from the Glowtek wordmark itself
     (white/silver lettering with a blue "E" on a black field). */
  --white: #ffffff;

  /* Blue scale. Each step is picked for the surface it sits on, and the
     contrast ratio against that surface is noted. */
  --blue-bright: #3aa4ea;    /* accents on black      7.1:1 on --ink   */
  --blue-pale: #a5d8fb;      /* text over hero photos 5.4:1 worst case */
  --blue: #1273c7;           /* mid tone, focus rings                  */
  --blue-cta: #0f66b4;       /* button fills          5.9:1 with white */
  --blue-cta-dark: #0b5091;  /* button hover                           */
  --blue-dark: #0b4e8a;      /* links on white        8.5:1            */
  --blue-soft: #e7f1fb;      /* tinted surfaces                        */

  /* Semantic state colours, deliberately outside the black/white/blue brand
     palette: success and error still need to read as success and error. */
  --success: #1a8f60;
  --success-soft: #e6f5ef;
  --danger: #c62828;
  --danger-dark: #97201f;

  --ink: #0b0d11;
  --ink-2: #141920;
  --ink-3: #1e242e;
  --slate: #4a5563;
  --slate-light: #6b7684;
  --line: #dde3ea;
  --bg: #ffffff;
  --bg-alt: #f4f7fa;

  --header-h: 64px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(11, 13, 17, .09);
  --shadow: 0 6px 20px rgba(11, 13, 17, .12);
  --shadow-lg: 0 18px 46px rgba(11, 13, 17, .20);
  --maxw: 1180px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  /* Offset for the sticky header when jumping to an in-page anchor. */
  scroll-padding-top: calc(var(--header-h) + 12px);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-dark); }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.18; font-weight: 800; color: var(--ink); letter-spacing: -.015em; }
h1 { font-size: 1.95rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.16rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.15rem; }
li { margin-bottom: .4rem; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }
.section { padding: 44px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--ink); color: #d7dde5; }
.section--dark h2, .section--dark h3 { color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--blue-cta); color: #fff; padding: 10px 16px; font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; }

.eyebrow {
  display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--blue-dark); margin-bottom: .5rem;
}
.section--dark .eyebrow { color: var(--blue-bright); }
.lead { font-size: 1.05rem; color: var(--slate); }
.section--dark .lead { color: #b9c3cf; }
.center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 28px; text-align: center; }
.section-head p { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: 11px 18px; border-radius: var(--radius); border: 2px solid transparent;
  font-weight: 700; font-size: .88rem; text-decoration: none; cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
  text-align: center; line-height: 1.3; white-space: nowrap;
}
/* Without an explicit size these inline SVGs have no intrinsic width in a flex
   row and blow out the button. */
.btn svg { width: 15px; height: 15px; flex: none; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue-cta); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--blue-cta-dark); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .75); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-3); }
.btn--outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--ink); }
.btn--block { display: flex; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--blue-dark); color: #fff; font-size: .8rem; font-weight: 600;
}
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 4px 20px; padding: 7px 18px; text-align: center;
}
.topbar__item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar__item svg { width: 14px; height: 14px; flex: none; fill: currentColor; }
.topbar__item--hours { display: none; }
.topbar__item--addr { display: none; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 90;
  background: var(--ink); border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: var(--header-h);
}
.logo { display: flex; align-items: center; text-decoration: none; flex: none; }
.logo__mark {
  font-size: 1.35rem; font-weight: 800; letter-spacing: .045em; color: #fff; line-height: 1;
}
.logo__mark .e { color: var(--blue-bright); }
.logo__tag {
  display: none; font-size: .53rem; letter-spacing: .11em; text-transform: uppercase;
  color: #8d99a8; font-weight: 600; margin-top: 3px;
}

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px; background: transparent;
  border: 1px solid rgba(255, 255, 255, .28); border-radius: 8px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .22s var(--ease), opacity .22s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav {
  position: fixed; inset: calc(var(--header-h)) 0 0 auto; width: min(88vw, 340px);
  background: var(--ink-2); border-left: 1px solid rgba(255, 255, 255, .1);
  transform: translateX(100%); transition: transform .28s var(--ease);
  overflow-y: auto; padding: 12px 0 96px; z-index: 95;
}
.nav.is-open { transform: translateX(0); }
.nav__list { list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; }
.nav__link {
  display: block; padding: 13px 22px; color: #e6eaf0; text-decoration: none;
  font-weight: 700; font-size: .98rem; border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.nav__link:hover, .nav__link:focus-visible { background: rgba(58, 164, 234, .18); color: #fff; }
.nav__link[aria-current="page"] { color: var(--blue-bright); }
.nav__link--cta { margin: 14px 22px 0; background: var(--blue-cta); color: #fff; text-align: center; border-radius: var(--radius); border-bottom: 0; }
.nav__link--cta:hover { background: var(--blue-cta-dark); color: #fff; }
/* On its own page the CTA would otherwise take the blue current-page colour and
   land blue-on-blue. Keep it white. */
.nav__link--cta[aria-current="page"] { color: #fff; }

.nav__sub-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 13px 22px; background: transparent; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .07);
  color: #e6eaf0; font: inherit; font-weight: 700; font-size: .98rem; cursor: pointer; text-align: left;
}
.nav__sub-toggle svg { width: 12px; height: 12px; fill: currentColor; transition: transform .22s var(--ease); flex: none; }
.nav__sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav__sub { list-style: none; margin: 0; padding: 0; display: none; background: rgba(0, 0, 0, .28); }
.nav__sub.is-open { display: block; }
.nav__sub a {
  display: block; padding: 11px 22px 11px 34px; color: #b7c1cd; text-decoration: none;
  font-size: .9rem; font-weight: 600; border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.nav__sub a:hover, .nav__sub a:focus-visible { color: #fff; background: rgba(58, 164, 234, .18); }
.nav__sub--wide { column-count: 1; }

.nav-scrim {
  position: fixed; inset: 0; background: rgba(6, 8, 11, .55);
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s;
  z-index: 88;
}
.nav-scrim.is-open { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* One flat, consistent overlay across every hero. No gradient fade. */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(9, 11, 15, .72);
}
.hero__grid { display: grid; gap: 26px; align-items: center; }
.hero__inner { padding: 52px 0 46px; max-width: 760px; }
/* On a split hero the copy column drops its own max-width and lets the grid
   do the sizing, otherwise the two columns fight each other. */
.hero__grid--split .hero__inner { max-width: none; padding-bottom: 8px; }

/* Aside card, right-hand column of the split hero */
.hero-card {
  /* Dark tint rather than a white one: the card sits on a photo, and a white
     tint would ride up over bright areas and drop the muted text below AA. */
  background: rgba(11, 13, 17, .62);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  margin-bottom: 46px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero-card__score { display: flex; align-items: center; gap: 14px; }
.hero-card__num { font-size: 2.5rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-card__meta { color: #cfd8e3; font-size: .82rem; font-weight: 600; }
.hero-card__meta .stars { margin: 0 0 2px; }
.hero-card__meta .stars svg { width: 15px; height: 15px; }
.hero-card__src { display: inline-flex; align-items: center; gap: 6px; margin-top: 3px; }
.hero-card hr {
  border: 0; border-top: 1px solid rgba(255, 255, 255, .16); margin: 16px 0;
}
.hero-card__list { list-style: none; margin: 0 0 18px; padding: 0; }
.hero-card__list li {
  display: flex; gap: 9px; align-items: flex-start;
  color: #e2e8f0; font-size: .88rem; font-weight: 600; margin-bottom: .55rem;
}
.hero-card__list svg { width: 16px; height: 16px; flex: none; margin-top: 3px; fill: var(--blue-bright); }
.hero-card .btn { width: 100%; }
.hero-card__hours {
  margin: 14px 0 0; font-size: .78rem; color: #9fabba; text-align: center;
}
.hero h1 { color: #fff; font-size: 2rem; margin-bottom: .55rem; }
.hero__sub { color: #e2e8f0; font-size: 1.02rem; margin-bottom: 1.4rem; }
/* The hero eyebrow sits directly on the photo, so it needs the pale blue:
   --blue-bright only clears AA where the image behind it happens to be dark. */
.hero .eyebrow { color: var(--blue-pale); }
.hero__points { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 8px; }
.hero__points li { display: flex; align-items: flex-start; gap: 9px; color: #dbe2ea; font-size: .94rem; font-weight: 600; margin: 0; }
.hero__points svg { width: 17px; height: 17px; flex: none; margin-top: 3px; fill: var(--blue-bright); }
.hero--compact .hero__inner { padding: 38px 0 34px; }
.hero--compact h1 { font-size: 1.7rem; }

/* ---------- Breadcrumbs ---------- */
.crumbs { background: var(--bg-alt); border-bottom: 1px solid var(--line); font-size: .8rem; }
.crumbs ol { list-style: none; margin: 0; padding: 10px 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li { margin: 0; color: var(--slate-light); }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: #b6c0cc; }
.crumbs a { color: var(--slate); text-decoration: none; }
.crumbs a:hover { color: var(--blue-dark); text-decoration: underline; }

/* ---------- Grids and cards ---------- */
.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #c6d2df; }
.card__media { aspect-ratio: 4 / 3; background: var(--bg-alt); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .35rem; font-size: 1.08rem; }
.card__body p { color: var(--slate); font-size: .92rem; margin-bottom: 1rem; }
.card__link {
  margin-top: auto; align-self: flex-start; font-weight: 800; font-size: .9rem;
  color: var(--blue-dark); text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.card__link:hover { color: var(--blue-cta-dark); text-decoration: underline; }
.card__link svg { width: 13px; height: 13px; fill: currentColor; transition: transform .18s var(--ease); }
.card__link:hover svg { transform: translateX(3px); }

.tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 18px; height: 100%;
}
.tile h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.tile p { color: var(--slate); font-size: .9rem; margin-bottom: 0; }
.tile__icon {
  width: 42px; height: 42px; border-radius: 10px; background: var(--blue-soft);
  display: grid; place-items: center; margin-bottom: 12px;
}
.tile__icon svg { width: 21px; height: 21px; fill: var(--blue-dark); }
.tile__icon--alt { background: var(--ink); }
.tile__icon--alt svg { fill: #fff; }

/* Plain link list, used for city and service cross-links */
.linklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; grid-template-columns: 1fr 1fr; }
.linklist a {
  display: block; padding: 9px 12px; background: #fff; border: 1px solid var(--line);
  border-radius: 8px; text-decoration: none; color: var(--ink-2); font-weight: 600; font-size: .87rem;
}
.linklist a:hover { border-color: var(--blue); color: var(--blue-dark); }
.section--alt .linklist a { background: #fff; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat {
  text-align: center; padding: 20px 12px; border-radius: var(--radius);
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
}
.stat__num { font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1; }
.stat__num .suffix { color: var(--blue-bright); }
.stat__label { font-size: .78rem; color: #aab5c2; margin-top: 6px; font-weight: 600; letter-spacing: .02em; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; gap: 24px; align-items: center; }
.split__media img { border-radius: var(--radius-lg); width: 100%; }
.split__media figcaption { font-size: .78rem; color: var(--slate-light); margin-top: 8px; }
.checklist { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: .55rem; font-size: .95rem; }
.checklist svg { width: 18px; height: 18px; flex: none; margin-top: 4px; fill: var(--blue-cta); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 16px; }
.step { position: relative; padding-left: 52px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue-cta); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: .95rem;
}
.step h3 { font-size: 1.02rem; margin-bottom: .2rem; }
.step p { color: var(--slate); font-size: .92rem; margin-bottom: 0; }
.section--dark .step p { color: #b9c3cf; }

/* ---------- Gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 24px; }
.filter {
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
  font-weight: 700; font-size: .86rem; color: var(--slate); cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.gallery { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.gallery__item {
  padding: 0; border: 0; background: var(--bg-alt); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 1 / 1; display: block; width: 100%;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 10px 8px;
  background: linear-gradient(to top, rgba(8, 10, 14, .88), rgba(8, 10, 14, 0));
  color: #fff; font-size: .74rem; font-weight: 600; text-align: left; line-height: 1.35;
}
.gallery__item[hidden] { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 120; background: rgba(6, 8, 11, .94);
  display: none; align-items: center; justify-content: center; padding: 56px 12px 76px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 6px; }
.lightbox__cap {
  position: absolute; left: 0; right: 0; bottom: 18px; text-align: center;
  color: #e6eaf0; font-size: .86rem; padding: 0 16px;
}
.lightbox__btn {
  position: absolute; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .28);
  color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; font-size: 1.2rem; line-height: 1;
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .24); }
.lightbox__close { top: 12px; right: 12px; }
.lightbox__prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 10px; top: 50%; transform: translateY(-50%); }

/* ---------- Reviews ---------- */
.rating-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; text-align: center; box-shadow: var(--shadow-sm); max-width: 460px; margin: 0 auto 30px;
}
.rating-card__score { font-size: 2.6rem; font-weight: 800; line-height: 1; color: var(--ink); }
.rating-card__count { color: var(--slate); font-size: .9rem; }
.stars { display: inline-flex; gap: 2px; margin: 8px 0; }
.stars svg { width: 19px; height: 19px; fill: #f5a623; }
.g-icon { width: 18px; height: 18px; flex: none; }
.g-line {
  display: inline-flex; align-items: center; gap: 7px; font-size: .82rem;
  color: var(--slate); font-weight: 600; margin-top: 6px;
}

.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px; display: flex; flex-direction: column; height: 100%;
}
.review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.review__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 1.05rem;
}
.review__name { font-weight: 800; font-size: .95rem; color: var(--ink); }
.review__date { font-size: .78rem; color: var(--slate-light); }
.review__text { color: var(--slate); font-size: .93rem; margin: 0 0 16px; }
.review__src {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 7px; font-size: .76rem; color: var(--slate-light); font-weight: 600;
}
.review__trunc { margin: -8px 0 16px; font-size: .82rem; }
.review__trunc a { color: var(--blue-dark); font-weight: 700; }

.badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-weight: 700; font-size: .85rem; color: var(--ink-2); text-decoration: none;
}
.badge:hover { border-color: var(--ink); }
.badge svg { width: 17px; height: 17px; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 26px; margin: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline li { position: relative; margin-bottom: 22px; }
.timeline li::before {
  content: ""; position: absolute; left: -26px; top: 6px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--blue); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--blue);
}
.timeline__year { font-weight: 800; color: var(--blue-dark); font-size: .88rem; letter-spacing: .04em; }
.timeline h3 { font-size: 1.02rem; margin: 2px 0 .25rem; }
.timeline p { color: var(--slate); font-size: .92rem; margin: 0; }

/* ---------- Forms ---------- */
.form-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: .87rem; margin-bottom: 6px; color: var(--ink-2); }
.field .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px; border: 1px solid #c3ccd7; border-radius: 8px;
  font: inherit; font-size: .95rem; color: var(--ink-2); background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18, 115, 199, .25);
}
.field textarea { min-height: 118px; resize: vertical; }
.field--hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: .78rem; color: var(--slate-light); margin: 12px 0 0; }
.form-status { display: none; border-radius: var(--radius); padding: 16px 18px; margin-bottom: 18px; font-weight: 600; font-size: .93rem; }
.form-status.is-visible { display: block; }
.form-status--ok { background: var(--success-soft); border: 1px solid var(--success); color: #10603f; }
.form-status--err { background: #fdecec; border: 1px solid var(--danger); color: var(--danger-dark); }

/* ---------- Map embeds ---------- */
.map {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-alt); box-shadow: var(--shadow-sm);
}
.map iframe { display: block; width: 100%; height: 300px; border: 0; }
.map__note { font-size: .78rem; color: var(--slate-light); margin: 10px 0 0; }

@media (min-width: 640px) { .map iframe { height: 360px; } }
@media (min-width: 1024px) { .map iframe { height: 420px; } }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 10px; }
.faq summary {
  padding: 15px 18px; font-weight: 700; cursor: pointer; font-size: .96rem; list-style: none;
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue-dark); font-size: 1.3rem; font-weight: 800; flex: none; }
.faq[open] summary::after { content: "\2013"; }
.faq p { padding: 0 18px 16px; margin: 0; color: var(--slate); font-size: .93rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #fff; text-align: center; padding: 40px 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #b9c3cf; max-width: 620px; margin: 0 auto 20px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #9aa5b3; font-size: .89rem; padding: 40px 0 0; }
.footer h3 { color: #fff; font-size: .84rem; letter-spacing: .11em; text-transform: uppercase; margin-bottom: 14px; }
.footer a { color: #9aa5b3; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; gap: 28px; }
.footer__brand .logo { margin-bottom: 12px; }
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: 7px; }
.footer__nap { font-style: normal; line-height: 1.75; }
.footer__nap strong { color: #fff; display: block; margin-bottom: 4px; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255, 255, 255, .08);
  display: grid; place-items: center;
}
.footer__social a:hover { background: var(--blue-cta); }
.footer__social svg { width: 17px; height: 17px; fill: #fff; }
.footer__bar {
  margin-top: 32px; border-top: 1px solid rgba(255, 255, 255, .1); padding: 16px 0 88px;
  display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: center; text-align: center; font-size: .8rem;
}

/* ---------- Floating call button (mobile only) ---------- */
.call-fab {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 80;
  background: var(--blue-cta); color: #fff; text-decoration: none; font-weight: 800;
  border-radius: 999px; padding: 15px; display: flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: 0 8px 26px rgba(11, 13, 17, .38);
}
.call-fab:hover { background: var(--blue-cta-dark); }
.call-fab svg { width: 18px; height: 18px; fill: #fff; }

/* ---------- Counters (pre-animation state) ---------- */
.counter { display: inline-block; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 60px 0; }
.notfound__code { font-size: 4.5rem; font-weight: 800; color: var(--blue-cta); line-height: 1; }

/* ==========================================================================
   >= 640px
   ========================================================================== */
@media (min-width: 640px) {
  .hero__grid--split .hero__points { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.95rem; }
  .section { padding: 60px 0; }
  .container { padding: 0 24px; }
  .hero__inner { padding: 76px 0 66px; }
  .hero h1 { font-size: 2.7rem; }
  .hero__sub { font-size: 1.1rem; }
  .hero--compact .hero__inner { padding: 52px 0 46px; }
  .hero--compact h1 { font-size: 2.15rem; }
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stat__num { font-size: 2.1rem; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .linklist { grid-template-columns: repeat(3, 1fr); }
  .topbar__item--hours { display: inline-flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form-wrap { padding: 30px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 22px; }
}

/* ==========================================================================
   >= 1024px
   ========================================================================== */
@media (min-width: 1024px) {
  :root { --header-h: 76px; }
  .section { padding: 76px 0; }
  h1 { font-size: 2.6rem; }
  .hero h1 { font-size: 3.05rem; }
  .hero__inner { padding: 104px 0 92px; }
  .hero__points { grid-template-columns: 1fr 1fr; gap: 8px 24px; }
  .hero__grid--split { grid-template-columns: 1.1fr .9fr; gap: 48px; }
  .hero__grid--split .hero__points { grid-template-columns: 1fr; }
  .hero__grid--split .hero__inner { padding: 96px 0 84px; }
  .hero-card { margin-bottom: 0; padding: 26px 24px; }
  .hero--compact .hero__inner { padding: 62px 0 56px; }
  .hero--compact h1 { font-size: 2.4rem; }

  .topbar__inner { justify-content: space-between; padding: 8px 24px; }
  .topbar__item--addr { display: inline-flex; }
  .topbar__item--hours { display: inline-flex; }

  .logo { flex-direction: column; align-items: flex-start; }
  .logo__mark { font-size: 1.6rem; }
  .logo__tag { display: block; }

  .nav-toggle { display: none; }
  .nav {
    position: static; width: auto; transform: none; background: transparent;
    border: 0; overflow: visible; padding: 0; display: flex; align-items: center;
    /* The drawer slide belongs to the mobile layout only. Without this, crossing
       the breakpoint animates the desktop nav in from off-screen. */
    transition: none;
  }
  .nav__list { display: flex; align-items: center; gap: 2px; }
  .nav__link { padding: 10px 13px; border-bottom: 0; font-size: .92rem; border-radius: 8px; }
  .nav__link[aria-current="page"] { color: var(--blue-bright); }
  .nav__link--cta { margin: 0 0 0 10px; padding: 11px 20px; }
  .nav__link--cta[aria-current="page"] { color: #fff; }

  .nav__item--has-sub { position: relative; }
  .nav__sub-toggle {
    width: auto; padding: 10px 13px; border-bottom: 0; font-size: .92rem; gap: 6px; border-radius: 8px;
  }
  .nav__sub-toggle:hover { background: rgba(58, 164, 234, .18); color: #fff; }
  .nav__sub {
    position: absolute; top: calc(100% + 6px); left: 0; min-width: 264px;
    background: var(--ink-2); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); padding: 8px; display: none; max-height: 72vh; overflow-y: auto;
  }
  .nav__sub.is-open { display: block; }
  .nav__sub--wide { min-width: 480px; column-count: 2; column-gap: 8px; }
  .nav__sub a { padding: 8px 12px; border-radius: 6px; border-bottom: 0; break-inside: avoid; }

  .nav-scrim { display: none; }
  .call-fab { display: none; }
  .footer__bar { padding-bottom: 18px; }

  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .linklist { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 46px; }
  .split--flip .split__media { order: 2; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 34px; }
  .section-head { margin-bottom: 38px; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .lightbox__prev { left: 28px; }
  .lightbox__next { right: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .btn:hover, .card:hover { transform: none; }
}

/* ---------- Pricing ---------------------------------------------------- *
   Figures mirror the Urable booking shop, which is the single source of
   truth. When a price changes there, change it here too.                   */

.pricing { display: grid; gap: 18px; grid-template-columns: 1fr; margin-bottom: 1.5rem; }
@media (min-width: 700px) { .pricing { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .pricing--3 { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px 22px; display: flex; flex-direction: column; height: 100%; position: relative;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #c3d3e4; }
.price-card--featured { border-color: var(--blue-cta); border-width: 2px; padding: 23px 21px; }

.price-card__tag {
  position: absolute; top: -11px; left: 22px; background: var(--blue-cta); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.price-card__name { font-size: 1.15rem; line-height: 1.3; margin: 0 0 3px; }
.price-card__meta { color: var(--slate-light); font-size: .82rem; margin: 0 0 14px; }
.price-card__price { font-size: 2.1rem; font-weight: 800; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
.price-card__price small { font-size: .8rem; font-weight: 600; color: var(--slate-light); margin-right: 4px; letter-spacing: .02em; }

.price-card__tiers { list-style: none; padding: 14px 0 0; margin: 0 0 16px; border-top: 1px solid var(--line); }
.price-card__tiers li { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; font-size: .93rem; }
.price-card__tiers span { color: var(--slate); }
.price-card__tiers b { font-variant-numeric: tabular-nums; color: var(--ink); }

/* Cards with no vehicle tiers still get the divider under the price. */
.price-card__price + .checklist { border-top: 1px solid var(--line); margin-top: 14px; padding-top: 16px; }
.price-card .checklist { margin-bottom: 1.1rem; }
.price-card .btn { margin-top: auto; }

/* Add-on / a-la-carte rows */
.price-list { list-style: none; padding: 0; margin: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.price-list li:last-child { border-bottom: 0; }
.price-list li:nth-child(odd) { background: var(--bg-alt); }
.price-list .price-list__name { font-weight: 600; color: var(--ink); }
.price-list .price-list__note { display: block; font-weight: 400; font-size: .84rem; color: var(--slate-light); margin-top: 2px; }
.price-list b { font-variant-numeric: tabular-nums; white-space: nowrap; }

.price-note { font-size: .88rem; color: var(--slate); margin: 1.1rem auto 0; max-width: 760px; text-align: center; }
.price-note a { color: var(--blue-dark); }
