/* ============================================================
   AutoDrive Salisbury Plain — Design System
   Brand: red / black / white automotive "garage-premium"
   ============================================================ */

:root {
  /* Brand colour tokens (sampled from the AutoDrive logo) */
  --brand-red:    #C01418;
  --brand-red-dk: #930E12;
  --ink-black:    #0E0E0E;
  --charcoal:     #1C1C1E;
  --grey-700:     #3F3F46;
  --grey-500:     #6B7280;
  --grey-300:     #D4D4D8;
  --grey-100:     #ECECEE;
  --off-white:    #F7F7F8;
  --white:        #FFFFFF;

  --radius:    14px;
  --radius-sm: 9px;
  /* Shadows are tinted toward the ink-black/charcoal hue (not pure black) for a
     softer, more considered depth. */
  --shadow:    0 22px 48px -22px rgba(14,14,16,.42);
  --shadow-sm: 0 10px 24px -14px rgba(14,14,16,.34);
  --shadow-red: 0 20px 44px -20px rgba(147,14,18,.45);
  --ring:      0 0 0 4px rgba(192,20,24,.20);

  /* Tileable monochrome grain — adds micro-texture to flat dark surfaces. */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");

  --wrap: 1180px;
  --gap:  clamp(1rem, 3vw, 2rem);

  --font-display: "Anton", "Archivo Black", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--grey-700);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { color: var(--ink-black); line-height: 1.08; margin: 0 0 .5em; text-wrap: balance; }
p { text-wrap: pretty; }

.display, .h-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .5px;
  text-transform: uppercase;
  line-height: .98;
}
/* Section-heading display type used inline throughout the homepage splits. */
.h-display { font-size: clamp(1.9rem, 4.4vw, 3rem); }

/* Numerals (stats, counters, big index figures) read cleaner as tabular. */
.trust-strip .num, .feature__num, .price-card .price,
.car-card__price, .rating-chip strong { font-variant-numeric: tabular-nums; }

.wrap { width: min(var(--wrap), 92vw); margin-inline: auto; }

section { padding: clamp(3.5rem, 7vw, 6rem) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  font-size: .74rem; color: var(--brand-red); margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--brand-red);
}
.eyebrow.center { justify-content: center; }
/* On dark/photographic surfaces the label stays white but the accent rule stays red. */
.eyebrow--light { color: #fff; }
.eyebrow--light::before { background: var(--brand-red); }

.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.9rem, 4.4vw, 3rem); letter-spacing: .3px;
}
.section-head p { color: var(--grey-500); font-size: 1.05rem; }

.lead { font-size: 1.12rem; color: var(--grey-700); }
.text-red { color: var(--brand-red); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--brand-red);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  padding: .92rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  background: var(--bg); color: #fff; cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--brand-red-dk); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn:active { transform: translateY(0) scale(.98); box-shadow: none; }
.btn:focus-visible { outline: none; box-shadow: var(--ring); }
.btn--ghost { background: transparent; color: var(--ink-black); border-color: var(--grey-300); }
.btn--ghost:hover { background: var(--ink-black); color: #fff; border-color: var(--ink-black); }
/* Ghost button placed on a dark or red surface. */
.btn--on-dark { color: #fff; border-color: rgba(255,255,255,.6); }
.btn--on-dark:hover { background: #fff; color: var(--ink-black); border-color: #fff; }
.btn--light { background: #fff; color: var(--ink-black); }
.btn--light:hover { background: var(--off-white); color: var(--ink-black); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.04rem; }
.btn--block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grey-100);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .65rem 0; min-height: 68px;
}
.brand { display: flex; align-items: center; }
/* Header: inline vector logo (traced from the real artwork), sized up.
   On hover a soft light band sweeps across each layer in turn (staggered). */
.logo-svg {
  height: 88px; width: auto; display: block;
  transition: transform .3s var(--ease), filter .3s var(--ease);
}
.brand:hover .logo-svg {
  transform: scale(1.03);
  filter: drop-shadow(0 5px 16px rgba(192,20,24,.28));
}
.logo-svg .glint { opacity: 0; mix-blend-mode: screen; }
.brand:hover .logo-svg .glint {
  animation: logo-sweep 1.15s var(--ease);
  animation-delay: calc(var(--i) * 90ms);     /* layer-by-layer cascade */
}
@keyframes logo-sweep {
  0%       { opacity: 0; transform: translateX(-300px); }
  12%      { opacity: 1; }
  55%      { opacity: 1; }
  70%,100% { opacity: 0; transform: translateX(1060px); }
}
/* Footer keeps the dark-mode transparent PNG (white text, red car). */
.logo-img { height: 86px; width: auto; display: block; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  font-weight: 600; font-size: .95rem; color: var(--ink-black);
  position: relative; padding: .25rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--brand-red); transition: width .25s var(--ease);
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--brand-red); }
.nav a:focus-visible, .header-phone:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }
.header-cta { display: flex; align-items: center; gap: .9rem; }
.header-phone { display: flex; align-items: center; gap: .5rem; font-weight: 800; color: var(--ink-black); }
.header-phone svg { width: 18px; height: 18px; color: var(--brand-red); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .4rem;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink-black); transition: .25s var(--ease); }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; isolation: isolate;
  background: linear-gradient(115deg, rgba(8,8,8,.94) 0%, rgba(8,8,8,.66) 52%, rgba(8,8,8,.30) 100%),
              radial-gradient(120% 85% at 12% 18%, rgba(192,20,24,.20), transparent 60%),
              url("../../images/1.%20And%20working%20on%20cars%20.jpeg") center/cover no-repeat, var(--ink-black);
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(4rem, 8vw, 6.5rem);
}
/* Fine film grain over the hero photograph to kill digital flatness. */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: var(--grain); background-size: 140px 140px;
  opacity: .055; pointer-events: none; mix-blend-mode: overlay;
}
.hero::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 5px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red-dk));
}
.hero__inner { max-width: 720px; position: relative; }

/* Glass eyebrow chip — replaces the inline white label on the hero. */
.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: .72rem;
  color: #fff; padding: .5rem .9rem; margin-bottom: 1.2rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.hero__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand-red); box-shadow: 0 0 0 4px rgba(192,20,24,.25); }
.hero p strong { color: #fff; }

/* Floating social-proof chip anchored to the hero's lower edge. */
.rating-chip {
  display: inline-flex; align-items: center; gap: .7rem; margin-top: 2.2rem;
  background: rgba(255,255,255,.96); color: var(--ink-black);
  padding: .7rem 1.1rem; border-radius: 999px; box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.6);
}
.rating-chip .stars { color: #f5a623; letter-spacing: 1px; font-size: 1rem; }
.rating-chip strong { font-family: var(--font-display); font-size: 1.15rem; line-height: 1; }
.rating-chip small { color: var(--grey-500); font-size: .82rem; }
.rating-chip .divider { width: 1px; height: 22px; background: var(--grey-300); }
.hero h1 {
  color: #fff; font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(2.4rem, 6.2vw, 4.4rem); letter-spacing: .5px; margin-bottom: 1rem;
}
.hero h1 .text-red { color: var(--brand-red); }
.hero p { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: rgba(255,255,255,.86); max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 2.4rem; }
.hero__meta div { display: flex; align-items: center; gap: .55rem; font-weight: 600; color: rgba(255,255,255,.9); font-size: .95rem; }
.hero__meta svg { width: 20px; height: 20px; color: var(--brand-red); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--ink-black); color: #fff; padding: 1.7rem 0; }
.trust-strip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center;
}
/* Hairline dividers between stats instead of floating columns. */
.trust-strip__grid > div { position: relative; }
.trust-strip__grid > div + div::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 38px; background: rgba(255,255,255,.12);
}
.trust-strip .num { font-family: var(--font-display); font-size: 2.1rem; color: var(--brand-red); line-height: 1; }
.trust-strip .lbl { font-size: .8rem; letter-spacing: .08em; color: rgba(255,255,255,.66); text-transform: uppercase; margin-top: .4rem; }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 1.4rem; }
/* Spacing utilities (replace one-off inline margins). */
.mt-lg { margin-top: 2.5rem; }
.center-row { text-align: center; margin-top: 2.4rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative; background: #fff;
  border: 1px solid var(--grey-100); border-radius: var(--radius);
  padding: 1.7rem 1.6rem; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  height: 100%;
}
/* A red accent rule that wipes across the top edge on hover. */
.card::before {
  content: ""; position: absolute; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red-dk));
  transition: width .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(192,20,24,.18); }
.card:hover::before { width: 100%; }
.card:active { transform: translateY(-3px) scale(.995); }
.card__icon {
  width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center;
  background: rgba(192,20,24,.10); color: var(--brand-red); margin-bottom: 1.1rem;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.card:hover .card__icon { background: var(--brand-red); color: #fff; transform: scale(1.04); }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.card p { color: var(--grey-500); font-size: .96rem; margin: 0 0 1rem; }
.card .tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.tag { font-size: .76rem; font-weight: 600; color: var(--grey-700); background: var(--off-white); border: 1px solid var(--grey-100); padding: .25rem .6rem; border-radius: 999px; }
.card__link { font-weight: 700; color: var(--brand-red); display: inline-flex; align-items: center; gap: .4rem; font-size: .92rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

/* ---------- Why choose / feature list ---------- */
.feature {
  display: flex; gap: 1.1rem; align-items: flex-start; padding: 1.4rem;
  border-radius: var(--radius); background: var(--off-white); border: 1px solid var(--grey-100);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); background: #fff; }
/* Large outlined index figure — drawn with a text stroke so it reads as a graphic accent. */
.feature__num {
  font-family: var(--font-display); font-size: 2.3rem; line-height: .9; flex: none;
  color: transparent; -webkit-text-stroke: 1.5px var(--brand-red);
  transition: color .25s var(--ease);
}
.feature:hover .feature__num { color: rgba(192,20,24,.12); }
.feature h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.feature p { font-size: .92rem; color: var(--grey-500); margin: 0; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.reverse .split__media { order: -1; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.media-frame { position: relative; }
.media-frame::before {
  content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 3px solid var(--brand-red);
  border-radius: var(--radius); z-index: -1;
}
.checklist { list-style: none; padding: 0; margin: 1.2rem 0 1.6rem; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; font-size: 1rem; }
.checklist li svg { width: 22px; height: 22px; color: var(--brand-red); flex: none; margin-top: 1px; }
.checklist strong { color: var(--ink-black); }

/* ---------- Bands ---------- */
.band-dark { position: relative; background: var(--ink-black); color: #fff; isolation: isolate; }
.band-dark h2, .band-dark h3 { color: #fff; }
/* Dark and red bands carry a faint grain so they don't read as flat fills. */
.band-dark::before, .band-red::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: var(--grain); background-size: 140px 140px; opacity: .05;
}
.band-red {
  position: relative; isolation: isolate; color: #fff;
  background: linear-gradient(120deg, var(--brand-red), var(--brand-red-dk));
}
.band-red h2 { color: #fff; }
/* Soft text for paragraphs sitting on dark or red surfaces. */
.band-dark .lead-muted { color: rgba(255,255,255,.82); }
.band-dark .checklist li, .band-dark .checklist strong { color: #fff; }
.band-red .lead-muted { color: rgba(255,255,255,.95); }
.band-grey { background: var(--off-white); }

/* Two-column CTA band (copy left, actions right) — was inline grid markup. */
.cta-split {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center;
}
.cta-split__actions { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: flex-end; }
.cta-split p { font-size: 1.1rem; max-width: 560px; }
@media (max-width: 760px) {
  .cta-split { grid-template-columns: 1fr; }
  .cta-split__actions { justify-content: flex-start; }
}

.cta-band {
  text-align: center;
  /* Faint car mark bleeding off the right edge — quiet brand echo on the dark band. */
  background: url("../../images/logo-mark.svg") no-repeat right -90px center / 620px auto, var(--ink-black);
}
.cta-band h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2rem,5vw,3.2rem); }
.cta-band p { max-width: 560px; margin: .4rem auto 1.6rem; opacity: .92; font-size: 1.08rem; }
.cta-band .btn--light { color: var(--brand-red); }
.cta-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Testimonials ---------- */
.reviews-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.rating-badge { display: flex; align-items: center; gap: .7rem; background: #fff; border: 1px solid var(--grey-100); border-radius: 999px; padding: .55rem 1.1rem; box-shadow: var(--shadow-sm); }
.rating-badge .stars { color: #f5a623; letter-spacing: 1px; }
.rating-badge strong { color: var(--ink-black); }
.rating-badge small { color: var(--grey-500); }
.review {
  background: #fff; border: 1px solid var(--grey-100); border-radius: var(--radius);
  padding: 1.5rem; height: 100%;
}
.review .stars { color: #f5a623; letter-spacing: 1px; margin-bottom: .7rem; }
.review p { color: var(--grey-700); font-size: .98rem; }
.review__who { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--brand-red); color: #fff; display: grid; place-items: center; font-weight: 800; font-family: var(--font-display); }
.review__who strong { display: block; color: var(--ink-black); font-size: .95rem; }
.review__who small { color: var(--grey-500); }

/* ---------- Service areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: .6rem; }
.area-pill { background: #fff; border: 1px solid var(--grey-100); border-radius: 999px; padding: .5rem 1rem; font-weight: 600; font-size: .9rem; color: var(--grey-700); }
.area-pill:hover { border-color: var(--brand-red); color: var(--brand-red); }

/* ---------- Page hero (inner) ---------- */
.page-hero {
  /* Car mark layered above the dark wash — same quiet brand echo on inner pages. */
  background: url("../../images/logo-mark.svg") no-repeat right -70px bottom -20px / 560px auto,
              linear-gradient(120deg, rgba(8,8,8,.92), rgba(8,8,8,.7)), var(--ink-black);
  color: #fff; padding: clamp(3rem, 7vw, 5rem) 0; position: relative;
}
.page-hero::after { content:""; position:absolute; left:0; bottom:0; width:100%; height:4px; background: var(--brand-red); }
.page-hero h1 { color: #fff; font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.2rem,5.5vw,3.6rem); }
.page-hero p { color: rgba(255,255,255,.82); max-width: 620px; font-size: 1.1rem; }
.crumbs { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.crumbs a:hover { color: #fff; }

/* ---------- Pricing / packages ---------- */
.price-card { background:#fff; border:1px solid var(--grey-100); border-radius: var(--radius); padding: 1.8rem; height:100%; display:flex; flex-direction:column; }
.price-card.featured { border-color: var(--brand-red); box-shadow: var(--shadow); position: relative; }
.price-card.featured::before { content:"Most Popular"; position:absolute; top:-12px; left:1.8rem; background:var(--brand-red); color:#fff; font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:.25rem .7rem; border-radius:999px; }
.price-card h3 { font-size: 1.25rem; }
.price-card .price { font-family: var(--font-display); font-size: 2.4rem; color: var(--ink-black); line-height:1; margin:.4rem 0 .2rem; }
.price-card .price span { font-size: .9rem; color: var(--grey-500); font-family: var(--font-body); }
.price-card ul { list-style:none; padding:0; margin:1.2rem 0 1.6rem; display:grid; gap:.6rem; }
.price-card ul li { display:flex; gap:.55rem; font-size:.94rem; }
.price-card ul li svg { width:18px;height:18px;color:var(--brand-red);flex:none;margin-top:3px; }
.price-card .btn { margin-top:auto; }

/* ---------- Inventory ---------- */
.car-card { background:#fff; border:1px solid var(--grey-100); border-radius: var(--radius); overflow:hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.car-card__img { aspect-ratio: 16/10; background: var(--grey-100); position: relative; display:grid; place-items:center; color:var(--grey-500); }
.car-card__img .badge { position:absolute; top:.8rem; left:.8rem; background:var(--brand-red); color:#fff; font-size:.74rem; font-weight:700; padding:.25rem .6rem; border-radius:999px; }
.car-card__body { padding: 1.2rem 1.3rem 1.4rem; }
.car-card__body h3 { font-size: 1.08rem; margin-bottom:.2rem; }
.car-card__price { font-family: var(--font-display); color: var(--brand-red); font-size: 1.5rem; margin:.3rem 0 .6rem; }
.car-specs { display:flex; flex-wrap:wrap; gap:.4rem .9rem; color:var(--grey-500); font-size:.85rem; margin-bottom: 1rem; }
.car-specs span { display:flex; align-items:center; gap:.3rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline:auto; }
.faq details { border:1px solid var(--grey-100); border-radius: var(--radius-sm); padding: 0 1.2rem; margin-bottom:.8rem; background:#fff; }
.faq summary { list-style:none; cursor:pointer; font-weight:700; color:var(--ink-black); padding:1.1rem 0; display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; color:var(--brand-red); font-size:1.4rem; font-weight:400; transition: transform .2s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin:0 0 1.1rem; color:var(--grey-500); }

/* ---------- Contact ---------- */
.contact-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,3.5rem); align-items:start; }
.info-card { display:flex; gap:.9rem; padding:1.2rem 0; border-bottom:1px solid var(--grey-100); }
.info-card:last-child { border-bottom:0; }
.info-card__ic { width:46px;height:46px;border-radius:12px;background:rgba(192,20,24,.1);color:var(--brand-red);display:grid;place-items:center;flex:none; }
.info-card__ic svg{width:22px;height:22px;}
.info-card h4 { margin:0 0 .15rem; font-size:1rem; }
.info-card a, .info-card p { color:var(--grey-500); margin:0; font-size:.96rem; }
.info-card a:hover { color: var(--brand-red); }

.form { background:#fff; border:1px solid var(--grey-100); border-radius: var(--radius); padding: clamp(1.4rem,4vw,2.2rem); box-shadow: var(--shadow-sm); }
.form .row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.field { margin-bottom:1rem; }
.field label { display:block; font-weight:600; font-size:.88rem; color:var(--ink-black); margin-bottom:.4rem; }
.field input, .field select, .field textarea {
  width:100%; padding:.8rem .9rem; border:1px solid var(--grey-300); border-radius: var(--radius-sm);
  font:inherit; color:var(--ink-black); background:#fff; transition:border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color:var(--brand-red); box-shadow: var(--ring); }
.field textarea { resize:vertical; min-height:120px; }
.form__note { font-size:.82rem; color:var(--grey-500); margin-top:.4rem; }
.form-status { display:none; margin-top:1rem; padding:.9rem 1rem; border-radius: var(--radius-sm); font-weight:600; }
.form-status.ok { display:block; background:rgba(22,163,74,.1); color:#15803d; border:1px solid rgba(22,163,74,.25); }
.form-status.err { display:block; background:rgba(225,27,27,.08); color:var(--brand-red-dk); border:1px solid rgba(225,27,27,.25); }
.map-embed { border-radius: var(--radius); overflow:hidden; border:1px solid var(--grey-100); box-shadow: var(--shadow-sm); }
.map-embed iframe { width:100%; height:340px; border:0; display:block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-black); color: rgba(255,255,255,.72); padding: clamp(3rem,6vw,4.5rem) 0 1.6rem; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
/* Footer uses the dark-mode artwork (red car, white text) on transparent. */
.site-footer .logo-img { height: 128px; margin: -8px 0 .4rem -6px; }
.site-footer h4 { color:#fff; font-size:.95rem; letter-spacing:.05em; text-transform:uppercase; margin-bottom:1rem; }
.site-footer ul { list-style:none; padding:0; margin:0; display:grid; gap:.6rem; }
.site-footer a:hover { color:#fff; }
.footer-contact li { display:flex; gap:.6rem; font-size:.92rem; }
.footer-contact svg { width:18px;height:18px;color:var(--brand-red);flex:none;margin-top:3px; }
.social { display:flex; gap:.6rem; margin-top:1rem; }
.social a { width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,.18);display:grid;place-items:center;transition:.2s var(--ease); }
.social a:hover { background:var(--brand-red); border-color:var(--brand-red); }
.social svg { width:18px;height:18px;color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top:2.5rem; padding-top:1.4rem; display:flex; flex-wrap:wrap; gap:.6rem; justify-content:space-between; font-size:.84rem; color:rgba(255,255,255,.5); }

/* ---------- Sticky mobile action bar ---------- */
.mobile-bar { display:none; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%; background:#25D366;
  display:grid; place-items:center; box-shadow: 0 10px 24px -8px rgba(0,0,0,.5);
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width:30px; height:30px; color:#fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity:0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity:1; transform:none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2,1fr); }
  .grid--3 { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split__media { order: 0; }
  .media-frame::before { inset: 10px -10px -10px 10px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__grid { grid-template-columns: repeat(2,1fr); gap:1.4rem; }
}
@media (max-width: 760px) {
  .nav, .header-phone { display:none; }
  .nav-toggle { display:flex; }
  .logo-svg { height: 66px; }
  .logo-img { height: 64px; }
  .site-header.open .nav {
    display:flex; position:absolute; top:100%; left:0; right:0; flex-direction:column;
    align-items:flex-start; gap:0; background:#fff; padding:.5rem 6vw 1.2rem; border-bottom:1px solid var(--grey-100);
  }
  .site-header.open .nav a { width:100%; padding:.85rem 0; border-bottom:1px solid var(--grey-100); }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  body { padding-bottom: 64px; }
  .mobile-bar {
    display:grid; grid-template-columns: repeat(3,1fr); position:fixed; bottom:0; left:0; right:0; z-index:60;
    background:#fff; border-top:1px solid var(--grey-100); box-shadow:0 -6px 20px -10px rgba(0,0,0,.25);
  }
  .mobile-bar a { display:flex; flex-direction:column; align-items:center; gap:.2rem; padding:.6rem 0; font-size:.72rem; font-weight:700; color:var(--ink-black); }
  .mobile-bar a svg { width:20px; height:20px; }
  .mobile-bar a.call { color:var(--brand-red); }
  .mobile-bar a.book { background:var(--brand-red); color:#fff; }
  .wa-float { bottom: 76px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior:auto; }
  .reveal { transition:none; opacity:1; transform:none; }
  .brand:hover .logo-svg .glint { animation: none; opacity: 0; }
}

/* ===== VIDEO-BG SERVICES SECTION (ad-*) ===== */
/* Baked exploded-car video (diagram, labels + health-check panel are rendered into it).
   Shown full-width at its natural 16:9 so none of the baked-in edge labels get cropped. */
.ad-services { position: relative; width: 100%; padding: 0; background: #fff; line-height: 0; }
#ad-vid { display: block; width: 100%; height: auto; background: #0b0e13; }
#ad-ov { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.ad-leader { fill: none; stroke: #D81E26; stroke-width: 2; opacity: 0; filter: drop-shadow(0 1px 2px rgba(0,0,0,.45)); }
.ad-pill { fill: rgba(255,255,255,.95); stroke: #D81E26; stroke-width: 2; opacity: 0; filter: drop-shadow(0 2px 5px rgba(0,0,0,.3)); }
.ad-ptxt { fill: #16181c; font-size: 22px; font-weight: 700; letter-spacing: .8px; text-anchor: middle; dominant-baseline: middle; opacity: 0; }
.ad-flag { opacity: 0; filter: drop-shadow(0 1px 3px rgba(0,0,0,.5)); }
.ad-flagring { fill: #fff; opacity: 0; }
.ad-tick { fill: none; stroke: #0a3a24; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; opacity: 0; }
#ad-flash, #ad-flashg { opacity: 0; }
#ad-tab { position: absolute; right: 1.6%; top: 50%; width: 18.5%; max-width: 340px;
  background: rgba(34,37,42,.52); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: clamp(8px,.9vw,14px) clamp(9px,1vw,15px);
  box-shadow: 0 8px 26px rgba(0,0,0,.28); color: #eef1f4; z-index: 1; }
#ad-tab .ad-wm { font-size: clamp(12px,1.4vw,20px); font-weight: 800; letter-spacing: -.3px; line-height: 1; }
#ad-tab .ad-wm .a { color: #fff; }
#ad-tab .ad-wm .d { color: #ff5a5f; }
#ad-tab .ad-tt { font-size: clamp(7px,.74vw,10px); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #aeb6c0; margin: 3px 0 7px; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 6px; }
.ad-vrow { display: flex; align-items: center; gap: 8px; padding: clamp(1px,.2vw,3px) 0; font-size: clamp(9px,.95vw,13px); font-weight: 600; color: #d4d9df; }
.ad-vdot { width: clamp(7px,.65vw,10px); height: clamp(7px,.65vw,10px); border-radius: 50%; background: #f5a623; flex: 0 0 auto; }
.ad-vname { flex: 1; }
.ad-vchk { color: #2bb673; font-weight: 800; opacity: 0; font-size: .95em; }
.ad-vrow.done .ad-vname { color: #fff; }
@media (max-width: 760px) {
  /* Mobile: a wide 16:9 video forced to "cover" a tall phone zooms/crops badly.
     Show the whole video as a normal 16:9 block; the labels + panel align to it. */
  .ad-services { height: auto; }
  #ad-vid { position: relative; inset: auto; height: auto; aspect-ratio: 16 / 9; }
  /* Health-check panel sized down to sit on the small video (top-right). */
  #ad-tab { right: 3%; top: 4%; transform: none; width: 44%; max-width: 200px; padding: 6px 8px; border-radius: 9px; }
  #ad-tab .ad-wm { font-size: 11px; }
  #ad-tab .ad-tt { font-size: 6px; margin: 2px 0 4px; padding-bottom: 4px; }
  .ad-vrow { font-size: 8px; gap: 5px; padding: 0; }
  .ad-vdot { width: 6px; height: 6px; }
}
