:root{
  --accent:#7B1E1E;
  --dark:#1A1A1A;
  --light:#F5F0E6;
  --font:'Outfit',system-ui,sans-serif;
  --radius:10px;
  --heading-transform:uppercase;
  --heading-spacing:0.02em;
}
/* pipeline typographic safety */
img,svg,video,canvas{max-width:100%;height:auto;}
h1,h2,h3,h4,h5,h6,.footer-mark,.footer-wordmark,.footer-brand{text-wrap:balance;overflow-wrap:break-word;}
p,li,blockquote,figcaption,dd,dt{text-wrap:pretty;}
body{overflow-wrap:break-word;}
a,cite,code,.label{overflow-wrap:anywhere;}
main :where(section,article,div,ul,ol,li){min-width:0;}
/* Automotive Service — garage-bay spec-sheet system.
   Palette, font and corner radius arrive as CSS custom properties injected at
   render time (:root block prepended above). Everything here is static and
   palette-agnostic. Character comes from a full-bleed racing-stripe hero, an
   oversized condensed display scale, a monospace odometer/spec-sheet label
   role, alternating spec-plate service rows with bay numbers, a dark dyno-
   readout numeral band, and a giant condensed wordmark footer — never a
   hardcoded colour or font. Sharp and mechanical: no card grid, no pill
   badge above the H1, no merged trust bar, no evenly-sized timid type. */

:root {
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --line: color-mix(in srgb, var(--dark) 14%, transparent);
  --line-strong: color-mix(in srgb, var(--dark) 32%, transparent);
  --line-dark: color-mix(in srgb, var(--light) 16%, transparent);
  --tint: color-mix(in srgb, var(--dark) 4%, var(--light));
  --tint-2: color-mix(in srgb, var(--dark) 8%, var(--light));
  --ink-soft: color-mix(in srgb, var(--dark) 56%, var(--light));
  --on-dark: color-mix(in srgb, var(--light) 68%, var(--dark));
  --accent-ink: color-mix(in srgb, var(--accent) 58%, var(--dark));
  --accent-echo: color-mix(in srgb, var(--accent) 50%, var(--light));
  --hazard: repeating-linear-gradient(-45deg, color-mix(in srgb, var(--accent) 22%, transparent) 0 2px, transparent 2px 15px);
  --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.4'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; font-family: var(--font); color: var(--dark); background: var(--light); line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
body::after { content: ""; position: fixed; inset: 0; background-image: var(--grain); opacity: .025; mix-blend-mode: multiply; pointer-events: none; z-index: 9999; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 44px); }

/* Monospace odometer / spec-sheet label role — the technical signal */
.eyebrow, .nav-links a, .service-num, .stat-label, .footer-col h4, .trust-ticker,
.trust-checklist, .about-badge, .footer-legal, .review cite, .hours-col-label, .hours-day {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: .05em;
  font-variant-numeric: tabular-nums;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1; text-transform: var(--heading-transform); letter-spacing: var(--heading-spacing); margin: 0; }

.eyebrow { display: inline-flex; align-items: center; gap: 11px; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }

.section-head { margin-bottom: clamp(32px, 4.5vw, 56px); }
.section-title { position: relative; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1; padding-top: 22px; }
.section-title::before { content: ""; position: absolute; top: 0; left: 0; width: 48px; height: 5px; background: var(--accent); }

/* ── Buttons (mechanical shutter wipe) ────────────────────────────── */
.btn { --bg: var(--accent); --fg: var(--light); position: relative; isolation: isolate; overflow: hidden; display: inline-flex; align-items: center; gap: 10px; min-height: 50px; padding: 14px 30px; border-radius: var(--radius); border: 2px solid var(--bg); background: var(--bg); color: var(--fg); font-family: var(--mono); font-weight: 600; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; cursor: pointer; white-space: nowrap; transition: color .25s ease, border-color .25s ease, transform .25s cubic-bezier(.2,.7,.2,1); }
.btn::before { content: ""; position: absolute; inset: 0; z-index: -1; background: color-mix(in srgb, var(--bg) 76%, black); transform: translateX(-101%); transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.btn:hover { transform: translateY(-2px); }
.btn:hover::before { transform: translateX(0); }
.btn-lg { min-height: 58px; padding: 17px 38px; font-size: .86rem; }
.btn-ghost { --bg: transparent; --fg: currentColor; border-color: var(--line-strong); }
.btn-ghost::before { background: color-mix(in srgb, currentColor 12%, transparent); }
.btn-ghost:hover { border-color: currentColor; }
.hero-ctas .btn-accent::after, .final-buttons .btn:first-child::after { content: "→"; transition: transform .28s cubic-bezier(.2,.7,.2,1); }
.hero-ctas .btn-accent:hover::after, .final-buttons .btn:first-child:hover::after { transform: translateX(4px); }
:where(a, button):focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── Header / nav ─────────────────────────────────────────────────── */
.site-header { position: sticky; top: 42px; z-index: 900; background: color-mix(in srgb, var(--light) 88%, transparent); backdrop-filter: saturate(140%) blur(10px); border-bottom: 2px solid var(--accent); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.wordmark { position: relative; font-weight: 800; font-size: 1.24rem; letter-spacing: .05em; text-transform: uppercase; text-decoration: none; padding-left: 19px; }
.wordmark::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 8px; height: 21px; background: var(--accent); }
.nav { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { position: relative; text-decoration: none; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; padding: 6px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s cubic-bezier(.2,.7,.2,1); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta-li a { color: var(--light); }
.nav-cta-li a::after { display: none; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--dark); }
section { scroll-margin-top: 130px; position: relative; }

/* ── Hero (dark, full-bleed racing-stripe band across the top edge) ── */
.hero { position: relative; overflow: hidden; color: var(--light); background: radial-gradient(120% 90% at 88% -12%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 55%), var(--dark); }
/* the signature: a thick accent band + a thin parallel echo, full viewport width */
.hero::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 24px; z-index: 2; background-image: linear-gradient(var(--accent), var(--accent)), linear-gradient(var(--accent-echo), var(--accent-echo)); background-repeat: no-repeat; background-size: 100% 14px, 100% 4px; background-position: top, 0 20px; }
/* faint garage caution-stripe texture, masked into the far corner */
.hero::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background-image: var(--hazard); opacity: .5; -webkit-mask-image: radial-gradient(115% 120% at 100% 100%, #000, transparent 58%); mask-image: radial-gradient(115% 120% at 100% 100%, #000, transparent 58%); }
.hero-inner { position: relative; z-index: 1; display: grid; padding: clamp(86px, 12vw, 152px) 0 clamp(64px, 8vw, 104px); }
.hero--split .hero-inner { grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(36px, 5vw, 72px); }
.hero-copy { display: flex; flex-direction: column; gap: clamp(28px, 4.4vw, 48px); }
.hero-title { font-size: clamp(2.8rem, 9vw, 6.6rem); line-height: .9; letter-spacing: .005em; max-width: 16ch; }
.hero-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: clamp(24px, 4vw, 56px); flex-wrap: wrap; border-top: 1px solid var(--line-dark); padding-top: clamp(22px, 3vw, 34px); }
.hero-subline { margin: 0; max-width: 42ch; font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: var(--on-dark); line-height: 1.5; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; flex: 0 0 auto; }
.hero-media { position: relative; }
.hero-media img { width: 100%; border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; box-shadow: 0 30px 60px -32px rgba(0,0,0,.7); }
.hero-media::before { content: ""; position: absolute; top: -8px; left: 0; right: 0; height: 8px; background: var(--accent); z-index: 1; }

/* ── Trust (framed credential plate, clamped onto the hero edge) ───── */
.trust-wrap { position: relative; z-index: 3; }
.trust-strip { margin-top: clamp(-46px, -4vw, -30px); background: var(--light); border: 1px solid var(--line); border-top: 4px solid var(--accent); border-radius: var(--radius); padding: clamp(20px, 2.6vw, 30px) clamp(22px, 3.6vw, 42px); box-shadow: 0 24px 52px -34px rgba(0,0,0,.55); }
.trust-ticker { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 0; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink-soft); }
.trust-ticker span { position: relative; padding-right: 25px; }
.trust-ticker span:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 50%; width: 2px; height: 12px; background: var(--accent); transform: translateY(-50%); }
.trust-stats { display: flex; flex-wrap: wrap; gap: 16px 46px; }
.trust-stat { position: relative; padding-left: 17px; font-weight: 800; font-size: clamp(1.15rem, 2vw, 1.6rem); text-transform: uppercase; }
.trust-stat::before { content: ""; position: absolute; left: 0; top: .12em; bottom: .12em; width: 4px; background: var(--accent); }
.trust-proof { margin: 0; font-size: clamp(1.15rem, 2.2vw, 1.55rem); font-weight: 700; line-height: 1.25; text-transform: uppercase; }
.trust-checklist { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 10px 30px; list-style: none; margin: 0; padding: 0; font-size: .82rem; letter-spacing: .03em; color: var(--ink-soft); }
.trust-checklist li { position: relative; padding-left: 25px; }
.trust-checklist li::before { content: ""; position: absolute; left: 0; top: .3em; width: 12px; height: 7px; border-left: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent); transform: rotate(-45deg); }

/* ── Services (alternating spec-plate rows with bay numbers) ───────── */
.services { padding: clamp(72px, 10vw, 122px) 0; }
.service-list { list-style: none; margin: 0; padding: 0; border-top: 3px solid var(--dark); }
.service-row { display: flex; align-items: flex-start; gap: clamp(20px, 3.4vw, 52px); padding: clamp(26px, 3.4vw, 44px) clamp(4px, 1vw, 12px); border-bottom: 1px solid var(--line-strong); transition: background-color .28s ease, padding-left .3s cubic-bezier(.2,.7,.2,1), padding-right .3s cubic-bezier(.2,.7,.2,1); }
.service-row:nth-child(even) { flex-direction: row-reverse; }
.service-num { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; min-width: 66px; height: 66px; padding: 0 12px; background: var(--dark); color: var(--light); border-radius: var(--radius); font-weight: 600; font-size: 1.2rem; letter-spacing: .02em; transition: background-color .28s ease; }
.service-body { flex: 1 1 auto; min-width: 0; }
.service-headline { display: flex; align-items: flex-end; gap: 16px; }
.service-name { font-size: clamp(1.5rem, 3.3vw, 2.5rem); font-weight: 800; line-height: 1; }
.service-reg { flex: 1 1 auto; height: .55em; border-bottom: 2px dotted var(--line-strong); min-width: 24px; }
.service-desc { margin: 14px 0 0; max-width: 64ch; color: var(--ink-soft); font-size: 1rem; line-height: 1.5; }
.service-row:hover { background: color-mix(in srgb, var(--accent) 5%, transparent); padding-left: clamp(14px, 1.8vw, 22px); }
.service-row:nth-child(even):hover { padding-left: clamp(4px, 1vw, 12px); padding-right: clamp(14px, 1.8vw, 22px); }
.service-row:hover .service-num { background: var(--accent); }

/* ── Hours & Find Us (spec-sheet band, dotted leader rows) ──────────── */
.hours { padding: clamp(64px, 9vw, 112px) 0; background: var(--tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hours-plate { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 5vw, 80px); border-top: 4px solid var(--accent); padding-top: clamp(28px, 3.4vw, 40px); }
.hours-col-label { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent-ink); margin-bottom: 18px; }
.hours-rows { list-style: none; margin: 0; padding: 0; }
.hours-row { display: flex; align-items: baseline; gap: 14px; padding: 12px 0; border-bottom: 1px dotted var(--line-strong); }
.hours-row:last-child { border-bottom: none; }
.hours-day { flex: 0 0 auto; text-transform: uppercase; font-size: .8rem; color: var(--ink-soft); }
.hours-value { flex: 1 1 auto; text-align: right; font-family: var(--mono); font-weight: 700; font-variant-numeric: tabular-nums; font-size: 1rem; }
.hours-address { margin: 0 0 10px; font-weight: 700; font-size: 1.08rem; }
.hours-note { margin: 0; max-width: 42ch; color: var(--ink-soft); font-size: .95rem; line-height: 1.5; }
@media (max-width: 640px) { .hours-plate { grid-template-columns: 1fr; gap: 26px; } }

/* ── Proof (dark dyno-readout numeral band; borderless, distinct) ──── */
.proof { padding: clamp(66px, 9vw, 112px) 0; background: var(--dark); color: var(--light); position: relative; overflow: hidden; }
.proof::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--accent); }
.proof .section-title { color: var(--light); }
.proof-title { margin-bottom: clamp(30px, 4vw, 52px); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 0; border-top: 1px solid var(--line-dark); }
.stat { padding: clamp(26px, 3vw, 38px) clamp(20px, 2.4vw, 32px) 0 0; border-right: 1px solid var(--line-dark); }
.stat:last-child { border-right: none; }
.stat-value { display: block; font-size: clamp(2.8rem, 6vw, 4.6rem); font-weight: 800; color: var(--accent); line-height: .88; font-variant-numeric: tabular-nums; }
.stat-label { display: block; margin-top: 14px; font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--on-dark); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(26px, 3vw, 44px); }
.review { position: relative; margin: 0; padding: 28px 0 0; border-top: 2px solid var(--accent); }
.review p { margin: 0 0 16px; font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.45; color: var(--light); }
.review cite { font-style: normal; font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; color: var(--on-dark); }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.photo-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line-dark); }

/* ── About (editorial lead + inspection-sticker badge) ────────────── */
.about { padding: clamp(72px, 10vw, 122px) 0; }
.about-inner { display: grid; grid-template-columns: minmax(200px, 300px) 1fr; gap: clamp(28px, 5vw, 76px); align-items: start; }
.about-lead { margin: 0; font-size: clamp(1.35rem, 2.6vw, 2.1rem); font-weight: 600; line-height: 1.28; max-width: 28ch; }
.about-badge { display: inline-flex; align-items: center; margin-top: 28px; padding: 12px 20px; border-radius: var(--radius); border: 1px solid var(--line-strong); font-size: .76rem; font-weight: 500; text-transform: uppercase; letter-spacing: .07em; color: var(--accent-ink); background: var(--tint); }
.about-badge::before { content: ""; width: 8px; height: 8px; background: var(--accent); margin-right: 11px; }

/* ── Final CTA (dark statement, racing-stripe bookend) ────────────── */
.final-cta { background: var(--dark); color: var(--light); padding: clamp(80px, 11vw, 142px) 0; position: relative; overflow: hidden; }
.final-cta::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 24px; z-index: 1; background-image: linear-gradient(var(--accent), var(--accent)), linear-gradient(var(--accent-echo), var(--accent-echo)); background-repeat: no-repeat; background-size: 100% 14px, 100% 4px; background-position: top, 0 20px; }
.final-cta::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background-image: var(--hazard); opacity: .5; -webkit-mask-image: radial-gradient(95% 130% at 100% 0%, #000, transparent 55%); mask-image: radial-gradient(95% 130% at 100% 0%, #000, transparent 55%); }
.final-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: clamp(30px, 5vw, 76px); }
.final-title { font-size: clamp(2.3rem, 5.5vw, 4rem); line-height: .96; max-width: 18ch; }
.final-sentence { margin: 18px 0 0; max-width: 46ch; font-size: 1.12rem; color: var(--on-dark); }
.final-buttons { display: flex; flex-wrap: wrap; gap: 14px; align-self: end; }
.final-cta .btn-ghost { color: var(--light); border-color: color-mix(in srgb, var(--light) 34%, transparent); }

/* ── Footer (giant condensed wordmark, bookends the hero) ─────────── */
.site-footer { background: color-mix(in srgb, var(--dark) 94%, black); color: var(--light); padding: clamp(62px, 8vw, 94px) 0 30px; overflow: hidden; }
.footer-mark { font-weight: 800; font-size: clamp(3.2rem, 15vw, 10rem); line-height: .82; text-transform: uppercase; letter-spacing: .01em; color: color-mix(in srgb, var(--light) 92%, var(--dark)); }
.footer-tagline { margin: 18px 0 clamp(38px, 5vw, 60px); max-width: 44ch; color: var(--on-dark); font-size: 1rem; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding-top: clamp(30px, 4vw, 46px); border-top: 1px solid var(--line-dark); }
.footer-col h4 { font-weight: 500; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { text-decoration: none; color: var(--on-dark); font-size: .95rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-col li { color: var(--on-dark); font-size: .95rem; }
.footer-legal { margin-top: clamp(34px, 4vw, 50px); font-size: .72rem; letter-spacing: .05em; color: color-mix(in srgb, var(--light) 46%, var(--dark)); }

/* ── Reveal + orchestrated page-load ──────────────────────────────── */
.reveal-init { opacity: 0; transform: translateY(16px); }
.reveal-in { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * { animation: rise .74s cubic-bezier(.2,.7,.2,1) both; }
  .hero-copy > *:nth-child(1) { animation-delay: .05s; }
  .hero-copy > *:nth-child(2) { animation-delay: .14s; }
  .hero-copy > *:nth-child(3) { animation-delay: .23s; }
  .hero-media { animation: rise .82s cubic-bezier(.2,.7,.2,1) .2s both; }
}
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: clamp(18px, 4vw, 32px); }
  .hero--split .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; }
  .final-inner { grid-template-columns: 1fr; }
  .final-buttons { margin-top: 28px; }
}
@media (max-width: 640px) {
  .stat { border-right: none; border-bottom: 1px solid var(--line-dark); padding: 22px 0; }
  .stat:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--light); border-bottom: 2px solid var(--accent); padding: 8px clamp(20px, 4vw, 44px) 20px; display: none; }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 4px 0; }
  .nav-links a { display: block; padding: 12px 0; min-height: 44px; }
  .nav-links a::after { display: none; }
  .nav-cta-li a { display: inline-flex; margin-top: 10px; }
  .header-inner { position: relative; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn, .final-buttons .btn { width: 100%; }
  .service-row, .service-row:nth-child(even) { flex-direction: column; align-items: flex-start; gap: 16px; padding-left: clamp(4px, 1vw, 12px); padding-right: clamp(4px, 1vw, 12px); }
  .service-reg { display: none; }
}
