@import url("https://fonts.googleapis.com/css2?family=Michroma&family=Open+Sans:wght@500&display=swap");

:root {
  --ink: #111a24;
  --muted: #5a6673;
  --paper: #ffffff;
  --wash: #f3f7fa;
  --blue: #0867ad;
  --blue-dark: #064d82;
  --cyan: #33b7d8;
  --line: #dce5eb;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(17, 26, 36, .09);
  --max: 1180px;
  --font-display: "Michroma", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --font-body: "Open Sans", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: #3d4955;
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: .75rem 1rem;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
}
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 780px); margin-inline: auto; }
.eyebrow {
  margin: 0 0 .6rem;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.16;
}
h1 { font-size: clamp(2.35rem, 5.8vw, 4.8rem); }
.home-hero-title { font-size: clamp(2.25rem, 5vw, 4.25rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.85rem); }
h3 { font-size: clamp(1.1rem, 1.7vw, 1.4rem); }
p { margin: .8rem 0 0; }
.lead { max-width: 720px; font-size: 1rem; font-weight: 500; color: var(--muted); }
.button-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.7rem; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .7rem 1.15rem;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .015em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--blue-dark); }
.button.secondary { background: transparent; color: var(--blue-dark); }
.button.secondary:hover { background: #eaf5fb; }
a.button[href="/contact/"],
.form button[type="submit"] {
  border-color: var(--blue);
  background: white;
  color: var(--blue-dark);
  box-shadow:
    0 6px 0 rgba(8, 103, 173, .18),
    0 12px 24px rgba(8, 103, 173, .18);
}
a.button[href="/contact/"]:hover,
.form button[type="submit"]:hover {
  transform: translateY(-2px);
  background: #f4fbfe;
  color: var(--blue-dark);
  box-shadow:
    0 6px 0 rgba(8, 103, 173, .16),
    0 11px 20px rgba(17, 26, 36, .12);
}
a.button[href="/contact/"]:active,
.form button[type="submit"]:active {
  transform: translateY(3px);
  box-shadow:
    0 2px 0 rgba(8, 103, 173, .18),
    0 6px 12px rgba(8, 103, 173, .16);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid #fafafa;
  background: #fafafa;
}
.site-header .nav-wrap {
  width: min(calc(100% - 3rem), 1440px);
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: clamp(2rem, 3vw, 3.5rem);
}
.brand {
  flex: 0 0 195px;
  padding: .55rem 0;
}
.brand img {
  width: 195px;
  height: auto;
  mix-blend-mode: normal;
}
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
}
.site-nav { min-width: 0; margin-left: auto; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 1.25vw, 1.35rem);
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}
.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 400;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--blue); }
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blue);
  content: "";
  transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-call { white-space: nowrap; }
.site-header .header-call,
main section:not(.contact-band) a.button[href^="tel:"],
main section:not(.contact-band) a.button[href="/contact/"] {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background:
    radial-gradient(circle at 88% 26%, rgba(51, 183, 216, .28), transparent 25rem),
    linear-gradient(135deg, #eef8fc, #fff 58%);
}
.home-hero {
  display: flex;
  min-height: clamp(560px, 75vh, 780px);
  align-items: center;
  background: var(--ink);
  color: white;
}
.home-hero::before,
.home-hero::after,
.home-hero-workshop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25)),
    linear-gradient(90deg, rgba(5, 18, 29, .84) 0%, rgba(5, 18, 29, .58) 48%, rgba(5, 18, 29, .12) 100%),
    url("/assets/img/burton%20images%20/truck2.jpg") center / cover no-repeat;
  content: "";
}
.home-hero::after {
  background:
    linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25)),
    linear-gradient(90deg, rgba(5, 18, 29, .84) 0%, rgba(5, 18, 29, .58) 48%, rgba(5, 18, 29, .12) 100%),
    url("/assets/img/burton%20images%20/IMG_2508.png") center / cover no-repeat;
  opacity: 0;
  animation: home-hero-second 18s ease-in-out infinite;
}
.home-hero-workshop {
  background:
    linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25)),
    linear-gradient(90deg, rgba(5, 18, 29, .84) 0%, rgba(5, 18, 29, .58) 48%, rgba(5, 18, 29, .12) 100%),
    url("/assets/img/workshop-scaled.jpg") center 42% / cover no-repeat;
  opacity: 0;
  animation: home-hero-third 18s ease-in-out infinite;
}
@keyframes home-hero-second {
  0%, 28% { opacity: 0; }
  34%, 61% { opacity: 1; }
  67%, 100% { opacity: 0; }
}
@keyframes home-hero-third {
  0%, 61% { opacity: 0; }
  67%, 94% { opacity: 1; }
  100% { opacity: 0; }
}
.home-hero .hero-grid { display: block; }
.home-hero .hero-grid > div { max-width: 780px; }
.home-hero .eyebrow, .home-hero .lead { color: white; }
.home-hero h1,
.windscreen-hero h1,
.adas-hero h1,
.tint-hero h1,
.van-hero h1 { color: white; }
.home-hero .button.secondary {
  border-color: white;
  color: white;
}
.home-hero .button.secondary:hover {
  background: white;
  color: var(--blue-dark);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 4rem; }
.hero-mark {
  position: relative;
  padding: 2.5rem;
  border: 1px solid rgba(8, 103, 173, .12);
  border-radius: 32px;
  background: white;
  box-shadow:
    0 0 38px rgba(51, 183, 216, .34),
    0 0 95px rgba(8, 103, 173, .24),
    var(--shadow);
}
.hero-mark img {
  width: 100%;
  mix-blend-mode: multiply;
}
.page-hero { padding: clamp(3.5rem, 8vw, 6.5rem) 0; background: linear-gradient(135deg, #eaf6fb, white 70%); }
.page-hero h1 { max-width: 900px; font-size: clamp(2.25rem, 5vw, 4.25rem); }
.gallery-hero .eyebrow { margin-left: 0; }
.windscreen-hero {
  display: flex;
  min-height: clamp(500px, 68vh, 720px);
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25)),
    linear-gradient(90deg, rgba(5, 18, 29, .88) 0%, rgba(5, 18, 29, .66) 48%, rgba(5, 18, 29, .18) 100%),
    url("/assets/img/broken-windshield-car-special-workers-take-of-windshield-of-a-car-in-auto-service-from-inside-from.jpg") center / cover no-repeat;
  color: white;
}
.windscreen-hero .container { width: min(calc(100% - 2rem), var(--max)); }
.windscreen-hero h1 { max-width: 780px; }
.windscreen-hero .lead { max-width: 680px; color: white; }
.windscreen-hero .eyebrow { color: white; }
.adas-hero {
  display: flex;
  min-height: clamp(500px, 68vh, 720px);
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25)),
    linear-gradient(90deg, rgba(5, 18, 29, .9) 0%, rgba(5, 18, 29, .62) 50%, rgba(5, 18, 29, .15) 100%),
    url("/assets/img/67744511_2308418672576944_53393122163425280_n.jpeg") center 48% / cover no-repeat;
  color: white;
}
.adas-hero h1 { max-width: 780px; }
.adas-hero .lead, .adas-hero .eyebrow { color: white; }
.tint-hero {
  display: flex;
  min-height: clamp(500px, 68vh, 720px);
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25)),
    linear-gradient(90deg, rgba(5, 18, 29, .9) 0%, rgba(5, 18, 29, .6) 48%, rgba(5, 18, 29, .12) 100%),
    url("/assets/img/male-specialist-applying-car-tinting-film.jpg") center / cover no-repeat;
  color: white;
}
.tint-hero h1 { max-width: 780px; }
.tint-hero .lead, .tint-hero .eyebrow { color: white; }
.van-hero {
  display: flex;
  min-height: clamp(500px, 68vh, 720px);
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, .25)),
    linear-gradient(90deg, rgba(5, 18, 29, .9) 0%, rgba(5, 18, 29, .6) 48%, rgba(5, 18, 29, .12) 100%),
    url("/assets/img/IMG_2505-2-1.png") center 38% / cover no-repeat;
  color: white;
}
.van-hero .container { transform: translateY(-2rem); }
.van-hero h1 { max-width: 780px; }
.van-hero .lead, .van-hero .eyebrow { color: white; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section.tinted { background: var(--wash); }
.section.dark { background: var(--ink); color: white; }
.section.dark h1, .section.dark h2, .section.dark h3 { color: white; }
.section.dark .eyebrow, .section.dark a { color: #7edcf0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.2rem; }
.section-head > * { max-width: 720px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.established-line {
  display: inline-block;
  margin: 0 0 .7rem;
  padding-bottom: .35rem;
  border-bottom: 3px solid var(--cyan);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 400;
}
.card {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 30px rgba(17,26,36,.045);
}
.card p { color: var(--muted); }
.card .text-link { display: inline-block; margin-top: 1rem; color: var(--blue-dark); font-family: var(--font-display); font-size: .72rem; font-weight: 400; }
.services-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
  overflow: visible;
  isolation: isolate;
  border-radius: 26px;
  background: transparent;
}
.service-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  gap: 1.6rem;
  align-items: start;
  min-height: 300px;
  height: 100%;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border: 1px solid rgba(8, 103, 173, .12);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(5, 18, 29, .08);
  color: var(--ink);
  text-decoration: none;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.service-row:hover {
  z-index: 5;
  transform: translateY(-5px);
  background: var(--wash);
  box-shadow: 0 13px 24px rgba(5, 18, 29, .11);
}
.service-row:active { transform: translateY(2px); }
.service-number {
  align-self: center;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .1em;
}
.service-copy {
  display: grid;
  grid-column: 1 / -1;
  align-content: start;
  gap: .8rem;
}
.service-copy strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.35;
}
.service-copy > span {
  max-width: 720px;
  color: var(--muted);
}
.service-arrow {
  align-self: center;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform .2s ease, color .2s ease;
}
.service-row:hover .service-arrow {
  transform: translateX(6px);
  color: var(--blue-dark);
}
.feature-list { display: grid; gap: .75rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .005em;
  transition: color .25s ease, transform .25s ease, text-shadow .25s ease;
}
.feature-list li:hover {
  transform: translateX(4px);
  color: var(--blue-dark);
}
.feature-list li::before {
  position: absolute;
  top: .42em;
  left: 0;
  width: .95rem;
  height: .95rem;
  border: 2px solid var(--cyan);
  border-top-color: rgba(8, 103, 173, .45);
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan) 0 3px, transparent 3.5px);
  box-shadow: 0 0 0 rgba(6, 77, 130, 0);
  content: "";
  transition: transform .35s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.feature-list li:hover::before {
  transform: rotate(180deg) scale(1.12);
  border-color: var(--blue);
  border-top-color: var(--blue-dark);
  background: radial-gradient(circle, var(--blue) 0 3px, transparent 3.5px);
  box-shadow: none;
}
.stat { padding: 2rem; border-radius: var(--radius); background: var(--blue); color: white; }
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 400; line-height: 1; }
.reviews-carousel {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--wash);
}
.reviews-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 103, 173, .78), rgba(6, 77, 130, .82)),
    url("/assets/img/burton%20images%20/75339443_2501014109984065_6758187871263260672_n.jpg") center 45% / cover no-repeat;
}
.reviews-section .reviews-layout { position: relative; z-index: 1; }
.reviews-section .eyebrow,
.reviews-section h2 { color: white; }
.reviews-layout {
  display: grid;
  grid-template-columns: minmax(230px, .6fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.reviews-layout .section-head {
  position: sticky;
  top: 110px;
  display: block;
  margin-bottom: 0;
  transform: translateY(-6.5rem);
}
.reviews-viewport { position: relative; }
.review-slide {
  display: grid;
  min-height: 300px;
  align-content: center;
  padding: clamp(1.6rem, 5vw, 3.5rem);
}
.reviews-carousel[data-enhanced="true"] .reviews-viewport {
  display: flex;
  transform: translateX(0);
  transition: transform .65s cubic-bezier(.22, .72, .25, 1);
  will-change: transform;
}
.reviews-carousel[data-enhanced="true"] .review-slide {
  display: grid;
  flex: 0 0 100%;
}
.review-mark {
  height: .75em;
  color: var(--blue);
  font-family: Georgia, serif;
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: .8;
}
.review-slide blockquote {
  max-width: 900px;
  margin: 1.3rem 0 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
.review-slide footer { display: grid; gap: .1rem; margin-top: 2rem; }
.review-slide footer strong { color: var(--blue-dark); font-family: var(--font-display); font-size: .75rem; font-weight: 400; }
.review-slide footer span { color: var(--muted); }
.carousel-controls {
  display: none;
  min-height: 76px;
  align-items: center;
  justify-content: flex-end;
  gap: .8rem;
  padding: 1rem clamp(1.2rem, 4vw, 2.5rem);
  border-top: 0;
  background: white;
}
.reviews-carousel[data-enhanced="true"] .carousel-controls { display: flex; }
.carousel-count { margin: 0 auto 0 0; color: var(--muted); font-family: var(--font-display); font-size: .72rem; font-weight: 400; }
.carousel-button, .carousel-pause {
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 400;
}
.carousel-pause { padding-inline: 1rem; }
.carousel-button:hover, .carousel-pause:hover { background: var(--wash); }
.content-flow > * + * { margin-top: 1.15rem; }
.content-flow h2, .content-flow h3 { margin-top: 2.2rem; }
.content-flow .button-row { margin-top: 1.8rem; }
.adas-layout {
  display: grid;
  width: min(calc(100% - 2rem), var(--max));
  gap: clamp(2.5rem, 6vw, 5rem);
}
.adas-layout > * {
  width: min(100%, 1000px);
  margin-right: auto;
}
.adas-intro {
  margin-top: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
.adas-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 0;
}
.adas-details-grid p, .adas-calibration-detail p {
  max-width: 850px;
  margin-top: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}
.adas-points {
  max-width: 900px;
  margin: 0;
  gap: 1.1rem;
}
.adas-calibration-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.adas-location {
  padding-top: 0;
}
.adas-location h2 { max-width: 900px; }
.van-layout {
  display: grid;
  width: min(calc(100% - 2rem), var(--max));
  gap: clamp(3rem, 7vw, 6rem);
}
.van-layout > * {
  width: min(100%, 1000px);
  margin-right: auto;
}
.van-overview {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}
.van-overview .lead { margin-top: 0; }
.van-overview > div:first-child { transform: translateY(-1.25rem); }
.van-overview > div:last-child { padding-top: 5.25rem; }
.van-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
  margin-top: 2rem;
  padding-top: 0;
}
.van-process li {
  margin: 0;
  padding: 0 0 0 1.75rem;
}
.van-process li::before { left: 0; }
.van-process li:first-child { padding-left: 1.75rem; }
.van-process li:first-child::before { left: 0; }
.van-image-placeholder {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.van-image-placeholder img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.service-overview h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
.service-highlight {
  padding: 3.2rem 0 0;
  border-left: 0;
}
.service-highlight .feature-list { margin-top: 1.5rem; }
.replacement-overview .service-highlight .feature-list {
  gap: 1.6rem;
  margin-top: 4.5rem;
}
.repair-section {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}
.service-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}
.service-step { align-self: start; }
.service-step .lead { margin-top: 1.5rem; }
.service-image-slot {
  display: grid;
  min-height: 320px;
  place-items: center;
  border: 2px dashed #b9c9d3;
  border-radius: var(--radius);
  background: var(--wash);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}
.service-image-slot:has(img) {
  overflow: hidden;
  border: 0;
}
.service-image-slot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.guarantee-image-slot { margin-top: 2rem; }
.fleet-panel {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fleet-panel p { margin-top: 0; color: var(--muted); }
.image-panel { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-panel img { width: 100%; height: auto; }
.tint-layout {
  display: grid;
  width: min(calc(100% - 2rem), var(--max));
  gap: clamp(2.5rem, 6vw, 5rem);
}
.tint-layout > * {
  width: min(100%, 1000px);
  margin-right: auto;
}
.tint-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}
.tint-info-grid .feature-list {
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.tint-service-image {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-top: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.tint-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tint-image-panel {
  width: 100%;
  aspect-ratio: 3 / 1;
  margin-top: 2rem;
}
.tint-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-band { background: linear-gradient(120deg, var(--blue-dark), var(--blue)); color: white; }
.contact-band h1, .contact-band h2, .contact-band h3 { color: white; }
.contact-band .eyebrow { color: white; }
.contact-band .grid-2 { align-items: center; }
.contact-band a { color: white; }
.contact-details { display: grid; gap: 1rem; margin: 1.5rem 0 0; }
.contact-details p { margin: 0; }
.contact-details a { font-weight: 800; }
.hours { display: grid; grid-template-columns: 1fr auto; gap: .4rem 1.5rem; margin: 1.4rem 0 0; }
.hours dt, .hours dd { margin: 0; }

.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { color: var(--ink); font-family: var(--font-display); font-size: .72rem; font-weight: 400; }
.field input, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: .8rem;
  border: 1px solid #aebcc6;
  border-radius: 10px;
  background: white;
  color: var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.honeypot { position: absolute; left: -10000px; }
.form-status { min-height: 1.5rem; margin: 0; font-weight: 700; }
.turnstile-slot { min-height: 1px; }
.empty-gallery {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 2rem;
  border: 2px dashed #b9c9d3;
  border-radius: var(--radius);
  background: var(--wash);
  text-align: center;
}
.gallery-section { background: var(--wash); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.gallery-grid figure {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: 14px;
  background: white;
  box-shadow: 0 8px 24px rgba(17, 26, 36, .09);
}
.gallery-grid figure.gallery-landscape {
  grid-column: span 2;
  aspect-ratio: 4 / 3;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.gallery-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(6, 14, 22, .96);
  color: white;
}
.gallery-lightbox[hidden] { display: none; }
.lightbox-open { overflow: hidden; }
.gallery-lightbox::backdrop { background: rgba(6, 14, 22, .96); }
.lightbox-frame {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  width: 100%;
  height: 100%;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}
.lightbox-image-wrap {
  display: grid;
  height: 100%;
  place-items: center;
  align-content: center;
  gap: 1rem;
}
.lightbox-image-wrap img {
  max-width: 100%;
  max-height: calc(100dvh - 7rem);
  object-fit: contain;
}
.lightbox-image-wrap p { margin: 0; color: white; font-weight: 800; }
.lightbox-nav, .lightbox-close {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: white;
  font-size: 1.5rem;
}
.lightbox-nav:hover, .lightbox-close:hover { background: var(--blue); }
.lightbox-close {
  position: fixed;
  z-index: 2;
  top: 1rem;
  right: 1rem;
}

.site-footer { padding: 4.5rem 0 2rem; background: #0c151f; color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.footer-logo {
  width: 220px;
  padding: 1rem;
  border-radius: 12px;
  background: white;
  mix-blend-mode: multiply;
}
.site-footer .footer-logo { mix-blend-mode: normal; }
.site-footer h2 { color: white; font-size: .82rem; letter-spacing: 0; }
.site-footer ul { margin: .8rem 0 0; padding: 0; list-style: none; }
.site-footer a { color: white; }
.copyright { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.15); font-size: .85rem; }
.mobile-actions { display: none; }
.footer-legal { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; margin-top: .75rem; }
.policy-content h2 { margin-top: 2rem; }
.consent-field { display: grid; grid-template-columns: auto 1fr; gap: .65rem; align-items: start; font-size: .92rem; }
.consent-field input { margin-top: .2rem; }
.cookie-panel {
  position: fixed;
  z-index: 1100;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  background: #0c151f;
  color: white;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}
.cookie-panel[hidden], .cookie-settings-button[hidden] { display: none; }
.cookie-panel__inner { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: center; max-width: var(--max); margin: auto; }
.cookie-panel h2, .cookie-panel p { margin: 0; color: white; }
.cookie-panel p { margin-top: .35rem; max-width: 70ch; }
.cookie-panel a { color: white; text-decoration: underline; }
.cookie-panel__actions { display: flex; flex-wrap: wrap; gap: .65rem; }
.cookie-panel .button.secondary { border-color: white; color: white; }
.cookie-settings-button {
  position: fixed;
  z-index: 1050;
  right: 1rem;
  bottom: 1rem;
  padding: .7rem 1rem;
  border: 0;
  border-radius: 999px;
  background: #0c151f;
  color: white;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}
.cookie-embed-placeholder[hidden] { display: none; }
.map-card[data-cookie-embed] { position: relative; }
.map-card[data-cookie-embed] iframe:not([src]) { visibility: hidden; }

/* Keep all sentence-level copy consistent across every page. */
body p:not(.eyebrow):not(.established-line):not(.carousel-count),
body .lead,
body .service-copy > span,
body .feature-list li,
body .review-slide blockquote,
body .review-slide footer span,
body .adas-intro,
body .adas-details-grid p,
body .adas-calibration-detail p,
body .site-footer li,
body .hours dt,
body .hours dd,
body .copyright {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
}

.scroll-animations .scroll-reveal {
  opacity: 0;
  translate: 0 24px;
  transition:
    opacity .55s ease var(--reveal-delay, 0ms),
    translate .55s cubic-bezier(.22, .72, .25, 1) var(--reveal-delay, 0ms);
}
.scroll-animations .scroll-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

@media (prefers-reduced-motion: no-preference) {
  .hero > .container > *,
  .page-hero > .container > * {
    animation: hero-content-in .65s both;
  }
  .hero > .container > *:nth-child(2),
  .page-hero > .container > *:nth-child(2) { animation-delay: .08s; }
  .hero > .container > *:nth-child(3),
  .page-hero > .container > *:nth-child(3) { animation-delay: .16s; }
  .hero > .container > *:nth-child(4),
  .page-hero > .container > *:nth-child(4) { animation-delay: .24s; }
}

@keyframes hero-content-in {
  from { opacity: 0; translate: 0 18px; }
  to { opacity: 1; translate: 0 0; }
}

@media (max-width: 1280px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    padding: .7rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
  }
  .site-nav[data-open="true"] { display: block; }
  .site-nav ul { display: grid; gap: 0; }
  .site-nav a { padding: .35rem .7rem; }
  .header-call { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-mark { max-width: 520px; }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  body { padding-bottom: 0; }
  .brand {
    width: 165px;
    flex-basis: 165px;
    padding: .45rem .6rem .45rem 0;
  }
  .brand img { width: 165px; }
  .site-header .nav-wrap {
    width: min(calc(100% - 2rem), var(--max));
    min-height: 68px;
    gap: 1rem;
  }
  .hero { padding: 3.5rem 0; }
  .hero-mark {
    padding: 1.3rem;
  }
  .grid-2, .grid-3, .footer-grid, .about-layout { grid-template-columns: 1fr; }
  .service-overview, .service-split, .fleet-panel { grid-template-columns: 1fr; }
  .service-image-slot { min-height: 230px; }
  .service-highlight { grid-column: auto; }
  .service-highlight { padding-top: .5rem; }
  .replacement-overview .service-highlight .feature-list { margin-top: 2rem; }
  .adas-details-grid, .adas-calibration-detail { grid-template-columns: 1fr; }
  .van-overview, .van-process { grid-template-columns: 1fr; }
  .van-overview > div:last-child { padding-top: 0; }
  .van-image-placeholder { min-height: 240px; }
  .services-panel { grid-template-columns: 1fr; }
  .service-row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto 1fr;
    min-height: 0;
    padding: 1.4rem;
    border: 1px solid rgba(8, 103, 173, .12);
  }
  .service-arrow {
    display: flex;
    width: 42px;
    height: 42px;
  }
  .tint-info-grid { grid-template-columns: 1fr; }
  .tint-info-grid .feature-list {
    gap: 1.1rem;
    margin-top: 2rem;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-layout .section-head {
    position: static;
    transform: none;
  }
  .gallery-grid figure.gallery-landscape { grid-column: span 1; }
  .lightbox-frame {
    position: relative;
    grid-template-columns: 1fr;
    padding: 4rem 1rem 5rem;
  }
  .lightbox-nav {
    position: fixed;
    z-index: 2;
    bottom: 1rem;
  }
  .lightbox-previous { left: 1rem; }
  .lightbox-next { right: 1rem; }
  .lightbox-image-wrap img { max-height: calc(100dvh - 10rem); }
  .section-head { display: block; }
  .section-head .button { margin-top: 1.2rem; }
  .mobile-actions {
    display: none;
  }
  .cookie-panel__inner { grid-template-columns: 1fr; }
  .cookie-panel__actions { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
