:root {
  --bg: #0b0b0c;
  --panel: #141416;
  --ink: #f2f2f0;
  --muted: #b3b3ad;
  --red: #e11d2a;
  --red-hover: #c3131f;
  --line: rgba(242, 242, 240, 0.12);
  --font-display: "Oswald", Impact, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; margin: 0; line-height: 1.05; text-wrap: balance; }
p { margin: 0; }
button { cursor: pointer; font-family: inherit; }

.wrap { width: min(1080px, calc(100% - 32px)); margin-inline: auto; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
}
.brand small { color: var(--red); font-size: 10px; letter-spacing: 0.22em; }
.brand b { font-size: 1.15rem; }
.nav-links { display: flex; align-items: center; gap: 18px; font-size: 0.92rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.nav-links a { text-decoration: none; }
.call-link { color: var(--red) !important; }
.nav-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid var(--line); color: var(--ink); }

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
}
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0.25), rgba(11,11,12,0.88));
}
.hero-copy { position: relative; z-index: 1; padding: 48px 0 56px; width: min(1080px, calc(100% - 32px)); margin-inline: auto; }
.hero-copy p { color: #ddd; max-width: 40ch; margin: 14px 0 22px; font-size: 1.15rem; }
.hero h1 { font-size: clamp(2.6rem, 8vw, 5.4rem); max-width: 12ch; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  border: 0;
}
.btn:hover { background: var(--red-hover); }
.btn-ghost { background: transparent; border: 1px solid var(--ink); margin-left: 8px; }

.services { padding: 72px 0; }
.services h2 { font-size: 2rem; margin-bottom: 24px; }
.svc-grid { display: grid; gap: 12px; }
@media (min-width: 700px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
.svc {
  background: var(--panel);
  padding: 22px;
  border-left: 4px solid var(--red);
}
.svc h3 { font-size: 1.2rem; margin-bottom: 8px; }

.split { display: grid; }
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; } }
.split img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.split-copy { padding: 40px 24px; display: grid; gap: 14px; align-content: center; }
.split-copy h2 { font-size: 2rem; }

.why { padding: 64px 0; background: var(--panel); }
.why-grid { display: grid; gap: 16px; }
@media (min-width: 800px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why article { border-top: 2px solid var(--red); padding-top: 14px; }
.why h3 { font-size: 1.1rem; margin-bottom: 8px; }

.reviews { padding: 64px 0; }
.reviews h2 { margin-bottom: 8px; }
.review-note { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }
.review-grid { display: grid; gap: 12px; }
@media (min-width: 800px) { .review-grid { grid-template-columns: 1fr 1fr 1fr; } }
blockquote {
  margin: 0;
  background: var(--panel);
  padding: 18px;
  font-size: 0.98rem;
}
blockquote footer { margin-top: 10px; color: var(--muted); font-size: 0.85rem; }
.demo-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.hours {
  display: grid;
  background: #101012;
}
@media (min-width: 800px) { .hours { grid-template-columns: 1fr 1fr; } }
.hours-copy { padding: 40px 24px; }
.hours table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.hours td { padding: 8px 0; border-bottom: 1px solid var(--line); }
.map-panel {
  min-height: 280px;
  background:
    linear-gradient(rgba(11,11,12,0.35), rgba(11,11,12,0.55)),
    url("/images/auto/shop.jpg") center/cover;
  display: grid;
  place-items: end start;
  padding: 24px;
}
.map-card { background: var(--bg); padding: 16px 18px; max-width: 280px; }

.cta-band { padding: 48px 0; text-align: center; background: var(--red); }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-band .btn { background: #fff; color: #111; }

.site-footer { padding: 28px 16px 40px; color: var(--muted); font-size: 0.88rem; border-top: 1px solid var(--line); }
.sticky-action { background: #0b0b0c; }
.sticky-action a { background: var(--red); color: #fff; }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0;
    background: #0b0b0c;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line);
    z-index: 40;
  }
  body.nav-open .nav-links { display: flex; }
  .nav-links a { min-height: 44px; display: flex; align-items: center; }
  .site-nav { position: relative; }
  .btn-ghost { margin-left: 0; margin-top: 8px; }
  .hero-copy .btn { display: flex; width: min(100%, 320px); }
}
