/* ==========================================================================
   Auto-Lack-Doktor Koitzsch — style.css
   ========================================================================== */

/* --- Fonts (selbst gehostet, DSGVO-konform) --------------------------------- */
@font-face {
  font-family: "Basier Circle";
  src: url("../assets/fonts/basiercircle-regular-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Basier Circle";
  src: url("../assets/fonts/basiercircle-regularitalic-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Basier Circle";
  src: url("../assets/fonts/basiercircle-medium-webfont.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Basier Circle";
  src: url("../assets/fonts/basiercircle-semibold-webfont.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Basier Circle";
  src: url("../assets/fonts/basiercircle-bold-webfont.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../assets/fonts/barlow-condensed-v13-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../assets/fonts/barlow-condensed-v13-latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../assets/fonts/barlow-condensed-v13-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../assets/fonts/barlow-condensed-v13-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../assets/fonts/barlow-condensed-v13-latin-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* --- Design Tokens --------------------------------------------------------- */
:root {
  /* Farben – aus Logo abgeleitet */
  --ink:            #0e3f56;
  --ink-deep:       #0a2f42;
  --ink-soft:       #1c5876;
  --signal:         #ff2d16;
  --signal-hover:   #d61c08;
  --whatsapp:       #07ed31;
  --whatsapp-hover: #06c02a;

  --paper:          #ffffff;
  --paper-alt:      #ffffff;   /* beige entfernt – alle Bereiche weiß */
  --paper-warm:     #f5f6f7;   /* dezentes Neutralgrau statt Warm-Beige */
  --line:           #dcd7cc;
  --text:           #1a1a1a;
  --text-mute:      #5a5a5a;
  --text-invert:    #ffffff;

  /* Typo */
  --font-display: "Barlow Condensed", "Barlow", system-ui, sans-serif;
  --font-body:    "Basier Circle", system-ui, sans-serif;

  /* Fluide Type-Skala */
  --fs-xs:   clamp(0.8125rem, 0.78rem + 0.15vw, 0.9rem);
  --fs-sm:   clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  --fs-base: clamp(1.125rem, 1.08rem + 0.2vw, 1.225rem);
  --fs-md:   clamp(1.25rem, 1.18rem + 0.4vw, 1.475rem);
  --fs-lg:   clamp(1.45rem, 1.3rem + 0.75vw, 1.85rem);
  --fs-xl:   clamp(1.95rem, 1.6rem + 1.75vw, 2.85rem);
  --fs-xxl:  clamp(2.5rem, 1.9rem + 3vw, 4.1rem);
  --fs-huge: clamp(3.1rem, 2.1rem + 5vw, 5.6rem);

  /* Abstände */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Layout */
  --wrap: 78rem;
  --wrap-narrow: 56rem;
  --radius-sm: 0;
  --radius:    0;

  /* Effekte */
  --shadow-sm: 0 1px 2px rgba(10,47,66,0.06), 0 2px 6px rgba(10,47,66,0.04);
  --shadow:    0 4px 12px rgba(10,47,66,0.08), 0 12px 32px rgba(10,47,66,0.06);
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Basics ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Kein overflow-x:hidden auf body — bricht position:sticky.
     Horizontal-Overflow wird von html { overflow-x: clip } gefangen. */
}

img, svg, video { display: block; max-width: 100%; height: auto; }

a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
a:hover { color: var(--signal); }

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 2px;
  border-radius: 2px;
}

/* --- Utilities ------------------------------------------------------------ */
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.wrap-narrow { max-width: var(--wrap-narrow); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: var(--text-invert);
  padding: 0.75rem 1.25rem;
  z-index: 999;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* --- Signature: "Abklebeband"-Eyebrow ------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: "";
  display: block;
  width: 2.2rem;
  height: 0.55rem;
  background: var(--signal);
  transform: skewX(-18deg);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05) inset;
}
.eyebrow--invert { color: rgba(255,255,255,0.85); }

/* --- Typography Klassen --------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--ink);
  text-transform: none;
}
h1 { font-size: var(--fs-xxl); line-height: 0.98; text-transform: uppercase; }
h2 { font-size: var(--fs-xl); line-height: 1.0; }
h3 { font-size: var(--fs-lg); }
h4 { font-size: var(--fs-md); }

.h-invert { color: var(--text-invert); }

p { color: var(--text); }
p.lead {
  font-size: var(--fs-md);
  color: var(--text-mute);
  line-height: 1.55;
  max-width: 42em;
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease),
              border-color 180ms var(--ease), transform 180ms var(--ease);
  white-space: nowrap;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
}
.btn svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }

.btn--primary { background: var(--signal); color: var(--text-invert); border-color: var(--signal); }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--signal-hover); border-color: var(--signal-hover); color: #fff; transform: translateY(-1px); }

.btn--whatsapp { background: var(--whatsapp); color: #fff; border-color: var(--whatsapp); }
.btn--whatsapp:hover, .btn--whatsapp:focus-visible { background: var(--whatsapp-hover); border-color: var(--whatsapp-hover); color: #fff; transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--ink); color: #fff; }

.btn--ghost-invert { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--ghost-invert:hover, .btn--ghost-invert:focus-visible { background: #fff; color: var(--ink); border-color: #fff; }

.btn--lg { padding: 1.15rem 1.9rem; font-size: var(--fs-sm); }

/* Mobile: Schriften und Buttons ~4px kleiner */
@media (max-width: 640px) {
  :root {
    --fs-xs:   0.7rem;      /* ~11px */
    --fs-sm:   0.875rem;    /* ~14px */
    --fs-base: 1rem;        /* ~16px */
    --fs-md:   1.1rem;      /* ~17.6px */
    --fs-lg:   1.3rem;      /* ~20.8px */
    --fs-xl:   1.7rem;      /* ~27px */
    --fs-xxl:  1.875rem;    /* ~30px (-6px auf Mobile) */
    --fs-huge: 2.85rem;     /* ~45px */
  }
  .btn      { padding: 0.7rem 1.25rem; }
  .btn--lg  { padding: 0.9rem 1.55rem; }
}

/* --- Utility Bar (Kontakt ganz oben) -------------------------------------- */
.utility {
  background: var(--ink-deep);
  color: var(--text-invert);
  font-size: var(--fs-xs);
}
.utility .wrap,
.site-header .wrap {
  max-width: none;
  padding-inline: clamp(1.25rem, 3vw, 3rem);
}
@media (max-width: 640px) {
  .site-header .wrap { padding-inline: 0.75rem; }
}
.utility__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-6);
  padding-block: 0.55rem;
}
.utility a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  transition: color 150ms var(--ease);
}
.utility a:hover { color: #fff; }
.utility svg { width: 0.95em; height: 0.95em; opacity: 0.75; }
.utility__hours {
  margin-left: auto;
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
@media (max-width: 40rem) {
  .utility__hours { margin-left: 0; }
}

/* --- Mobile Sticky-Aktionsleiste (Anrufen + WhatsApp) ------------------- */
.mobile-actions {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 0.5rem;
  gap: 0.5rem;
  box-shadow: 0 -4px 14px rgba(14, 63, 86, 0.06);
}
@media (max-width: 640px) {
  .mobile-actions { display: flex; }
  main, footer { padding-bottom: 4.5rem; }  /* Platz für Bar */
}
.mobile-actions a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 0.4rem;
  color: #fff;
}
.mobile-actions a svg { width: 1.05em; height: 1.05em; }
.mobile-actions__call     { background: var(--ink); }
.mobile-actions__whatsapp { background: var(--whatsapp); }

/* --- Site Header ---------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  transition: transform 0.3s ease;
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
/* Nie ausgeblendet, solange die Mobile-Nav offen ist –
   verhindert containing-block-Konflikt zwischen transform und position:fixed. */
body.nav-open .site-header {
  transform: none !important;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding-block: 0.85rem;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  z-index: 5;
}
.site-header__logo img {
  width: 180px;
  height: auto;
  background: #fff;
  padding: 14px 18px;
  box-sizing: content-box;
  margin-bottom: -55px;
  display: block;
}
.site-header__logo-text { display: none; }
.site-header__nav {
  margin-left: auto;
  display: flex;
  gap: var(--space-5);
}
.site-header__nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: var(--fs-base);
  padding: 0.35rem 0;
  position: relative;
}
.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--signal);
  transition: right 200ms var(--ease);
}
.site-header__nav a:hover::after,
.site-header__nav a:focus-visible::after { right: 0; }
.site-header__cta { display: inline-flex; }

/* --- Burger (nur mobile sichtbar) ---------------------------------------- */
.site-header__burger {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-left: 0.25rem;
  color: var(--ink);
  z-index: 60;
}
.site-header__burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
/* Burger → X wenn Nav offen; wechselt zu weiß über dem Overlay */
body.nav-open .site-header__burger { color: #fff; }
body.nav-open .site-header__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .site-header__burger span:nth-child(2) { opacity: 0; }
body.nav-open .site-header__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 62rem) {
  .site-header__burger { display: flex; }

  /* Logo auf Mobile kleiner mit weniger Overshoot */
  .site-header__logo img {
    width: 100px;
    padding: 10px 12px;
    margin-bottom: -30px;
  }

  /* CTA rechts vor dem Burger */
  .site-header__cta { margin-left: auto; }
  .site-header__cta .btn { padding: 0.7rem 1rem; font-size: 0.7rem; }

  .site-header__nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--ink-deep);
    padding: 5rem 2rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 280ms var(--ease);
    z-index: 55;
    overflow-y: auto;
  }
  .site-header__nav.is-open { transform: translateX(0); }

  .site-header__nav a {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 2rem + 1vw, 2.5rem);
    font-weight: 600;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .site-header__nav a::after { display: none; }
  .site-header__nav a:hover { color: var(--signal); }
  .site-header__nav a:focus,
  .site-header__nav a:focus-visible { outline: none; }
}

/* Scroll-Lock wenn Nav offen */
body.nav-open { overflow: hidden; }
@media (max-width: 30rem) {
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: var(--text-invert);
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
/* Signature: schräge Petrol-Fläche über dem Bild – "Lackierung" */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      var(--ink-deep) 0%,
      var(--ink-deep) 30%,
      rgba(10,47,66,0.85) 42%,
      rgba(10,47,66,0.15) 62%,
      rgba(10,47,66,0) 78%
    );
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(3rem, 8vw, 6rem);
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  max-width: 52rem; /* ~832px – großzügiger Textblock */
  margin: 0; /* links ausrichten, nicht zentrieren */
}
@media (min-width: 62rem) {
  .hero__inner {
    padding-inline: clamp(2rem, 4vw, 4rem);
    max-width: 56rem;
  }
}
.hero__eyebrow {
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-4);
}
.hero h1 {
  color: var(--text-invert);
  font-size: clamp(2rem, 1.2rem + 5vw, 6.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: var(--space-5);
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
@media (max-width: 640px) {
  .hero h1 { font-size: 2.75rem; line-height: 1; }
  .hero__eyebrow { font-size: 0.7rem; letter-spacing: 0.05em; line-height: 1.35; }
  .hero__inner { padding-inline: 1.1rem; max-width: 100%; }
  .hero__ctas { flex-direction: column; gap: 0.5rem; align-items: stretch; }
  .hero__ctas .btn {
    width: 100%;
    white-space: normal;        /* Text darf umbrechen statt zu überlaufen */
    text-align: center;
    padding: 0.85rem 0.9rem;
    line-height: 1.15;
  }
  .hero__trust { flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1rem; padding-top: 0.75rem; margin-top: 0.5rem; }
  .hero__trust-item { font-size: 0.75rem; gap: 0.35rem; }
  .hero__trust-item svg { width: 0.9rem; height: 0.9rem; }
  .hero__inner { padding-block: clamp(1.5rem, 5vw, 2.5rem); }
}
.hero h1 em {
  font-style: normal;
  color: #fff;
  background: transparent;
  padding: 0;
  display: inline;
  margin-inline: 0;
}
.hero h1 em > span { display: inline; }
.hero__lead {
  color: rgba(255,255,255,0.92);
  font-size: var(--fs-md);
  font-weight: 500;
  max-width: 36em;
  margin-bottom: var(--space-6);
  line-height: 1.5;
}
@media (max-width: 640px) {
  .hero__lead { font-size: var(--fs-sm); line-height: 1.45; }
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero__trust-item svg { width: 1.2rem; height: 1.2rem; color: var(--signal); flex-shrink: 0; }
.hero__trust-item strong { color: #fff; font-weight: 700; }

/* --- Sections ------------------------------------------------------------- */
.section {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.section--alt { background: var(--paper-alt); }
.section--dark { background: var(--ink); color: var(--text-invert); }
.section--dark h2, .section--dark h3 { color: var(--text-invert); }
.section--dark p { color: rgba(255,255,255,0.85); }
/* --flush: keine vertikale Innenluft, Layout randbündig */
.section--flush { padding-block: 0; }

/* --- Über uns – 2-spaltiges Layout mit Full-Bleed-Bild ------------------- */
.ueber {
  display: grid;
  grid-template-columns: 1fr;
}
.ueber__media {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
}
.ueber__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 35%; /* Mann und Reparatur im Fokus */
  position: absolute;
  inset: 0;
}
.ueber__text {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  max-width: 44rem;
}
.ueber__text .section__head { margin-bottom: var(--space-6); }

@media (min-width: 62rem) {
  .ueber {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 42rem;
  }
  .ueber__media { min-height: auto; }
  .ueber__text {
    padding: clamp(4rem, 7vw, 6rem) clamp(3rem, 5vw, 5rem);
    max-width: none;
  }
}

.section__head {
  max-width: 42em;
  margin-bottom: var(--space-7);
}
.section__head h2 { margin-bottom: var(--space-4); }
.section__head p { color: var(--text-mute); font-size: var(--fs-md); }
.section--dark .section__head p { color: rgba(255,255,255,0.85); }

/* --- Quick Report Formular ------------------------------------------------ */
.quick-report {
  background: #eef4f8;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 6px 20px rgba(14, 63, 86, 0.12);
  display: grid;
  gap: var(--space-4);
}
/* Klickbare Damage-Way als Link */
.damage__way--link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease;
}
.damage__way--link:hover { transform: translateY(-1px); }
.damage__way--link:hover strong { color: var(--signal); }
.quick-report input[type="text"],
.quick-report input[type="tel"],
.quick-report input[type="email"],
.quick-report textarea,
.quick-report select {
  background: #ffffff;
}
.quick-report h3 { margin-bottom: var(--space-1); }
.quick-report__intro { color: var(--text-mute); font-size: var(--fs-sm); margin-bottom: var(--space-3); }
.field { display: grid; gap: 0.35rem; }
.field label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--text);
  transition: border-color 150ms var(--ease);
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-mute);
  opacity: 0.7;
}
.field__hint {
  font-weight: 400;
  color: var(--text-mute);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95em;
  margin-left: 0.25rem;
}

/* --- Foto-Uploader --------------------------------------------------- */
.uploader { position: relative; }
.uploader input[type="file"] {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.uploader__drop {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 1.5px dashed var(--line);
  background: var(--paper-alt);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 150ms var(--ease), background 150ms var(--ease);
  font-size: var(--fs-sm);
}
.uploader__drop:hover,
.uploader__drop.is-drag,
.uploader input[type="file"]:focus-visible + .uploader__drop {
  border-color: var(--ink);
  background: #ede9df;
}
.uploader__drop svg { width: 1.5rem; height: 1.5rem; color: var(--signal); flex-shrink: 0; }
.uploader__drop strong { color: var(--ink); font-weight: 600; }

.uploader__preview {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}
.uploader__preview li {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--paper-alt);
  overflow: hidden;
}
.uploader__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.uploader__preview button {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  width: 1.9rem;
  height: 1.9rem;
  background: rgba(14, 63, 86, 0.9);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 150ms var(--ease);
}
.uploader__preview button:hover { background: var(--signal); }
.uploader__preview button svg { width: 0.9rem; height: 0.9rem; }
.uploader__preview li span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.35rem 0.6rem;
  font-size: 0.75rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.uploader__error {
  color: var(--signal);
  font-size: var(--fs-xs);
  font-weight: 500;
  margin-top: 0.5rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.field textarea { resize: vertical; min-height: 6rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
@media (max-width: 40rem) { .field-row { grid-template-columns: 1fr; } }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: var(--fs-xs);
  color: var(--text-mute);
  line-height: 1.5;
}
.consent input { margin-top: 0.15rem; flex-shrink: 0; }

.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.quick-report__note {
  font-size: var(--fs-xs);
  color: var(--text-mute);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-2);
}

/* --- Damage-Section Layout ------------------------------------------------ */
.damage {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 62rem) { .damage { grid-template-columns: 1fr; } }

.damage__intro h2 { margin-bottom: var(--space-4); }
.damage__ways {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.damage__way {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--paper-alt);
}
.damage__way-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.damage__way-icon svg { width: 1.25rem; height: 1.25rem; }
.damage__way-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.damage__way-body span { color: var(--text-mute); font-size: var(--fs-sm); }
.damage__way-body a { color: var(--ink); font-weight: 600; text-decoration: none; }
.damage__way-body a:hover { color: var(--signal); }

/* --- Services Grid -------------------------------------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: var(--space-4);
}
.service {
  padding: var(--space-6);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
  position: relative;
  overflow: hidden;
}
.service:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
  box-shadow: var(--shadow);
}
.service__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
}
.service__icon svg { width: 1.5rem; height: 1.5rem; }
.service h3 { font-size: var(--fs-md); margin-bottom: var(--space-2); }
.service p { color: var(--text-mute); font-size: var(--fs-sm); line-height: 1.55; }

/* --- Ersatzwagen-CTA Split ------------------------------------------------ */
.ersatzwagen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--ink);
  color: var(--text-invert);
  border-radius: var(--radius);
  overflow: hidden;
}
.ersatzwagen__text {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ersatzwagen__text h2 { color: #fff; margin-bottom: var(--space-4); }
.ersatzwagen__text p { color: rgba(255,255,255,0.9); margin-bottom: var(--space-5); }
.ersatzwagen__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--signal);
  line-height: 1;
  margin-bottom: var(--space-4);
}
.ersatzwagen__price span {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  letter-spacing: 0.03em;
}
.ersatzwagen__media { position: relative; min-height: 22rem; }
.ersatzwagen__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 62rem) {
  .ersatzwagen { grid-template-columns: 1fr; }
  .ersatzwagen__media { min-height: 16rem; order: -1; }
}

/* --- Warum wir ------------------------------------------------------------ */
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: var(--space-6) var(--space-5);
}
.reason {
  padding-top: var(--space-4);
  border-top: 3px solid var(--signal);
}
.reason__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--signal);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-2);
}
.reason h3 { font-size: var(--fs-md); margin-bottom: var(--space-2); }
.reason p { color: var(--text-mute); font-size: var(--fs-sm); }

/* --- News-Liste (Aktuelles) --------------------------------------------- */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.news-list li { border-bottom: 1px solid var(--line); }
.news-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 1.25rem 0;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: var(--fs-base);
  transition: color 150ms var(--ease), padding 200ms var(--ease);
}
.news-list a:hover,
.news-list a:focus-visible {
  color: var(--signal);
  padding-inline: 0.5rem;
}
.news-list a svg {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--signal);
  flex-shrink: 0;
  transition: transform 200ms var(--ease);
}
.news-list a:hover svg { transform: translateX(4px); }

/* --- Prose (Über-uns-Fließtext) ----------------------------------------- */
.prose {
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text);
}
.prose p { margin-bottom: var(--space-4); }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { margin-top: var(--space-6); margin-bottom: var(--space-4); line-height: 1.15; }
.prose h3 { margin-top: var(--space-5); margin-bottom: var(--space-3); line-height: 1.2; }
.prose > h2:first-child,
.prose > h3:first-child { margin-top: 0; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5);
  display: grid;
  gap: 0.6rem;
}
.prose__list li {
  padding-left: 1.75rem;
  position: relative;
}
.prose__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.85rem;
  height: 2px;
  background: var(--signal);
}
.prose__highlight {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--ink);
  font-weight: 600;
  border-left: 4px solid var(--signal);
  padding-left: var(--space-4);
  margin-block: var(--space-6);
}
.prose__region {
  font-size: var(--fs-sm);
  color: var(--text-mute);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
}
.prose__region strong { color: var(--ink); font-weight: 600; }

/* --- Regionen ------------------------------------------------------------- */
.regions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
  gap: var(--space-2);
  margin-top: var(--space-5);
}
.region {
  padding: var(--space-3) var(--space-4);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  transition: border-color 150ms var(--ease), background 150ms var(--ease);
}
.region:hover { border-color: var(--ink); background: var(--paper); }
.region strong { color: var(--ink); font-weight: 600; }
.region span { color: var(--text-mute); font-size: var(--fs-xs); font-variant-numeric: tabular-nums; }

/* --- FAQ Accordion -------------------------------------------------------- */
.faq { display: grid; gap: 0.5rem; max-width: 52rem; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 150ms var(--ease);
}
.faq details[open] { border-color: var(--ink); }
.faq summary {
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--ink);
  font-size: var(--fs-base);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-family: var(--font-body);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 1rem; height: 1rem;
  flex-shrink: 0;
  background:
    linear-gradient(currentColor, currentColor) center/100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center/2px 100% no-repeat;
  transition: transform 200ms var(--ease);
}
.faq details[open] summary::after {
  background: linear-gradient(currentColor, currentColor) center/100% 2px no-repeat;
}
.faq__body { padding: 0 1.4rem 1.4rem; color: var(--text-mute); line-height: 1.6; }
.faq__body p + p { margin-top: var(--space-3); }

/* --- Testimonial ---------------------------------------------------------- */
.testimonial {
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}
.testimonial__stars {
  display: inline-flex;
  gap: 0.15rem;
  color: #f4b400;
  margin-bottom: var(--space-4);
}
.testimonial__stars svg { width: 1.25rem; height: 1.25rem; }
.testimonial blockquote {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: var(--space-4);
  quotes: "„" "“";
}
.testimonial blockquote::before { content: open-quote; }
.testimonial blockquote::after { content: close-quote; }
.testimonial cite {
  font-style: normal;
  font-size: var(--fs-sm);
  color: var(--text-mute);
  letter-spacing: 0.02em;
}

/* --- Kontakt / Anfahrt ---------------------------------------------------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 55rem) { .contact { grid-template-columns: 1fr; } }

/* Kontakt-Variante mit Bild links */
.contact--with-media {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.contact--with-media > .contact__media {
  grid-row: 1 / span 2;
}
@media (max-width: 55rem) {
  .contact--with-media { grid-template-columns: 1fr; }
  .contact--with-media > .contact__media { grid-row: auto; }
}
.contact__media {
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--paper-warm);
  height: 100%;
  min-height: 20rem;
  width: 100%;
}
@media (max-width: 55rem) {
  .contact__media { aspect-ratio: 4 / 3; height: auto; min-height: 0; }
}
.contact__media img,
.contact__media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact__block { display: grid; gap: var(--space-4); }
.contact__row {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.contact__row-icon {
  width: 2.25rem; height: 2.25rem;
  display: grid; place-items: center;
  background: var(--paper-alt);
  border-radius: var(--radius-sm);
  color: var(--ink);
  flex-shrink: 0;
}
.contact__row-icon svg { width: 1.1rem; height: 1.1rem; }
.contact__row-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.contact__row-body a { color: var(--text); text-decoration: none; font-weight: 500; }
.contact__row-body a:hover { color: var(--signal); }

/* Auf dunklem Grund: alle Kontakt-Texte weiß */
.section--dark .contact__row-body { color: rgba(255,255,255,0.9); }
.section--dark .contact__row-body strong { color: #fff; }
.section--dark .contact__row-body a { color: #fff; }
.section--dark .contact__row-body a:hover { color: var(--signal); }
.section--dark .contact__row-icon { background: rgba(255,255,255,0.1); color: #fff; }

/* --- Footer --------------------------------------------------------------- */
.footer {
  background: var(--ink-deep);
  color: rgba(255,255,255,0.75);
  padding-block: var(--space-7) var(--space-5);
  font-size: var(--fs-sm);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
@media (max-width: 62rem) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 40rem) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer h4 {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}
.footer ul { list-style: none; padding: 0; display: grid; gap: 0.4rem; }
.footer a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__brand p { color: rgba(255,255,255,0.7); font-size: var(--fs-sm); margin-top: var(--space-3); }
.footer__brand img {
  background: #fff;
  padding: 8px 10px;
  display: inline-block;
  box-sizing: content-box;
}
.footer__social {
  display: flex; gap: var(--space-2); margin-top: var(--space-4);
}
.footer__social a {
  width: 2.2rem; height: 2.2rem;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  transition: background 150ms var(--ease);
}
.footer__social a:hover { background: var(--signal); color: #fff; }
.footer__social svg { width: 1.1rem; height: 1.1rem; }
.footer__bottom {
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.55);
}
.footer__bottom a { color: rgba(255,255,255,0.7); }

/* --- Consent Banner ------------------------------------------------------- */
.consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink-deep);
  color: #fff;
  padding: var(--space-4);
  z-index: 100;
  border-top: 3px solid var(--signal);
  transform: translateY(100%);
  transition: transform 300ms var(--ease);
}
.consent-banner.is-visible { transform: translateY(0); }
.consent-banner__inner {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-wrap: wrap;
}
.consent-banner p { color: rgba(255,255,255,0.9); font-size: var(--fs-sm); flex: 1 1 20rem; }
.consent-banner__actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }

.consent-toggle {
  position: fixed;
  bottom: 1rem; left: 1rem;
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 40;
  box-shadow: var(--shadow);
  opacity: 0.85;
  transition: opacity 150ms var(--ease);
}
.consent-toggle:hover { opacity: 1; }
.consent-toggle svg { width: 1.2rem; height: 1.2rem; }

/* --- Unterseiten ------------------------------------------------------- */
.subpage-hero {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.subpage-hero h1 { font-size: var(--fs-xxl); line-height: 1.02; }
.subpage-hero .lead { color: var(--text-mute); }

/* Hero-Bild-Variante für Unterseiten */
.subpage-hero--image {
  padding-block: 0;
  border-bottom: none;
  position: relative;
  color: var(--text-invert);
  min-height: 50vh;
  min-height: 50dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
@media (max-width: 640px) {
  .subpage-hero,
  .subpage-hero--image {
    min-height: 50vh;
    min-height: 50dvh;
  }
}
.subpage-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.subpage-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.subpage-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(14, 63, 86, 0.15) 0%,
    rgba(14, 63, 86, 0.55) 55%,
    rgba(14, 63, 86, 0.85) 100%);
}
.subpage-hero--image > .wrap,
.subpage-hero--image > .wrap-narrow {
  position: relative;
  z-index: 1;
  padding-block: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
}
.subpage-hero--image h1 { color: #fff; }
.subpage-hero--image .lead { color: rgba(255,255,255,0.9); }
.subpage-hero--image .eyebrow { color: rgba(255,255,255,0.9); }

/* Abstand zwischen Content und Header/Footer auf Unterseiten */
main > .wrap,
main > .wrap-narrow {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
main > section + .wrap,
main > section + .wrap-narrow {
  padding-block-start: clamp(2.5rem, 6vw, 4.5rem);
}

/* Google-Rezensionen (Startseite) – Slider */
.reviews-slider {
  position: relative;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.reviews-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-block: 0.25rem;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track > .review {
  flex: 0 0 calc((100% - clamp(1rem, 2vw, 1.5rem) * 2) / 3);
  scroll-snap-align: start;
}
@media (max-width: 900px) {
  .reviews-track > .review { flex-basis: calc((100% - clamp(1rem, 2vw, 1.5rem)) / 2); }
}
@media (max-width: 640px) {
  .reviews-track > .review { flex-basis: 100%; }
}
.reviews-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(14, 63, 86, 0.12);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.reviews-slider__btn:hover { background: var(--signal); color: #fff; border-color: var(--signal); }
.reviews-slider__btn:disabled { opacity: 0.35; cursor: default; }
.reviews-slider__btn:disabled:hover { background: var(--paper); color: var(--ink); border-color: var(--line); }
.reviews-slider__btn svg { width: 1.25rem; height: 1.25rem; }
.reviews-slider__btn--prev { left: -0.5rem; }
.reviews-slider__btn--next { right: -0.5rem; }
@media (max-width: 640px) {
  .reviews-slider__btn { display: none; }
}
.review {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.review:hover {
  box-shadow: 0 8px 24px rgba(14, 63, 86, 0.08);
  transform: translateY(-2px);
}
.review__stars {
  display: flex;
  gap: 2px;
}
.review__stars svg {
  width: 1.05rem;
  height: 1.05rem;
  color: #f5b800;
}
.review blockquote {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--text);
  font-style: normal;
  quotes: "\201E" "\201C";
}
.review blockquote::before { content: open-quote; }
.review blockquote::after  { content: close-quote; }
.review cite {
  font-style: normal;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink);
  margin-top: auto;
}
.review__meta {
  font-weight: 400;
  color: var(--text-mute);
}

/* FAQ-Bereich (vor Footer) */
.faq {
  background: transparent;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  display: block;
  max-width: none;
  width: 100%;
  margin-inline: 0;
}
.faq__head {
  max-width: var(--wrap-narrow);
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  text-align: center;
}
.faq__head h2 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  margin: 0 0 0.5rem;
}
.faq__head p { color: var(--text-mute); margin: 0; }
.faq__list {
  max-width: var(--wrap-narrow);
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  display: grid;
  gap: 0.75rem;
}
.faq__item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  overflow: hidden;
}
.faq__item[open] { border-color: var(--signal); }
.faq__q {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-md);
  line-height: 1.3;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "";
  margin-left: auto;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  background:
    linear-gradient(var(--signal), var(--signal)) center / 100% 2px no-repeat,
    linear-gradient(var(--signal), var(--signal)) center / 2px 100% no-repeat;
  transition: transform 0.2s ease;
}
.faq__item[open] .faq__q::after {
  background:
    linear-gradient(var(--signal), var(--signal)) center / 100% 2px no-repeat;
}
.faq__item:hover .faq__q { color: var(--signal); }
.faq__a {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-mute);
  line-height: 1.55;
  text-align: left;
}
.faq__a p { margin: 0 0 0.75rem; }
.faq__a p:last-child { margin-bottom: 0; }

/* Preis-Kacheln (Preise-Seite) */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.price-card:hover {
  box-shadow: 0 8px 24px rgba(14, 63, 86, 0.1);
  transform: translateY(-2px);
}
.price-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-alt);
}
.price-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.price-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.price-card__body h3 {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  margin: 0;
  line-height: 1.15;
}
.price-card__price {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--signal);
}

/* Klickbare Service-Cards (Übersichtsseite Leistungen) */
.service--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.service--link:hover h3 { color: var(--signal); }

/* Service-Cards mit Foto oben */
.service--photo {
  padding: 0;
  overflow: hidden;
  border: none;
  border-radius: 0.5rem;
  background: var(--paper);
  box-shadow: 0 4px 14px rgba(14, 63, 86, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service--photo:hover {
  box-shadow: 0 14px 32px rgba(14, 63, 86, 0.16);
  transform: translateY(-2px);
}
.service__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-warm);
}
.service__media img,
.service__media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.service__body h3 { margin: 0 0 0.25rem; }
.service__body p { margin: 0; flex: 1; }
.service--photo .service__link { margin-top: 0.75rem; }
.service__link {
  margin-top: auto;
  padding-top: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--signal);
  letter-spacing: 0.02em;
}
