/* ─── Tokens ─────────────────────────────────────────────────────── */
:root {
  --red: #d92121; --red-deep: #a8161a;
  --ink: #141414; --ink-2: #1f1f1f;
  --bone: #fff; --bone-2: #f2f2f2; --bone-3: #e3e3e3;
  --steel: #555; --line: rgba(20,20,20,.14);
  --display: "Oswald", Impact, "Arial Black", sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --pad-x: clamp(20px, 4vw, 44px);
}

/* ─── Reset / base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--body); color: var(--ink); background: var(--bone);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  line-height: 1.5;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol, table, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }

/* ─── Type scale ─────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red); font-weight: 600;
}
.h-mega {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(48px, 8vw, 112px);
  line-height: .9; letter-spacing: -.01em; text-transform: uppercase;
}
.h-big {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .95; letter-spacing: -.005em; text-transform: uppercase;
}
.h-mid {
  font-family: var(--display); font-weight: 600; font-size: 26px;
  line-height: 1.05; text-transform: uppercase;
}
.lede { font-size: 17px; line-height: 1.55; max-width: 56ch; color: var(--ink-2); }
.body, .prose { font-size: 15px; line-height: 1.6; color: var(--ink-2); }
.tiny { font-size: 12px; line-height: 1.4; color: var(--steel); }
.accent { color: var(--red); }

.prose h2 { font-family: var(--display); font-size: 24px; text-transform: uppercase; letter-spacing: .005em; margin-top: 28px; color: var(--ink); }
.prose p { margin-top: 14px; max-width: 60ch; }
.prose a { color: var(--red); text-underline-offset: 3px; }
.prose code { font-family: var(--mono); font-size: .92em; background: var(--bone-2); padding: 1px 5px; }
.prose ul { margin-top: 14px; padding-left: 20px; list-style: disc; max-width: 60ch; }
.prose ul li { margin-top: 6px; }

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; font-family: var(--display); font-weight: 600;
  font-size: 15px; letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .12s, background .12s, color .12s, border-color .12s;
}
.btn:active { transform: translateY(1px); }
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover, .btn-red:focus-visible { background: var(--red-deep); border-color: var(--red-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--ink); color: var(--bone); }
.btn-ghost--light { color: var(--bone); border-color: var(--bone); }
.btn-ghost--light:hover, .btn-ghost--light:focus-visible { background: var(--bone); color: var(--ink); }

/* ─── Tag / chip ─────────────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--line); background: var(--bone-2); color: var(--ink-2);
}

/* ─── Phone bar ──────────────────────────────────────────────────── */
.phonebar {
  background: var(--ink); color: #fff;
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; padding: 8px var(--pad-x);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.phonebar a { color: #fff; text-decoration: none; font-weight: 700; }
.phonebar .right { display: flex; gap: 18px; flex-wrap: wrap; }

/* ─── Nav ────────────────────────────────────────────────────────── */
.nav {
  position: relative; padding: 14px var(--pad-x);
  border-bottom: 1px solid var(--line); background: var(--bone);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
  z-index: 5;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links--right { justify-content: flex-end; }
.nav-link {
  font-family: var(--display); font-weight: 600; font-size: 14px;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  color: inherit; padding: 8px 0; border-bottom: 2px solid transparent;
  transition: border-color .12s, color .12s;
}
.nav-link:hover, .nav-link:focus-visible { border-color: var(--red); color: var(--red); }
.nav-link .caret { font-size: 10px; margin-left: 4px; transition: transform .12s; display: inline-block; }
.has-dropdown { position: relative; }
.has-dropdown:hover > .nav-link .caret,
.has-dropdown:focus-within > .nav-link .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px;
  background: var(--bone); border: 1px solid var(--ink);
  box-shadow: 0 16px 36px -12px rgba(0,0,0,.35);
  padding: 6px; margin: 0; list-style: none; z-index: 50;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .12s, transform .12s, visibility 0s linear .12s;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .12s, transform .12s, visibility 0s;
}
/* invisible bridge so the gap doesn't drop the menu */
.has-dropdown::before {
  content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px;
}
.dropdown li { display: block; }
.dropdown a {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 14px; text-decoration: none; color: var(--ink);
  font-family: var(--display); font-weight: 600; font-size: 14px;
  letter-spacing: .06em; text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  transition: background .12s, color .12s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown a:hover, .dropdown a:focus-visible { background: var(--red); color: #fff; }
.dropdown a .meta {
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  opacity: .7; margin-left: 14px;
}
.nav .logo {
  position: absolute; left: 50%; top: 100%;
  transform: translate(-50%, calc(-50% - 22px));
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--ink); border: 5px solid var(--bone);
  box-shadow: 0 6px 0 0 rgba(0,0,0,.05), 0 18px 28px -12px rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center; z-index: 10;
}
.nav .logo img { width: 96px; height: 96px; object-fit: contain; }
.nav-spacer { width: 116px; height: 1px; }
.menu-toggle { display: none; }
@media (max-width: 860px) {
  .nav { grid-template-columns: 1fr auto; padding: 10px var(--pad-x); }
  .nav-links--left, .nav-links--right { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .menu-toggle summary {
    list-style: none; cursor: pointer;
    font-family: var(--display); font-weight: 600; font-size: 13px;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 10px 14px; border: 2px solid var(--ink);
  }
  .menu-toggle summary::-webkit-details-marker { display: none; }
  .menu-toggle[open] summary { background: var(--ink); color: var(--bone); }
  .menu-toggle .menu-panel {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bone); border-top: 1px solid var(--line);
    padding: 22px var(--pad-x); display: flex; flex-direction: column; gap: 16px;
    z-index: 20;
  }
  .menu-sub > summary { list-style: none; cursor: pointer; }
  .menu-sub > summary::-webkit-details-marker { display: none; }
  .menu-sub-panel { display: flex; flex-direction: column; gap: 10px; padding: 12px 0 4px 18px; border-left: 2px solid var(--red); margin-top: 10px; }
  .menu-sub-panel a { font-family: var(--display); font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; text-decoration: none; color: var(--ink-2); }
  .menu-sub-panel a:hover, .menu-sub-panel a:focus-visible { color: var(--red); }
  .nav .logo {
    position: static; transform: none; width: 56px; height: 56px;
    border-width: 3px; box-shadow: none;
  }
  .nav .logo img { width: 44px; height: 44px; }
  .nav-spacer { display: none; }
}

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero { background: var(--ink); color: var(--bone); padding: clamp(64px, 10vh, 96px) var(--pad-x); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 56px); align-items: center; }
.hero h1 { color: var(--bone); margin-top: 22px; font-size: clamp(48px, 7vw, 96px); }
.hero p { color: var(--bone-3); margin-top: 24px; max-width: 50ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero figure { aspect-ratio: 4/5; max-height: 540px; overflow: hidden; background: var(--ink-2); }
.hero figure img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero figure { aspect-ratio: 4/3; max-height: none; order: -1; }
}

/* ─── Inner page header (used by sub-pages instead of full hero) ─── */
.page-head { padding: clamp(56px, 8vh, 80px) var(--pad-x) clamp(24px, 4vh, 36px); border-bottom: 1px solid var(--line); }
.page-head h1 { margin-top: 18px; font-size: clamp(48px, 8vw, 112px); }
.page-head p { margin-top: 22px; max-width: 60ch; }

/* ─── Stats (hero) ───────────────────────────────────────────────── */
.stats {
  margin-top: clamp(40px, 6vh, 64px); padding-top: clamp(28px, 4vh, 36px);
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid; grid-template-columns: 1.1fr .9fr 1.1fr;
}
.stats > div {
  padding: 0 clamp(16px, 2.5vw, 36px);
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 140px; gap: 18px;
}
.stats > div + div { border-left: 1px solid rgba(255,255,255,.14); }
.stats .num { display: flex; align-items: baseline; gap: 12px; color: var(--bone); }
.stats .num strong {
  font-family: var(--display); font-weight: 700; line-height: .9;
  font-size: clamp(56px, 7vw, 104px); letter-spacing: -.02em;
}
.stats .num em {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--bone-3); font-style: normal;
}
.stats .num .denom {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(24px, 3vw, 36px); color: var(--bone-3);
}
.stats .lbl {
  font-family: var(--display); font-weight: 600; font-size: 17px;
  letter-spacing: .04em; text-transform: uppercase; color: var(--bone);
}
.stats .lbl-mono {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--bone-3);
}
.stats .lbl-mono strong { color: var(--bone); font-weight: 600; }
.stars-row { display: flex; gap: 4px; margin-top: 8px; }
.stars-row svg { width: 20px; height: 20px; display: block; }
.ase-row { display: flex; align-items: center; gap: 22px; }
.ase-badge {
  flex-shrink: 0; width: 108px; height: 108px; border-radius: 50%;
  background: var(--red); border: 4px solid var(--bone); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--display); text-align: center; line-height: 1;
  box-shadow: 0 12px 24px -10px rgba(0,0,0,.5); transform: rotate(-6deg);
}
.ase-badge .small { font-size: 10px; letter-spacing: .22em; opacity: .9; }
.ase-badge .big { font-size: 36px; font-weight: 700; margin: 4px 0; }
.ase-badge .micro { font-size: 9px; letter-spacing: .18em; opacity: .85; font-family: var(--mono); }
.ase-row .label-big {
  font-family: var(--display); font-weight: 700; line-height: 1.05;
  font-size: clamp(24px, 3vw, 36px); color: var(--bone);
}
@media (max-width: 1024px) {
  .stats { grid-template-columns: 1fr; }
  .stats > div + div { border-left: none; border-top: 1px solid rgba(255,255,255,.14); padding-top: 28px; margin-top: 8px; }
}

/* ─── Trust strip ────────────────────────────────────────────────── */
.trust {
  background: var(--bone-2); color: var(--ink-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 18px var(--pad-x);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-family: var(--display); font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600;
}
.trust span.tile { display: inline-flex; align-items: center; gap: 14px; }
.trust .dot {
  width: 22px; height: 22px; border: 1.5px solid var(--ink-2); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-family: var(--mono);
}

/* ─── How we work (homepage) ─────────────────────────────────────── */
.how { position: relative; padding: clamp(72px, 10vh, 96px) var(--pad-x); background: var(--bone); overflow: hidden; }
.how-bg { position: absolute; inset: 0; pointer-events: none; opacity: .15; background-size: cover; background-position: center; }
.how-inner { position: relative; }
.how-head { max-width: 720px; margin-bottom: 64px; }
.how-track { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.how-track::before { content: ""; position: absolute; top: 64px; left: 8%; right: 8%; border-top: 2px dashed var(--ink); opacity: .35; }
.step { position: relative; background: var(--bone); border: 2px solid var(--ink); padding: 36px 28px 28px; box-shadow: 6px 6px 0 0 var(--ink); }
.step--accent { box-shadow: 8px 8px 0 0 var(--red); }
.step .num-badge { position: absolute; top: -28px; left: 24px; width: 56px; height: 56px; background: var(--red); color: #fff; border: 3px solid var(--bone); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 700; font-size: 22px; box-shadow: 0 4px 12px -2px rgba(0,0,0,.25); }
.step .tag-time { position: absolute; top: -14px; right: 18px; background: var(--ink); color: var(--bone); font-family: var(--mono); font-size: 10px; letter-spacing: .18em; font-weight: 600; padding: 6px 10px; border: 2px solid var(--bone); }
.step .icon { color: var(--red); margin: 16px 0 18px; display: inline-flex; }
.step .who { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); margin-top: 8px; }
.step .desc { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 15px; line-height: 1.55; }
.step ul { margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.step li { font-size: 13px; color: var(--ink-2); display: flex; align-items: flex-start; gap: 8px; }
.step li::before { content: "✓"; color: var(--red); font-weight: 700; font-family: var(--display); flex-shrink: 0; }
@media (max-width: 1024px) {
  .how-track { grid-template-columns: 1fr; gap: 44px; }
  .how-track::before { display: none; }
}

/* ─── What we fix grid ───────────────────────────────────────────── */
.fix { padding: clamp(72px, 10vh, 96px) var(--pad-x); background: var(--bone-2); }
.fix-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.fix-head .lede { max-width: 38ch; margin: 0; }
.svc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--ink); border: 1px solid var(--ink); }
.svc { padding: 32px 26px; background: var(--bone); color: var(--ink); text-decoration: none; display: flex; flex-direction: column; gap: 10px; transition: background .15s, color .15s; min-height: 280px; }
.svc:hover, .svc:focus-visible { background: var(--red); color: #fff; }
.svc h3 { font-size: 26px; }
.svc .sub { font-size: 13px; opacity: .7; line-height: 1.4; }
.svc ul { margin-top: 6px; display: flex; flex-direction: column; gap: 6px; }
.svc li { font-size: 12.5px; line-height: 1.4; opacity: .9; display: flex; align-items: flex-start; gap: 8px; }
.svc li::before { content: "✓"; color: var(--red); font-weight: 700; font-family: var(--display); flex-shrink: 0; }
.svc:hover li::before, .svc:focus-visible li::before { color: #fff; }
.svc .meta { margin-top: auto; padding-top: 22px; display: flex; justify-content: flex-end; align-items: center; }
.svc .meta .view { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; }
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } .svc { min-height: 0; } }

/* ─── Image band ─────────────────────────────────────────────────── */
.band { background: var(--bone); }
.band img { width: 100%; height: 420px; object-fit: cover; }

/* ─── Reviews ────────────────────────────────────────────────────── */
.reviews { padding: clamp(72px, 10vh, 96px) var(--pad-x); background: var(--bone); }
.reviews-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 48px; gap: 32px; flex-wrap: wrap; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: var(--bone-2); padding: 32px 28px; display: flex; flex-direction: column; gap: 18px; }
.review .stars { color: var(--red); letter-spacing: 2px; font-size: 14px; }
.review .quote { font-size: 17px; line-height: 1.5; color: var(--ink); }
.review footer { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; }
.review .name { font-family: var(--display); font-size: 16px; font-weight: 600; }
@media (max-width: 1024px) { .review-grid { grid-template-columns: 1fr; } }

/* ─── Locality / service area (homepage) ────────────────────────── */
.locality { padding: clamp(72px, 10vh, 96px) var(--pad-x); background: var(--bone-2); }
.locality-head { max-width: 720px; margin-bottom: 48px; }
.locality-maps { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 56px; }
.map-card { margin: 0; background: var(--bone); border: 1px solid var(--ink); }
.map-card iframe { display: block; width: 100%; height: 360px; border: none; background: var(--bone-3); }
.map-card figcaption { padding: 22px 26px; border-top: 1px solid var(--ink); }
.map-card figcaption .addr { font-family: var(--display); font-weight: 600; font-size: 18px; line-height: 1.4; margin-top: 10px; }
.map-card figcaption .map-link { display: inline-block; margin-top: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--red); text-decoration: none; }
.map-card figcaption .map-link:hover { text-decoration: underline; }

.locality-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding-top: 36px; border-top: 1px solid var(--line); }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; padding: 0; list-style: none; }
.area-chips li { padding: 8px 14px; background: var(--bone); border: 1px solid var(--ink); font-family: var(--mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); }

@media (max-width: 860px) {
  .locality-maps { grid-template-columns: 1fr; }
  .map-card iframe { height: 280px; }
  .locality-areas { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── Final CTA ──────────────────────────────────────────────────── */
.final { position: relative; background: var(--ink); color: var(--bone); overflow: hidden; }
.diag-stripes { height: 14px; background: repeating-linear-gradient(-45deg, var(--ink) 0 14px, #f5c518 14px 28px); }
.final-body { position: relative; padding: clamp(64px, 10vh, 88px) var(--pad-x); display: grid; grid-template-columns: 1.4fr .9fr; gap: clamp(32px, 5vw, 56px); align-items: center; }
.final-bg { position: absolute; inset: 0; pointer-events: none; opacity: .18; filter: grayscale(.4) contrast(1.1); background-size: cover; background-position: center; }
.final-overlay { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(20,20,22,.92) 0%, rgba(20,20,22,.65) 60%, rgba(20,20,22,.85) 100%); }
.final-body > * { position: relative; }
.final h2 { color: var(--bone); margin-top: 18px; font-size: clamp(48px, 9vw, 124px); line-height: .9; letter-spacing: -.02em; }
.phone-cta { display: inline-flex; align-items: center; gap: 18px; margin-top: 36px; padding: 18px 26px 18px 22px; background: var(--red); color: #fff; text-decoration: none; font-family: var(--display); font-weight: 700; font-size: clamp(28px, 4.6vw, 48px); letter-spacing: -.01em; border: 3px solid var(--bone); box-shadow: 8px 8px 0 0 var(--bone); line-height: 1; transition: transform .12s, box-shadow .12s; }
.phone-cta:hover, .phone-cta:focus-visible { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 0 var(--bone); }
.phone-cta .icon { width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--red); display: inline-flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.tertiary { display: flex; gap: 28px; align-items: center; margin-top: 28px; flex-wrap: wrap; font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-3); }
.tertiary a { color: var(--bone); text-decoration: none; border-bottom: 1px solid var(--bone-3); padding-bottom: 2px; }
.tertiary a:hover, .tertiary a:focus-visible { border-bottom-color: var(--red); }
.cards { display: flex; flex-direction: column; gap: 14px; }
.card-hours, .card-addr { padding: 22px 26px; border: 3px solid var(--ink); }
.card-hours { background: var(--bone); color: var(--ink); border-color: var(--ink); box-shadow: 6px 6px 0 0 var(--red); }
.card-addr { background: var(--ink); color: var(--bone); border-color: var(--bone); }
.card-addr .eyebrow { color: var(--red); }
.card-hours table, .card-addr table { width: 100%; margin-top: 10px; border-collapse: collapse; }
.card-hours td { padding: 6px 0; font-family: var(--display); font-size: 15px; font-weight: 600; }
.card-hours td:last-child { font-family: var(--mono); font-size: 13px; text-align: right; font-weight: 400; color: var(--ink-2); }
.card-hours .closed { color: var(--red); }
.card-addr .h-mid { color: var(--bone); margin-top: 10px; font-size: 22px; }
.stamp { align-self: flex-end; transform: rotate(-4deg); background: var(--red); color: #fff; padding: 10px 16px; border: 2px solid var(--bone); font-family: var(--mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; margin-top: -4px; }
@media (max-width: 1024px) { .final-body { grid-template-columns: 1fr; } }

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer { background: var(--ink); color: var(--bone-3); padding: 56px var(--pad-x) 24px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.foot-brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: .04em; color: var(--bone); text-decoration: none; }
.foot-brand img { width: 44px; height: 44px; object-fit: contain; }
.foot-brand small { display: block; font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .14em; color: var(--steel); margin-top: 3px; }
.foot-blurb { margin-top: 18px; max-width: 320px; line-height: 1.55; color: var(--bone-3); }
.foot-col h3 { font-family: var(--display); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.foot-col ul { display: flex; flex-direction: column; gap: 8px; }
.foot-col li { font-size: 14px; }
.foot-col a { color: var(--bone-3); text-decoration: none; border-bottom: 1px solid transparent; transition: color .12s, border-color .12s; }
.foot-col a:hover, .foot-col a:focus-visible { color: var(--bone); border-bottom-color: var(--red); }
.foot-bottom { padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--steel); }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ─── Service-page layouts (brakes, oil-change, ac-repair, tires) ─ */
.svc-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.svc-hero .pitch { padding: clamp(48px, 7vh, 72px) clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.svc-hero .crumbs { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); }
.svc-hero .crumbs a { color: var(--steel); text-decoration: none; }
.svc-hero .crumbs a:hover { color: var(--red); }
.svc-hero h1 { margin-top: 18px; font-size: clamp(48px, 7vw, 96px); }
.svc-hero p.lede { margin-top: 22px; }
.svc-hero .actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.svc-hero .meta { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--steel); }
.svc-hero .photo { background: var(--ink); position: relative; }
.svc-hero .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .svc-hero { grid-template-columns: 1fr; }
  .svc-hero .photo { aspect-ratio: 4/3; }
}

.svc-symptoms { padding: clamp(64px, 9vh, 88px) var(--pad-x); background: var(--bone); }
.svc-symptoms h2 { margin-bottom: 48px; }
.symptom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.symptom { padding: 28px 24px; border: 1px solid var(--ink); background: var(--bone-2); }
.symptom.alt { background: var(--red); color: #fff; }
.symptom .label { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; opacity: .7; margin-bottom: 8px; }
.symptom h3 { font-family: var(--display); font-weight: 600; font-size: 22px; line-height: 1.05; text-transform: uppercase; }
.symptom p { font-size: 14px; line-height: 1.5; margin-top: 10px; opacity: .9; }
@media (max-width: 1024px) { .symptom-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .symptom-grid { grid-template-columns: 1fr; } }

.svc-band { background: var(--ink); }
.svc-band img { width: 100%; height: 360px; object-fit: cover; }

.svc-pricing { padding: clamp(64px, 9vh, 88px) var(--pad-x); background: var(--bone-2); border-bottom: 1px solid var(--line); }
.svc-pricing .head { margin-bottom: 56px; }
.svc-pricing .grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; }
.svc-pricing .grid img { width: 100%; height: 520px; object-fit: cover; }
.svc-pricing .list { display: flex; flex-direction: column; justify-content: space-between; gap: 6px; }
.svc-pricing .row { padding: 20px 0; border-bottom: 1px solid var(--line); }
.svc-pricing .row h4 { font-family: var(--display); font-size: 22px; font-weight: 600; text-transform: uppercase; }
.svc-pricing .row p { font-size: 14px; line-height: 1.5; margin-top: 8px; color: var(--ink-2); max-width: 60ch; }
@media (max-width: 1024px) {
  .svc-pricing .grid { grid-template-columns: 1fr; }
  .svc-pricing .grid img { height: 360px; }
}

.svc-related { padding: clamp(64px, 9vh, 88px) var(--pad-x); background: var(--bone); }
.svc-related h2 { margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related { padding: 24px; border: 1px solid var(--ink); background: var(--bone-2); text-decoration: none; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: background .12s, color .12s; }
.related:hover, .related:focus-visible { background: var(--ink); color: var(--bone); }
.related h3 { font-family: var(--display); font-weight: 600; font-size: 22px; text-transform: uppercase; }
.related .sub { font-size: 12px; line-height: 1.4; opacity: .65; margin-top: 6px; }
.related .arrow { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; }
@media (max-width: 860px) { .related-grid { grid-template-columns: 1fr; } }

.svc-cta { background: var(--ink); color: var(--bone); padding: clamp(72px, 10vh, 96px) var(--pad-x); text-align: center; border-top: 4px solid var(--red); }
.svc-cta h2 { color: var(--bone); margin-top: 18px; font-size: clamp(48px, 8vw, 112px); }
.svc-cta .actions { display: flex; justify-content: center; gap: 14px; margin-top: 38px; flex-wrap: wrap; }

/* ─── Generic two-column page (contact, appointments) ────────────── */
.two-col { padding: clamp(40px, 6vh, 56px) var(--pad-x) clamp(64px, 9vh, 88px); display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; }
.dark-card { background: var(--ink); color: var(--bone); padding: 48px 40px; }
.dark-card .eyebrow { color: var(--red); }
.dark-card .big-phone { display: block; color: var(--bone); text-decoration: none; margin-top: 16px; font-family: var(--display); font-size: clamp(48px, 7vw, 96px); font-weight: 700; line-height: 1; letter-spacing: -.005em; }
.dark-card .big-phone:hover, .dark-card .big-phone:focus-visible { color: var(--red); }
.dark-card .lede { color: var(--bone-3); margin-top: 22px; }
.dark-card .grid-cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
.dark-card .grid-cols-2 .label { font-family: var(--mono); font-size: 14px; margin-top: 8px; color: var(--bone); }
.info-card { background: var(--bone-2); border: 1px solid var(--ink); padding: 28px; }
.info-card h3 { font-family: var(--display); font-weight: 600; font-size: 22px; text-transform: uppercase; margin-top: 10px; }
.info-card table { width: 100%; margin-top: 12px; border-collapse: collapse; }
.info-card td { padding: 8px 0; font-family: var(--display); font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--line); }
.info-card td:last-child { font-family: var(--mono); font-size: 13px; text-align: right; color: var(--ink-2); font-weight: 400; }
.info-card .closed { color: var(--red); }
.info-card ol, .info-card ul { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; padding-left: 20px; }
.info-card ol { list-style: decimal; }
.info-card li { font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.col-stack { display: flex; flex-direction: column; gap: 18px; }
@media (max-width: 1024px) { .two-col { grid-template-columns: 1fr; } }

/* ─── Reviews page ───────────────────────────────────────────────── */
.review-stats { padding: 24px var(--pad-x) 48px; }
.review-stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--ink); }
.review-stats .cell { padding: 32px 24px; border-right: 1px solid var(--ink); }
.review-stats .cell:last-child { border-right: none; }
.review-stats .cell:nth-child(odd) { background: var(--bone-2); }
.review-stats .num { font-family: var(--display); font-size: clamp(40px, 5vw, 56px); font-weight: 700; color: var(--red); line-height: .9; }
.review-stats .lbl { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-top: 10px; color: var(--steel); }
@media (max-width: 1024px) { .review-stats .grid { grid-template-columns: repeat(2, 1fr); } .review-stats .cell:nth-child(2) { border-right: none; } .review-stats .cell:nth-child(odd) { background: var(--bone); } .review-stats .cell:nth-child(4n-3), .review-stats .cell:nth-child(4n) { background: var(--bone-2); } }
@media (max-width: 560px) { .review-stats .grid { grid-template-columns: 1fr; } .review-stats .cell { border-right: none; border-bottom: 1px solid var(--ink); } .review-stats .cell:last-child { border-bottom: none; } }

.reviews-list { padding: 32px var(--pad-x) clamp(64px, 9vh, 88px); }
.reviews-list .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.reviews-list .card { padding: 28px; border: 1px solid var(--ink); background: var(--bone); }
.reviews-list .card:nth-child(2n) { background: var(--bone-2); }
.reviews-list .quote { font-size: 16px; line-height: 1.6; margin-top: 14px; color: var(--ink); }
.reviews-list .meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
@media (max-width: 860px) { .reviews-list .grid { grid-template-columns: 1fr; } }

/* ─── Specials page ──────────────────────────────────────────────── */
.offers { padding: clamp(40px, 6vh, 56px) var(--pad-x) clamp(64px, 9vh, 88px); }
.offers .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.offer { border: 1px solid var(--ink); background: var(--bone); padding: 28px; display: grid; grid-template-columns: auto 1fr; gap: 24px; }
.offer .num { font-family: var(--display); font-size: 56px; font-weight: 700; color: var(--red); line-height: .9; align-self: start; }
.offer .head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.offer h3 { font-family: var(--display); font-weight: 600; font-size: 26px; text-transform: uppercase; }
.offer .price { font-family: var(--display); font-weight: 700; color: var(--red); font-size: 24px; }
.offer .was { font-family: var(--mono); font-size: 12px; color: var(--steel); margin-left: 8px; text-decoration: line-through; }
.offer p { font-size: 14px; margin-top: 10px; line-height: 1.5; color: var(--ink-2); }
.offer .footer-row { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--steel); text-transform: uppercase; }
.offer .footer-row a { color: var(--red); text-decoration: none; }
.fineprint { margin-top: 32px; max-width: 70ch; color: var(--steel); font-size: 12px; }
@media (max-width: 860px) { .offers .grid { grid-template-columns: 1fr; } .offer { grid-template-columns: 1fr; gap: 12px; } .offer .num { font-size: 36px; } }

/* ─── Services index page ────────────────────────────────────────── */
.services-grid { padding: 24px var(--pad-x) clamp(64px, 9vh, 88px); }
.services-grid .filters { display: flex; gap: 10px; padding: 24px 0; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.services-grid .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding-top: 32px; }
.services-grid .card { padding: 28px; border: 1px solid var(--ink); background: var(--bone); display: grid; grid-template-columns: auto 1fr; gap: 24px; text-decoration: none; color: var(--ink); }
.services-grid .card:hover, .services-grid .card:focus-visible { background: var(--ink); color: var(--bone); }
.services-grid .card .num { font-family: var(--display); font-size: 56px; font-weight: 700; color: var(--red); line-height: .9; align-self: start; }
.services-grid .card .top { display: flex; align-items: baseline; gap: 12px; }
.services-grid .card h3 { font-family: var(--display); font-weight: 600; font-size: 28px; text-transform: uppercase; margin-top: 14px; }
.services-grid .card .sub { font-size: 14px; line-height: 1.5; margin-top: 6px; opacity: .9; }
.services-grid .card ul { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.services-grid .card li { font-size: 13px; opacity: .9; display: flex; gap: 8px; }
.services-grid .card li::before { content: "→"; color: var(--red); font-weight: 700; }
.services-grid .card:hover li::before, .services-grid .card:focus-visible li::before { color: #fff; }
@media (max-width: 1024px) { .services-grid .grid { grid-template-columns: 1fr; } .services-grid .card ul { grid-template-columns: 1fr; } }

/* ─── Areas We Serve page ───────────────────────────────────────── */
.areas-map { padding: 32px var(--pad-x); background: var(--bone-2); }
.areas-map .map-card { margin: 0 auto; max-width: 1280px; }
.areas-map .areas-map__cap { padding: 22px 26px; border-top: 1px solid var(--ink); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; align-items: center; }
.areas-map .areas-map__cap .addr { font-family: var(--display); font-weight: 600; font-size: 18px; margin-top: 8px; }

.areas-section { padding: clamp(72px, 9vh, 96px) var(--pad-x); }
.areas-section--dark { background: var(--ink); color: var(--bone); }
.areas-section__head { max-width: 720px; margin-bottom: 48px; }

.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.area-card { border: 1px solid var(--ink); background: var(--bone); padding: 28px; }
.area-card.alt { background: var(--bone-2); }
.area-card--dark { border: 1px solid var(--bone); background: var(--ink-2); color: var(--bone); }
.area-card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.area-card h3 { font-family: var(--display); font-weight: 600; font-size: 26px; text-transform: uppercase; line-height: 1.05; color: inherit; }
.area-card .drive { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--red); white-space: nowrap; }
.area-card p { font-size: 15px; line-height: 1.55; margin-top: 12px; color: inherit; opacity: .9; }
.area-card__link { display: inline-block; margin-top: 14px; font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--red); text-decoration: none; border-bottom: 1px solid var(--red); padding-bottom: 2px; }
.area-card__link:hover { background: var(--red); color: #fff; padding: 2px 6px; border-bottom: none; }

@media (max-width: 860px) {
  .areas-grid { grid-template-columns: 1fr; }
  .areas-map .map-card iframe { height: 360px !important; }
  .areas-map .areas-map__cap { flex-direction: column; align-items: flex-start; }
}

/* ─── About timeline + values ────────────────────────────────────── */
.about-story { padding: 32px var(--pad-x) clamp(48px, 7vh, 64px); }
.about-story .grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.about-story figure { aspect-ratio: 4/5; background: var(--ink-2); overflow: hidden; }
.about-story figure img { width: 100%; height: 100%; object-fit: cover; }
.about-story .body { font-size: 16px; line-height: 1.6; }
.about-story .body p { margin-top: 14px; }
@media (max-width: 1024px) { .about-story .grid { grid-template-columns: 1fr; gap: 32px; } }

.timeline { padding: clamp(48px, 7vh, 64px) var(--pad-x); background: var(--ink); color: var(--bone); }
.timeline h2 { color: var(--bone); margin-top: 14px; }
.timeline .grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.16); }
.timeline .cell { padding: 22px 20px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.timeline .cell:nth-child(3n) { border-right: none; }
.timeline .cell:nth-last-child(-n+3) { border-bottom: none; }
.timeline .yr { font-family: var(--display); font-size: 36px; font-weight: 700; color: var(--red); }
.timeline .ttl { font-family: var(--display); font-weight: 600; font-size: 18px; text-transform: uppercase; margin-top: 6px; color: var(--bone); }
.timeline .desc { font-size: 13px; line-height: 1.5; margin-top: 8px; color: var(--bone-3); }
@media (max-width: 1024px) {
  .timeline .grid { grid-template-columns: 1fr 1fr; }
  .timeline .cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.16); }
  .timeline .cell:nth-child(2n) { border-left: 1px solid rgba(255,255,255,.16); }
}
@media (max-width: 560px) { .timeline .grid { grid-template-columns: 1fr; } .timeline .cell:nth-child(2n) { border-left: none; } }

.values { padding: clamp(64px, 9vh, 88px) var(--pad-x); }
.values .grid { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value { padding: 24px; border: 1px solid var(--ink); background: var(--bone-2); }
.value .swatch { width: 32px; height: 32px; background: var(--red); margin-bottom: 16px; }
.value h3 { font-family: var(--display); font-weight: 600; font-size: 22px; text-transform: uppercase; }
.value p { font-size: 14px; margin-top: 10px; line-height: 1.5; color: var(--ink-2); }
@media (max-width: 860px) { .values .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .values .grid { grid-template-columns: 1fr; } }

/* ─── Blog ───────────────────────────────────────────────────────── */
.blog-list { padding: 32px var(--pad-x) clamp(64px, 9vh, 88px); }
.blog-list .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.blog-card { border: 1px solid var(--ink); background: var(--bone); padding: 28px; text-decoration: none; color: var(--ink); display: block; transition: background .12s, color .12s; }
.blog-card:hover, .blog-card:focus-visible { background: var(--ink); color: var(--bone); }
.blog-card .date { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--red); }
.blog-card h2 { font-family: var(--display); font-weight: 600; font-size: 28px; text-transform: uppercase; margin-top: 12px; line-height: 1.05; }
.blog-card p { font-size: 14px; line-height: 1.5; margin-top: 12px; opacity: .85; }
.blog-card .more { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; margin-top: 18px; opacity: .7; }
@media (max-width: 860px) { .blog-list .grid { grid-template-columns: 1fr; } }

.blog-post { padding: clamp(48px, 7vh, 64px) var(--pad-x); }
.blog-post .crumbs { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--steel); }
.blog-post .crumbs a { color: var(--steel); text-decoration: none; }
.blog-post h1 { margin-top: 18px; font-size: clamp(36px, 5vw, 64px); line-height: .95; }
.blog-post .author { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--steel); margin-top: 18px; }
.blog-post .body { padding: clamp(36px, 5vh, 56px) 0 0; max-width: 760px; }

/* ─── Reduce motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
