/* Bath Road Garage LTD: light body, dark header and footer */

:root {
  --primary: #253b77;
  --primary-dark: #1a2d5a;
  --primary-light: rgba(37, 59, 119, 0.08);
  --primary-accent: #3a5a9e;
  --white: #ffffff;
  --light-bg: #f4f5f7;
  --body-text: #1a1a1a;
  --muted-text: #5a6070;
  --border: #e8eaee;
  --hero-bg: #0f1e3d;
  --black: #0d0d0d;
  --footer-bg: #0d1117;
  --footer-bar: #080b10;
  --footer-link: #8a9ab5;
  --footer-heading: #7a9fd4;
  --navy: var(--primary);
  --navy-hover: var(--primary-accent);
  --navy-shadow: 0 4px 16px rgba(37, 59, 119, 0.35);
  --bg-page: #fafbfc;
  --bg-alt: var(--light-bg);
  --bg-white: var(--white);
  --border-card: var(--border);
  --text: var(--body-text);
  --text-muted: var(--muted-text);
  --text-on-dark: #f0f2f5;
  --text-muted-on-dark: #a8adb8;
  --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 8px 24px rgba(37, 59, 119, 0.12);
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --nav-height: 80px;
  --section-pad: clamp(72px, 10vw, 128px);
  --container: min(1160px, calc(100% - 48px));
  --radius: 6px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--navy-hover); }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--primary);
}

.section--white h2,
.section--alt h2,
.brands-marquee h2,
.trust-section__title,
.section-header h2 {
  color: var(--primary);
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

p + p { margin-top: 0.85rem; }

.container {
  width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: var(--section-pad);
}

.section--white { background: var(--bg-white); }
.section--alt { background: var(--bg-alt); }

.section--after-hero {
  padding-top: calc(var(--section-pad) + 4rem);
}

/* ── Labels & prose ─────────────────────────────────────────── */
.section-label,
.label-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 1rem;
}

.section-header .section-label {
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 0.5rem;
}

.page-hero--dark .section-label,
.hero .section-label,
.mot-banner .section-label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.section-header p {
  max-width: 580px;
  margin-inline: auto;
  color: #2a3a50;
  font-weight: 300;
  margin-top: 0.75rem;
  line-height: 1.8;
}

.prose {
  max-width: 680px;
  color: #2a3a50;
  font-weight: 300;
  line-height: 1.8;
}
.prose--spacious p { line-height: 1.85; margin-top: 1.25rem; }
.prose--spacious p:first-child { margin-top: 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition),
    color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn--primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--navy-shadow);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.btn--outline:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn--outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn--outline-dark:hover {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--navy-shadow);
}

.cta-strip .btn--outline-dark,
.section--white .btn--outline {
  border-color: var(--navy);
  color: var(--navy);
}

.cta-strip .btn--outline-dark:hover,
.section--white .btn--outline:hover {
  background: var(--navy);
  color: #fff;
}

/* ── Header / Nav (always dark) ───────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  gap: 1rem;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; line-height: 0; }
.nav-logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 42px;
  max-width: min(220px, 52vw);
  object-fit: contain;
}
.nav-logo:hover { opacity: 0.9; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

.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-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: var(--black);
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
}

.nav-menu.is-open { display: flex; }

.nav-menu a {
  display: block;
  padding: 1rem 0;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-menu a:hover { color: #fff; }

.nav-ctas { display: none; align-items: center; gap: 0.85rem; flex-shrink: 0; }

.nav-phone {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted-on-dark);
  white-space: nowrap;
}

.nav-phone strong { color: #fff; font-weight: 600; }
.nav-phone:hover strong { color: #fff; }

.nav-ctas .btn { padding: 0.65rem 1.35rem; font-size: 0.8rem; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }

  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 0.15rem;
    overflow: visible;
  }

  .nav-menu a {
    padding: 0.5rem 0.8rem;
    font-size: 0.88rem;
    border: none;
    position: relative;
  }

  .nav-menu a.is-active { color: #fff; }

  .nav-menu a.is-active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0.8rem;
    right: 0.8rem;
    height: 2px;
    background: var(--navy);
  }

  .nav-ctas { display: flex; }
}

/* Hero (homepage, dark) */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
  background: var(--hero-bg);
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 30, 61, 0.92) 0%, rgba(15, 30, 61, 0.75) 55%, rgba(15, 30, 61, 0.55) 100%);
  z-index: 1;
}

.hero__main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(5rem, 10vh, 7rem) 0 clamp(3rem, 6vh, 4rem);
}

.hero__layout {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  width: 100%;
}

@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }
}

.hero__copy {
  text-align: left;
}

.hero__location {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.hero__copy h1 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.95;
}

.hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1.25rem;
  line-height: 1.8;
  max-width: 36rem;
}

.hero .prose--on-dark {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
}

.hero__widget-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  align-self: center;
}

@media (max-width: 900px) {
  .hero__widget-card {
    width: 100%;
    margin-top: 32px;
  }
}

.hero__widget-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.hero__widget-card [id^="s4s-booking"] {
  min-height: 120px;
  margin-top: 0.75rem;
}

.hero__widget-call {
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted-text);
}

.hero__widget-call a {
  color: var(--primary);
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
}

/* ── Inner page heroes (dark) ───────────────────────────────── */
.page-hero {
  position: relative;
  padding-block: clamp(4rem, 10vw, 6.5rem);
  background: var(--black);
  color: #fff;
  overflow: hidden;
}

.page-hero--image .page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--image .page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--image .page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 18, 0.72);
  z-index: 1;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 { color: #fff; font-size: clamp(2.5rem, 5.5vw, 4.5rem); }

.page-hero p {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.75;
}

/* ── Service cards ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.services-grid--repairs {
  grid-template-columns: 1fr;
}

@media (min-width: 500px) { .services-grid--repairs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .services-grid--repairs { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .services-grid--repairs { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-top: 3px solid var(--primary);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
  border-top-color: var(--primary-accent);
}

.service-card--compact {
  text-align: center;
  padding: 1.5rem 1rem;
}

.service-card--compact h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 0.75rem;
}


.service-card--compact .service-card__icon {
  margin-inline: auto;
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--primary);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted-text);
  font-weight: 300;
  margin-top: 8px;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.service-card__link:hover {
  color: var(--navy-hover);
  text-decoration: underline;
}

/* ── Two column ─────────────────────────────────────────────── */
.two-col {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}

.two-col__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.two-col h2 { margin-bottom: 1rem; }

.trust-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
  max-width: 400px;
}

.trust-mini-card {
  background: #fff;
  padding: 16px 20px;
  border-left: 3px solid var(--navy);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.trust-mini-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--primary);
}

.trust-mini-card span {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.why-us__copy .prose { max-width: 600px; }

.why-us__copy .section-label,
.local-coverage__copy .section-label {
  background: transparent;
  padding: 0;
  letter-spacing: 0.14em;
}

/* ── Trust bar ───────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-alt);
  padding: 32px 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

.trust-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0 1.25rem;
  border-right: 1px solid var(--border-card);
}

.trust-bar__item:last-child { border-right: none; }

.trust-bar__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 59, 119, 0.12);
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
}

.trust-bar__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.15;
}

.trust-bar__item span {
  display: block;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 0.25rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .trust-bar__item {
    border-right: none;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .trust-bar__grid { grid-template-columns: 1fr; }
}

/* ── Trust icons (legacy) ─────────────────────────────────────── */
.trust-icons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 560px) { .trust-icons { grid-template-columns: repeat(3, 1fr); } }

.trust-icon {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.trust-icon__symbol {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 59, 119, 0.1);
  border-radius: 50%;
  color: var(--navy);
}

.trust-icon__symbol svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
}

.trust-icon strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.trust-icon span {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
}

/* ── MOT banner (navy) ──────────────────────────────────────── */
.mot-banner {
  position: relative;
  padding-block: clamp(3.5rem, 6vw, 5rem);
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.mot-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.mot-banner__text { flex: 1; min-width: 260px; }

.mot-banner h2 { color: #fff; }

.mot-banner__sub {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin: 0.75rem 0 1.25rem;
  max-width: 36rem;
}

.mot-banner__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 16px 28px;
  flex-shrink: 0;
}

.mot-banner__logo span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.mot-banner h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.btn--inverted {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
  font-weight: 600;
}

.btn--inverted:hover {
  background: var(--bg-alt);
  border-color: var(--bg-alt);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ── Testimonials ─────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--white);
  border: none;
  padding: 28px;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  position: relative;
}

.reviews-section__stars {
  color: var(--primary);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  margin-top: 0.75rem;
}

.reviews-section__rating {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted-text);
  margin-top: 0.35rem;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--navy);
  opacity: 0.12;
}

.testimonial-card__stars { color: var(--navy); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1rem; }

.testimonial-card blockquote {
  font-weight: 300;
  font-style: italic;
  font-size: 1rem;
  color: #1a1a1a;
  position: relative;
  z-index: 1;
  line-height: 1.75;
}

.testimonial-card cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-body);
  text-transform: none;
  color: var(--text);
}

.testimonial-card cite span {
  display: block;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Convenience ────────────────────────────────────────────── */
.convenience-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) { .convenience-grid { grid-template-columns: repeat(3, 1fr); } }

.convenience-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.convenience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

.convenience-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 59, 119, 0.1);
  border-radius: var(--radius);
  color: var(--navy);
}

.convenience-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.75;
}

.convenience-card h3 { margin-bottom: 0.35rem; }
.convenience-card p { font-size: 0.92rem; color: var(--text-muted); font-weight: 300; }

.section--accent {
  background: var(--primary);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.section-header--light h2,
.section-header--light p { color: #fff; }

.section-header--light p { color: rgba(255, 255, 255, 0.85); }

.section-label--light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.section--accent .convenience-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: none;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: none;
}

.section--accent .convenience-card:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.14);
}

.section--accent .convenience-card__icon {
  width: 36px;
  height: 36px;
  background: transparent;
  color: #fff;
  padding: 0;
}

.section--accent .convenience-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #fff;
}

.section--accent .convenience-card p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  font-size: 0.88rem;
}

.town-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.town-tags span {
  background: var(--navy);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.local-coverage__map {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: 8px;
}

.map-placeholder-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  opacity: 0.5;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin-inline: auto; }

.faq-item { border-bottom: 1px solid var(--border-card); }
.faq-item:first-child { border-top: 1px solid var(--border-card); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 20px 0;
  background: none;
  border: none;
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--navy); }

.faq-item.is-open .faq-question { color: var(--navy); }

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--navy);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-question::after { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }

.faq-answer__inner {
  padding: 12px 0 4px;
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── Footer (dark) ──────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg);
  border-top: 3px solid var(--navy);
  padding-top: 3.5rem;
  color: var(--text-on-dark);
}

.site-footer a { color: var(--footer-link); }
.site-footer a:hover { color: #fff; }

.footer-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 48px;
  max-width: min(260px, 80vw);
  object-fit: contain;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.footer-contact p { font-size: 0.95rem; color: var(--text-muted-on-dark); font-weight: 300; }
.footer-contact p + p { margin-top: 0.5rem; }

.footer-hours {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-hours dt {
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}

.footer-hours dd {
  font-size: 0.9rem;
  color: var(--text-muted-on-dark);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.footer-links h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
}

.footer-links ul + h4 { margin-top: 1.5rem; }

.footer-links a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  background: var(--footer-bar);
  border-top: none;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Forms ──────────────────────────────────────────────────── */
.form-section { max-width: 100%; }

.form-panel {
  background: var(--bg-page);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

@media (min-width: 768px) { .form-panel { padding: 2.5rem; } }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(37, 59, 119, 0.15);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-note {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  text-align: center;
}

/* ── Booking page ───────────────────────────────────────────── */
.booking-page .section { padding-block: clamp(2.5rem, 5vw, 4rem); }

.booking-page .page-hero { padding-block: clamp(2.5rem, 6vw, 4rem); }

.booking-widget-wrap {
  max-width: 920px;
  margin-inline: auto;
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  box-shadow: var(--card-shadow);
}

.booking-widget-wrap [id^="s4s-booking"] { min-height: 260px; }

.booking-page__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

/* ── Checklist ──────────────────────────────────────────────── */
.checklist { display: grid; gap: 0.75rem; }

@media (min-width: 600px) { .checklist--cols { grid-template-columns: repeat(2, 1fr); } }

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
}

.checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 2px;
}

/* ── Service tiers ──────────────────────────────────────────── */
.tier-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 768px) { .tier-grid { grid-template-columns: repeat(3, 1fr); } }

.tier-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.tier-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

.tier-card--featured {
  border-color: var(--navy);
  box-shadow: 0 8px 28px rgba(37, 59, 119, 0.15);
  transform: scale(1.02);
}

@media (max-width: 767px) { .tier-card--featured { transform: none; } }

.tier-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-card--featured { position: relative; padding-top: 2.5rem; }

.tier-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.tier-card .tier-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.tier-card ul { flex: 1; margin-bottom: 1.5rem; }

.tier-card ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.tier-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--navy);
}

.steps-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step-card {
  background: var(--bg-alt);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}

.step-card p {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

.reviews-widget {
  min-height: 120px;
}

.seo-local .prose {
  max-width: 720px;
  margin-inline: auto;
}

.services-grid--repairs .service-card--compact {
  text-align: left;
  padding: 1.5rem 1.25rem;
}

.services-grid--repairs .service-card--compact h3 {
  margin-top: 0;
}

.services-grid--repairs .service-card--compact p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 0.5rem;
  line-height: 1.55;
}

.contact-grid--single {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin-inline: auto;
}

.tier-card .btn { width: 100%; margin-top: auto; }

/* ── Info / CTA ─────────────────────────────────────────────── */
.content-block {
  max-width: 720px;
  margin-inline: auto;
}

.content-block p {
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.75;
}

.info-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  padding: 2rem 2.25rem;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.info-box--prominent {
  padding: 2.5rem 2.75rem;
  border-left-width: 5px;
}

.info-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0.85rem;
}

.info-box p { color: var(--text-muted); font-weight: 300; line-height: 1.75; }

.cta-strip { text-align: center; }
.cta-strip h2 { margin-bottom: 1rem; }
.cta-strip p {
  color: var(--text-muted);
  max-width: 32rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.cta-strip .btn + .btn { margin-top: 0.75rem; }

@media (min-width: 480px) {
  .cta-strip .btn + .btn { margin-top: 0; margin-left: 0.75rem; }
}

/* ── Contact ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-details h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.contact-details p,
.contact-details a { color: var(--text-muted); font-weight: 300; }

.contact-details .contact-item { margin-bottom: 1.35rem; }

.contact-details .contact-item strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 2rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.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;
}
/* Vehicle brands marquee */
.brands-marquee {
  background: #ffffff;
  border-block: 1px solid rgba(15, 37, 72, 0.08);
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
  overflow: hidden;
}

.brands-marquee__intro {
  text-align: center;
  margin-bottom: 1.25rem;
}

.brands-marquee__title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--primary);
}

.brands-marquee__text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted-text);
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.brands-marquee__viewport {
  overflow: hidden;
  width: 100%;
  background: #ffffff;
}

.brands-marquee__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  width: max-content;
  overflow: visible;
  background: #ffffff;
  animation: brands-marquee-scroll 55s linear infinite;
  will-change: transform;
}

.brands-marquee__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 0 0 auto;
  width: max-content;
  background: #ffffff;
  font-size: 0;
}

.brands-marquee__list li {
  flex: 0 0 auto;
  margin: 0 8px;
  padding: 0;
  line-height: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px 24px;
  transition: border-color 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
}

.brands-marquee__list li:hover {
  border-color: var(--primary);
}

.brands-marquee__list img {
  display: block;
  width: 200px;
  height: 52px;
  min-width: 160px;
  min-height: 44px;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.brands-marquee__list li:hover img {
  filter: none;
  opacity: 1;
}

@keyframes brands-marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-1 * var(--marquee-distance, 50%)), 0, 0);
  }
}

@media (max-width: 900px) {
  .brands-marquee__list img {
    width: 220px;
    height: 66px;
    min-width: 220px;
    min-height: 66px;
  }
}

@media (max-width: 520px) {
  .brands-marquee__list img {
    width: 180px;
    height: 54px;
    min-width: 180px;
    min-height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brands-marquee__viewport {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .brands-marquee__track {
    animation-duration: 90s;
  }
}
