/* ==========================================================================
   Bluegrass Precision Motorwerks — site styles
   Brand: red #E01B1B (≈ PMS 186 C) on black. Bebas Neue / Cormorant Garamond / Barlow.
   ========================================================================== */

:root {
  --red: #E01B1B;
  --red-hi: #F2382F;
  --red-lo: #B3121A;
  --ink: #08080A;
  --bg: #0E0E11;
  --bg-2: #131317;
  --bg-3: #1A1A1F;
  --bg-4: #222228;
  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .16);
  --text: #F2F1EE;
  --muted: #B0AFB5;
  --dim: #7E7D84;

  --display: 'Bebas Neue', Impact, 'Arial Narrow Bold', sans-serif;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Barlow', 'Helvetica Neue', Arial, sans-serif;

  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 76px;
  --cut: 10px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 1.0625rem/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-color: rgba(224, 27, 27, .7); text-underline-offset: 3px; }
a:hover { color: #fff; }
:focus-visible { outline: 2px solid var(--red-hi); outline-offset: 3px; }
::selection { background: var(--red); color: #fff; }

h1, h2, h3, h4 { margin: 0 0 .5em; font-weight: 400; line-height: 1; }
h1, h2 { font-family: var(--display); letter-spacing: .01em; }
h1 { font-size: clamp(3rem, 7.2vw, 6.25rem); line-height: .92; }
h2 { font-size: clamp(2.3rem, 4.6vw, 3.75rem); line-height: .95; }
h3 { font-family: var(--sans); font-weight: 700; font-size: 1.12rem; letter-spacing: .08em; text-transform: uppercase; line-height: 1.3; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.2em; }
strong { font-weight: 600; color: #fff; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--red); color: #fff; padding: .75rem 1rem; }
.skip:focus { left: 1rem; top: 1rem; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  margin: 0 0 1.1rem;
  font: 600 .78rem/1.2 var(--sans); letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: ""; flex: none; width: 26px; height: 12px;
  background:
    linear-gradient(115deg, transparent 0 22%, var(--red) 22% 46%, transparent 46% 56%, var(--red) 56% 80%, transparent 80%);
}
.serif { font-family: var(--serif); font-style: italic; font-weight: 500; }
.tagline { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(1.35rem, 2.4vw, 1.9rem); color: var(--muted); margin: .2em 0 .9em; line-height: 1.2; }
.lede { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: #D9D8DC; max-width: 44rem; }
.muted { color: var(--muted); }
.red { color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  --bg-btn: var(--red);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1.05rem 1.7rem;
  background: var(--bg-btn); color: #fff;
  font: 700 .86rem/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; text-decoration: none;
  border: 0; cursor: pointer;
  clip-path: polygon(var(--cut) 0, 100% 0, calc(100% - var(--cut)) 100%, 0 100%);
  transition: background-color .2s ease, transform .2s ease;
}
.btn:hover { --bg-btn: var(--red-hi); color: #fff; transform: translateY(-1px); }
.btn--ghost { --bg-btn: rgba(255, 255, 255, .08); }
.btn--ghost:hover { --bg-btn: rgba(255, 255, 255, .16); }
.btn--dark { --bg-btn: var(--ink); }
.btn--dark:hover { --bg-btn: #000; }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.9rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .5rem; font: 700 .8rem/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; text-decoration: none; color: #fff; }
.link-arrow::after { content: "→"; color: var(--red); transition: transform .2s ease; font-size: 1.1em; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Top bar + header ---------- */
.topbar { background: var(--ink); border-bottom: 1px solid var(--line); font-size: .82rem; color: var(--muted); }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 38px; }
.topbar a { text-decoration: none; }
.topbar-info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-phone { color: #fff; font-weight: 600; letter-spacing: .04em; }
.open-status::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--dim); margin-right: .5rem; vertical-align: 1px; }
.open-status.is-open::before { background: #3BCB6B; box-shadow: 0 0 0 3px rgba(59, 203, 107, .18); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 12, .88);
  -webkit-backdrop-filter: saturate(140%) blur(12px); backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; color: #fff; margin-right: auto; }
.brand-mark { flex: none; width: 34px; height: 30px; position: relative; }
.brand-mark::before, .brand-mark::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 9px; background: var(--red); transform: skewX(-20deg);
}
.brand-mark::before { left: 6px; }
.brand-mark::after { left: 20px; opacity: .55; }
.brand-text { display: flex; flex-direction: column; line-height: .9; }
.brand-top { font: 600 .66rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin-bottom: .28rem; }
.brand-main { font: 400 1.75rem/.85 var(--display); letter-spacing: .06em; }
.brand-logo { display: block; height: 50px; width: auto; }
.footer-logo { display: inline-block; }
.footer-logo img { width: 220px; height: auto; display: block; }

.nav > ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: .25rem; }
.nav a, .nav .nav-label {
  display: block; padding: .7rem .8rem;
  font: 600 .8rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; text-decoration: none; color: #DAD9DD;
}
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }
.nav > ul > li > a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--red); }
.nav .has-sub { position: relative; }
.nav .has-sub > a::after { content: ""; display: inline-block; width: 6px; height: 6px; margin-left: .45rem; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-3px); opacity: .7; }
.nav .sub {
  list-style: none; margin: 0; padding: .5rem 0;
  position: absolute; left: 0; top: 100%; min-width: 250px;
  background: var(--bg-3); border: 1px solid var(--line-2); border-top: 2px solid var(--red);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .5);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: .18s ease;
}
.nav .has-sub:hover .sub, .nav .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
.nav .sub a { padding: .75rem 1.1rem; letter-spacing: .1em; font-size: .78rem; }
.nav .sub a:hover { background: rgba(255, 255, 255, .05); }
.header-cta { padding: .9rem 1.2rem; font-size: .76rem; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: currentColor; margin: 5px 0; transition: .2s ease; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: min(88vh, 860px); display: flex; flex-direction: column; justify-content: center;
  padding: clamp(4.5rem, 10vw, 8rem) 0 0;
  background:
    radial-gradient(ellipse 60% 70% at 78% 35%, rgba(224, 27, 27, .22), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .022) 0 1px, transparent 1px 26px),
    linear-gradient(180deg, #111115 0%, var(--ink) 100%);
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 8, 10, .96) 0%, rgba(8, 8, 10, .75) 45%, rgba(8, 8, 10, .25) 100%), linear-gradient(0deg, var(--ink) 0%, transparent 35%); }
.slashes { position: absolute; top: -10%; bottom: -10%; right: 6%; width: 30%; z-index: -1; pointer-events: none; }
.slashes span { position: absolute; top: 0; bottom: 0; background: var(--red); transform: skewX(-20deg); }
.slashes span:nth-child(1) { right: 38%; width: 22px; opacity: .95; }
.slashes span:nth-child(2) { right: 30%; width: 10px; opacity: .55; }
.slashes span:nth-child(3) { right: 25%; width: 4px; opacity: .3; }
.hero-inner { position: relative; }
.hero h1 { max-width: 17ch; }
.hero-band { position: relative; margin-top: clamp(3.5rem, 7vw, 6rem); background: rgba(8, 8, 10, .94); border-top: 1px solid var(--line-2); }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 1.6rem 1.25rem 1.9rem 0; }
.stat + .stat { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.stat-num { font: 400 2.5rem/1 var(--display); letter-spacing: .02em; color: #fff; }
.stat-num .red { font-size: .8em; }
.stat-label { font-size: .88rem; color: var(--muted); margin-top: .35rem; line-height: 1.4; }

/* Inner page hero */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse 50% 80% at 85% 20%, rgba(224, 27, 27, .16), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .02) 0 1px, transparent 1px 26px),
    linear-gradient(180deg, #121216, var(--bg));
  border-bottom: 1px solid var(--line);
}
.page-hero .grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
.page-hero .slot { aspect-ratio: 5 / 4; }
.crumbs { font-size: .8rem; color: var(--dim); margin-bottom: 1.6rem; letter-spacing: .04em; }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--red); }
.crumbs a { text-decoration: none; color: var(--muted); }
.crumbs a:hover { color: #fff; }

/* ---------- Photo slots (look finished with or without a photo) ---------- */
.slot {
  position: relative; overflow: hidden; margin: 0;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(ellipse at 20% 110%, rgba(224, 27, 27, .18), transparent 55%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, var(--bg-4), var(--bg-2));
  border: 1px solid var(--line);
}
.slot::before {
  content: attr(data-label);
  position: absolute; left: 1.2rem; bottom: .2rem; right: 1rem;
  font: 400 clamp(3.2rem, 8vw, 6.5rem)/.9 var(--display); letter-spacing: .02em;
  color: rgba(255, 255, 255, .07);
}
.slot::after {
  content: ""; position: absolute; top: -10%; bottom: -10%; right: 14%; width: 12px;
  background: var(--red); transform: skewX(-20deg); opacity: .9;
  box-shadow: 24px 0 0 rgba(224, 27, 27, .45), 40px 0 0 -3px rgba(224, 27, 27, .2);
}
.slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.slot--tall { aspect-ratio: 4 / 5; }
.slot--wide { aspect-ratio: 16 / 9; }

/* ---------- Sections ---------- */
.section { padding: clamp(3.75rem, 8vw, 6.5rem) 0; position: relative; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--ink { background: var(--ink); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split--top { align-items: start; }
.split--wide-left { grid-template-columns: 1.25fr .75fr; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

/* Make cards */
.make {
  position: relative; display: flex; flex-direction: column; gap: .6rem;
  padding: 2.1rem 1.8rem 1.8rem; min-height: 290px;
  background: var(--bg-2); text-decoration: none; color: var(--text);
  transition: background-color .25s ease;
}
.make::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.make:hover { background: var(--bg-3); color: var(--text); }
.make:hover::before { transform: scaleX(1); }
.make-name { font: 400 2.6rem/.95 var(--display); letter-spacing: .03em; color: #fff; margin-bottom: .1rem; }
.make-models { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--red-hi); font-weight: 600; }
.make p { color: var(--muted); font-size: .98rem; margin: 0; }
.make .link-arrow { margin-top: auto; padding-top: 1rem; }

/* Service cards */
.card {
  position: relative; background: var(--bg-3); border: 1px solid var(--line);
  padding: 1.9rem 1.7rem 1.7rem; display: flex; flex-direction: column;
}
.card::before { content: ""; position: absolute; left: -1px; top: -1px; width: 42px; height: 3px; background: var(--red); }
.card h3 { margin-bottom: .75rem; color: #fff; }
.card p { color: var(--muted); font-size: .98rem; }
.card .link-arrow { margin-top: auto; padding-top: .5rem; }
.card-num { font: 400 1rem/1 var(--display); letter-spacing: .1em; color: var(--dim); margin-bottom: 1rem; }

/* Lists */
.checks { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.checks li { position: relative; padding: .7rem 0 .7rem 2.1rem; border-bottom: 1px solid var(--line); }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 1.1rem; width: 18px; height: 9px;
  background: linear-gradient(115deg, transparent 0 20%, var(--red) 20% 45%, transparent 45% 55%, var(--red) 55% 80%, transparent 80%);
}
.checks li strong { display: block; }
.checks--2 { display: grid; grid-template-columns: 1fr 1fr; column-gap: 2rem; }
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.chips li { padding: .6rem 1rem .5rem; border: 1px solid var(--line-2); font: 400 1.2rem/1 var(--display); letter-spacing: .08em; background: rgba(255, 255, 255, .02); }
.chips li.is-featured { border-color: var(--red); background: rgba(224, 27, 27, .1); }

/* Feature rows */
.feature { display: grid; grid-template-columns: 56px 1fr; gap: 1.2rem; padding: 1.5rem 0; border-top: 1px solid var(--line); }
.feature:last-child { border-bottom: 1px solid var(--line); }
.feature-num { font: 400 2rem/1 var(--display); color: var(--red); }
.feature h3 { margin-bottom: .45rem; }
.feature p { color: var(--muted); margin: 0; }

/* Prose */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.8em; color: #fff; }
.prose p, .prose li { color: #D3D2D6; }
.prose ul { padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 1.5rem; margin-bottom: .55rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .72em; width: 10px; height: 3px; background: var(--red); transform: skewX(-20deg); }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.quote {
  margin: 0; padding: 2.2rem 2rem 1.8rem; background: var(--bg-3); border: 1px solid var(--line);
  display: flex; flex-direction: column; position: relative;
}
.quote::before { content: "\201C"; position: absolute; top: .6rem; right: 1.5rem; font: 500 4.5rem/1 var(--serif); color: var(--red); opacity: .9; }
.quote p { font: italic 500 1.45rem/1.35 var(--serif); color: #fff; margin: 1.4rem 0 1.4rem; }
.quote footer { margin-top: auto; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.quote footer strong { color: #fff; font-weight: 600; }
.stars { color: var(--red-hi); letter-spacing: .15em; font-size: .95rem; }
.rating-bar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.rating-big { display: flex; align-items: baseline; gap: .9rem; }
.rating-big .num { font: 400 4.5rem/.9 var(--display); color: #fff; }
.quote--solo { max-width: 52rem; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; isolation: isolate; background: var(--red); color: #fff; padding: clamp(3.2rem, 7vw, 5rem) 0; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: repeating-linear-gradient(115deg, rgba(0, 0, 0, .08) 0 2px, transparent 2px 22px), linear-gradient(90deg, var(--red-lo), var(--red) 60%); }
.cta-band::after { content: ""; position: absolute; right: 8%; top: -20%; bottom: -20%; width: 160px; background: rgba(0, 0, 0, .18); transform: skewX(-20deg); z-index: -1; }
.cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { margin: 0; font-size: clamp(2.4rem, 5vw, 4rem); }
.cta-band p { margin: .5rem 0 0; font-size: 1.1rem; opacity: .92; }
.cta-band .actions { margin-top: 0; }
.cta-band .btn--ghost { --bg-btn: rgba(0, 0, 0, .22); }
.cta-band .btn--ghost:hover { --bg-btn: rgba(0, 0, 0, .35); }

/* Visit / map */
.visit { display: grid; grid-template-columns: .9fr 1.1fr; gap: 0; border: 1px solid var(--line); background: var(--bg-2); }
.visit-info { padding: clamp(2rem, 4vw, 3rem); }
.visit-info dl { margin: 0; }
.visit-info dt { font: 600 .74rem/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--red-hi); margin: 1.6rem 0 .5rem; }
.visit-info dt:first-child { margin-top: 0; }
.visit-info dd { margin: 0; font-size: 1.05rem; }
.visit-info dd a { text-decoration: none; }
.hours { width: 100%; border-collapse: collapse; font-size: 1rem; }
.hours td { padding: .3rem 0; }
.hours td:last-child { text-align: right; color: var(--muted); }
.map { min-height: 380px; position: relative; background: var(--bg-3); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.92) contrast(.88) brightness(.95); }
.area-list { display: flex; flex-wrap: wrap; gap: .4rem .5rem; list-style: none; padding: 0; margin: 1rem 0 0; }
.area-list li { font-size: .88rem; color: var(--muted); padding: .35rem .7rem; border: 1px solid var(--line); }

/* FAQ */
.faq { border-top: 1px solid var(--line-2); }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.5rem 3rem 1.5rem 0; position: relative;
  font: 600 1.15rem/1.35 var(--sans); color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%); font: 400 2rem/1 var(--display); color: var(--red); transition: transform .2s ease; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .answer { padding: 0 0 1.6rem; color: #D0CFD3; max-width: 70ch; }
.faq .answer p:last-child { margin-bottom: 0; }
.faq-group + .faq-group { margin-top: 3.5rem; }
.faq-group h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 1.2rem; }

/* Form */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; }
.form .full { grid-column: 1 / -1; }
.field label { display: block; font: 600 .74rem/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .55rem; }
.field label .req { color: var(--red-hi); }
.field input, .field select, .field textarea {
  width: 100%; padding: .95rem 1rem; background: var(--bg); color: #fff;
  border: 1px solid var(--line-2); border-radius: 0; font: 400 1rem/1.4 var(--sans);
  transition: border-color .2s ease, background-color .2s ease;
  -webkit-appearance: none; appearance: none;
}
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 2.5rem; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #0B0B0E; }
.field .hint { font-size: .82rem; color: var(--dim); margin-top: .4rem; }
.hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .9rem; color: var(--muted); }
.alert { padding: 1rem 1.2rem; border-left: 3px solid var(--red); background: rgba(224, 27, 27, .1); margin-bottom: 1.5rem; }
.panel { background: var(--bg-2); border: 1px solid var(--line); padding: clamp(1.6rem, 4vw, 2.8rem); }

/* Partner / callout */
.callout { border: 1px solid var(--line-2); border-left: 3px solid var(--red); padding: 1.6rem 1.8rem; background: rgba(255, 255, 255, .02); }
.callout p:last-child { margin-bottom: 0; }
.kicker-num { font: 400 5.5rem/.85 var(--display); color: var(--red); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); border-top: 1px solid var(--line); padding: clamp(3.5rem, 7vw, 5rem) 0 0; font-size: .95rem; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.site-footer h2 { font: 600 .74rem/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: #fff; margin: 0 0 1.2rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer address { font-style: normal; line-height: 1.7; }
.footer-blurb { margin-top: 1.2rem; max-width: 28rem; }
.social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line-2); color: #fff; }
.social a:hover { border-color: var(--red); background: rgba(224, 27, 27, .12); }
.social svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 3.5rem; border-top: 1px solid var(--line); padding: 1.4rem 0 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: var(--dim); }

/* Mobile call bar */
.mobile-bar { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-toggle { display: block; order: 3; }
  .header-cta { display: none; }
  .nav {
    position: fixed; left: 0; right: 0; top: var(--nav-top, 114px); bottom: 0; z-index: 49;
    background: var(--ink); overflow-y: auto; padding: 1rem var(--gutter) 6rem;
    opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .22s ease, visibility .22s;
  }
  .nav-open .nav { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-open { overflow: hidden; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav > ul > li { border-bottom: 1px solid var(--line); }
  .nav a, .nav .nav-label { padding: 1.1rem 0; font-size: .95rem; }
  .nav > ul > li > a[aria-current="page"] { box-shadow: none; color: var(--red-hi); }
  .nav .has-sub > a::after { display: none; }
  .nav .sub { position: static; opacity: 1; visibility: visible; transform: none; background: none; border: 0; box-shadow: none; padding: 0 0 .8rem 1rem; min-width: 0; }
  .nav .sub a { padding: .6rem 0; color: var(--muted); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .topbar-info .topbar-addr { display: none; }
  .split, .split--wide-left, .page-hero .grid, .visit { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2, .reviews { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .page-hero .slot { order: -1; aspect-ratio: 16 / 9; }
  .page-hero .slot:not(.has-photo) { display: none; }
  .map { min-height: 300px; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; padding-bottom: 68px; }
  .topbar .wrap { justify-content: center; }
  .topbar-info { gap: 1rem; }
  .topbar-hours { display: none; }
  :root { --header-h: 66px; }
  .brand-logo { height: 40px; }
  .grid-4 { grid-template-columns: 1fr; }
  .make { min-height: 0; }
  .checks--2 { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .slashes { width: 60%; right: -10%; opacity: .55; }
  .quote { padding: 2rem 1.4rem 1.5rem; }
  .quote p { font-size: 1.3rem; }
  .actions .btn { flex: 1 1 100%; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--ink); border-top: 1px solid var(--line-2);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; gap: .5rem; min-height: 60px; text-decoration: none; font: 700 .82rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: #fff; }
  .mobile-bar a + a { background: var(--red); }
  .mobile-bar svg { width: 18px; height: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
@media print {
  .topbar, .site-header, .mobile-bar, .cta-band, .map, .slashes { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ---------- Review carousel ---------- */
.carousel { position: relative; }
.carousel-track {
  position: relative; display: flex; gap: 1.25rem;
  overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track:focus-visible { outline-offset: 6px; }
.carousel-track > .quote { flex: 0 0 calc((100% - 2.5rem) / 3); scroll-snap-align: start; min-height: 300px; }
.carousel-track > .quote p {
  display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden;
  font-size: 1.35rem;
}
.carousel-controls { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.6rem; }
.carousel-dots { display: flex; gap: .45rem; flex-wrap: wrap; }
.carousel-dots button { width: 28px; height: 4px; padding: 0; border: 0; background: var(--line-2); cursor: pointer; transform: skewX(-20deg); transition: background-color .2s ease, width .2s ease; }
.carousel-dots button.is-active { background: var(--red); width: 42px; }
.carousel-arrows { display: flex; gap: .5rem; }
.carousel-btn { width: 48px; height: 48px; display: grid; place-items: center; background: transparent; color: #fff; border: 1px solid var(--line-2); font-size: 1.2rem; cursor: pointer; transition: .2s ease; }
.carousel-btn:hover { border-color: var(--red); background: rgba(224, 27, 27, .12); }
.carousel.is-static .carousel-controls { display: none; }
.reviews-source { margin: 1rem 0 0; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }
.quote-author { display: flex; align-items: center; gap: .75rem; }
.quote-author img { width: 36px; height: 36px; border-radius: 50%; flex: none; }
.quote-name { color: #fff; font-weight: 600; text-decoration: none; }
.quote--live footer { text-transform: none; letter-spacing: .02em; font-size: .9rem; }

/* ---------- Online booking (Tekmetric) ---------- */
.book-embed { position: relative; height: 820px; background: #fff; border: 1px solid var(--line-2); border-top: 3px solid var(--red); }
.book-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; opacity: 0; transition: opacity .3s ease; }
.book-embed.is-loaded iframe { opacity: 1; }
.book-loading { position: absolute; inset: 0; margin: 0; display: grid; place-items: center; color: #555; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .85rem; }
.book-modal {
  position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center;
  padding: clamp(0px, 3vw, 32px); background: rgba(4, 4, 6, .8);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .2s ease, visibility .2s;
}
.book-modal.is-open { opacity: 1; visibility: visible; }
.book-dialog { display: flex; flex-direction: column; width: min(980px, 100%); height: min(900px, 100%); background: var(--bg-3); border: 1px solid var(--line-2); box-shadow: 0 40px 90px rgba(0, 0, 0, .6); }
.book-bar { display: flex; align-items: center; gap: 1rem; padding: .7rem .8rem .7rem 1.3rem; border-bottom: 1px solid var(--line); }
.book-title { font: 400 1.7rem/1 var(--display); letter-spacing: .05em; margin-right: auto; }
.book-newtab { font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); text-decoration: none; }
.book-newtab:hover { color: #fff; }
.book-close { width: 44px; height: 44px; display: grid; place-items: center; background: transparent; border: 1px solid var(--line-2); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.book-close:hover { border-color: var(--red); background: rgba(224, 27, 27, .12); }
.book-embed--modal { flex: 1; height: auto; border: 0; border-top: 3px solid var(--red); }
body.modal-open { overflow: hidden; }

@media (max-width: 1080px) {
  .carousel-track > .quote { flex-basis: calc((100% - 1.25rem) / 2); }
}
@media (max-width: 640px) {
  .carousel-track > .quote { flex-basis: 88%; min-height: 0; }
  .carousel-track > .quote p { font-size: 1.25rem; }
  .book-embed { height: 760px; }
  .book-modal { padding: 0; }
  .book-dialog { height: 100%; border: 0; }
  .book-newtab { display: none; }
}

/* Founders */
.founder { display: flex; flex-direction: column; }
.founder .eyebrow { margin-bottom: .8rem; }
.founder-name { font: 400 clamp(2.2rem, 3.6vw, 2.9rem)/1 var(--display); letter-spacing: .03em; text-transform: none; color: #fff; margin-bottom: 1rem; }
.founder .quote { margin-top: .6rem; background: var(--bg); }
.prose .eyebrow + h2 { margin-top: 0; }

/* Star counts + open/closed colors */
.stars-off { color: rgba(255, 255, 255, .16); }
.stars-meter { position: relative; display: inline-block; font-size: .95rem; letter-spacing: .15em; color: rgba(255, 255, 255, .16); white-space: nowrap; }
.stars-meter::before { content: "\2605\2605\2605\2605\2605"; }
.stars-meter span { position: absolute; left: 0; top: 0; width: var(--pct, 100%); overflow: hidden; color: var(--red-hi); }
.open-status .st { font-weight: 600; }
.open-status.is-open .st { color: #3BCB6B; }
.open-status.is-closed .st { color: #FF4D4D; }
.open-status.is-closed::before { background: #FF4D4D; box-shadow: 0 0 0 3px rgba(255, 77, 77, .18); }
.stars-meter--stat { font-size: 1.15rem; letter-spacing: .1em; margin-left: .55rem; vertical-align: .35em; }
@media (max-width: 640px) { .stars-meter--stat { font-size: .95rem; margin-left: .4rem; } }
/* Single-review carousels (brand pages) */
.carousel--single .carousel-track > .quote { flex-basis: 100%; min-height: 0; }
.carousel--single .carousel-track > .quote p { -webkit-line-clamp: 9; }
.carousel-track > .quote p { -webkit-line-clamp: 8; }
/* Keep carousels inside their grid columns */
.split > *, .grid-2 > *, .grid-3 > * { min-width: 0; }
.carousel { min-width: 0; max-width: 100%; }
.carousel-count { font: 400 1.35rem/1 var(--display); letter-spacing: .08em; color: var(--muted); }
.carousel-count b { color: #fff; font-weight: 400; }
.carousel-dots { gap: .35rem; }
.carousel-dots button { width: 22px; }
.carousel-dots button.is-active { width: 34px; }

/* ---------- Photo crossfades ---------- */
.slot.fade img { opacity: 0; transition: opacity 1.4s ease; }
.slot.fade img.is-on { opacity: 1; }
.hero-media img { opacity: 0; transition: opacity 1.6s ease; }
.hero-media img.is-on { opacity: .62; }
@media (prefers-reduced-motion: no-preference) {
  .slot.fade img.is-on, .hero-media img.is-on { animation: bpm-kenburns 9s ease-out both; }
}
@keyframes bpm-kenburns { from { transform: scale(1.07); } to { transform: scale(1); } }
.slot.has-photo::before { content: none; }
.slot.has-photo::after { z-index: 2; right: 7%; width: 7px; opacity: .85; box-shadow: 14px 0 0 rgba(224, 27, 27, .45); top: auto; bottom: -6px; height: 38%; }
.hero-media img { position: absolute; inset: 0; }

/* Yelp + BBB links */
.social { flex-wrap: wrap; }
.social a.social-txt { width: auto; padding: 0 .85rem; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.more-reviews { margin-top: 1rem; font-size: .92rem; color: var(--muted, #9a9aa3); }
.more-reviews a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.more-reviews a:hover { color: var(--red); }

/* Email contact */
.contact-email { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.1rem; margin: 0 0 1.4rem; }
.contact-email a:not(.btn) { color: #fff; word-break: break-all; }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.post-card { display: flex; flex-direction: column; background: var(--bg-3); border: 1px solid var(--line); position: relative; min-width: 0; }
.post-card::before { content: ""; position: absolute; left: -1px; top: -1px; width: 42px; height: 3px; background: var(--red); z-index: 1; }
.post-card-img { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-4); }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--red-hi); margin: 0 0 .6rem; }
.post-card-title { font: 400 clamp(1.6rem, 2.2vw, 1.95rem)/1.02 var(--display); letter-spacing: .02em; text-transform: none; margin: 0 0 .7rem; }
.post-card-title a { text-decoration: none; color: #fff; }
.post-card-title a:hover { color: var(--red-hi); }
.post-card-body p { color: var(--muted); font-size: .96rem; }
.post-card-body .link-arrow { margin-top: auto; padding-top: .4rem; }
.page-hero--post h1 { font-size: clamp(2.4rem, 4.6vw, 4.1rem); line-height: .98; }
.post-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.post-body { max-width: 720px; font-size: 1.1rem; }
.post-body h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); margin-top: 1.5em; }
.post-body h4 { font: 700 1rem/1.3 var(--sans); color: #fff; margin: 1.6em 0 .5em; }
.post-body ol { padding-left: 1.3em; }
.post-body ol li { margin-bottom: .55rem; color: #D3D2D6; }
.post-body a { color: #fff; }
.post-body blockquote { margin: 1.6em 0; padding: 1.1rem 1.4rem; border-left: 3px solid var(--red); background: rgba(255, 255, 255, .03); }
.post-body blockquote p { margin: 0; font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: #fff; }
.post-body hr { border: 0; border-top: 1px solid var(--line-2); margin: 2.2em 0; }
.post-figure { margin: 1.8em 0; border: 1px solid var(--line); }
.post-figure img { width: 100%; }
.table-wrap { overflow-x: auto; margin: 1.4em 0; }
.table-wrap table { border-collapse: collapse; width: 100%; font-size: .98rem; }
.table-wrap td { border: 1px solid var(--line-2); padding: .6rem .8rem; vertical-align: top; color: #D3D2D6; }
.table-wrap tr:first-child td { background: rgba(255, 255, 255, .04); color: #fff; font-weight: 600; }
.post-aside { display: grid; gap: 1.25rem; position: sticky; top: calc(var(--header-h) + 1.5rem); }
.post-aside .panel { padding: 1.6rem 1.6rem 1.7rem; }
.post-aside .panel p:not(.eyebrow) { font-size: .98rem; }
.post-author-name { font: 400 2rem/1 var(--display); letter-spacing: .03em; color: #fff; margin: 0 0 .25rem; }
.post-author-bio { color: var(--muted); }
.post-help-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; margin-top: 1.2rem; }
.post-help-actions .btn { padding: .9rem 1.2rem; font-size: .76rem; }
@media (max-width: 1080px) {
  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .post-layout { grid-template-columns: 1fr; }
  .post-aside { position: static; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .post-grid, .post-aside { grid-template-columns: 1fr; }
  .post-body { font-size: 1.03rem; }
}
