/* ==========================================================================
   Generalbau Stockert GmbH — Design-System
   Tokens, Typo, Komponenten. Vanilla CSS, keine Frameworks.
   ========================================================================== */

/* --- Schriften, lokal eingebunden. Kein Call an Google-Server. ------------ */
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* --- Tokens -------------------------------------------------------------- */
:root {
  /* Farben aus dem echten Logo (07.09.2026): Anthrazit #333B3D, Bordeaux #8C2B34.
     Warmes Sand als Gegenpol, damit es nicht kalt wirkt. */
  --dark: #333b3d;
  --dark-deep: #22282a;
  --brand: #5b686b;
  --brand-light: #8d9a9d;
  --accent: #8c2b34;
  --accent-light: #b0424c;
  --sand: #f5f2ed;
  --sand-deep: #ebe8e3;
  --ink: #1c2122;
  --muted: #66706f;
  --line: #d9d6d1;
  --white: #ffffff;

  /* Typo */
  --font-head: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Type-Scale, modular 1.25 auf 17px Basis */
  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-md: 1.1875rem;
  --fs-lg: 1.5rem;
  --fs-xl: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  --fs-2xl: clamp(2.25rem, 1.4rem + 3.4vw, 3.5rem);
  --fs-3xl: clamp(2.75rem, 1.4rem + 5.4vw, 4.75rem);
  --fs-num: clamp(2.75rem, 1.6rem + 4.6vw, 4.5rem);

  /* Raster */
  --wrap: 1180px;
  --wrap-narrow: 780px;
  --gap: 1.5rem;
  --sec-y: clamp(3.5rem, 2rem + 6vw, 6.5rem);
  --radius: 3px;
  --radius-lg: 6px;

  --shadow-sm: 0 1px 2px rgba(28, 33, 34, 0.08), 0 2px 8px rgba(28, 33, 34, 0.05);
  --shadow-md: 0 4px 24px rgba(28, 33, 34, 0.1);
  --shadow-lg: 0 18px 48px rgba(28, 33, 34, 0.16);

  --header-h: 94px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); font-weight: 600; line-height: 1.15; }
h4 { font-size: var(--fs-md); font-weight: 600; }

p { margin: 0 0 1.1em; max-width: 68ch; }
a { color: var(--dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }

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

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

.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;
}

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 200;
  background: var(--accent); color: #fff; padding: 0.75rem 1.25rem;
  font-weight: 600; border-radius: 0 0 var(--radius) var(--radius);
}
.skip-link:focus { top: 0; color: #fff; }

/* --- Sektionen und Flächenrhythmus --------------------------------------- */
.section { padding-block: var(--sec-y); position: relative; }
.section--sand { background: var(--sand); }
.section--dark { background: var(--dark); color: #eceeee; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #c9cfd1; }
.section--dark a { color: #fff; }

.section-head { margin-bottom: clamp(2rem, 1rem + 3vw, 3.25rem); max-width: 40ch; }
.section-head p { color: var(--muted); font-size: var(--fs-md); margin-bottom: 0; }
.section--dark .section-head p { color: #a4adb0; }

/* Schräge Kante als Trenner, ersetzt den Bildwechsel */
.edge-top { clip-path: polygon(0 2.6vw, 100% 0, 100% 100%, 0 100%); margin-top: -2.6vw; }
.edge-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2.6vw), 0 100%); padding-bottom: calc(var(--sec-y) + 2.6vw); }

/* Zickzack als Dachprofil */
.roofline {
  height: 14px;
  background: repeating-linear-gradient(135deg, var(--accent) 0 2px, transparent 2px 9px);
  opacity: 0.55;
}
.rule-copper { width: 64px; height: 3px; background: var(--accent); margin-bottom: 1.4rem; }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; text-decoration: none;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-light); border-color: var(--accent-light); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; color: #fff; }
.btn--dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn--dark:hover { background: var(--dark-deep); color: #fff; }
.btn--sm { padding: 0.65rem 1.1rem; font-size: 1.05rem; }
.btn--wide { width: 100%; }

/* --- Header -------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; flex: none; }
.logo svg { height: 46px; width: auto; }
.logo img { height: 68px; width: auto; }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  white-space: nowrap;
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 600;
  color: var(--ink); text-decoration: none; padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}
.nav__link:hover { color: var(--accent); border-bottom-color: var(--accent); }

.has-drop { position: relative; }
.has-drop > button {
  display: flex; align-items: center; gap: 0.35rem;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--ink);
  padding: 0.4rem 0; border-bottom: 2px solid transparent;
}
.has-drop > button:hover { color: var(--accent); }
.has-drop > button svg { width: 12px; height: 12px; transition: transform 0.2s ease; }
.has-drop[data-open="true"] > button svg { transform: rotate(180deg); }
.drop {
  position: absolute; top: calc(100% + 12px); left: -1rem;
  min-width: 290px; background: #fff;
  border: 1px solid var(--line); border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-lg); padding: 0.6rem;
  list-style: none; margin: 0; display: none;
}
.has-drop[data-open="true"] .drop { display: block; }
.drop::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.drop a {
  display: block; padding: 0.55rem 0.8rem; font-size: var(--fs-sm);
  text-decoration: none; color: var(--ink); border-radius: var(--radius);
}
.drop a:hover { background: var(--sand); color: var(--accent); }

.header__cta { display: flex; align-items: center; gap: 0.75rem; flex: none; }
.header__phone {
  display: flex; align-items: center; gap: 0.5rem; text-decoration: none;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--dark);
  white-space: nowrap;
}
.header__phone svg { width: 20px; height: 20px; color: var(--accent); }
.header__phone:hover { color: var(--accent); }

.burger {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0.55rem; cursor: pointer;
}
.burger svg { width: 24px; height: 24px; }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--dark-deep) 0%, var(--dark) 45%, var(--brand) 130%);
  color: #fff;
  padding-block: clamp(3.5rem, 2rem + 7vw, 6.5rem) clamp(4rem, 2rem + 8vw, 7rem);
}
.hero__pattern {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.14; pointer-events: none;
  color: #fff;
}
.hero__silhouette {
  position: absolute; right: -4%; bottom: -6%;
  width: min(52%, 640px); opacity: 0.22; color: #fff; pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 44rem; }
.hero__inner.hero__grid { max-width: var(--wrap); }
.hero__grid .hero__copy { max-width: 40rem; }
.hero__grid h1 { font-size: var(--fs-2xl); }
.hero__eyebrow {
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 600;
  color: var(--brand-light); margin: 0 0 0.7rem; letter-spacing: 0.02em;
}
.hero h1 { color: #fff; margin-bottom: 0.45em; }
.hero__sub { font-size: var(--fs-md); color: #d3d8d9; max-width: 34rem; }

.hero__bullets { list-style: none; margin: 2rem 0; padding: 0; display: grid; gap: 0.85rem; }
.hero__bullets li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: var(--fs-md); color: #e7e9ea; }
.hero__bullets svg { width: 24px; height: 24px; flex: none; color: var(--accent-light); margin-top: 2px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1rem; }
.hero__note { font-size: var(--fs-sm); color: #a4adb0; margin: 0; }

.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: center; }
.hero__copy { position: relative; z-index: 2; }
.hero__media {
  position: relative; z-index: 2; margin: 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
  background: var(--dark-deep);
}
.hero__media::before { content: ""; position: absolute; inset: -14px -14px 14px 14px; border: 1px solid rgba(255, 255, 255, 0.18); pointer-events: none; z-index: 0; }
.hero__media picture, .hero__media img { display: block; width: 100%; height: auto; }
.hero__media img { aspect-ratio: 3 / 2; object-fit: cover; }
.hero__media-caption {
  padding: 0.9rem 1.25rem 1rem; background: #fff; color: var(--muted);
  font-size: var(--fs-sm); display: grid; gap: 0.1rem; border-top: 4px solid var(--accent);
}
.hero__media-caption strong { font-family: var(--font-head); font-size: 1.3rem; color: var(--dark); letter-spacing: 0.01em; }
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 720px; }
}
.hero__trust {
  position: relative; z-index: 2;
  margin-top: clamp(2.5rem, 1rem + 4vw, 3.5rem);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.75rem;
  padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero__trust .seal { width: 184px; height: 184px; flex: none; }
.hero__trust .seal--img { width: auto; height: 200px; }
.seal--img img { display: block; height: 100%; width: auto; filter: drop-shadow(0 10px 24px rgba(0,0,0,.35)); }

/* --- Google-Bewertungs-Pill ---------------------------------------------- */
.g-rating {
  display: inline-flex; align-items: center; gap: 0.9rem;
  padding: 0.7rem 1.2rem 0.7rem 0.8rem; text-decoration: none;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.g-rating:hover, .g-rating:focus-visible { color: var(--ink); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(28, 33, 34, 0.14); border-color: #c9c5be; }
.g-rating__mark {
  width: 38px; height: 38px; flex: none; border-radius: 50%; background: #fff;
  border: 1px solid var(--line); display: grid; place-items: center;
}
.g-rating__mark svg { width: 22px; height: 22px; }
.g-rating__body { display: grid; gap: 0.15rem; line-height: 1; }
.g-rating__row { display: flex; align-items: center; gap: 0.5rem; }
.g-rating__score { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; line-height: 1; color: inherit; }
.g-rating__stars { display: inline-flex; gap: 1px; }
.g-rating__stars svg { width: 16px; height: 16px; color: #F4B400; fill: currentColor; }
.g-rating__label { font-size: var(--fs-xs); color: var(--muted); white-space: nowrap; }
/* Dunkle Variante fuer Hero */
.g-rating--dark { background: rgba(255, 255, 255, 0.06); color: #fff; border-color: rgba(255, 255, 255, 0.18); box-shadow: none; }
.g-rating--dark:hover, .g-rating--dark:focus-visible { color: #fff; background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.35); box-shadow: none; }
.g-rating--dark .g-rating__label { color: #c9cfd1; }
/* Flache Variante in Boxen: keine Pille, volle Breite */
.g-rating--flat { display: flex; border-radius: var(--radius); box-shadow: none; padding: 0.6rem 0.8rem; }
.g-rating--flat:hover { transform: none; box-shadow: none; border-color: var(--accent); }

/* --- Trust-Leiste mit Count-Up ------------------------------------------- */
.stats { background: var(--sand); border-bottom: 1px solid var(--sand-deep); }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-block: clamp(2.25rem, 1rem + 4vw, 3.5rem);
}
.stat { padding-inline: 1.25rem; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat__num {
  font-family: var(--font-head); font-size: var(--fs-num); font-weight: 700;
  line-height: 0.9; color: var(--dark); display: block; letter-spacing: -0.02em;
}
.stat__num span { color: var(--accent); }
.stat__label { font-size: var(--fs-sm); color: var(--muted); margin: 0.6rem 0 0; max-width: 18ch; }

/* --- Leistungskacheln ---------------------------------------------------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.svc {
  display: flex; flex-direction: column; gap: 0.7rem;
  padding: 1.75rem; background: #fff; border: 1px solid var(--line);
  text-decoration: none; color: var(--ink); position: relative;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.svc:hover { border-color: var(--brand); box-shadow: var(--shadow-md); color: var(--ink); }
.svc__icon { width: 44px; height: 44px; color: var(--brand); }
.svc h3 { margin: 0; }
.svc p { margin: 0; font-size: var(--fs-sm); color: var(--muted); }
.svc__more { margin-top: auto; padding-top: 0.9rem; font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--accent); }

.svc--feature {
  grid-column: span 2; grid-row: span 1; min-height: 300px;
  background: linear-gradient(155deg, var(--dark) 0%, #414b4e 100%);
  border-color: var(--dark); color: #fff; justify-content: flex-end;
  padding: clamp(1.75rem, 1rem + 2.5vw, 2.75rem); overflow: hidden;
}
.svc--feature::after {
  content: ""; position: absolute; inset: auto -20% -30% auto;
  width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 136, 120, 0.55), transparent 68%);
}
.svc--feature > * { position: relative; z-index: 2; }
.svc--feature:hover { border-color: var(--accent); color: #fff; }
.svc--feature .svc__icon { width: 62px; height: 62px; color: var(--brand-light); }
.svc--feature h3 { font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.4rem); color: #fff; }
.svc--feature p { color: #c9cfd1; font-size: var(--fs-base); max-width: 42ch; }
.svc--feature .svc__more { color: var(--accent-light); }

/* --- Warum Stockert ------------------------------------------------------ */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem 2.25rem; }
.reason { padding-top: 1.25rem; border-top: 3px solid var(--accent); }
.reason h3 { margin-bottom: 0.4rem; }
.reason p { font-size: var(--fs-sm); color: var(--muted); margin: 0; }

/* --- Ablauf-Timeline ----------------------------------------------------- */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.flow::before {
  content: ""; position: absolute; top: 27px; left: 6%; right: 6%;
  height: 2px; background: var(--accent); opacity: 0.4;
}
.step { position: relative; text-align: left; }
.step__dot {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; position: relative; z-index: 2;
  font-family: var(--font-head); font-size: 1.6rem; font-weight: 700;
  margin-bottom: 1.1rem; box-shadow: 0 0 0 8px var(--sand);
}
.section--dark .step__dot { box-shadow: 0 0 0 8px var(--dark); }
.step h3 { margin-bottom: 0.35rem; }
.step p { font-size: var(--fs-sm); color: var(--muted); margin: 0; }

/* --- Versicherungsschaden ------------------------------------------------ */
.damage { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; }
.damage__list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.damage__list li { display: flex; gap: 0.7rem; align-items: flex-start; color: #d9dee0; font-size: var(--fs-sm); }
.damage__list svg { width: 21px; height: 21px; flex: none; color: var(--accent-light); margin-top: 3px; }
.damage__card {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
}
.damage__card .stat__num { color: #fff; font-size: clamp(2.5rem, 1.6rem + 3vw, 3.75rem); }
.damage__card p { color: #c9cfd1; font-size: var(--fs-sm); }

/* --- Referenzen ---------------------------------------------------------- */
.refs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ref { background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; }
.img-slot {
  aspect-ratio: 4 / 3; width: 100%;
  background:
    linear-gradient(135deg, rgba(94, 136, 120, 0.14), rgba(46, 74, 64, 0.2)),
    var(--sand-deep);
  position: relative; overflow: hidden;
}
.img-slot::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(46, 74, 64, 0.08) 0 1px, transparent 1px 12px);
}
.ref__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand-deep); }
.ref__media > picture, .ref__media > picture img { display: block; width: 100%; height: 100%; object-fit: cover; }
.ref__before, .hero__media picture.ref__before, .ref__media > picture.ref__before { position: absolute; left: 0.75rem; bottom: 0.75rem; width: 34%; height: auto; border: 3px solid #fff; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35); }
.ref__before img { display: block; width: 100%; height: auto; }
.ref__tag { position: absolute; right: 0.75rem; top: 0.75rem; background: var(--accent); color: #fff; font-family: var(--font-head); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.25rem 0.6rem; }
.ref__body { padding: 1.35rem 1.5rem 1.6rem; }
.ref__meta {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 600;
  color: var(--accent); margin: 0 0 0.35rem;
}
.ref h3 { font-size: var(--fs-md); margin-bottom: 0.4rem; }
.ref p { font-size: var(--fs-sm); color: var(--muted); margin: 0; }
.ref__facts { list-style: none; margin: 1rem 0 0; padding: 0.9rem 0 0; border-top: 1px solid var(--line); display: grid; gap: 0.3rem; }
.ref__facts li { font-size: var(--fs-xs); color: var(--muted); display: flex; justify-content: space-between; gap: 1rem; }
.ref__facts b { color: var(--ink); font-weight: 600; }

/* --- Bewertungen --------------------------------------------------------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review { background: var(--sand); border-left: 3px solid var(--accent); padding: 1.6rem 1.6rem 1.4rem; }
.review__stars { display: flex; gap: 3px; margin-bottom: 0.9rem; }
.review__stars svg { width: 18px; height: 18px; color: var(--accent); }
.review p { font-size: var(--fs-sm); margin-bottom: 1rem; }
.review__by { font-size: var(--fs-xs); color: var(--muted); margin: 0; }

/* --- Einzugsgebiet ------------------------------------------------------- */
.areas { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.75rem; padding: 0; list-style: none; }
.areas a {
  display: inline-block; padding: 0.55rem 1rem; background: #fff;
  border: 1px solid var(--line); text-decoration: none; font-size: var(--fs-sm);
  color: var(--ink); border-radius: 999px;
}
.areas a:hover { border-color: var(--accent); color: var(--accent); }
.areas--plain span {
  display: inline-block; padding: 0.55rem 1rem; background: var(--sand);
  border: 1px solid var(--line); font-size: var(--fs-sm); color: var(--muted); border-radius: 999px;
}

/* --- FAQ ----------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); max-width: 60rem; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.25rem 0; text-align: left;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; color: var(--ink);
  line-height: 1.2;
}
.faq__q:hover { color: var(--accent); }
.faq__q svg { width: 22px; height: 22px; flex: none; color: var(--accent); transition: transform 0.22s ease; margin-top: 2px; }
.faq__item[data-open="true"] .faq__q svg { transform: rotate(45deg); }
.faq__a { display: none; padding: 0 0 1.5rem; }
.faq__item[data-open="true"] .faq__a { display: block; }
.faq__a p { font-size: var(--fs-sm); color: var(--muted); margin-bottom: 0.8rem; max-width: 62ch; }
.faq__a p:last-child { margin-bottom: 0; }

/* --- Auf einen Blick ----------------------------------------------------- */
.glance {
  background: var(--sand); border-left: 4px solid var(--brand);
  padding: 1.5rem 1.75rem; margin-bottom: 2.5rem; max-width: 46rem;
}
.glance h2 { font-size: var(--fs-lg); margin-bottom: 0.75rem; }
.glance dl { display: grid; grid-template-columns: auto 1fr; gap: 0.45rem 1.5rem; margin: 0; font-size: var(--fs-sm); }
.glance dt { color: var(--muted); }
.glance dd { margin: 0; font-weight: 600; }

/* --- Kontakt ------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 1rem + 4vw, 3.5rem); align-items: start; }
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.35rem; }
.field label { font-size: var(--fs-sm); font-weight: 600; }
.field input, .field textarea, .field select {
  padding: 0.8rem 0.95rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; font-size: var(--fs-sm); width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand); }
.field textarea { min-height: 130px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field--check { display: flex; gap: 0.7rem; align-items: flex-start; }
.field--check input { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.field--check label { font-size: var(--fs-xs); color: var(--muted); font-weight: 400; }
.form__hp { position: absolute; left: -9999px; opacity: 0; }
.form__note { font-size: var(--fs-xs); color: var(--muted); margin: 0; }

.nap { background: var(--sand); padding: clamp(1.5rem, 1rem + 2vw, 2.25rem); border-top: 4px solid var(--dark); }
.nap h3 { margin-bottom: 1rem; }
.nap__list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.85rem; font-size: var(--fs-sm); }
.nap__list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.nap__list svg { width: 20px; height: 20px; flex: none; color: var(--brand); margin-top: 3px; }
.nap__list a { font-weight: 600; text-decoration: none; }
.nap__list a:hover { text-decoration: underline; }

.map-consent {
  aspect-ratio: 16 / 10; background: var(--dark); color: #fff;
  display: grid; place-items: center; text-align: center; padding: 1.5rem;
}
.map-consent p { font-size: var(--fs-xs); color: #b7bfc1; max-width: 34ch; margin: 0.75rem auto 1.1rem; }
.map-consent iframe { width: 100%; height: 100%; border: 0; }

/* --- Footer -------------------------------------------------------------- */
.footer { background: var(--dark-deep); color: #b7bfc1; padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 0; font-size: var(--fs-sm); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer h4 { color: #fff; font-size: 1.25rem; margin-bottom: 1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer a { color: #b7bfc1; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__brand svg, .footer__brand > img { height: 68px; width: auto; margin-bottom: 1rem; display: block; }
.footer__brand p { font-size: var(--fs-sm); color: #9aa5a8; }
.footer__bottom {
  margin-top: 3rem; padding-block: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  font-size: var(--fs-xs); color: #8a9598;
}
.footer__bottom ul { display: flex; gap: 1.5rem; }
.footer__credit { margin: 1rem 0 0; font-size: var(--fs-xs); color: #7f8a8d; }
.footer__credit a { color: #a4adb0; text-decoration: none; }
.footer__credit a:hover { color: #fff; text-decoration: underline; }

/* --- Mobile Call-Leiste -------------------------------------------------- */
.callbar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--dark); border-top: 2px solid var(--accent);
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  gap: 0.6rem;
}
.callbar .btn { flex: 1; font-size: 1.1rem; padding: 0.8rem 0.5rem; }

/* --- Siegel -------------------------------------------------------------- */
.seal { display: block; }
.seal--sm { width: 96px; height: 96px; }
.footer__brand .seal--sm { width: 96px; height: 96px; }
.footer__brand .seal--img { width: auto; height: 120px; }
.footer__brand .seal--img img { filter: drop-shadow(0 6px 14px rgba(0,0,0,.4)); }

/* --- Motion ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 1000px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .svc--feature { grid-column: span 2; grid-row: span 1; }
  .reasons { grid-template-columns: repeat(2, 1fr); }
  .refs, .reviews { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 66px; }
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg); display: none; max-height: calc(100dvh - var(--header-h)); overflow-y: auto; }
  .nav[data-open="true"] { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem 1.25rem 1.5rem; }
  .nav__list > li { border-bottom: 1px solid var(--line); }
  .nav__link, .has-drop > button { width: 100%; padding: 0.95rem 0; font-size: 1.3rem; }
  .has-drop > button { justify-content: space-between; }
  .drop { position: static; display: none; box-shadow: none; border: 0; border-top: 1px solid var(--line); padding: 0.25rem 0 0.75rem; min-width: 0; }
  .has-drop[data-open="true"] .drop { display: block; }
  .burger { display: block; margin-left: auto; }
  .header__cta { display: none; }
  .callbar { display: flex; }
  body { padding-bottom: 74px; }

  .stats__grid { grid-template-columns: 1fr 1fr; gap: 2rem 0; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .flow { grid-template-columns: 1fr 1fr; }
  .flow::before { display: none; }
  .damage, .contact { grid-template-columns: 1fr; }
  .hero__silhouette { width: 78%; right: -14%; bottom: -4%; opacity: 0.16; }
}

@media (max-width: 620px) {
  .services, .reasons, .refs, .reviews { grid-template-columns: 1fr; }
  .svc--feature { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .field--row { grid-template-columns: 1fr; }
  .hero__trust { gap: 1.25rem; }
  .hero__trust .seal { width: 128px; height: 128px; }
  .logo img { height: 46px; }
  .hero__trust .seal--img { width: auto; height: 150px; }
  .flow { grid-template-columns: 1fr; gap: 1.75rem; }
  .stats__grid { gap: 1.75rem 1rem; }
  .stat { padding-inline: 0.5rem; }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }
}

/* ==========================================================================
   UNTERSEITEN (Lieferschritt 2). Leistungs-, Orts- und Textseiten.
   ========================================================================== */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(150deg, var(--dark-deep) 0%, var(--dark) 55%, var(--brand) 140%);
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem) clamp(3rem, 1.5rem + 5vw, 5rem);
}
.page-hero h1 { color: #fff; font-size: var(--fs-2xl); margin-bottom: 0.4em; max-width: 22ch; }
.page-hero .hero__sub { max-width: 60ch; }
.page-hero .hero__pattern { opacity: 0.35; }
.page-hero--plain { background: var(--dark); }
.crumbs { list-style: none; margin: 0 0 1.5rem; padding: 0; display: flex; flex-wrap: wrap; gap: 0.35rem 0.6rem; font-size: var(--fs-xs); color: #a4adb0; }
.crumbs a { color: #d9dee0; text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs li + li::before { content: "/"; margin-right: 0.6rem; opacity: 0.5; }

.answer {
  border-left: 4px solid var(--accent); padding: 0.35rem 0 0.35rem 1.4rem;
  font-size: var(--fs-md); max-width: 62ch; margin-bottom: clamp(2rem, 1rem + 3vw, 3rem);
}
.answer p { margin: 0; }

.prose { max-width: 66ch; }
.prose h2 { font-size: var(--fs-xl); margin-top: clamp(2rem, 1rem + 3vw, 3rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.75rem; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.2em; max-width: 62ch; }
.prose li { margin-bottom: 0.4em; }
.prose li::marker { color: var(--accent); }
.prose strong { color: var(--dark); }

.two-col { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: start; }
.aside { position: sticky; top: calc(var(--header-h) + 1rem); display: grid; gap: 1.25rem; }
.aside__box { background: #fff; border: 1px solid var(--line); padding: 1.5rem; }
.aside__box h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.aside__box p { font-size: var(--fs-sm); color: var(--muted); }
.aside__box ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; font-size: var(--fs-sm); }
.aside__box li a { color: var(--dark); text-decoration: none; display: flex; gap: 0.5rem; align-items: center; }
.aside__box li a:hover { color: var(--accent); text-decoration: underline; }
.aside__box li svg { width: 16px; height: 16px; color: var(--accent); flex: none; }
.aside__box--dark { background: var(--dark); border-color: var(--dark); color: #fff; }
.aside__box--dark h3 { color: #fff; }
.aside__box--dark p { color: #c9cfd1; }
.aside__box .btn { width: 100%; justify-content: center; }

.spec { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); margin: 0.5rem 0 1.5rem; max-width: 66ch; }
.spec th, .spec td { text-align: left; vertical-align: top; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--line); }
.spec th { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--dark); background: var(--sand); }
.spec td:first-child { font-weight: 600; color: var(--dark); white-space: nowrap; }
.spec caption { text-align: left; caption-side: top; font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; color: var(--dark); padding-bottom: 0.6rem; }

.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.legal { max-width: 74ch; }
.legal h2 { font-size: var(--fs-lg); margin-top: 2.25rem; }
.legal h3 { font-size: 1.15rem; margin-top: 1.5rem; }
.legal p, .legal li { font-size: var(--fs-sm); }

.cta-band { background: var(--dark); color: #fff; padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.cta-band .wrap { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.cta-band h2 { color: #fff; margin: 0; font-size: var(--fs-xl); max-width: 28ch; }
.cta-band p { color: #c9cfd1; margin: 0.35rem 0 0; }
.cta-band .hero__actions { margin: 0; }

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .aside { position: static; }
  .related { grid-template-columns: 1fr; }
  .spec td:first-child { white-space: normal; }
}

/* Spec-Sektion: Kopf links, Tabelle rechts */
.spec-grid { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr); gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: start; }
.spec-grid .section-head { margin-bottom: 0; position: sticky; top: calc(var(--header-h) + 1.5rem); }
.spec-grid .spec { max-width: none; margin: 0; }
.aside__box li svg { transform: rotate(-90deg); }
@media (max-width: 900px) {
  .spec-grid { grid-template-columns: 1fr; }
  .spec-grid .section-head { position: static; margin-bottom: 1.5rem; }
}

/* ==========================================================================
   CONSENT-BANNER
   ========================================================================== */
.consent { position: fixed; inset: 0; z-index: 200; display: flex; align-items: flex-end; justify-content: center; padding: 1rem; }
.consent[hidden], .consent [hidden] { display: none !important; }
.consent__backdrop { position: absolute; inset: 0; background: rgba(28, 33, 34, 0.55); backdrop-filter: blur(2px); }
.consent__box {
  position: relative; width: min(100%, 640px); background: #fff; border-top: 4px solid var(--accent);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35); padding: clamp(1.25rem, 1rem + 1.5vw, 2rem);
  max-height: calc(100vh - 2rem); overflow: auto;
}
.consent__head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; }
.consent__icon { width: 26px; height: 26px; color: var(--accent); flex: none; }
.consent__box h2 { font-size: 1.6rem; margin: 0; }
.consent__text { font-size: var(--fs-sm); color: var(--muted); margin-bottom: 1.1rem; }
.consent__text a { color: var(--dark); }
.consent__options { display: grid; gap: 0.6rem; margin-bottom: 1.1rem; }
.consent__opt { display: flex; gap: 0.8rem; align-items: flex-start; padding: 0.7rem 0.9rem; border: 1px solid var(--line); background: var(--sand); cursor: pointer; }
.consent__opt input { margin-top: 0.3rem; width: 18px; height: 18px; accent-color: var(--accent); flex: none; }
.consent__opt b { display: block; font-family: var(--font-head); font-size: 1.1rem; color: var(--dark); }
.consent__opt small { display: block; font-size: var(--fs-xs); color: var(--muted); }
.consent__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.consent__actions .btn { flex: 1 1 200px; justify-content: center; }
.consent__link { background: none; border: 0; padding: 0.6rem 0.4rem; font: inherit; font-size: var(--fs-sm); color: var(--dark); text-decoration: underline; cursor: pointer; }
.consent__legal { margin: 0.9rem 0 0; font-size: var(--fs-xs); color: var(--muted); }
.consent__legal a { color: var(--muted); }
body.consent-open { overflow: hidden; }
@media (max-width: 600px) {
  .consent { padding: 0; align-items: flex-end; }
  .consent__box { max-height: 92vh; }
}

/* ==========================================================================
   WHATSAPP-BUTTON, sticky
   ========================================================================== */
.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90;
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: #25D366; color: #fff; text-decoration: none; font-weight: 700;
  font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 0.02em;
  padding: 0.7rem 1.1rem 0.7rem 0.85rem; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28); transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-float svg { width: 26px; height: 26px; flex: none; }
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32); color: #fff; }
.wa-float:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
@media (max-width: 860px) {
  .wa-float { bottom: 5.4rem; right: 0.9rem; padding: 0.7rem; }
  .wa-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .wa-float svg { width: 30px; height: 30px; }
}
body.consent-open .wa-float { display: none; }

/* Header zwischen 861 und 1200 px: Logo bleibt gross, Navigation rueckt zusammen */
@media (min-width: 861px) and (max-width: 1200px) {
  .logo img { height: 54px; }
  .nav__list { gap: 1rem; }
  .nav__link, .has-drop > button { font-size: 1.05rem; white-space: nowrap; }
  .header__cta { gap: 0.5rem; }
  .header__phone span { display: none; }
  .header__cta .btn { padding-inline: 0.9rem; }
}
@media (min-width: 861px) and (max-width: 1000px) {
  .logo img { height: 46px; }
  .header__phone { display: none; }
  .nav__list { gap: 0.8rem; }
}

@media (min-width: 1201px) and (max-width: 1460px) {
  .nav__list { gap: 1.15rem; }
  .logo img { height: 60px; }
}

/* Bild im Hero der Leistungsseiten und Fototafel auf Textseiten */
.page-hero .hero__grid { align-items: center; }
.page-hero__media { margin: 0; }
.page-hero__media img { aspect-ratio: 16 / 10; }
.page-hero--img h1 { max-width: none; }
.photo-band { margin-top: calc(-1 * clamp(2rem, 1rem + 3vw, 3.5rem)); position: relative; z-index: 3; }
.photo-band__fig { margin: 0; background: #fff; padding: 0.6rem; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25); }
.photo-band__fig picture, .photo-band__fig img { display: block; width: 100%; height: auto; }
.photo-band__fig img { aspect-ratio: 3 / 2; object-fit: cover; }
.photo-band__fig figcaption { padding: 0.9rem 0.6rem 0.4rem; font-size: var(--fs-sm); color: var(--muted); }
.photo-band__fig figcaption strong { font-family: var(--font-head); font-size: 1.2rem; color: var(--dark); margin-right: 0.4rem; }
