/* ==========================================================================
   Prestige Auto Repairs — styles.css
   Oakville's European & Luxury Auto Specialists
   Mobile-first. No frameworks, no build step.

   Contents
   01. Tokens
   02. Reset & base
   03. Typography
   04. Layout helpers
   05. Buttons
   06. Header / navigation
   07. Hero
   08. Trust bar
   09. Brand strip
   10. Cards (service / feature / review)
   11. Media placeholders
   12. Page hero (inner pages)
   13. Service detail rows
   14. About
   15. Reviews
   16. Contact & form
   17. CTA banner
   18. Footer
   19. Scroll reveal
   20. Responsive
   21. Motion & print preferences
   ========================================================================== */

/* 01. Tokens ============================================================== */

:root {
  /* Brand */
  --red: #c8102e;
  --red-bright: #e31739;
  --red-soft: rgba(200, 16, 46, 0.12);
  --blue: #0a2472;
  --blue-bright: #1a3fa8;

  /* Neutrals */
  --black: #0a0a0b;
  --charcoal: #141417;
  --charcoal-light: #1c1c21;
  --surface: #17171b;
  --surface-2: #212128;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --white: #ffffff;
  --text: #e9e9ec;
  --muted: #a2a2ac;
  --muted-dim: #83838f;

  /* Type */
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  /* Metrics */
  --container: 1200px;
  --gutter: 1.25rem;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 68px;

  /* Effects */
  --shadow: 0 18px 44px -20px rgba(0, 0, 0, 0.9);
  --shadow-red: 0 14px 30px -12px rgba(200, 16, 46, 0.5);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 02. Reset & base ======================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  background-color: var(--black);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
}

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

::selection {
  background: var(--red);
  color: var(--white);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 0;
}

/* 03. Typography ========================================================== */

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6em;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

h1 {
  font-size: clamp(2.1rem, 7vw, 4rem);
}

h2 {
  font-size: clamp(1.7rem, 4.4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.05rem;
  font-weight: 700;
}

p {
  margin: 0 0 1.15rem;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--white);
  font-weight: 700;
}

.lead {
  font-size: clamp(1.02rem, 2.1vw, 1.2rem);
  color: var(--muted);
  line-height: 1.75;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-bright);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}

.eyebrow--center {
  justify-content: center;
}

/* 04. Layout helpers ====================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: 820px;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  position: relative;
}

.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.section--charcoal {
  background: var(--charcoal);
}

.section--gradient {
  background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.divider {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--line-strong),
    transparent
  );
}

/* 05. Buttons ============================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
    border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    color 0.25s var(--ease);
}

.btn svg {
  flex: none;
  width: 17px;
  height: 17px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn--primary:hover {
  background: var(--red-bright);
}

.btn--outline {
  border-color: var(--line-strong);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
}

.btn--blue:hover {
  background: var(--blue-bright);
}

.btn--lg {
  padding: 1.1rem 2.1rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-row--center {
  justify-content: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red-bright);
}

.link-arrow svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s var(--ease);
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

/* 06. Header / navigation ================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(10, 10, 11, 0.96);
  border-bottom-color: var(--line-strong);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

/* Logo — text-only wordmark */
.logo {
  display: inline-flex;
  align-items: center;
  flex: none;
  transition: opacity 0.2s var(--ease);
}

.logo:hover {
  opacity: 0.85;
}

.logo__name {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  white-space: nowrap;
}

@media (min-width: 640px) {
  .logo__name {
    font-size: 1.15rem;
  }
}

/* Nav panel */
.nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: grid;
  gap: 0.25rem;
  padding: 0.5rem var(--gutter) 1.35rem;
  background: var(--charcoal);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease),
    visibility 0.25s;
}

.nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav__list {
  display: grid;
}

.nav__link {
  display: block;
  padding: 0.85rem 0.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s var(--ease);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link.is-active {
  color: var(--red-bright);
}

.nav__cell {
  margin-top: 0.9rem;
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: none;
}

.btn--call {
  padding: 0.65rem 0.95rem;
  font-size: 0.85rem;
}

.btn--call .btn__label {
  display: none;
}

/* Hamburger */
.nav-toggle {
  display: grid;
  place-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* 07. Hero ================================================================ */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3.5rem, 12vw, 8rem);
  background-color: var(--black);
  background-image: radial-gradient(
      900px 520px at 12% -15%,
      rgba(26, 63, 168, 0.32),
      transparent 62%
    ),
    radial-gradient(
      760px 460px at 92% 8%,
      rgba(200, 16, 46, 0.22),
      transparent 60%
    ),
    linear-gradient(180deg, #0e0e13 0%, var(--black) 72%);
}

/* Diagonal texture + bottom fade */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.035) 0 1px,
    transparent 1px 9px
  );
  opacity: 0.7;
}

.hero::after {
  background: linear-gradient(180deg, transparent 55%, var(--black) 100%);
}

.hero__inner {
  position: relative;
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}

.hero__badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 0 4px var(--red-soft);
}

.hero h1 {
  margin-bottom: 0.35em;
}

.hero h1 .accent {
  display: block;
  background: linear-gradient(100deg, var(--white) 30%, #9fb4ea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__tagline {
  max-width: 34ch;
  margin-bottom: 1rem;
  font-size: clamp(1.05rem, 3vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}

.hero__tagline::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 1.1rem;
  background: var(--red);
  border-radius: 2px;
}

.hero__text {
  max-width: 52ch;
  margin-bottom: 2rem;
  color: var(--muted);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.75rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__meta svg {
  width: 15px;
  height: 15px;
  color: var(--red-bright);
}

/* 08. Trust bar =========================================================== */

.trust {
  background: var(--charcoal);
  border-block: 1px solid var(--line);
}

.trust__list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0.25rem;
  background: var(--charcoal);
}

.trust__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--red-soft);
  border: 1px solid rgba(200, 16, 46, 0.28);
  color: var(--red-bright);
}

.trust__icon svg {
  width: 22px;
  height: 22px;
}

.trust__title {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.trust__sub {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* 09. Brand strip ========================================================= */

.brands {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--black);
  overflow: hidden;
}

.brands__label {
  margin-bottom: 1.75rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.brands__viewport {
  position: relative;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.brands__track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}

.brands:hover .brands__track,
.brands:focus-within .brands__track {
  animation-play-state: paused;
}

.brands__set {
  display: flex;
  align-items: center;
}

.brands__set li {
  padding-inline: clamp(1.1rem, 3vw, 2.1rem);
  font-size: clamp(0.95rem, 2.4vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted-dim);
  transition: color 0.3s var(--ease);
}

.brands__set li:hover {
  color: var(--white);
}

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

/* 10. Cards =============================================================== */

.card {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
    background-color 0.3s var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--surface-2);
}

.card:hover::before,
.card:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(26, 63, 168, 0.45), rgba(10, 36, 114, 0.2));
  border: 1px solid rgba(120, 150, 230, 0.22);
  color: #9fb4ea;
}

.card__icon svg {
  width: 23px;
  height: 23px;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

/* Cards that are entirely a link */
.card--link:hover h3 {
  color: var(--white);
}

/* Feature (why choose us) */
.feature {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(23, 23, 27, 0.4) 100%);
}

.feature__num {
  display: block;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(200, 16, 46, 0.75);
}

.feature p {
  font-size: 0.94rem;
  color: var(--muted);
}

/* Review card */
.review {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.review:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.stars {
  display: flex;
  gap: 3px;
  color: #f5b429;
}

.stars svg {
  width: 17px;
  height: 17px;
}

.review blockquote {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

.review__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.review__avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.review__name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.review__source {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

/* 11. Media placeholders ================================================== */

.ph {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background-color: var(--charcoal-light);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.035) 0 2px,
    transparent 2px 12px
  );
  color: var(--muted);
  text-align: center;
}

.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    70% 70% at 50% 30%,
    rgba(26, 63, 168, 0.18),
    transparent 70%
  );
  pointer-events: none;
}

.ph__label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  padding: 1rem;
}

.ph__label svg {
  width: 26px;
  height: 26px;
  color: var(--muted-dim);
}

.ph__label span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.ph__label small {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.ph--wide {
  aspect-ratio: 16 / 9;
}

.ph--tall {
  aspect-ratio: 3 / 4;
}

.ph--square {
  aspect-ratio: 1 / 1;
}

/* 12. Page hero (inner pages) ============================================= */

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(2.75rem, 8vw, 5.5rem);
  background-color: var(--black);
  background-image: radial-gradient(
      760px 380px at 20% -30%,
      rgba(26, 63, 168, 0.3),
      transparent 62%
    ),
    radial-gradient(
      620px 340px at 95% 0%,
      rgba(200, 16, 46, 0.16),
      transparent 60%
    );
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.03) 0 1px,
    transparent 1px 9px
  );
}

.page-hero__inner {
  max-width: 720px;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 5.6vw, 3.25rem);
}

.page-hero p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted-dim);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--line-strong);
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
}

/* 13. Service detail rows ================================================= */

.svc {
  display: grid;
  gap: 1rem;
  padding-block: clamp(2.25rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

.svc__head h2 {
  margin-bottom: 0;
}

.svc:last-of-type {
  border-bottom: 0;
}

.svc__index {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
}

.svc__index::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--line-strong);
}

.svc h2 {
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  margin-bottom: 0.6rem;
}

.svc p {
  color: var(--muted);
}

.list-check {
  display: grid;
  gap: 0.6rem;
  margin-top: 1.35rem;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text);
}

.list-check svg {
  flex: none;
  width: 17px;
  height: 17px;
  margin-top: 0.28rem;
  color: var(--red-bright);
}

/* Warranty callout */
.callout {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem;
  border: 1px solid rgba(200, 16, 46, 0.3);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  background: linear-gradient(100deg, rgba(200, 16, 46, 0.1), rgba(23, 23, 27, 0.6));
}

.callout svg {
  flex: none;
  width: 26px;
  height: 26px;
  color: var(--red-bright);
}

.callout h2,
.callout h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.callout p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* 14. About =============================================================== */

.split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.stat-row {
  display: grid;
  gap: 1px;
  margin-top: 2.25rem;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  padding: 1.35rem 1.25rem;
  background: var(--surface);
  text-align: center;
}

.stat__value {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.2;
}

.stat__label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.owner {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, var(--surface) 0%, rgba(10, 36, 114, 0.18) 100%);
}

.owner__name {
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.owner__role {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
}

/* 15. Reviews page ======================================================== */

.review-cta {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.75rem, 5vw, 3rem);
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: radial-gradient(
      120% 140% at 50% 0%,
      rgba(26, 63, 168, 0.32),
      transparent 65%
    ),
    var(--surface);
}

.review-cta h2 {
  margin-bottom: 0.5rem;
}

.review-cta p {
  max-width: 52ch;
  margin-inline: auto;
  color: var(--muted);
}

.google-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.stars--lg svg {
  width: 26px;
  height: 26px;
}

.stars--center {
  justify-content: center;
}

/* 16. Contact & form ====================================================== */

.form {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}

.field .req {
  color: var(--red-bright);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--black);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a2a2ac' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 18px;
  padding-right: 2.6rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-dim);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}

.field input:not(:placeholder-shown):invalid,
.field textarea:not(:placeholder-shown):invalid {
  border-color: rgba(227, 23, 57, 0.7);
}

.form__note {
  font-size: 0.8rem;
  color: var(--muted-dim);
  margin: 0;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.contact-grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 3rem);
}

/* Contact info list */
.info-list {
  display: grid;
  gap: 1.5rem;
}

.info {
  display: flex;
  gap: 1rem;
}

.info__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--red-soft);
  border: 1px solid rgba(200, 16, 46, 0.28);
  color: var(--red-bright);
}

.info__icon svg {
  width: 19px;
  height: 19px;
}

.info__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.info__value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

a.info__value:hover {
  color: var(--red-bright);
}

.hours {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}

.hours li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours strong {
  font-weight: 600;
  color: var(--white);
}

/* Map */
.map {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--charcoal-light);
  line-height: 0;
}

.map iframe {
  width: 100%;
  height: clamp(280px, 45vw, 420px);
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.86);
}

/* 17. CTA banner ========================================================== */

.cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5rem);
  background-color: var(--blue);
  background-image: radial-gradient(
      90% 140% at 12% 0%,
      rgba(26, 63, 168, 0.9),
      transparent 60%
    ),
    linear-gradient(120deg, #0a2472 0%, #07153f 55%, #0a0a0b 100%);
  text-align: center;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.04) 0 1px,
    transparent 1px 10px
  );
}

.cta h2 {
  margin-bottom: 0.5rem;
}

.cta p {
  max-width: 54ch;
  margin-inline: auto;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.78);
}

/* 18. Footer ============================================================== */

.site-footer {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  background: var(--charcoal);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.footer__grid {
  display: grid;
  gap: 2.25rem;
  padding-bottom: 2.75rem;
}

.footer__about p {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 36ch;
}

.footer__title {
  margin-bottom: 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.footer__links {
  display: grid;
  gap: 0.7rem;
}

.footer__links a {
  color: var(--muted);
  transition: color 0.2s var(--ease);
}

.footer__links a:hover {
  color: var(--red-bright);
}

.footer__contact {
  display: grid;
  gap: 0.85rem;
  color: var(--muted);
}

.footer__contact a:hover {
  color: var(--white);
}

.footer__contact .row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.footer__contact svg {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 0.32rem;
  color: var(--red-bright);
}

.footer__bottom {
  display: grid;
  gap: 0.6rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted-dim);
}

.footer__bottom p {
  margin: 0;
}

/* 19. Scroll reveal ======================================================= */

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.js .reveal[data-delay="1"] { transition-delay: 0.09s; }
.js .reveal[data-delay="2"] { transition-delay: 0.18s; }
.js .reveal[data-delay="3"] { transition-delay: 0.27s; }
.js .reveal[data-delay="4"] { transition-delay: 0.36s; }
.js .reveal[data-delay="5"] { transition-delay: 0.45s; }

/* 20. Responsive ========================================================== */

@media (min-width: 480px) {
  .btn--call .btn__label {
    display: inline;
  }

  .btn--call {
    padding: 0.7rem 1.15rem;
  }
}

@media (min-width: 640px) {
  :root {
    --gutter: 1.75rem;
  }

  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }

  .trust__item {
    padding: 1.75rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .stat-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer__bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
  }

  .owner {
    grid-template-columns: 180px 1fr;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .grid--2 {
    gap: 1.75rem;
  }

  .split {
    grid-template-columns: 1fr 1fr;
  }

  .split--wide-text {
    grid-template-columns: 1.15fr 0.85fr;
  }

  /* Text-only service list: heading column, then detail column. */
  .svc {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .svc__head {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1.2fr;
  }
}

/* Desktop navigation */
@media (min-width: 1024px) {
  :root {
    --header-h: 80px;
  }

  .nav-toggle {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .nav__list {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .nav__link {
    position: relative;
    padding: 0.5rem 0.95rem;
    border-bottom: 0;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    border-radius: var(--radius-sm);
  }

  .nav__link::after {
    content: "";
    position: absolute;
    left: 0.95rem;
    right: 0.95rem;
    bottom: 0.15rem;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s var(--ease);
  }

  .nav__link:hover::after,
  .nav__link.is-active::after {
    transform: scaleX(1);
  }

  .nav__cell {
    display: none;
  }

  .btn--call {
    padding: 0.8rem 1.35rem;
  }

  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .hero__inner {
    max-width: 840px;
  }
}

@media (min-width: 1180px) {
  .grid--3-lg {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 21. Motion & print preferences ========================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .brands__viewport {
    overflow-x: auto;
  }

  .brands__track {
    animation: none;
  }
}

@media print {
  .site-header,
  .nav,
  .cta,
  .brands,
  .map,
  .skip-link {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  h1,
  h2,
  h3,
  h4,
  strong {
    color: #000;
  }
}
