/* ================================================================
   B & T Automotive — WebGen Studio
   ================================================================ */

:root {
  --c-purple: #35166e;
  --c-purple-light: #9791e3;
  --c-purple-cta: #6a65aa;
  --c-green: #32c563;
  --c-green-dark: #24a04d;
  --c-black: #0d0d0d;
  --c-topbar: #ffffff;
  --c-topbar-text: #000000;
  --c-header: #35166e;
  --c-footer: #000;
  --c-text: #000000;
  --c-text-muted: #c9c9c9;
  --c-white: #ffffff;
  --c-border: #e6e6e6;

  --f-heading: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  --f-body: "Roboto", Arial, Helvetica, sans-serif;

  --w-container: 1200px;

  --h-topbar: 40px;
  --h-header: 130px;
  --h-nav: 60px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--c-purple); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--w-container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------ TOPBAR ------------------ */
.topbar {
  background: var(--c-topbar);
  color: var(--c-topbar-text);
  height: var(--h-topbar);
  display: flex;
  align-items: center;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 60;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar a { color: var(--c-topbar-text); }

/* ------------------ HEADER ------------------ */
.site-header {
  background: var(--c-header);
  color: #ffffff;
  position: relative;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--h-header);
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
}
.brand:hover { text-decoration: none; }
.brand__logo {
  display: block;
  width: 150px;
  height: 116px;
  background: url("../images/logo.png") center / contain no-repeat;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--c-purple-cta);
  color: #ffffff;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 14px;
  width: 88px;
  min-height: 88px;
  line-height: 1.3;
  border: 0;
  cursor: pointer;
}
.header-cta:hover { background: var(--c-green); color: #fff; text-decoration: none; }

/* ------------------ NAV ------------------ */
.site-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--c-border);
  height: var(--h-nav);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 40;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  height: 100%;
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 38px;
  height: 100%;
}
.nav-list > li { position: relative; height: 100%; display: flex; align-items: center; }
.nav-list > li > a,
.nav-list > li > .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  height: 100%;
  text-decoration: none;
}
.nav-list > li.is-active > a,
.nav-list > li.is-active > .dropdown-toggle { color: var(--c-purple-light); }
.nav-list > li > a:hover,
.nav-list > li > .dropdown-toggle:hover { color: var(--c-purple-light); text-decoration: none; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--c-purple);
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
  z-index: 45;
}
.nav-list > li.has-dropdown:hover .nav-dropdown,
.nav-list > li.has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}
.nav-dropdown li { margin: 0; }
.nav-dropdown a {
  display: block;
  padding: 12px 20px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}
.nav-dropdown li:first-child a { border-top: 0; }
.nav-dropdown a:hover { background: var(--c-green); color: #ffffff; }
.nav-caret { width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid currentColor; margin-left: 2px; }

/* Mobile burger */
.nav-burger {
  display: none;
  background: none;
  border: 0;
  padding: 4px;
  cursor: pointer;
  color: var(--c-purple);
  line-height: 0;
}
.nav-burger svg { display: block; width: 26px; height: 26px; }
.nav-burger .icon-close { display: none; }
.nav-burger[aria-expanded="true"] .icon-open { display: none; }
.nav-burger[aria-expanded="true"] .icon-close { display: block; }

/* ------------------ HERO (home) ------------------ */
.home-hero {
  width: 100%;
  background: #000;
  overflow: hidden;
}
.home-hero img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.home-intro {
  padding: 32px 24px 26px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.home-intro h1 {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 34px;
  margin: 0 0 18px;
  color: var(--c-text);
  letter-spacing: 0.01em;
}
.home-intro p {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.45;
  color: var(--c-text);
  margin: 0 0 14px;
}

/* ------------------ TILES ------------------ */
.tiles-section {
  background: var(--c-black);
  padding: 40px 0 56px;
  text-align: center;
  color: #fff;
}
.tiles-section h2 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  margin: 0 0 32px;
  letter-spacing: 0.01em;
}
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  width: 100%;
  max-width: 66%;
  margin: 0 auto;
  padding: 0 24px;
}
.tile {
  display: block;
  background: #fff;
  overflow: hidden;
  border: 0;
}
.tile img { width: 100%; height: auto; display: block; }
.tile:hover { transform: translateY(-2px); transition: transform 0.15s ease; text-decoration: none; }

.contact-strip {
  background: #ffffff;
  color: #000000;
  padding: 22px 24px;
  text-align: center;
  font-size: 20px;
}
.contact-strip p { margin: 0; }
.contact-strip a { color: var(--c-green); font-weight: 700; text-decoration: none; }
.contact-strip a:hover { text-decoration: underline; }

/* ------------------ INNER PAGE BANNER ------------------ */
.page-banner {
  background: var(--c-green);
  color: #fff;
  text-align: center;
  padding: 34px 24px;
}
.page-banner h1 {
  font-family: var(--f-heading);
  font-weight: 400;
  font-size: 42px;
  margin: 0;
  color: #fff;
  letter-spacing: 0.02em;
}

/* Service page top nav (green tile row) */
.service-tiles {
  background: var(--c-green);
  padding: 18px 24px 22px;
}
.service-tiles__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.service-tiles__row a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 56px;
  padding: 10px 18px;
  background: var(--c-purple);
  color: #fff;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
}
.service-tiles__row a:hover { background: var(--c-purple-cta); color: #fff; }
.service-tiles__row a.is-current { background: var(--c-purple-cta); color: #fff; }

/* ------------------ SERVICE CONTENT ------------------ */
.service-band {
  background: var(--c-purple);
  color: #fff;
  padding: 44px 24px 56px;
}
.service-band .container { max-width: 1080px; }
.service-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.service-body.reverse .service-body__text { order: 2; }
.service-body__text h2 {
  font-family: var(--f-heading);
  font-weight: 900;
  font-size: 32px;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}
.service-body__text p {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 16px;
}
.service-body__text ul {
  margin: 0 0 16px 0;
  padding-left: 22px;
}
.service-body__text ul li { margin-bottom: 6px; }
.service-body__text a { color: var(--c-purple-light); text-decoration: underline; }
.service-body__photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.page-service .service-body__photo img {
  border: 13px solid #ffffff;
}
[data-page="brake-and-clutch-repairs"] .service-body {
  grid-template-columns: 1fr 380px;
  align-items: center;
}
[data-page="brake-and-clutch-repairs"] .service-body.reverse {
  grid-template-columns: 380px 1fr;
}
[data-page="brake-and-clutch-repairs"] .service-body__photo img {
  max-width: 380px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  [data-page="brake-and-clutch-repairs"] .service-body,
  [data-page="brake-and-clutch-repairs"] .service-body.reverse {
    grid-template-columns: 1fr;
  }
  [data-page="brake-and-clutch-repairs"] .service-body__photo,
  [data-page="log-book-servicing"] .service-body__photo,
  [data-page="efi-services-and-repairs"] .service-body__photo,
  [data-page="tyres-and-wheel-alignment"] .service-body__photo { order: 0; }
  [data-page="brake-and-clutch-repairs"] .service-body__text,
  [data-page="brake-and-clutch-repairs"] .service-body.reverse .service-body__text,
  [data-page="log-book-servicing"] .service-body__text,
  [data-page="log-book-servicing"] .service-body.reverse .service-body__text,
  [data-page="efi-services-and-repairs"] .service-body__text,
  [data-page="efi-services-and-repairs"] .service-body.reverse .service-body__text,
  [data-page="tyres-and-wheel-alignment"] .service-body__text,
  [data-page="tyres-and-wheel-alignment"] .service-body.reverse .service-body__text { order: 1; }
}

[data-page="efi-services-and-repairs"] .service-body {
  grid-template-columns: 1fr 420px;
  align-items: center;
}
[data-page="efi-services-and-repairs"] .service-body--full {
  grid-template-columns: 1fr;
}
[data-page="efi-services-and-repairs"] .service-body__photo img {
  max-width: 420px;
  margin: 0 auto;
}
[data-page="efi-services-and-repairs"] .heading-green {
  color: #ffffff;
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 14px;
  text-decoration: none;
  border-bottom: 0;
  letter-spacing: 0.02em;
}
[data-page="efi-services-and-repairs"] .service-body__text a {
  color: var(--c-green);
  text-decoration: none;
}
[data-page="efi-services-and-repairs"] .service-body__text p {
  font-size: 18px;
  line-height: 1.65;
}
@media (max-width: 900px) {
  [data-page="efi-services-and-repairs"] .service-body {
    grid-template-columns: 1fr;
  }
}

[data-page="tyres-and-wheel-alignment"] .service-body {
  grid-template-columns: 1fr 400px;
  align-items: start;
}
[data-page="tyres-and-wheel-alignment"] .service-body--full {
  grid-template-columns: 1fr;
}
[data-page="tyres-and-wheel-alignment"] .service-body__photo img {
  width: 400px;
  height: 520px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}
[data-page="tyres-and-wheel-alignment"] .service-body__text h2 {
  font-weight: 400;
}

[data-page="engine-reconditioning"] .service-body {
  grid-template-columns: 400px 1fr;
  align-items: start;
}
[data-page="engine-reconditioning"] .service-body__photo img {
  width: 400px;
  height: 400px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}
[data-page="engine-reconditioning"] .service-body__text h2 {
  font-weight: 400;
}
[data-page="engine-reconditioning"] .service-body__text p {
  font-size: 18px;
  line-height: 1.65;
}
@media (max-width: 900px) {
  [data-page="engine-reconditioning"] .service-body {
    grid-template-columns: 1fr;
  }
}
[data-page="tyres-and-wheel-alignment"] .heading-green {
  color: #ffffff;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 23px;
  margin: 18px 0 14px;
  text-decoration: none;
  border-bottom: 0;
  letter-spacing: 0;
}
[data-page="tyres-and-wheel-alignment"] .service-body__text p,
[data-page="tyres-and-wheel-alignment"] .service-body__text li {
  font-size: 21px;
  line-height: 1.5;
}
[data-page="tyres-and-wheel-alignment"] .service-body__text ul li,
[data-page="tyres-and-wheel-alignment"] .service-body--full .service-body__text p {
  font-weight: 700;
}
[data-page="tyres-and-wheel-alignment"] .service-body__text strong {
  font-size: 23px;
}
[data-page="tyres-and-wheel-alignment"] .service-body__text a.link-white {
  color: #ffffff;
  text-decoration: none;
}
[data-page="tyres-and-wheel-alignment"] .service-body__text a {
  color: var(--c-green);
  text-decoration: none;
}
@media (max-width: 900px) {
  [data-page="tyres-and-wheel-alignment"] .service-body {
    grid-template-columns: 1fr;
  }
}
.service-block + .service-block { margin-top: 40px; }

/* Contact strip (below content, on white) */
.below-band {
  background: #fff;
  color: var(--c-text);
  padding: 0;
  text-align: center;
  border-top: 5px solid #35166e;
  font-size: 24px;
  line-height: 1.5;
}
.below-band a { color: var(--c-green); font-weight: 700; text-decoration: none; }
.below-band a[href^="tel:"] { color: #000; font-weight: 700; }
.below-band a:hover { text-decoration: underline; }

/* ------------------ ABOUT PAGE ------------------ */
.about-band {
  background: var(--c-purple);
  color: #ffffff;
  padding: 44px 24px;
  text-align: center;
}
.about-band p {
  max-width: 1000px;
  margin: 0 auto 16px;
  font-size: 22px;
  line-height: 1.6;
  color: #ffffff;
}

.why-band {
  background: var(--c-purple);
  padding: 44px 24px 32px;
  text-align: center;
}
.why-band h2 {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
  margin: 0 0 36px;
  letter-spacing: 0.02em;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  max-width: 900px;
  margin: 0 auto;
}
.why-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: start;
  text-align: left;
}
.why-item__icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.why-item h3 {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  margin: 8px 0 6px;
  letter-spacing: 0.03em;
}
.why-item p {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

.cert-band {
  background: #fff;
  padding: 6px 24px 40px;
  text-align: center;
}
.cert-band__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 0 auto;
}
.cert-band__row img {
  max-height: 140px;
  width: auto;
  display: block;
}

/* ------------------ CONTACT PAGE ------------------ */
.contact-band {
  background: var(--c-purple);
  color: #fff;
  padding: 44px 24px 54px;
}
.contact-band .container { max-width: 1080px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: 0.03em;
}
.contact-info p { margin: 0 0 22px; color: #fff; line-height: 1.5; font-size: 18px; }

.contact-form h2 {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.contact-form > p {
  color: #fff;
  margin: 0 0 26px;
  font-size: 19px;
  line-height: 1.45;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  color: #fff;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #fff;
  padding: 12px 12px;
  font-family: var(--f-body);
  font-size: 18px;
  color: var(--c-text);
  border-radius: 0;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--c-green);
  outline-offset: 1px;
}

.services-fieldset {
  border: 1px solid #ffffff;
  padding: 10px 16px 8px 16px;
  margin: 0 0 20px 0;
}
.services-fieldset legend {
  padding: 0 8px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.04em;
}
.services-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 4px 0;
}
.services-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 0;
  color: #fff;
  font-size: 17px;
}
.services-list input[type="checkbox"] {
  width: 14px; height: 14px;
  margin: 0;
  accent-color: var(--c-purple-light);
}

.form-actions {
  display: block;
  margin-top: 8px;
}
.btn-submit {
  display: block;
  width: 100%;
  background: #ebedf0;
  color: var(--c-purple);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 40px;
  border: 0;
  cursor: pointer;
  border-radius: 2px;
}
.btn-submit:hover { background: #d9dde3; }
.form-message {
  margin-top: 14px;
  font-size: 15px;
  color: #fff;
  min-height: 20px;
}

/* Honeypot */
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* ------------------ FOOTER ------------------ */
.site-footer {
  background: #000000;
  color: #ffffff;
  padding: 42px 24px 26px;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 40px;
  align-items: end;
}
.site-footer__links {
  display: grid;
  grid-template-columns: 100px repeat(3, minmax(0, 1fr));
  gap: 12px 40px;
  align-items: start;
  max-width: 900px;
}
.site-footer__col {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__col--narrow {
  min-width: 0;
}
.site-footer__col a {
  color: #ffffff;
  font-family: var(--f-body);
  font-size: 18px;
  text-decoration: none;
}
.site-footer__col a:hover {
  color: var(--c-green);
  text-decoration: none;
}
.site-footer__meta {
  text-align: right;
  align-self: end;
}
.site-footer__mvrl {
  color: #ced4d9;
  font-family: var(--f-body);
  font-size: 16px;
  letter-spacing: 0.01em;
}
.site-footer__copy {
  color: #ffffff;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}

/* ------------------ THANKS PAGE ------------------ */
.thanks-band {
  background: var(--c-purple);
  color: #fff;
  padding: 80px 24px 100px;
  text-align: center;
}
.thanks-band h1 {
  font-family: var(--f-heading);
  font-weight: 700;
  font-size: 40px;
  margin: 0 0 16px;
}
.thanks-band p { font-size: 18px; margin: 0 0 24px; }
.thanks-band a {
  display: inline-block;
  background: var(--c-purple-cta);
  color: #fff;
  padding: 14px 32px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 900px) {
  :root {
    --h-header: 110px;
  }
  .brand__logo { width: 110px; height: 85px; }
  .header-cta { padding: 10px 12px; font-size: 13px; width: 80px; min-height: 76px; }

  .tile-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .service-tiles__row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-body { grid-template-columns: 1fr; gap: 24px; }
  .service-body.reverse .service-body__text { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .why-grid { grid-template-columns: 1fr; }
  .cert-band__row { gap: 24px; }
  .cert-band__row img { max-height: 60px; }
}

@media (max-width: 640px) {
  :root {
    --h-topbar: 40px;
    --h-header: 100px;
    --h-nav: 60px;
    --w-container: 100%;
  }

  .container { padding: 0 16px; }
  .topbar { font-size: 11px; }
  .topbar .container { gap: 6px; }
  .topbar .topbar__hours {
    font-size: 11px;
    flex: 1;
    text-align: center;
  }

  .brand__logo { width: 88px; height: 68px; }
  .header-cta { padding: 8px 10px; font-size: 11px; width: 72px; min-height: 60px; letter-spacing: 0.02em; }

  .site-nav {
    height: 0;
    min-height: 0;
    background: transparent;
    overflow: visible;
    position: relative;
    z-index: 40;
  }
  .site-nav .container { padding: 0; justify-content: flex-start; }
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .topbar .container { justify-content: space-between; gap: 10px; }
  .topbar .nav-burger { padding: 2px 4px; color: var(--c-green); }
  .topbar .nav-burger svg { width: 22px; height: 22px; }
  .nav-list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-purple);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    height: auto;
    padding: 72px 0 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  }
  .site-nav.is-open .nav-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  body.menu-open { overflow: hidden; }
  body.menu-open .topbar,
  body.menu-open .site-header,
  body.menu-open .site-nav .container { visibility: hidden; }
  body.menu-open .nav-burger {
    visibility: visible;
    position: fixed;
    top: 10px;
    right: 14px;
    z-index: 1000;
    color: var(--c-green);
  }

  .nav-list > li {
    height: auto;
    display: block;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-list > li:first-child { border-top: 0; }
  .nav-list > li > a,
  .nav-list > li > .dropdown-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px 18px;
    color: #fff !important;
    font-size: 14px;
    text-decoration: none;
    height: auto;
    width: 100%;
  }
  .nav-list > li.is-active > a,
  .nav-list > li.is-active > .dropdown-toggle { background: rgba(255,255,255,0.08); }
  .nav-list > li > a:hover,
  .nav-list > li > .dropdown-toggle:hover { background: rgba(255,255,255,0.08); color: #fff !important; }

  .nav-caret { border-top-color: #fff; }

  .nav-dropdown {
    position: static;
    background: rgba(0,0,0,0.15);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    max-height: none;
    overflow: visible;
    transition: none;
    display: block;
  }
  .nav-list > li.has-dropdown .dropdown-toggle::after { content: none; }
  .nav-dropdown {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav-dropdown li:first-child a { border-top: 0; }
  .nav-dropdown a {
    display: block;
    padding: 10px 32px;
    font-size: 12px;
    color: #fff;
    background: transparent;
    text-align: center;
    border-top: 0;
  }
  .nav-dropdown a:hover { background: rgba(255,255,255,0.08); color: #fff; }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    font-size: 10px;
    width: auto;
    min-height: 40px;
    max-width: none;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
    margin-left: auto;
  }
  .site-header { background: #25292e; }
  .brand__logo { width: 88px; height: 68px; }

  .home-intro { padding: 22px 16px 20px; }
  .home-intro h1 { font-size: 22px; margin: 0 0 12px; }
  .home-intro p { font-size: 15px; margin: 0 0 10px; line-height: 1.4; }

  .tiles-section { padding: 26px 0 32px; }
  .tiles-section h2 { font-size: 26px; margin: 0 0 20px; }
  .tile-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 16px; max-width: 100%; }

  .contact-strip { padding: 0 16px 22px; font-size: 13px; }

  .page-banner { padding: 22px 16px; }
  .page-banner h1 { font-size: 30px; }

  .service-tiles { padding: 14px 12px 16px; }
  .service-tiles__row { grid-template-columns: 1fr; gap: 8px; }
  .service-tiles__row a { width: 100%; min-height: 48px; font-size: 14px; padding: 10px 12px; }

  [data-page="brake-and-clutch-repairs"] .service-body__photo,
  [data-page="brake-and-clutch-repairs"] .service-body.reverse .service-body__photo,
  [data-page="tyres-and-wheel-alignment"] .service-body__photo,
  [data-page="tyres-and-wheel-alignment"] .service-body.reverse .service-body__photo { order: 0 !important; }
  [data-page="brake-and-clutch-repairs"] .service-body__text,
  [data-page="brake-and-clutch-repairs"] .service-body.reverse .service-body__text,
  [data-page="tyres-and-wheel-alignment"] .service-body__text,
  [data-page="tyres-and-wheel-alignment"] .service-body.reverse .service-body__text { order: 1 !important; }

  .page-service .service-body__photo {
    margin-left: -32px;
    margin-right: -32px;
  }
  .page-service .service-body__photo img {
    width: 100%;
    max-width: none;
    height: auto;
    border: 0;
    margin: 0;
    object-fit: cover;
  }

  .service-band { padding: 30px 16px 40px; }
  .service-body__text h2 { font-size: 20px; }
  .service-body__text p { font-size: 13px; line-height: 1.5; }
  .service-body__text ul li { font-size: 13px; }
  .service-body__text strong { font-size: 14px; }
  .page-service .heading-green { font-size: 15px; margin: 12px 0 8px; }
  [data-page="tyres-and-wheel-alignment"] .service-body__text p,
  [data-page="tyres-and-wheel-alignment"] .service-body__text li { font-size: 13px; }
  [data-page="tyres-and-wheel-alignment"] .service-body__text strong { font-size: 14px; }
  [data-page="efi-services-and-repairs"] .service-body__text p { font-size: 13px; }
  [data-page="engine-reconditioning"] .service-body__text p { font-size: 13px; }

  .about-band { padding: 24px 16px; }
  .about-band p { font-size: 15px; line-height: 1.5; }
  .why-band { padding: 26px 16px 22px; }
  .why-band h2 { font-size: 20px; margin: 0 0 22px; }
  .why-grid { gap: 22px; }
  .why-item { grid-template-columns: 70px 1fr; }
  .why-item__icon { width: 70px; height: 70px; }
  .why-item h3 { font-size: 15px; }
  .why-item p { font-size: 13px; line-height: 1.4; }
  .below-band { font-size: 15px; }

  .cert-band__row { gap: 20px; }
  .cert-band__row img { max-height: 46px; }

  .contact-band { padding: 30px 16px 40px; }
  .contact-info h3 { font-size: 16px; }
  .contact-info p { font-size: 13px; }
  .contact-form h2 { font-size: 18px; }
  .contact-form > p { font-size: 14px; }
  .field label { font-size: 13px; }
  .field input[type="text"],
  .field input[type="tel"],
  .field input[type="email"],
  .field textarea { font-size: 14px; padding: 10px 10px; }
  .services-fieldset legend { font-size: 11px; }
  .services-list li { font-size: 13px; }
  .btn-submit { padding: 12px 24px; font-size: 14px; }

  .site-footer { padding: 26px 16px 22px; }
  .site-footer .container { grid-template-columns: 1fr; gap: 20px; }
  .site-footer__links { grid-template-columns: 80px 1fr 1fr; gap: 10px 20px; max-width: 100%; }
  .site-footer__col { gap: 6px; }
  .site-footer__col a { font-size: 14px; }
  .site-footer__meta { text-align: right; }
}
