/* =================================================================
   HENTRICH KFZ GmbH · Landingpage
   Design: "Prüfprotokoll / Werkstattkarte" – technisch, präzise.
   Farben:  Anthrazit/Dunkelgrau (Basis) · Papierweiß ·
            CI-Orange #fc6500 (dynamische Akzentfarbe für Buttons/Links).
   Fonts:   Avenir (lokal in assets/fonts/) – Heavy für Überschriften,
            Book/Medium für den Fließtext. Keine externe Font-CDN.
   ================================================================= */

/* -----------------------------------------------------------------
   Eigene Webfonts (aus den Kundendateien, lokal gehostet)
   ----------------------------------------------------------------- */
@font-face {
  font-family: "Avenir";
  src: url("assets/fonts/avenir-book.woff2") format("woff2");
  font-weight: 100 450;       /* Book */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("assets/fonts/avenir-medium.woff2") format("woff2");
  font-weight: 451 650;       /* Medium */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("assets/fonts/avenir-heavy.woff2") format("woff2");
  font-weight: 651 1000;      /* Heavy */
  font-style: normal;
  font-display: swap;
}

/* -----------------------------------------------------------------
   0 · Design-Tokens (Farb- und Maßvariablen)
   ----------------------------------------------------------------- */
:root {
  /* Anthrazit-Skala (Basis) */
  --anthracite-900: #191b1c;
  --anthracite-800: #202324;
  --anthracite-700: #2a2d2e;
  --anthracite-600: #363a3b;
  --charcoal:       #424440;   /* Logo-Anthrazit */

  /* Papierweiß */
  --paper:          #f4f2ea;
  --paper-2:        #e9e6db;
  --paper-line:     #d8d4c6;

  /* Hauptfarbe = originales CI-Orange (früher Werkstattblau).
     Variablennamen bleiben --blue-* zwecks Kompatibilität, führen
     aber jetzt Orangetöne. */
  --blue-700:       #b04600;   /* dunkles Orange (Tiefe/aktiv) */
  --blue-600:       #fc6500;   /* CI-Orange (Hauptfarbe) */
  --blue-500:       #ff7d24;   /* helleres Orange (Hover) */
  --blue-300:       #ffab6b;   /* helles Orange (auf Dunkel) */
  --blue-tint:      #fdeadc;   /* sehr helle Orange-Tönung */

  /* Orange (nur Stempel / Warnhinweis, aus dem Logo #FC6500) */
  --amber:          #fc6500;
  --amber-ink:      #c94f00;

  /* Funktionsfarben */
  --ok:             #2f8f5b;
  --err:            #c0392b;

  /* Text */
  --ink:            #22262a;
  --ink-soft:       #565c62;
  --ink-invert:     #eef0ea;
  --ink-invert-soft:#9aa1a4;

  /* Struktur */
  --line-strong:    rgba(20,24,28,.16);
  --line-invert:    rgba(255,255,255,.12);

  /* Durchgängig Avenir: Überschriften nutzen die fette Heavy-Schnittstärke
     (über font-weight), Fließtext die Book-Stärke. */
  --font-display: "Avenir", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Avenir", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "Avenir", system-ui, -apple-system, sans-serif;

  /* Maße */
  --wrap:     1160px;
  --gutter:   clamp(20px, 5vw, 56px);
  --radius:   4px;
  --radius-lg: 14px;
  --header-h: 72px;    /* einzeilige dunkle Kopfzeile */

  --shadow-sm: 0 1px 2px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(15,25,35,.14);
}

/* -----------------------------------------------------------------
   1 · Reset / Grundlagen
   ----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Sektionen bündig unter dem Sticky-Header (leichte Überlappung),
     damit beim Ankersprung kein Streifen der vorherigen Sektion bleibt. */
  scroll-padding-top: calc(var(--header-h) - 2px);
  -webkit-text-size-adjust: 100%;
  /* Basis für alle rem-Größen – global eine Stufe größer (war 16px) */
  font-size: 17px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Programmatisch angesprungene Sektionen (Skript setzt tabindex="-1" und
   focus() nach Menüklick) NICHT mit dem blauen Browser-Fokusrahmen umranden.
   Tastatur-Fokus auf echten Bedienelementen bleibt davon unberührt. */
[tabindex="-1"]:focus,
[tabindex="-1"]:focus-visible { outline: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0;
  text-transform: none;   /* gemischte Schreibweise – kein Uppercase-Look */
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Sichtbar nur für Screenreader */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* -----------------------------------------------------------------
   2 · Buttons
   ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1;
  padding: .9em 1.6em;
  border: 1.5px solid transparent;
  border-radius: 999px;              /* Pill als Standard */
  cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, box-shadow .15s ease, border-color .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { transition: transform .15s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(252,101,0,.55);
}
.btn-primary:hover { background: var(--blue-500); }
.btn-primary:active { box-shadow: 0 6px 16px -10px rgba(252,101,0,.55); }

/* -----------------------------------------------------------------
   3 · Kopfbereich – reduziert & hell (einzeilig, sticky)
      Heller Grund, damit das originale Logo klar erkennbar ist.
   ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(252,251,248,.92), rgba(244,242,234,.88));
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid rgba(20,24,28,.08);
  transition: box-shadow .3s ease, border-color .3s ease;
}
/* dezente Elevation, sobald gescrollt wird */
.site-header.is-scrolled {
  border-bottom-color: transparent;
  box-shadow: 0 10px 30px -14px rgba(20,24,28,.28);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  height: var(--header-h);
}
.brand { flex-shrink: 0; display: inline-flex; align-items: center; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 33px; width: auto; display: block; }

/* -----------------------------------------------------------------
   Vertrauens-Element (Google-Bewertung) – schiebt die rechte Gruppe nach rechts
   ----------------------------------------------------------------- */
.header-rating {
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  flex-shrink: 0;
}
.header-rating:hover { text-decoration: none; }
.header-stars { width: 78px; height: 15px; display: block; fill: var(--amber); }
.header-rating-text {
  font-size: .78rem;
  color: var(--ink-soft);
  letter-spacing: .01em;
  white-space: nowrap;
}
.header-rating-text strong { color: var(--ink); font-weight: 800; }
.header-rating:hover .header-rating-text strong { color: var(--blue-700); }

/* feiner vertikaler Trenner */
.header-div {
  width: 1px;
  height: 30px;
  background: rgba(20,24,28,.14);
  flex-shrink: 0;
}

/* -----------------------------------------------------------------
   Hamburger-Dropdown im Glas-Look (öffnet rechts unter dem Hamburger)
   ----------------------------------------------------------------- */
.nav-overlay {
  position: fixed;
  top: calc(var(--header-h) + 10px);
  right: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
  z-index: 55;
  width: min(300px, calc(100vw - 2 * var(--gutter)));
  border-radius: 18px;
  background:
    radial-gradient(130% 80% at 100% 0%, rgba(252,101,0,.16), transparent 58%),
    rgba(20,22,26,.66);
  -webkit-backdrop-filter: blur(26px) saturate(140%);
  backdrop-filter: blur(26px) saturate(140%);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 30px 70px -22px rgba(0,0,0,.66),
    0 8px 20px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transform-origin: top right;
  transition: opacity .22s ease, transform .22s cubic-bezier(.2,.7,.2,1), visibility .22s ease;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; transform: none; }
.nav-overlay-inner { padding: 12px; position: relative; }
.nav-overlay-kicker {
  display: block;
  padding: 4px 12px 10px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.nav-overlay .nav-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-overlay .nav-list a {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  font-size: 1rem;
  line-height: 1.2;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 12px;
  transition: color .16s ease, background-color .16s ease;
}
.nav-overlay .nav-ic {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--blue-300);
  transition: background-color .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}
.nav-overlay .nav-ic svg { width: 18px; height: 18px; }
.nav-overlay .nav-label { flex: 1; }
.nav-overlay .nav-arrow {
  display: inline-flex;
  color: rgba(255,255,255,.35);
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity .16s ease, transform .16s ease, color .16s ease;
}
.nav-overlay .nav-arrow svg { width: 16px; height: 16px; }
.nav-overlay .nav-list a:hover,
.nav-overlay .nav-list a.is-active { color: #fff; background: rgba(255,255,255,.05); }
.nav-overlay .nav-list a:hover .nav-ic,
.nav-overlay .nav-list a.is-active .nav-ic {
  background: var(--blue-600);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(252,101,0,.7);
}
.nav-overlay .nav-list a:hover .nav-arrow,
.nav-overlay .nav-list a.is-active .nav-arrow { opacity: 1; transform: none; color: var(--blue-300); }

.nav-overlay-foot {
  margin: 10px 4px 2px;
  padding: 14px 8px 4px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.nav-drop-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 16px;
  border-radius: 999px;
  background: var(--amber);
  color: #fff;
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  box-shadow: 0 12px 26px -12px rgba(252,101,0,.75);
  transition: background-color .15s ease, transform .12s ease, box-shadow .15s ease;
}
.nav-drop-cta svg { width: 17px; height: 17px; }
.nav-drop-cta:hover { text-decoration: none; background: var(--blue-500); transform: translateY(-1px); box-shadow: 0 16px 30px -12px rgba(252,101,0,.85); }
.nav-overlay-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.12rem;
  color: #fff;
  text-decoration: none;
}
.nav-overlay-call svg { width: 17px; height: 17px; color: var(--blue-300); flex-shrink: 0; }
.nav-overlay-call:hover { text-decoration: none; color: var(--blue-300); }
.nav-overlay-call:hover svg { color: var(--blue-300); }
.nav-overlay-hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
  font-size: .78rem;
  color: var(--ink-invert-soft);
}
.nav-overlay-hours svg { width: 15px; height: 15px; flex-shrink: 0; opacity: .7; }

/* Edler gerahmter Telefon-Button mit orangefarbenem Icon-„Coin" */
.header-call {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 6px 18px 6px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .12s ease;
}
.header-call-ic {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  box-shadow: 0 6px 14px -5px rgba(252,101,0,.6);
}
.header-call-ic svg { display: block; }
.header-call-body { display: flex; flex-direction: column; gap: 1px; line-height: 1.1; }
.header-call-label {
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.header-call-num { font-size: 1.02rem; font-weight: 800; letter-spacing: .01em; }
.header-call:hover {
  text-decoration: none;
  border-color: rgba(252,101,0,.5);
  background: var(--blue-tint);
  box-shadow: 0 10px 26px -14px rgba(20,24,28,.4);
  transform: translateY(-1px);
}
.header-call:hover .header-call-num { color: var(--blue-700); }

/* Zurück-Link im Kopf der Rechts-Unterseiten (Impressum/Datenschutz) */
.header-back {
  flex-shrink: 0;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s ease, background-color .15s ease;
}
.header-back:hover { text-decoration: none; border-color: var(--blue-600); background: var(--blue-tint); }

/* Hamburger-Menü-Button (immer sichtbar) */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 0 12px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.nav-toggle:hover {
  border-color: rgba(252,101,0,.5);
  background: var(--blue-tint);
  box-shadow: 0 10px 26px -14px rgba(20,24,28,.4);
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -----------------------------------------------------------------
   4 · Startbereich (Hero) – reduziert & premium (dunkel, ein Akzent)
   ----------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: #0c0d0e;             /* tiefes Schwarz statt Anthrazit */
  color: var(--ink-invert);
  /* füllt das Fenster unter dem Sticky-Header komplett (+6px Puffer) */
  min-height: calc(100vh - var(--header-h) + 6px);
  min-height: calc(100dvh - var(--header-h) + 6px);
  display: flex;
  align-items: center;            /* zentriert – ruhige, edle Wirkung */
  padding: clamp(56px, 10vh, 120px) 0;
  isolation: isolate;
  /* Mausposition (per JS aktualisiert) – Startwert oben rechts */
  --mx: 82%;
  --my: 20%;
}

.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }

/* Autoteile-Grafik, volle Fensterbreite mit etwas Rand, leicht im Hintergrund */
.hero-parts {
  position: absolute; inset: 0;
  background: url("assets/autoteile.svg") center / 92% auto no-repeat;
  opacity: .15;
}
/* helle Kopie – nur rund um den Mauszeiger sichtbar (Spotlight/Aufleuchten) */
.hero-parts--lit {
  opacity: .6;
  -webkit-mask-image: radial-gradient(circle 300px at var(--mx) var(--my), #000 6%, transparent 68%);
          mask-image: radial-gradient(circle 300px at var(--mx) var(--my), #000 6%, transparent 68%);
}

/* Warmer oranger Lichtschein, folgt der Maus */
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle 720px at var(--mx) var(--my),
    rgba(252,101,0,.26), rgba(252,101,0,.08) 44%, transparent 70%);
  will-change: background;
}
/* sanfter Abschluss nach unten */
.hero-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.4));
}

.hero-inner { position: relative; max-width: 880px; }

/* feines Label mit Akzent-Strich (statt Pille) */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(22px, 3vw, 32px);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-invert-soft);
}
.hero-eyebrow .eb-rule {
  width: 34px; height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

/* große, ruhige Headline in gemischter Schreibweise (kein Uppercase) */
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: none;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  letter-spacing: -.03em;
  line-height: 1.02;
  overflow-wrap: break-word;
  margin: 0 0 clamp(22px, 3vw, 30px);
}
.hero-title .hl { color: var(--amber); }   /* nur Farbe, keine Unterstreichung */

.hero-lead {
  max-width: 54ch;
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.65;
  color: #b9bfbe;
  margin: 0 0 clamp(30px, 4vw, 44px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(30px, 4vw, 46px);
}

/* dezente Vertrauenszeile (statt Bewertungs-Kachel) */
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 16px;
  font-size: .93rem;
  color: var(--ink-invert-soft);
}
.trust-stars { color: #ffb703; letter-spacing: 2px; font-size: 1rem; }
.hero-trust strong { color: #fff; font-weight: 700; }
.trust-sep { width: 1px; height: 15px; background: var(--line-invert); }

/* Pill-Buttons (Referenz-Stil) */
.btn-pill {
  border-radius: 999px;
  padding: .95em 1.7em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: none;
  letter-spacing: 0;
}
.btn-pill.btn-primary {
  box-shadow: 0 12px 30px -10px rgba(252,101,0,.55);
}
.btn-pill.btn-primary:active { box-shadow: 0 6px 16px -8px rgba(252,101,0,.55); }
.btn-line {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.btn-line:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
.btn-line svg { color: var(--amber); }

/* Outline-Button (z.B. Telefon im Hero) */
.btn-outline {
  background: rgba(255,255,255,.05);
  color: #fff;
  border-color: rgba(255,255,255,.38);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.btn-outline svg { color: var(--amber); }

/* Schwebende Schnell-Kontakt-Buttons */
.floating-contact {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 55;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fc-btn {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform .15s ease, background-color .15s ease;
}
.fc-btn:hover { transform: translateY(-3px) scale(1.05); text-decoration: none; }
.fc-phone { background: var(--blue-600); }
.fc-phone:hover { background: var(--blue-500); }
.fc-mail { background: var(--charcoal); }
.fc-mail:hover { background: var(--anthracite-700); }
@media (max-width: 560px) {
  .floating-contact { right: 12px; bottom: 12px; gap: 10px; }
  .fc-btn { width: 48px; height: 48px; }
}

/* -----------------------------------------------------------------
   5 · Abschnitts-Grundlagen & Überschriften
   ----------------------------------------------------------------- */
.section {
  padding: clamp(60px, 9vw, 110px) 0;
  /* Jeder Abschnitt füllt mindestens das sichtbare Fenster unter dem
     Sticky-Header – so ist beim Anspringen der nächste Bereich nicht
     schon sichtbar. Inhalt vertikal zentriert; „safe“ verhindert das
     Abschneiden langer Abschnitte (dann oben ausgerichtet). */
  min-height: calc(100vh - var(--header-h) + 6px);
  min-height: calc(100dvh - var(--header-h) + 6px);
  display: flex;
  flex-direction: column;
  justify-content: safe center;
}

.section-head { max-width: 760px; margin-bottom: clamp(38px, 5vw, 60px); }
/* Sektions-Label mit Akzent-Strich (wie der Hero-Eyebrow) */
.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.section-kicker::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}
.section-title {
  text-transform: none;                 /* gemischte Schreibweise */
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.1;
  overflow-wrap: break-word;
  margin-bottom: 18px;
}
.section-intro { color: var(--ink-soft); font-size: 1.1rem; line-height: 1.6; margin: 0; }

.section-head--onDark .section-title { color: #fff; }
.section-head--onDark .section-intro { color: #b9bfbe; }
.section-head--onDark .section-kicker { color: var(--ink-invert-soft); }

/* -----------------------------------------------------------------
   5.1 · Leistungen
   ----------------------------------------------------------------- */
.section-leistungen { background: var(--paper); }

/* Foto-Karten-Grid (ENVER-Stil) */
.services-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 760px) { .services-grid { grid-template-columns: 1fr; } }

.svc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Kleiner, feiner Icon-Kopf (kein großes Panel/weißer Kreis) */
.svc-icon-panel {
  padding: 28px 26px 0;
}
.svc-ic {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-tint);      /* dezente Orange-Tönung */
  color: var(--ink);                 /* Icon dunkel, Akzente bleiben orange */
}
.svc-ic svg { width: 30px; height: 30px; display: block; }

.svc-body { display: flex; flex-direction: column; flex: 1; padding: 18px 26px 28px; }
.svc-name { font-size: 1.45rem; color: var(--ink); margin-bottom: 8px; }
.svc-desc { color: var(--ink-soft); font-size: .98rem; line-height: 1.55; margin: 0 0 18px; }

.svc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.svc-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: .96rem;
}
.svc-list li::before {
  content: "";
  position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-tint);
}
.svc-list li::after {
  content: "";
  position: absolute; left: 7px; top: 5px;
  width: 4px; height: 8px;
  border: solid var(--blue-600);
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}
/* „Weitere Leistungen“-Band unter dem Karten-Grid */
.svc-more {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px 28px;
  padding: 24px clamp(22px, 4vw, 36px);
  background: var(--anthracite-800);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px var(--anthracite-700);
}
.svc-more-title { font-size: 1.5rem; color: #fff; margin-bottom: 4px; }
.svc-more-text p { margin: 0; color: #c3c9c8; font-size: .98rem; }
.svc-more .btn { flex-shrink: 0; }
@media (max-width: 560px) {
  .svc-more { flex-direction: column; align-items: flex-start; }
  .svc-more .btn { width: 100%; justify-content: center; }
}

/* -----------------------------------------------------------------
   5.2 · Festpreise (Prüfprotokoll)
   ----------------------------------------------------------------- */
.section-festpreise {
  background:
    linear-gradient(180deg, var(--anthracite-900), var(--anthracite-800));
  color: var(--ink-invert);
  position: relative;
}
/* Hochwertige Preis-Karte auf dunklem Grund – volle Inhaltsbreite */
.protocol {
  background: #fff;
  color: var(--ink);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.7), 0 2px 8px rgba(0,0,0,.22);
  overflow: hidden;
}
.protocol-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 30px;
  background: var(--paper);
  border-bottom: 1px solid var(--paper-line);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.protocol-list { list-style: none; margin: 0; padding: 6px 0; }
.protocol-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 30px;
  transition: background-color .15s ease;
}
.protocol-row + .protocol-row { border-top: 1px solid var(--paper-line); }
.protocol-row:hover { background: #faf9f3; }
.check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue-tint);
  position: relative;
}
.check::after {
  content: "";
  position: absolute;
  left: 9px; top: 6px;
  width: 6px; height: 11px;
  border: solid var(--blue-700);
  border-width: 0 2.4px 2.4px 0;
  transform: rotate(42deg);
}
.protocol-item { display: flex; flex-direction: column; line-height: 1.3; flex: 1; min-width: 0; }
.protocol-item-name { font-weight: 700; font-size: 1.05rem; }
.protocol-item-note { font-size: .82rem; color: var(--ink-soft); margin-top: 1px; }
.leader { display: none; }
.price {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue-700);
  white-space: nowrap;
  letter-spacing: -.01em;
}
.protocol-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 30px;
  border-top: 1px solid var(--paper-line);
  background: var(--paper);
}
.protocol-note { margin: 0; font-size: .8rem; color: var(--ink-soft); max-width: 48ch; line-height: 1.5; }
.protocol-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .82rem;
  color: var(--blue-700);
  background: var(--blue-tint);
  border: 1px solid rgba(252,101,0,.3);
  border-radius: 999px;
  padding: 9px 15px;
  white-space: nowrap;
}
.protocol-badge svg { width: 16px; height: 16px; }

/* -----------------------------------------------------------------
   5.3 · Über die Werkstatt
   ----------------------------------------------------------------- */
.section-ueber { background: var(--paper); }
.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.ueber-text .section-kicker { margin-top: 0; }
.ueber-text p { color: var(--ink-soft); }
.ueber-facts { list-style: none; margin: 22px 0 28px; padding: 0; }
.ueber-facts li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--ink);
}
.ueber-facts li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px;
  background: var(--blue-600);
  border-radius: 3px;
  clip-path: polygon(42% 68%, 82% 22%, 92% 32%, 44% 88%, 12% 54%, 22% 44%);
}

/* Platzhalter-Bildflächen mit Rasterlinien-Muster */
.ueber-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.ph {
  margin: 0;
  position: relative;
  border-radius: 14px;
  border: 1px solid var(--paper-line);
  background: linear-gradient(150deg, #f3f0e7, #e8e4d6);
  min-height: 158px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.ph-ic { width: 38px; height: 38px; color: rgba(176,70,0,.45); }
.ph--large { grid-column: 1 / -1; min-height: 240px; }
.ph--large .ph-ic { width: 50px; height: 50px; }
.ph-tag {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: rgba(255,255,255,.75);
  border: 1px solid var(--paper-line);
  border-radius: 999px;
  padding: 5px 12px;
}

/* -----------------------------------------------------------------
   Blocksatz für längere Fließtexte (mit Silbentrennung fürs Deutsche,
   damit keine großen Wortlücken entstehen)
   ----------------------------------------------------------------- */
.hero-lead,
.section-intro,
.ueber-text p,
.review-text,
.faq-a p,
.protocol-note,
.legal-lead,
.legal-block p {
  text-align: justify;
  text-justify: inter-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/* -----------------------------------------------------------------
   5.4 · Bewertungen
   ----------------------------------------------------------------- */
.section-bewertungen { background: #0f1011; color: var(--ink-invert); }
.reviews-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  padding: 26px 26px 28px;
}
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blue-600);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.review-id { display: flex; flex-direction: column; line-height: 1.25; margin-right: auto; }
.review-name { font-weight: 700; color: #fff; }
.review-date { font-size: .8rem; color: var(--ink-invert-soft); }
.review-g {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  font-family: var(--font-display);
  font-weight: 700;
  color: #7ba7f5;
  font-size: 1rem;
}
.review-stars { color: #ffb703; letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 12px; }
.review-text { margin: 0; color: #c6ccca; font-size: 1rem; line-height: 1.6; }
.reviews-cta { margin: 30px 0 0; font-size: .95rem; }
.reviews-cta a { color: var(--blue-300); }

/* -----------------------------------------------------------------
   5.4 · FAQ (Akkordeon via <details>)
   ----------------------------------------------------------------- */
.section-faq { background: var(--paper); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq-item[open] { border-color: rgba(252,101,0,.35); box-shadow: 0 10px 30px -16px rgba(20,24,28,.35); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  list-style: none;
  transition: color .15s ease;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--blue-700); }
.faq-item[open] .faq-q { color: var(--blue-700); }
.faq-plus { position: relative; flex-shrink: 0; width: 22px; height: 22px; }
.faq-plus::before, .faq-plus::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: var(--blue-600);
  border-radius: 2px;
  transition: transform .25s ease;
}
.faq-plus::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-plus::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-plus::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { padding: 0 24px 22px; }
.faq-a p { margin: 0; color: var(--ink-soft); line-height: 1.6; }
.faq-a a { color: var(--blue-700); font-weight: 600; }

/* -----------------------------------------------------------------
   5.5 · Kontakt / Formular
   ----------------------------------------------------------------- */
.section-kontakt {
  background: linear-gradient(180deg, #ffffff, var(--paper));
  color: var(--ink);
}
.section-kontakt .section-title { color: var(--ink); }
.section-kontakt .section-intro { color: var(--ink-soft); }
.section-kontakt .section-kicker { color: var(--ink-soft); }
.kontakt-grid {
  display: grid;
  /* minmax(0, …) verhindert, dass Formular-/Info-Inhalte den Track
     über die Viewport-Breite hinaus aufblähen (Mobile-Overflow-Fix) */
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

/* Honeypot verstecken (nicht display:none, damit Bots es "sehen") */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.termin-form { margin-top: 4px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.field .req { color: var(--amber); }
.field input:not([type="file"]),
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--paper-line);
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23fc6500' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field input::placeholder,
.field textarea::placeholder { color: #a7aca9; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(252,101,0,.13);
}
.field textarea { resize: vertical; min-height: 96px; }
.field-hint { margin-top: 6px; font-size: .76rem; color: var(--ink-soft); font-family: var(--font-mono); }

/* Fahrzeug-Feldgruppe */
.field-group {
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: 18px 20px 4px;
  margin: 0 0 18px;
  background: rgba(255,255,255,.4);
}
.field-group-title {
  padding: 0 6px;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}
.field-group-opt { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--ink-soft); }
.field-opt { color: var(--ink-soft); font-weight: 400; text-transform: none; letter-spacing: 0; font-size: .82em; }

/* Datei-Upload (Foto) */
.file-input {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.file-drop {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px dashed var(--paper-line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.file-drop:hover { border-color: var(--blue-600); background: var(--blue-tint); color: var(--ink); }
.file-drop svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--blue-600); }
.file-drop-text { font-size: .95rem; }
.file-drop-sub { color: var(--ink-soft); font-size: .85em; }
.file-input:focus-visible + .file-drop,
.file-drop:focus-within { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(252,101,0,.13); }
.file-drop.has-file { border-style: solid; border-color: var(--ok); background: rgba(47,143,91,.07); color: var(--ink); }
.file-drop.has-file svg { color: var(--ok); }

/* Fehler-/Erfolgsmarkierung einzelner Felder */
.field.has-error input,
.field.has-error textarea,
.field.has-error select,
.field.has-error .cselect-trigger { border-color: var(--err); background: rgba(192,57,43,.05); }
.field-error { margin-top: 6px; font-size: .78rem; color: var(--err); }

/* -----------------------------------------------------------------
   Eigene Dropdowns für Datum & Uhrzeit (native Popups sind nicht
   gestaltbar – daher als seitenkonforme Custom-Controls nachgebaut)
   ----------------------------------------------------------------- */
.field-label {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.cselect { position: relative; }
.cselect-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.2;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--paper-line);
  border-radius: var(--radius);
  padding: 12px 14px;
  cursor: pointer;
  text-align: left;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cselect-trigger:focus-visible { outline: none; border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(252,101,0,.13); }
.cselect.is-open .cselect-trigger { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(252,101,0,.13); }
.cselect-lead { width: 18px; height: 18px; flex-shrink: 0; color: var(--blue-600); }
.cselect-value { flex: 1; }
.cselect-value.is-placeholder { color: #a7aca9; }
.cselect-caret { width: 16px; height: 16px; flex-shrink: 0; color: var(--ink-soft); transition: transform .2s ease; }
.cselect.is-open .cselect-caret { transform: rotate(180deg); }

/* Popup-Flächen (Liste & Kalender) */
.cselect-list,
.cdate-pop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  z-index: 30;
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 8px;
}
.cselect-list[hidden],
.cdate-pop[hidden] { display: none; }

/* Uhrzeit-Liste */
.cselect-list {
  list-style: none;
  margin: 0;
  max-height: 264px;
  overflow-y: auto;
  /* Mausrad-Scroll bleibt in der Liste, die Seite scrollt nicht mit */
  overscroll-behavior: contain;
}
.cselect-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 9px;
  cursor: pointer;
  font-size: .98rem;
  color: var(--ink);
  transition: background-color .12s ease, color .12s ease;
}
.cselect-option:hover { background: var(--blue-tint); color: var(--blue-700); }
.cselect-option.is-selected { background: var(--amber); color: #fff; font-weight: 700; }
.cselect-check { width: 16px; height: 16px; flex-shrink: 0; opacity: 0; }
.cselect-option.is-selected .cselect-check { opacity: 1; }

/* Kalender – exakt so breit wie das Datumsfeld (nutzt left:0/right:0 von oben) */
.cal-head { display: flex; align-items: center; justify-content: space-between; padding: 2px 2px 10px; }
.cal-title { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--ink); }
.cal-nav {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 9px;
  background: transparent;
  border: 1px solid var(--paper-line);
  color: var(--ink);
  cursor: pointer;
  transition: background-color .12s ease, border-color .12s ease, color .12s ease;
}
.cal-nav:hover:not(:disabled) { border-color: var(--blue-600); color: var(--blue-700); background: var(--blue-tint); }
.cal-nav:disabled { opacity: .35; cursor: not-allowed; }
.cal-nav svg { width: 18px; height: 18px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.cal-wd { text-align: center; font-size: .7rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--ink-soft); padding: 2px 0 6px; }
.cal-day, .cal-empty { aspect-ratio: 1; display: grid; place-items: center; font-size: .9rem; border-radius: 9px; }
.cal-day {
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background-color .12s ease, color .12s ease;
}
.cal-day:not(.is-disabled):hover { background: var(--blue-tint); color: var(--blue-700); }
.cal-day.is-today { box-shadow: inset 0 0 0 1.5px var(--blue-300); }
.cal-day.is-selected { background: var(--amber); color: #fff; font-weight: 800; box-shadow: none; }
.cal-day.is-disabled { color: #c7ccc9; cursor: default; }

.field-consent .checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: .88rem;
  color: var(--ink-soft);
}
.field-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue-600); }
.field-consent a { color: var(--blue-700); text-decoration: underline; }

.btn-submit { margin-top: 6px; width: 100%; justify-content: center; }
.btn-submit[disabled] { opacity: .6; cursor: progress; }
.form-reassure {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 14px 2px 0;
  font-size: .84rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.form-reassure svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--ok); }

.form-status {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: .95rem;
  border-left: 4px solid;
}
.form-status.is-ok { background: rgba(47,143,91,.1); border-color: var(--ok); color: #1e6b40; }
.form-status.is-err { background: rgba(192,57,43,.08); border-color: var(--err); color: #a3271c; }

/* Info-Spalte */
.kontakt-infocol { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 16px;
  padding: 26px 26px;
  box-shadow: 0 1px 2px rgba(20,24,28,.04), 0 18px 40px -28px rgba(20,24,28,.5);
}

/* Karten-Kopf: Icon + Titel (+ optionaler Status) */
.info-head { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; row-gap: 10px; margin-bottom: 18px; }
.info-ic {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  color: var(--blue-700);
  background: var(--blue-tint);
}
.info-ic svg { width: 20px; height: 20px; }
.info-title { font-size: 1.3rem; color: var(--ink); margin: 0; }

/* Live-Status „geöffnet / Pause / geschlossen" */
.open-status {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: .76rem; font-weight: 700; letter-spacing: .01em;
  white-space: nowrap;
}
.open-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 3px rgba(255,255,255,.35); }
.open-status.is-open   { color: #1e7d47; background: rgba(47,143,91,.13); }
.open-status.is-pause  { color: var(--amber-ink); background: rgba(252,101,0,.13); }
.open-status.is-closed { color: var(--ink-soft); background: rgba(20,24,28,.07); }

/* Öffnungszeiten-Tabelle */
.hours { width: 100%; border-collapse: collapse; font-size: .95rem; }
.hours th, .hours td { text-align: left; padding: 11px 10px; vertical-align: middle; }
.hours th { color: var(--ink-soft); font-weight: 700; width: 6em; font-size: .9rem; }
.hours td { color: var(--ink); }
.hours .mono { font-family: var(--font-mono); font-size: .92rem; letter-spacing: -.01em; }
.hours-sep { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--paper-line); margin: 0 10px; vertical-align: middle; }
.hours tr:not(:last-child) th, .hours tr:not(:last-child) td { border-bottom: 1px solid var(--paper-line); }
.hours .closed td, .hours .closed th { color: #a7aca9; }
/* heutiger Tag: nur der Wochentag dezent orange, kein Kasten */
.hours tr.is-today th { color: var(--amber-ink); }

/* Hinweis-Liste unter den Zeiten */
.info-notes { list-style: none; margin: 18px 0 0; padding: 16px 0 0; border-top: 1px solid var(--paper-line); display: flex; flex-direction: column; gap: 9px; }
.info-notes li { position: relative; padding-left: 20px; font-size: .84rem; color: var(--ink-soft); line-height: 1.45; }
.info-notes li::before { content: ""; position: absolute; left: 2px; top: .5em; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }
.info-notes .mono { font-family: var(--font-mono); color: var(--ink); }

.contact-lines { font-style: normal; display: flex; flex-direction: column; gap: 6px; }
.contact-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px;
  border-radius: 6px;
  color: var(--ink);
  text-decoration: none;
  transition: background-color .15s ease;
  line-height: 1.4;
}
.contact-line:hover { background: rgba(20,24,28,.04); text-decoration: none; }
.contact-line .ci {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  color: var(--blue-700);
  background: var(--blue-tint);
}
.contact-line .ci svg { width: 20px; height: 20px; }
.contact-line strong { color: var(--ink); font-size: 1.1rem; }

/* Google-Maps Consent / Karte */
.map-consent {
  position: relative;
  min-height: 220px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--paper-line);
  background-color: var(--paper-2);
  background-image:
    linear-gradient(rgba(20,24,28,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,24,28,.05) 1px, transparent 1px);
  background-size: 26px 26px, 26px 26px;
  display: grid; place-items: center;
  text-align: center;
}
.map-consent-inner { padding: 24px; }
.map-consent-inner p { margin: 0 0 16px; color: var(--ink-soft); font-size: .9rem; }
.map-consent iframe { display: block; width: 100%; height: 300px; border: 0; }
.map-consent.is-loaded { background: none; min-height: 0; display: block; }
.btn-map { font-size: 1rem; padding: .7em 1.2em; }

/* -----------------------------------------------------------------
   5.6 · Fußbereich
   ----------------------------------------------------------------- */
.site-footer { background: var(--anthracite-900); color: var(--ink-invert-soft); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 34px 40px;
  padding-top: 58px;
  padding-bottom: 44px;
  align-items: start;
}
.footer-logo { width: min(280px, 100%); height: auto; margin-bottom: 18px; }
.footer-h {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 14px;
}
.footer-addr { font-style: normal; margin: 0 0 12px; font-size: .95rem; line-height: 1.65; }
.footer-gf { margin: 0; font-size: .85rem; color: var(--ink-invert-soft); }
.footer-phone { display: block; color: var(--ink-invert-soft); font-weight: 400; font-size: .95rem; text-decoration: none; margin-bottom: 4px; }
.footer-phone:hover { color: #fff; text-decoration: underline; }
.footer-mail { display: inline-block; color: var(--ink-invert-soft); text-decoration: none; word-break: break-word; }
.footer-mail:hover { color: #fff; text-decoration: underline; }
.footer-hours { margin: 0 0 8px; font-size: .92rem; line-height: 1.7; }
.footer-hours-note { margin: 0; font-size: .82rem; color: var(--blue-300); }
.footer-nav { display: flex; flex-direction: column; gap: 9px; }
.footer-nav a {
  color: var(--ink-invert-soft);
  font-size: .9rem;
  text-decoration: none;
}
.footer-nav a:hover { color: #fff; }
@media (max-width: 860px) {
  /* Marke oben (volle Breite), darunter Kontakt | Öffnungszeiten
     zweispaltig, Seiten unten (volle Breite) */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) { .footer-inner { column-gap: 20px; row-gap: 26px; } }
.footer-baseline {
  border-top: 1px solid var(--line-invert);
  box-shadow: inset 0 3px 0 rgba(252,101,0,.5);
}
.footer-baseline .wrap {
  padding-top: 18px; padding-bottom: 18px;
  font-family: var(--font-mono);
  font-size: .78rem;
}
.footer-baseline-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-tag {
  margin: 12px 0 0;
  text-align: center;
  color: var(--ink-invert-soft);
}
.mono { font-family: var(--font-mono); }

/* -----------------------------------------------------------------
   6 · Responsive
   ----------------------------------------------------------------- */
@media (max-width: 1080px) {
  /* Bewertungs-Element ausblenden, damit die Leiste luftig bleibt */
  .header-rating, .header-div { display: none; }
  .header-call { margin-left: auto; }
}

@media (max-width: 960px) {
  .ueber-grid { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: minmax(0, 1fr); }
  /* Telefon-Button kompakter: nur Nummer, kein Kleintext */
  .header-call-label { display: none; }
  .header-call { padding: 6px 16px 6px 6px; }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .brand-logo { height: 31px; max-width: 52vw; object-fit: contain; object-position: left center; }
  /* Telefon als runder Icon-Coin – gleiche Größe wie der Hamburger (spart Platz) */
  .header-call-body { display: none; }
  .header-call { width: 46px; height: 46px; padding: 0; border: 0; background: transparent; box-shadow: none; justify-content: center; }
  .header-call-ic { width: 46px; height: 46px; box-shadow: 0 8px 18px -8px rgba(252,101,0,.7); }
  .header-call:hover { background: transparent; box-shadow: none; transform: none; }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .brand-logo { height: 26px; max-width: 56vw; }
  /* Telefon-Coin (46px) kommt aus der ≤860-Regel */
  .header-inner { gap: 12px; }
  /* Öffnungszeiten-Status unter die Überschrift (fällt sonst aus dem Rahmen) */
  .open-status { margin-left: 50px; }
  .hero-rating { width: 100%; }
  /* Hero-Buttons gestapelt und gleich groß (volle Breite) */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  /* „Termin vereinbaren" in Über-uns ebenfalls volle Breite */
  .ueber-text .btn { width: 100%; justify-content: center; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .protocol-head, .protocol-row, .protocol-foot { padding-left: 18px; padding-right: 18px; }
  .protocol-row { gap: 12px; }
  .protocol-foot { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* -----------------------------------------------------------------
   7 · Rechts-Unterseiten (Impressum / Datenschutz)
   ----------------------------------------------------------------- */
.legal { padding: clamp(40px, 7vw, 72px) 0 clamp(50px, 8vw, 90px); }
.legal-wrap { max-width: 800px; }
.legal-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--ink);
  margin: 14px 0 18px;
}
.legal-lead { color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 34px; }
.legal-block { margin-bottom: 30px; }
.legal-block h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.35rem;
  color: var(--blue-700);
  margin-bottom: 8px;
  letter-spacing: .01em;
}
.legal-block p { margin: 0 0 8px; color: var(--ink); }
.legal-block a { color: var(--blue-700); }
.legal-back {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--paper-line);
  font-family: var(--font-mono);
  font-size: .9rem;
}
.footer-note a { color: inherit; text-decoration: none; }
.footer-note a:hover { color: #fff; text-decoration: underline; }

/* -----------------------------------------------------------------
   8 · Scroll-Einblendeffekte (Reveal beim Scrollen)
   Ausgangszustand nur bei aktivem JS (html.js) -> ohne JS bleibt alles
   sichtbar (kein FOUC). Das Skript vergibt .is-visible beim Eintreten
   ins Sichtfeld. Bei prefers-reduced-motion komplett aus.
   ----------------------------------------------------------------- */
.js .hero-inner > *,
.js .section-head,
.js .svc-card,
.js .svc-more,
.js .protocol,
.js .ueber-text,
.js .ueber-media,
.js .review-card,
.js .reviews-cta,
.js .termin-form,
.js .info-card,
.js .map-consent {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1),
              transform .7s cubic-bezier(.22,.61,.36,1);
}
.js .is-visible { opacity: 1 !important; transform: none !important; }

/* Sanfter, gestaffelter Hero-Einstieg beim Laden */
.js .hero-inner > *:nth-child(1) { transition-delay: .05s; }
.js .hero-inner > *:nth-child(2) { transition-delay: .11s; }
.js .hero-inner > *:nth-child(3) { transition-delay: .17s; }
.js .hero-inner > *:nth-child(4) { transition-delay: .23s; }
.js .hero-inner > *:nth-child(5) { transition-delay: .29s; }
.js .hero-inner > *:nth-child(6) { transition-delay: .35s; }
.js .hero-inner > *:nth-child(7) { transition-delay: .41s; }

@media (prefers-reduced-motion: reduce) {
  .js .hero-inner > *,
  .js .section-head,
  .js .svc-card,
  .js .svc-more,
  .js .protocol,
  .js .ueber-text,
  .js .ueber-media,
  .js .review-card,
  .js .reviews-cta,
  .js .termin-form,
  .js .info-card,
  .js .map-consent {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
