/* ===================================================================
   Andy's Auto Service — Bright-Premium Design System
   Signal-Rot #E2001A · Ink #1a1a1a · Weiß/Hell
   Headlines: Oswald (condensed) · Body: Inter · Specs: Oswald
=================================================================== */

:root {
  --red: #E2001A;
  --red-hover: #b80016;
  --ink: #1a1a1a;
  --bg: #ffffff;
  --bg-alt: #f4f5f6;
  --surface: #ffffff;
  --dark: #141416;
  --dark-2: #1d1d20;
  --text: #1a1a1a;
  --muted: #5d6066;
  --on-dark: #f4f4f5;
  --on-dark-muted: #a7a9ad;
  --border: #e3e5e8;
  --border-dark: #2a2a2d;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(20,20,22,.06), 0 2px 8px rgba(20,20,22,.04);
  --shadow-md: 0 6px 24px rgba(20,20,22,.08), 0 2px 6px rgba(20,20,22,.05);
  --shadow-lg: 0 24px 60px rgba(20,20,22,.14);

  --ff-head: "Oswald", "Arial Narrow", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, sans-serif;

  --header-h: 76px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.display {
  font-weight: 700;
  font-size: clamp(40px, 6.6vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.h2 { font-size: clamp(30px, 4vw, 52px); text-transform: uppercase; font-weight: 600; }
.h3 { font-size: clamp(22px, 2.4vw, 30px); text-transform: uppercase; }
.lead { font-size: clamp(18px, 1.5vw, 21px); color: var(--muted); line-height: 1.55; text-wrap: pretty; }

.eyebrow {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 14px;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--red);
  display: inline-block;
}
.eyebrow--center::before { display: none; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: var(--on-dark); }
.section--dark .lead { color: var(--on-dark-muted); }
.section-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }

.grid { display: grid; gap: 28px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 15px;
  line-height: 1;
  padding: 16px 26px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-hover); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--lg { padding: 19px 34px; font-size: 16px; }
.btn--block { width: 100%; }
.btn .arr { font-size: 1.1em; line-height: 0; transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(3px); }

.link-arrow {
  font-family: var(--ff-head);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 15px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 2px solid var(--red);
  padding-bottom: 3px;
  transition: gap .18s ease, color .18s ease;
}
.link-arrow:hover { gap: 14px; color: var(--red); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13.5px;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px;
}
.topbar a { display: inline-flex; align-items: center; gap: 7px; color: #fff; }
/* constrain inline icon SVGs (header/topbar/nav) */
.ico { display: inline-flex; align-items: center; }
.ico svg { width: 15px; height: 15px; display: block; }
.nav-tel .ico svg { width: 19px; height: 19px; }
.topbar .topbar-left { display: flex; gap: 24px; }
.topbar .topbar-left .muted { color: var(--on-dark-muted); }
.topbar .sep { color: var(--border-dark); }
.topbar strong { color: var(--red); font-weight: 600; }
.topbar .topbar-right { display: flex; align-items: center; gap: 18px; color: var(--on-dark-muted); }

.navbar {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 46px; height: 46px;
  background: var(--ink);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  letter-spacing: -0.02em;
  font-size: 22px;
  flex: none;
}
.brand-mark .s { color: var(--red); }
.brand-text { display: flex; flex-direction: column; line-height: 1; white-space: nowrap; }
.brand-text .bt-name {
  font-family: var(--ff-head);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 19px;
  letter-spacing: 0.01em;
}
.brand-text .bt-name .r { color: var(--red); }
.brand-text .bt-sub {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--ff-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 15.5px;
  color: var(--ink);
  padding: 10px 15px;
  border-radius: var(--radius);
  position: relative;
  transition: color .15s ease;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 15px; right: 15px; bottom: 4px;
  height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--red); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-tel {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 0.01em;
}
.nav-tel small { display:block; font-family: var(--ff-body); font-size: 10.5px; letter-spacing:.1em; text-transform:uppercase; color: var(--muted); font-weight:600; }
.nav-tel .ico { color: var(--red); }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: var(--radius);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 20px; height: 2px; background: var(--ink); transition: .2s; }
.mobile-nav { display: none; }

/* ---------- footer ---------- */
.site-footer { background: var(--dark); color: var(--on-dark); padding-top: clamp(56px, 7vw, 84px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand .brand-mark { background: #fff; color: var(--ink); }
.footer-brand .brand-mark .s { color: var(--red); }
.footer-brand .brand-text .bt-name { color: #fff; }
.footer-brand .brand-text .bt-sub { color: var(--on-dark-muted); }
.footer-brand p { color: var(--on-dark-muted); margin-top: 20px; max-width: 30ch; font-size: 15px; }
.footer-col h4 {
  font-size: 14px; text-transform: uppercase; letter-spacing: .14em;
  color: var(--on-dark-muted); font-weight: 600; margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { color: var(--on-dark); font-size: 15px; transition: color .15s; }
.footer-col a:hover { color: var(--red); }
.footer-col .muted { color: var(--on-dark-muted); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 26px; gap: 16px; flex-wrap: wrap;
  color: var(--on-dark-muted); font-size: 13.5px;
}
.footer-bottom a:hover { color: var(--red); }
.footer-bottom .fb-links { display: flex; gap: 22px; }

/* ---------- cards / components ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}

/* vehicle card */
.v-card { display: flex; flex-direction: column; }
.v-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: #d5d8dc; }
.v-card .v-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #fbfbfc 0%, #eceef1 100%);
  display: grid; place-items: center;
  padding: 18px;
  overflow: hidden;
}
.v-card .v-media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .4s ease; }
.v-card:hover .v-media img { transform: scale(1.04); }
/* placeholder media (photo pending) */
.v-media--ph {
  background:
    repeating-linear-gradient(135deg, #eceef1 0 14px, #f4f5f6 14px 28px);
}
.v-media--ph .ph-inner { text-align: center; color: var(--muted); display: grid; gap: 10px; justify-items: center; }
.v-media--ph .ph-inner svg { width: 40px; height: 40px; opacity: .5; }
.v-media--ph .ph-label { font-family: var(--ff-head); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; font-weight: 600; }
.v-media--ph .ph-mono { font-family: ui-monospace, "SFMono-Regular", Menlo, monospace; font-size: 11px; letter-spacing: .02em; opacity: .8; }
.v-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--ff-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; font-size: 12px;
  background: #fff; color: var(--ink);
  padding: 6px 11px; border-radius: 3px;
  box-shadow: var(--shadow-sm);
}
.v-tag {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--ff-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; font-size: 11px;
  background: var(--red); color: #fff;
  padding: 6px 10px; border-radius: 3px;
}
.v-tag--dark { background: var(--ink); }
.v-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.v-cat { font-size: 12.5px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600; }
.v-name { font-family: var(--ff-head); font-weight: 600; text-transform: uppercase; font-size: 23px; margin-top: 6px; letter-spacing: -0.01em; }
.v-specs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border);
}
.v-spec { text-align: left; }
.v-spec .num { font-family: var(--ff-head); font-weight: 600; font-size: 25px; line-height: 1; }
.v-spec .num small { font-size: 13px; color: var(--muted); font-weight: 500; }
.v-spec .lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-top: 5px; font-weight: 600; }
.v-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin-top: 22px; padding-top: 0; }
.v-price .pl { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.v-price .pv { font-family: var(--ff-head); font-weight: 700; font-size: 27px; line-height: 1; }
.v-price .pv small { font-size: 14px; color: var(--muted); font-weight: 500; }
.v-cta {
  width: 46px; height: 46px; flex: none;
  border-radius: var(--radius);
  background: var(--ink); color: #fff;
  display: grid; place-items: center; font-size: 20px;
  transition: background .18s ease, transform .18s ease;
}
.v-card:hover .v-cta { background: var(--red); }
.v-cta:hover { transform: translateX(2px); }

/* pillar cards (dual standbein) */
.pillar {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 420px;
  display: flex; align-items: flex-end;
  color: #fff;
  border: 1px solid var(--border);
}
.pillar img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.pillar .scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,20,22,.05) 0%, rgba(20,20,22,.45) 50%, rgba(20,20,22,.9) 100%); }
.pillar .pillar-body { position: relative; z-index: 2; padding: 38px; width: 100%; }
.pillar .pillar-kicker { font-family: var(--ff-head); text-transform: uppercase; letter-spacing: .16em; font-size: 13px; color: #fff; display:inline-flex; align-items:center; gap:9px; }
.pillar .pillar-kicker::before { content:""; width: 22px; height: 2px; background: var(--red); }
.pillar h3 { font-size: 32px; margin: 14px 0 10px; text-transform: uppercase; }
.pillar p { color: rgba(255,255,255,.85); max-width: 38ch; font-size: 15.5px; }
.pillar .pillar-link { margin-top: 22px; display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-head); text-transform: uppercase; font-weight: 600; letter-spacing: .04em; font-size: 15px;
  border-bottom: 2px solid var(--red); padding-bottom: 3px; transition: gap .18s; }
.pillar:hover .pillar-link { gap: 15px; }

/* feature / service list */
.feature { display: flex; gap: 18px; }
.feature .f-ico {
  flex: none; width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--bg-alt); color: var(--red);
  display: grid; place-items: center;
  border: 1px solid var(--border);
}
.feature .f-ico svg { width: 26px; height: 26px; }
.feature h4 { font-size: 20px; text-transform: uppercase; margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 15.5px; }

.svc-card { padding: 32px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: box-shadow .2s, transform .2s; }
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-card .f-ico { margin-bottom: 22px; }

/* brand wall */
.brand-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.brand-cell { display: grid; place-items: center; padding: 38px 24px; border-right: 1px solid var(--border); }
.brand-cell:last-child { border-right: none; }
.brand-cell img { max-height: 48px; width: auto; object-fit: contain; opacity: .82; transition: opacity .2s, filter .2s; filter: grayscale(1); }
.brand-cell:hover img { opacity: 1; filter: grayscale(0); }
.brand-cell .brand-word { font-family: var(--ff-head); font-weight: 700; text-transform: uppercase; font-size: 30px; letter-spacing: .02em; color: var(--ink); opacity:.7; }

/* stat / trust */
.stat .num { font-family: var(--ff-head); font-weight: 700; font-size: clamp(40px, 5vw, 60px); line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.stat .num .red { color: var(--red); }
.stat .lbl { color: var(--muted); font-size: 14.5px; margin-top: 8px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.section--dark .stat .num { color: #fff; }
.section--dark .stat .lbl { color: var(--on-dark-muted); }

.stars { color: var(--red); letter-spacing: 2px; font-size: 18px; }

/* badge / chip */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 15px; color: var(--ink);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

/* filter pills */
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-pill {
  font-family: var(--ff-head); font-weight: 500; text-transform: uppercase; letter-spacing: .04em;
  font-size: 15px; padding: 11px 22px; border-radius: 999px;
  background: #fff; border: 1px solid var(--border); color: var(--ink);
  transition: all .16s ease;
}
.filter-pill:hover { border-color: var(--ink); }
.filter-pill.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-pill .cnt { opacity: .55; margin-left: 4px; font-size: 13px; }

/* forms */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label { font-size: 13.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 16px; color: var(--ink);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 16px; width: 100%; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(226,0,26,.12);
}
.radio-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.radio-card {
  position: relative; cursor: pointer;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 14px; text-align: center; transition: all .15s; background:#fff;
}
.radio-card input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.radio-card .rc-ico { color: var(--muted); display:flex; justify-content:center; margin-bottom: 9px; }
.radio-card .rc-label { font-family: var(--ff-head); text-transform: uppercase; font-weight: 600; font-size: 15px; }
.radio-card:has(input:checked) { border-color: var(--red); background: #fff5f5; box-shadow: 0 0 0 2px rgba(226,0,26,.18); }
.radio-card:has(input:checked) .rc-ico { color: var(--red); }

/* info rows */
.info-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: none; }
.info-row .ir-ico { flex: none; width: 40px; height: 40px; border-radius: var(--radius); background: var(--bg-alt); color: var(--red); display:grid; place-items:center; }
.info-row .ir-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.info-row .ir-value { font-weight: 600; font-size: 16.5px; margin-top: 3px; }
.info-row .ir-value a:hover { color: var(--red); }

/* hours table */
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 15.5px; }
.hours tr:last-child td { border-bottom: none; }
.hours td:last-child { text-align: right; font-weight: 600; font-family: var(--ff-head); letter-spacing: .02em; }
.hours .day { color: var(--muted); }
.hours .closed { color: var(--muted); font-weight: 500; }

/* page hero (inner pages) */
.page-hero { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding-block: clamp(48px, 6vw, 76px); }
.page-hero .crumb { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; display:flex; gap:8px; align-items:center; }
.page-hero .crumb a:hover { color: var(--red); }
.page-hero .crumb .sep { color: var(--border); }
.page-hero h1 { font-size: clamp(38px, 5.4vw, 68px); text-transform: uppercase; }
.page-hero p { max-width: 60ch; margin-top: 16px; }

/* misc */
.divider { height: 1px; background: var(--border); border: none; }
.text-red { color: var(--red); }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 44px; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.muted { color: var(--muted); }

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

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1040px) {
  .nav-links, .nav-cta .nav-tel { display: none; }
  .burger { display: flex; }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .brand-wall { grid-template-columns: repeat(2, 1fr); }
  .brand-cell:nth-child(2) { border-right: none; }
  .brand-cell:nth-child(1), .brand-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
  .topbar .topbar-left .hide-sm { display: none; }
  .mobile-nav.open { display: block; }
  .mobile-nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
    background: #fff; padding: 24px var(--gutter);
    border-top: 1px solid var(--border);
    overflow-y: auto;
  }
  .mobile-nav a {
    display: block; font-family: var(--ff-head); text-transform: uppercase;
    font-size: 26px; padding: 16px 0; border-bottom: 1px solid var(--border); color: var(--ink);
  }
  .mobile-nav a .num { color: var(--red); font-size: 14px; margin-right: 12px; }
  .mobile-nav .btn { margin-top: 26px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .radio-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .pillar { min-height: 340px; }
  .v-specs { gap: 6px; }
}

/* ===== QA-Fix: Header-Nav entzerren (Menüpunkte brachen 2-zeilig um) ===== */
.nav-links a { white-space: nowrap; font-size: 14px; padding: 10px 11px; letter-spacing: 0.02em; }
.nav-links { gap: 2px; }
.nav-links a::after { left: 11px; right: 11px; }
.brand-text .bt-name { font-size: 17px; }
.nav-tel { font-size: 16px; }
.nav-cta { gap: 12px; }
@media (max-width: 1240px) {
  .brand-text .bt-sub { display: none; }
  .nav-links a { font-size: 13px; padding: 9px 9px; }
  .nav-links a::after { left: 9px; right: 9px; }
}
