/* =========================================================
   TRAU Sachverständigen GmbH — Präzisions-Design
   Dark Luxury (TRAU-DNA) + Messprotokoll-Ästhetik:
   Raster, Fadenkreuze, Maßlinien, Mono-Labels statt Fotos
   ========================================================= */

:root {
  --gold: #E5BF4A;
  --gold-tief: #b8901f;
  --creme: #EAE4D2;            /* Logo-Beige */
  --wa: #25D366;
  color-scheme: dark;
  --ink: #f4f2ea;
  --paper: #131311;
  --paper-solid: #1a1a18;
  --karte: #191813;
  --grey-600: rgba(244, 242, 234, 0.68);
  --grey-400: rgba(244, 242, 234, 0.42);
  --hairline: rgba(234, 228, 210, 0.14);
  --hairline-soft: rgba(234, 228, 210, 0.08);
  --font: "Elms Sans", "Outfit", "Segoe UI", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", monospace;
  --pad-x: clamp(20px, 4.5vw, 56px);
  --sec-y: clamp(72px, 9vw, 120px);
  --radius: 18px;
  --ease-lux: cubic-bezier(0.22, 0.8, 0.22, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #0a0a0a; }

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
address { font-style: normal; }
main p, main li, main summary { overflow-wrap: break-word; }

.wrap { max-width: 1280px; margin: 0 auto; padding-inline: var(--pad-x); }
.wrap--schmal { max-width: 980px; }

h1, h2, h3, h4 { line-height: 1.1; font-weight: 600; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.1rem); hyphens: manual; }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }

main > section + section { border-top: 1px solid rgba(234, 228, 210, 0.07); }

/* ---------- Mono-Bausteine (Messprotokoll) ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--grey-400);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); }

.proto-zeile {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.proto-zeile b { color: var(--creme); font-weight: 600; }

/* Technisches Raster als Sektionstextur */
.raster { position: relative; }
.raster::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--hairline-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--hairline-soft) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(80% 90% at 50% 40%, #000 30%, transparent 100%);
          mask-image: radial-gradient(80% 90% at 50% 40%, #000 30%, transparent 100%);
}
.raster > * { position: relative; }

.lead { font-size: clamp(1.02rem, 1.3vw, 1.18rem); line-height: 1.6; color: var(--grey-600); max-width: 58ch; }
.lead strong, .absatz strong { color: var(--ink); font-weight: 600; }
.absatz { margin-top: 18px; color: var(--grey-600); line-height: 1.65; font-size: clamp(1rem, 1.15vw, 1.08rem); max-width: 62ch; }

/* ---------- Buttons (Muster von der freigegebenen Gutachten-Seite) ---------- */
.u-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 28px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font);
  line-height: 1.1;
  transition: transform 0.25s var(--ease-lux), background 0.25s, color 0.25s, border-color 0.25s;
}
.u-btn--gold { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.u-btn--gold:hover { background: #efd06a; border-color: #efd06a; transform: translateY(-2px); }
.u-btn--linie { border-color: rgba(229, 191, 74, 0.7); color: var(--gold); background: transparent; }
.u-btn--linie:hover { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.u-btn--wa { background: var(--wa); border-color: var(--wa); color: #06130b; }
.u-btn--wa:hover { background: #2fe374; border-color: #2fe374; transform: translateY(-2px); }
.u-btn svg { width: 20px; height: 20px; flex: none; }
.u-btn .ikon-wa { fill: currentColor; }

/* ---------- Häkchen-Listen ---------- */
.u-check { list-style: none; display: grid; gap: 12px; }
.u-check li { display: flex; gap: 12px; align-items: flex-start; font-size: clamp(0.98rem, 1.2vw, 1.08rem); font-weight: 500; line-height: 1.4; }
.u-check li::before {
  content: "\2713";
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

/* ---------- Header ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--gold); color: #0a0a0a; padding: 10px 16px; z-index: 200; font-weight: 700; }
.skip-link:focus { left: 12px; top: 12px; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  padding: 0 var(--pad-x);
  height: 76px;
  background: rgba(19, 19, 17, 0.94);
  border-bottom: 1px solid var(--hairline-soft);
}
.logo-slot { display: flex; align-items: center; flex-shrink: 0; }
.logo-slot img { height: 42px; width: auto; }

.site-nav { display: flex; gap: clamp(16px, 2.2vw, 30px); margin-inline: auto; }
.site-nav a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-600);
  padding: 6px 0;
  white-space: nowrap;
}
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--gold); transition: right 0.3s var(--ease-lux); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }

.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 9px 16px;
  white-space: nowrap;
  transition: border-color 0.25s, color 0.25s;
}
.header-tel svg { width: 15px; height: 15px; color: var(--gold); }
.header-tel:hover { border-color: var(--gold); color: var(--gold); }
.header-wa {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.55);
  flex-shrink: 0;
  transition: background 0.25s, transform 0.25s var(--ease-lux);
}
.header-wa svg { width: 20px; height: 20px; fill: var(--wa); }
.header-wa:hover { background: rgba(37, 211, 102, 0.12); transform: translateY(-1px); }

.burger { display: none; flex-direction: column; gap: 6px; padding: 10px 4px; margin-left: 4px; }
.burger span { display: block; width: 26px; height: 2px; background: var(--ink); transition: transform 0.3s var(--ease-lux), opacity 0.3s; }
body.menu-offen .burger span:first-child { transform: translateY(4px) rotate(45deg); }
body.menu-offen .burger span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Mobil-Menü */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(15, 15, 13, 0.98);
  padding: 110px var(--pad-x) 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
body.menu-offen .menu-overlay { opacity: 1; pointer-events: auto; }
body.menu-offen { overflow: hidden; }
.menu-overlay nav { display: grid; gap: 4px; }
.menu-overlay nav > a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline-soft);
}
.menu-overlay nav > a i { font-family: var(--mono); font-style: normal; font-size: 0.75rem; color: var(--gold); letter-spacing: 0.1em; }
.menu-ctas { display: grid; gap: 12px; margin-top: 8px; }
.menu-meta { margin-top: auto; display: grid; gap: 6px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; color: var(--grey-400); text-transform: uppercase; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--paper-solid);
  padding: calc(76px + clamp(44px, 6vw, 80px)) 0 clamp(44px, 5vw, 72px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 60% at 80% 12%, rgba(229, 191, 74, 0.13), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.hero-region { color: var(--gold); font-weight: 600; font-size: clamp(0.95rem, 1.3vw, 1.12rem); }
.hero h1 { margin-top: 14px; font-size: clamp(2.15rem, 4.1vw, 3.7rem); line-height: 1.04; hyphens: manual; }
.hero .lead { margin-top: 22px; }
.hero .u-check { margin-top: 26px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-direkt { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; color: var(--grey-600); font-size: 0.96rem; }
.hero-direkt a { color: var(--ink); font-weight: 600; border-bottom: 1px solid rgba(244, 242, 234, 0.35); display: inline-flex; align-items: center; gap: 7px; padding-bottom: 1px; }
.hero-direkt a:hover { color: var(--gold); border-color: var(--gold); }
.hero-direkt svg { width: 17px; height: 17px; }
.hero-direkt .ikon-wa { fill: var(--wa); }

/* Blueprint-Bühne (statt Foto) */
.blaupause {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(234, 228, 210, 0.05) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(90deg, rgba(234, 228, 210, 0.05) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(180deg, #191813, #141311);
  padding: clamp(16px, 2vw, 26px);
  overflow: hidden;
}
.blaupause::before, .blaupause::after {
  content: "+";
  position: absolute;
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--grey-400);
  line-height: 1;
}
.blaupause::before { top: 10px; left: 14px; }
.blaupause::after { bottom: 10px; right: 14px; }
.blaupause svg { width: 100%; height: auto; }
.blaupause .proto-zeile { justify-content: space-between; margin-top: 14px; border-top: 1px solid var(--hairline-soft); padding-top: 14px; }

/* Scanline über der Blaupause */
.scan { position: absolute; top: 0; bottom: 44px; left: 0; width: 90px; pointer-events: none; opacity: 0.55; }
.scan::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(229, 191, 74, 0.12) 70%, rgba(229, 191, 74, 0.45)); }
.scan::after { content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: 1px; background: var(--gold); box-shadow: 0 0 14px rgba(229, 191, 74, 0.8); }
@media (prefers-reduced-motion: no-preference) {
  .scan { animation: scan-fahrt 7.5s var(--ease-lux) infinite; }
  @keyframes scan-fahrt {
    0% { transform: translateX(-90px); opacity: 0; }
    8% { opacity: 0.55; }
    46% { transform: translateX(calc(100cqw - 20px)); opacity: 0.55; }
    54% { opacity: 0; }
    100% { transform: translateX(-90px); opacity: 0; }
  }
}
.blaupause { container-type: inline-size; }

/* SVG-Zeichnungsstile */
.tz-linie { fill: none; stroke: var(--creme); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.tz-fein { fill: none; stroke: rgba(234, 228, 210, 0.55); stroke-width: 1; stroke-linecap: round; }
.tz-mass { fill: none; stroke: rgba(229, 191, 74, 0.8); stroke-width: 1; stroke-linecap: round; }
.tz-mass-dash { fill: none; stroke: rgba(229, 191, 74, 0.55); stroke-width: 1; stroke-dasharray: 4 5; }
.tz-text { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; fill: var(--creme); text-transform: uppercase; }
.tz-text--gold { fill: var(--gold); }
.tz-text--grau { fill: rgba(244, 242, 234, 0.45); font-size: 10px; }
.tz-flaeche { fill: rgba(229, 191, 74, 0.07); stroke: rgba(229, 191, 74, 0.5); stroke-width: 1; stroke-dasharray: 5 4; }

/* ---------- Soforthilfe-Boxen (gerahmt, wie Flyer v4) ---------- */
.hilfe-boxen { display: grid; gap: 14px; }
.hilfe-boxen--zeile { grid-template-columns: 1fr 1fr; }
.hilfe-box {
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--ink);
  background: rgba(244, 242, 234, 0.03);
  transition: transform 0.25s var(--ease-lux), background 0.25s;
}
.hilfe-box:hover { transform: translateY(-2px); background: rgba(244, 242, 234, 0.06); }
.hilfe-box--tel { border: 2px solid var(--gold); }
.hilfe-box--wa { border: 2px solid var(--wa); }
.hilfe-box svg { width: 38px; height: 38px; flex: none; }
.hilfe-box--tel svg { color: var(--gold); }
.hilfe-box--wa svg { fill: var(--wa); }
.hilfe-box small { display: block; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-400); font-weight: 600; }
.hilfe-box b { display: block; margin-top: 4px; font-size: clamp(1.15rem, 1.8vw, 1.55rem); font-weight: 700; line-height: 1.15; white-space: nowrap; }
.hilfe-box--tel b { color: var(--gold); }
.hilfe-box--wa b { font-size: clamp(0.95rem, 1.3vw, 1.05rem); font-weight: 500; white-space: normal; }

.soforthilfe { background: var(--paper); padding: clamp(40px, 5vw, 64px) 0; }
.soforthilfe .wrap { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.soforthilfe h2 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
.soforthilfe p { margin-top: 10px; color: var(--grey-600); }

/* ---------- Sektionen allgemein ---------- */
.sektion { padding: var(--sec-y) 0; background: var(--paper); }
.sektion--solid { background: var(--paper-solid); }
.sektion-kopf { max-width: 780px; }
.sektion-kopf .absatz { margin-top: 16px; }

/* Zweispalter */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(30px, 5vw, 76px); align-items: start; }
.split--mittig { align-items: center; }

/* Karten */
.karte {
  background: var(--karte);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 38px);
}
.karte--gold { border-color: rgba(229, 191, 74, 0.4); }
.karte-kopf { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; border-bottom: 1px solid var(--hairline-soft); padding-bottom: 14px; margin-bottom: 20px; }
.karte-kopf h3 { font-size: 1.25rem; }
.karte-kopf span { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-400); white-space: nowrap; }

/* Checkliste-Karte (Unfallort) */
.check-karte ol { list-style: none; display: grid; gap: 18px; counter-reset: schritt; }
.check-karte li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; counter-increment: schritt; }
.check-karte li::before {
  content: counter(schritt);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-family: var(--mono);
}
.check-karte b { display: block; font-weight: 700; font-size: 1.02rem; }
.check-karte span { display: block; color: var(--grey-600); line-height: 1.5; margin-top: 3px; font-size: 0.95rem; }
.check-karte a { color: var(--gold); font-weight: 700; }

/* ---------- Ablauf (Schritt-Tafeln mit Linien-Icons) ---------- */
.ablauf-grid { margin-top: clamp(36px, 5vw, 56px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(22px, 3vw, 40px); }
.ablauf-schritt {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: center;
  background: var(--karte);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(18px, 2.4vw, 28px);
}
.ablauf-tafel {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background:
    linear-gradient(rgba(234, 228, 210, 0.045) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(90deg, rgba(234, 228, 210, 0.045) 1px, transparent 1px) 0 0 / 26px 26px,
    #141310;
  display: grid;
  place-items: center;
  padding: 14px;
}
.ablauf-tafel svg { width: min(72%, 150px); height: auto; }
.ablauf-tafel i { position: absolute; top: 8px; left: 12px; font-family: var(--mono); font-style: normal; font-size: 0.62rem; letter-spacing: 0.18em; color: var(--grey-400); text-transform: uppercase; }
.ablauf-nr { font-family: var(--mono); font-size: clamp(1.5rem, 2.2vw, 1.9rem); font-weight: 600; color: var(--gold); line-height: 1; }
.ablauf-schritt h3 { margin-top: 8px; font-size: clamp(1.08rem, 1.45vw, 1.3rem); line-height: 1.2; }
.ablauf-schritt p { margin-top: 10px; color: var(--grey-600); line-height: 1.55; font-size: 0.96rem; }
.ablauf-null { display: grid; place-items: center; text-align: center; }
.ablauf-null b { display: block; font-size: clamp(3rem, 4.5vw, 4.2rem); font-weight: 800; color: var(--gold); line-height: 1; }
.ablauf-null span { display: block; margin-top: 6px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244, 242, 234, 0.75); }

/* ---------- Kostenlos-Band ---------- */
.kostenlos { background: var(--paper); padding: clamp(56px, 7vw, 96px) 0; border-top: 1px solid rgba(229, 191, 74, 0.35) !important; border-bottom: 1px solid rgba(229, 191, 74, 0.35); }
.kostenlos-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(24px, 3vw, 44px); text-align: center; }
.kostenlos-ikon { width: 62px; height: 62px; margin: 0 auto; }
.kostenlos-ikon svg { width: 100%; height: 100%; fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.kostenlos h3 { margin-top: 16px; font-size: 1.06rem; line-height: 1.3; }
.kostenlos p { margin-top: 10px; color: var(--grey-600); line-height: 1.55; font-size: 0.93rem; }

/* ---------- Leistungs-Karten ---------- */
.leistungs-grid { margin-top: clamp(34px, 5vw, 52px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.leistung-karte {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--karte);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(20px, 2.6vw, 30px);
  transition: transform 0.3s var(--ease-lux), border-color 0.3s, box-shadow 0.3s;
}
.leistung-karte:hover { transform: translateY(-6px); border-color: rgba(229, 191, 74, 0.5); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); }
.leistung-karte i { font-family: var(--mono); font-style: normal; font-size: 0.66rem; letter-spacing: 0.2em; color: var(--grey-400); text-transform: uppercase; }
.leistung-karte h3 { font-size: clamp(1.12rem, 1.5vw, 1.3rem); }
.leistung-karte p { color: var(--grey-600); font-size: 0.95rem; line-height: 1.55; flex-grow: 1; }
.leistung-karte .pfeil {
  align-self: flex-end;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  transition: transform 0.3s var(--ease-lux), background 0.3s, color 0.3s;
}
.leistung-karte:hover .pfeil { background: var(--gold); color: #0a0a0a; border-color: var(--gold); transform: rotate(-45deg); }

/* ---------- Anspruchskarte / Fokus ---------- */
.anspruch-karte .u-check { margin-top: 20px; }

/* ---------- Unterschied ---------- */
.unterschied .u-check { margin-top: 28px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 28px; }
.siegel {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(229, 191, 74, 0.08), transparent 75%),
    var(--karte);
  padding: clamp(26px, 3.4vw, 44px);
  display: grid;
  gap: 18px;
}
.siegel .proto-zeile { border-bottom: 1px solid var(--hairline-soft); padding-bottom: 14px; }
.siegel-punkte { display: grid; gap: 14px; }
.siegel-punkt { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: baseline; }
.siegel-punkt i { font-family: var(--mono); font-style: normal; font-size: 0.7rem; color: var(--gold); letter-spacing: 0.12em; }
.siegel-punkt b { font-weight: 600; font-size: 1.02rem; }
.siegel-punkt span { display: block; color: var(--grey-600); font-size: 0.92rem; line-height: 1.5; margin-top: 2px; }

/* ---------- Einsatzgebiet / Radar ---------- */
.radar-figur { position: relative; }
.radar-figur svg { width: 100%; height: auto; }
@media (prefers-reduced-motion: no-preference) {
  .radar-zeiger { transform-origin: 300px 300px; animation: radar-dreh 14s linear infinite; }
  @keyframes radar-dreh { to { transform: rotate(360deg); } }
  .radar-puls { transform-origin: 300px 300px; animation: radar-puls 2.6s ease-out infinite; }
  @keyframes radar-puls { 0% { transform: scale(0.4); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }
}
.stadt-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.stadt-chips a {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--grey-600);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  white-space: nowrap;
}
.stadt-chips a:hover { border-color: var(--gold); color: var(--gold); }
.stadt-chips a.chip-alle { border-color: rgba(229, 191, 74, 0.6); color: var(--gold); }

/* Standorte-Seite: Regionen */
.region-block { border-top: 1px solid var(--hairline-soft); padding: clamp(28px, 4vw, 44px) 0; display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(20px, 4vw, 60px); }
.region-block h3 { font-size: clamp(1.2rem, 1.8vw, 1.55rem); }
.region-block .proto-zeile { margin-top: 10px; }
.region-staedte { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; align-content: start; }
.region-staedte a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease-lux);
}
.region-staedte a::after { content: "→"; color: var(--grey-400); transition: color 0.25s, transform 0.25s var(--ease-lux); }
.region-staedte a:hover { border-color: rgba(229, 191, 74, 0.5); background: rgba(229, 191, 74, 0.05); transform: translateY(-2px); }
.region-staedte a:hover::after { color: var(--gold); transform: translateX(3px); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(28px, 4vw, 64px); align-items: start; }
.faq-grid details { border-top: 1px solid var(--hairline); }
.faq-grid details:last-child { border-bottom: 1px solid var(--hairline); }
.faq-grid summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 0; font-weight: 700; font-size: clamp(1rem, 1.2vw, 1.1rem); }
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  content: "+";
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(229, 191, 74, 0.6);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 500;
  font-size: 1.3rem;
  transition: transform 0.3s var(--ease-lux), background 0.3s;
}
.faq-grid details[open] summary::after { transform: rotate(45deg); background: var(--gold); color: #0a0a0a; }
.faq-grid details p { padding: 0 54px 22px 0; color: var(--grey-600); line-height: 1.6; }

/* ---------- Schaden melden ---------- */
.melden { background: radial-gradient(60% 80% at 12% 20%, rgba(229, 191, 74, 0.13), transparent 60%), var(--paper); padding: var(--sec-y) 0 clamp(40px, 5vw, 64px); }
.melden-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 76px); align-items: start; }
.melden-adresse { margin-top: 24px; color: var(--grey-600); font-size: 0.95rem; line-height: 1.6; }
.melden-adresse a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.melden-form { background: var(--paper-solid); border: 1px solid var(--hairline); border-radius: var(--radius); padding: clamp(22px, 3vw, 38px); }
.melden-form h3 { font-size: 1.25rem; }
.melden-form .felder { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.melden-form label { display: grid; gap: 6px; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-400); font-weight: 600; }
.melden-form label.voll { grid-column: 1 / -1; }
.melden-form input, .melden-form textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  padding: 13px 14px;
  letter-spacing: 0;
  text-transform: none;
}
.melden-form input:focus, .melden-form textarea:focus { outline: none; border-color: var(--gold); }
.melden-form textarea { min-height: 120px; resize: vertical; }
.melden-form .aktionen { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.melden-form .hinweis { margin-top: 16px; font-size: 0.78rem; color: rgba(244, 242, 234, 0.5); line-height: 1.5; }
.melden-form .hinweis a { color: rgba(244, 242, 234, 0.75); }
.fussnote { margin-top: clamp(36px, 5vw, 52px); padding-top: 22px; border-top: 1px solid var(--hairline); font-size: 0.8rem; color: rgba(244, 242, 234, 0.5); line-height: 1.55; max-width: 900px; }

/* ---------- CTA-Band (Unterseiten) ---------- */
.cta-band { background: var(--paper-solid); padding: clamp(56px, 7vw, 90px) 0; }
.cta-band .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 4vw, 60px); align-items: center; }
.cta-band h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
.cta-band p { margin-top: 12px; color: var(--grey-600); }

/* ---------- Seiten-Hero (Unterseiten) ---------- */
.seiten-hero { position: relative; background: var(--paper-solid); padding: calc(76px + clamp(40px, 5vw, 64px)) 0 clamp(36px, 4.5vw, 60px); overflow: hidden; }
.seiten-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 85% 0%, rgba(229, 191, 74, 0.1), transparent 70%); pointer-events: none; }
.seiten-hero .wrap { position: relative; }
.seiten-hero h1 { font-size: clamp(2rem, 3.8vw, 3.3rem); max-width: 20ch; }
.seiten-hero .lead { margin-top: 18px; }
.brotkrumen { display: flex; flex-wrap: wrap; gap: 8px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-400); margin-bottom: 18px; }
.brotkrumen a:hover { color: var(--gold); }
.brotkrumen span::before { content: "/"; margin-right: 8px; color: var(--hairline); }

/* Leistungs-Detailblöcke */
.leistung-block { border-top: 1px solid var(--hairline-soft); padding: clamp(40px, 6vw, 72px) 0; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
.leistung-block:first-of-type { border-top: 0; }
.leistung-block--tausch > :first-child { order: 2; }
.leistung-block .karte { position: sticky; top: 96px; }
.sprung-leiste { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.sprung-leiste a { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; border: 1px solid var(--hairline); border-radius: 999px; padding: 8px 15px; color: var(--grey-600); transition: border-color 0.25s, color 0.25s; }
.sprung-leiste a:hover { border-color: var(--gold); color: var(--gold); }

/* Werte-Karten (Unternehmen) */
.werte-grid { margin-top: clamp(30px, 4vw, 48px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.wert-karte { background: var(--karte); border: 1px solid var(--hairline); border-radius: var(--radius); padding: clamp(20px, 2.6vw, 32px); }
.wert-karte i { font-family: var(--mono); font-style: normal; font-size: 0.66rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; }
.wert-karte h3 { margin-top: 10px; }
.wert-karte p { margin-top: 10px; color: var(--grey-600); font-size: 0.95rem; line-height: 1.6; }

/* Zahlen-/Fakten-Leiste */
.fakten-leiste { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 3vw, 32px); margin-top: clamp(30px, 4vw, 48px); }
.fakt { border-left: 1px solid rgba(229, 191, 74, 0.4); padding-left: 18px; }
.fakt b { display: block; font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 700; color: var(--gold); line-height: 1.05; }
.fakt span { display: block; margin-top: 6px; font-size: 0.86rem; color: var(--grey-600); line-height: 1.4; }

/* Karte laden (Kontakt) */
.karten-fassade { position: relative; border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; background: linear-gradient(rgba(234, 228, 210, 0.05) 1px, transparent 1px) 0 0 / 40px 40px, linear-gradient(90deg, rgba(234, 228, 210, 0.05) 1px, transparent 1px) 0 0 / 40px 40px, #161511; display: grid; place-items: center; }
.karten-fassade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.92) contrast(0.9); }
.karten-fassade .laden { display: grid; gap: 14px; justify-items: center; text-align: center; padding: 20px; }
.karten-fassade .laden svg { width: 46px; height: 46px; fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.karten-fassade .laden p { font-size: 0.85rem; color: var(--grey-400); max-width: 34ch; }

/* ---------- Fixe Kontakt-Elemente ---------- */
.unfall-pill {
  position: fixed;
  left: 22px; bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: #0a0a0a;
  border-radius: 999px;
  padding: 12px 20px 12px 14px;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
}
.unfall-pill svg { width: 21px; height: 21px; }
.unfall-pill span { background: #0a0a0a; color: var(--gold); border-radius: 999px; padding: 4px 10px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; }
@media (prefers-reduced-motion: no-preference) {
  .unfall-pill { animation: pill-puls 2.4s ease-in-out infinite; }
  @keyframes pill-puls {
    0%, 100% { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(229, 191, 74, 0.6); }
    50% { box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5), 0 0 0 14px rgba(229, 191, 74, 0); }
  }
}
.kontakt-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(19, 19, 17, 0.96);
  border-top: 1px solid var(--hairline);
}
.kontakt-bar .u-btn { padding: 15px 12px; font-size: 0.78rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid rgba(234, 228, 210, 0.1); background: var(--paper); padding-top: clamp(48px, 6vw, 80px); }
.footer-marke { display: grid; justify-items: center; gap: 18px; padding-bottom: clamp(36px, 5vw, 56px); }
.footer-marke img { width: min(78vw, 460px); opacity: 0.85; }
.footer-marke .proto-zeile { justify-content: center; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: clamp(24px, 4vw, 48px); padding: clamp(32px, 4vw, 48px) var(--pad-x); border-top: 1px solid var(--hairline-soft); max-width: 1280px; margin: 0 auto; }
.footer-col h4 { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey-400); font-weight: 600; margin-bottom: 16px; }
.footer-col p { color: var(--grey-600); font-size: 0.92rem; line-height: 1.6; }
.footer-col a { display: block; color: var(--grey-600); font-size: 0.94rem; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col span { display: block; color: var(--grey-600); font-size: 0.94rem; padding: 4px 0; }
.footer-slogan { margin-top: 14px; font-style: italic; color: var(--grey-400) !important; }
.footer-line { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding: 20px var(--pad-x) calc(20px + env(safe-area-inset-bottom)); border-top: 1px solid var(--hairline-soft); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; color: var(--grey-400); text-transform: uppercase; max-width: 1280px; margin: 0 auto; }

/* ---------- Reveal-Animationen ---------- */
html.js [data-slide] { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-lux), transform 0.8s var(--ease-lux); }
html.js [data-slide="links"] { transform: translateX(-56px); }
html.js [data-slide="rechts"] { transform: translateX(56px); }
html.js [data-slide].ist-da { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-slide] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Rechtsseiten ---------- */
.legal { padding: var(--sec-y) 0; overflow-wrap: break-word; }
.legal h1 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 30px; }
.legal h2 { font-size: clamp(1.25rem, 2vw, 1.6rem); margin: 38px 0 12px; }
.legal h3 { font-size: 1.08rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--grey-600); font-size: 0.98rem; max-width: 76ch; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; word-break: break-all; }
.legal .platzhalter { color: var(--gold); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .site-nav { display: none; }
  .burger { display: flex; margin-left: auto; }
  .header-tel { margin-left: auto; }
  .site-nav + .header-tel { margin-left: auto; }
  .ablauf-grid { grid-template-columns: minmax(0, 1fr); }
  .leistungs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .fakten-leiste { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hero-grid, .split, .soforthilfe .wrap, .faq-grid, .melden-grid, .cta-band .wrap, .leistung-block, .region-block { grid-template-columns: minmax(0, 1fr); }
  .leistung-block--tausch > :first-child { order: 0; }
  .leistung-block .karte { position: static; }
  .hilfe-boxen--zeile { grid-template-columns: minmax(0, 1fr); }
  .kostenlos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); text-align: left; }
  .kostenlos-ikon { margin: 0; }
  .unterschied .u-check { grid-template-columns: minmax(0, 1fr); }
  .werte-grid { grid-template-columns: minmax(0, 1fr); }
  .blaupause { max-width: 640px; }
}

@media (max-width: 760px) {
  .header-tel { display: none; }
  .logo-slot img { height: 36px; }
  .ablauf-schritt { grid-template-columns: minmax(0, 1fr); }
  .ablauf-tafel { aspect-ratio: 16 / 9; }
  .leistungs-grid { grid-template-columns: minmax(0, 1fr); }
  .melden-form .felder { grid-template-columns: minmax(0, 1fr); }
  .faq-grid details p { padding-right: 0; }
  .unfall-pill { display: none; }
  .kontakt-bar { display: grid; }
  body { padding-bottom: 74px; }
  .hero-ctas .u-btn, .melden-form .aktionen .u-btn, .cta-band .u-btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .fakten-leiste { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .hilfe-box b { white-space: normal; }
  .region-staedte { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   BILD-VARIANTE (index-bilder.html)
   Eigene Klassen — die grafische Variante bleibt unberührt.
   Tönung ist in die JPGs eingebacken, hier keine Runtime-Filter.
   ========================================================= */

/* Hero mit Foto-Grund */
.hero--foto { background: var(--paper-solid); }
.hero--foto .hero-foto-grund {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero--foto .hero-foto-grund img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.hero--foto .hero-foto-grund::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, var(--paper-solid) 30%, rgba(26, 26, 24, 0.86) 52%, rgba(26, 26, 24, 0.62) 100%),
    linear-gradient(180deg, rgba(19, 19, 17, 0.9) 0%, transparent 26%, rgba(19, 19, 17, 0.72) 100%);
}

/* Beweisfoto-Kachel: Foto + forensisches Gold-Overlay */
.beweis { position: relative; }
.beweis figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(229, 191, 74, 0.45);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.6);
  background: #141310;
}
.beweis img { width: 100%; height: auto; aspect-ratio: 7 / 5; object-fit: cover; display: block; }
/* Messraster über dem Foto */
.beweis figure::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(234, 228, 210, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 228, 210, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}
/* Marker: kleines Fadenkreuz mit Nummer + Label */
.marker {
  position: absolute;
  width: 30px;
  height: 30px;
  pointer-events: none;
  transform: translate(-50%, -50%); /* left/top = Zielpunkt im Foto */
}
.marker::before, .marker::after {
  content: "";
  position: absolute;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
}
.marker::before { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.marker::after { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.marker span {
  position: absolute;
  left: 38px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  background: rgba(10, 10, 9, 0.82);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(229, 191, 74, 0.32);
}
.marker--links span { left: auto; right: 38px; }
.beweis-fuss {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.beweis-fuss b { color: var(--creme); font-weight: 600; }

/* Ablauf-Tafel als Foto */
.ablauf-tafel--foto { padding: 0; overflow: hidden; background: #141310; }
.ablauf-tafel--foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ablauf-tafel--foto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 19, 17, 0.55) 0%, transparent 42%, rgba(19, 19, 17, 0.35) 100%);
}
.ablauf-tafel--foto i {
  z-index: 2;
  background: rgba(10, 10, 9, 0.72);
  padding: 4px 9px;
  border-radius: 4px;
  color: var(--gold);
}

/* Leistungskarte mit Bildkopf */
.karte-bild {
  display: block;
  margin: calc(clamp(20px, 2.6vw, 30px) * -1) calc(clamp(20px, 2.6vw, 30px) * -1) 4px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #141310;
}
.karte-bild img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-lux); }
.leistung-karte:hover .karte-bild img { transform: scale(1.05); }

/* Große Bildfläche (Siegel / Unternehmen) */
.siegel-bild {
  margin: calc(clamp(26px, 3.4vw, 44px) * -1) calc(clamp(26px, 3.4vw, 44px) * -1) 4px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.siegel-bild img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }

@media (max-width: 900px) {
  /* Mobil liegt der Text ÜBER dem Foto: oben stark abdecken (Lesbarkeit),
     unten durchscheinen lassen, damit das Motiv überhaupt erkennbar bleibt. */
  .hero--foto .hero-foto-grund img { object-position: 50% 72%; }
  .hero--foto .hero-foto-grund::after {
    background:
      linear-gradient(180deg, rgba(19, 19, 17, 0.93) 0%, rgba(26, 26, 24, 0.88) 42%, rgba(19, 19, 17, 0.6) 100%);
  }
  .marker span { font-size: 0.54rem; padding: 3px 6px; }
}
@media (max-width: 560px) {
  .marker { width: 22px; height: 22px; }
  .marker span { left: 28px; }
  .marker--links span { left: auto; right: 28px; }
}
