/* =====================================================================
   Badsanierung Hoffmann — Rebuild (statisch, handgebaut, kein Framework)
   Ein gemeinsames Stylesheet für alle Seiten.
   ---------------------------------------------------------------------
   PROVISORISCHE MARKENFARBEN (markiert): Petrol #12596A und Akzent
   Messing #B67F26 sind für den Rebuild abgeleitete Platzhalter — NICHT
   die bestätigte Markenpalette. Bei Vorlage von Logo/CI einfach die
   Tokens tauschen, die Struktur bleibt stabil.
   Schrift: ausschliesslich System-Stack (kein externer Font-Abruf,
   kein CDN, keine Remote-Assets -> DSGVO-sauber).
   ===================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Primitive Palette */
  --c-petrol-900: #06272f;
  --c-petrol-800: #0b3d49;
  --c-petrol-700: #12596a;   /* provisorische Primärfarbe */
  --c-petrol-600: #1a7489;
  --c-petrol-500: #2a90a8;
  --c-petrol-100: #dcecf0;
  --c-petrol-050: #f1f8fa;

  --c-brass-700: #8f6318;
  --c-brass-600: #a67322;
  --c-brass-500: #b67f26;    /* provisorischer Akzent */
  --c-brass-100: #f8eed9;

  --c-ink-900: #14202a;
  --c-ink-700: #35454f;
  --c-ink-500: #5b6b76;
  --c-ink-300: #94a3ac;

  --c-line: #dde5e9;
  --c-bg: #ffffff;
  --c-bg-soft: #f5f9fa;
  --c-white: #ffffff;

  --c-success: #1f7a4d;
  --c-warn-bg: #fff6e6;
  --c-warn-line: #e6b453;
  --c-warn-ink: #77520f;

  /* Semantische Rollen */
  --brand: var(--c-petrol-700);
  --brand-dark: var(--c-petrol-900);
  --accent: var(--c-brass-500);
  --accent-dark: var(--c-brass-700);
  --text: var(--c-ink-900);
  --text-soft: var(--c-ink-700);
  --text-muted: var(--c-ink-500);
  --surface: var(--c-bg);
  --surface-soft: var(--c-bg-soft);
  --border: var(--c-line);
  --focus: #1668d8;

  /* Fluide Typo-Skala */
  --fs-hero: clamp(2.05rem, 1.35rem + 3.1vw, 3.5rem);
  --fs-h1: clamp(1.8rem, 1.3rem + 2.1vw, 2.85rem);
  --fs-h2: clamp(1.48rem, 1.18rem + 1.3vw, 2.05rem);
  --fs-h3: clamp(1.18rem, 1.06rem + 0.5vw, 1.42rem);
  --fs-lead: clamp(1.06rem, 1rem + 0.4vw, 1.26rem);
  --fs-base: 1.0625rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;

  /* Abstands-Rhythmus */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;    --sp-7: 2.75rem; --sp-8: 3.5rem;
  --sp-9: 4.5rem;   --sp-10: 6rem;

  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(6,39,47,.06), 0 2px 8px rgba(6,39,47,.05);
  --shadow-md: 0 8px 24px rgba(6,39,47,.10), 0 2px 6px rgba(6,39,47,.06);
  --shadow-lg: 0 18px 50px rgba(6,39,47,.16);

  --maxw: 1180px;
  --maxw-narrow: 760px;

  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  --header-h: 74px;
}

/* ---------- 2. Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { line-height: 1.18; color: var(--brand-dark); font-weight: 800;
  letter-spacing: -.015em; margin: 0 0 var(--sp-4); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 750; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 var(--sp-4); }
a { color: var(--c-petrol-600); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--brand); }
img, svg { max-width: 100%; height: auto; }
ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.3em; }
li { margin-bottom: .35em; }
strong { font-weight: 700; color: var(--text); }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--sp-6) 0; }

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

/* Basisgröße für alle Inline-SVG-Icons */
.ic { width: 1.15em; height: 1.15em; flex: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand-dark); color: #fff; padding: .7em 1.1em;
  border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- 3. Layout-Helfer ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem); }
.narrow { max-width: var(--maxw-narrow); }
.section { padding-block: clamp(2.75rem, 6vw, 5.25rem); }
.section--soft { background: var(--surface-soft); }
.section--tint { background: var(--c-petrol-050); }
.section--brand { background: linear-gradient(160deg, var(--c-petrol-800), var(--c-petrol-900)); color: #d7e6ea; }
.section--brand h2, .section--brand h3 { color: #fff; }
.eyebrow { display: inline-flex; align-items: center; gap: .45em; font-size: var(--fs-xs);
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: var(--sp-3); }
.eyebrow .ic { width: 1.2em; height: 1.2em; }
.section--brand .eyebrow { color: var(--c-brass-500); }
.section-head { max-width: 62ch; margin-bottom: var(--sp-6); }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { font-size: var(--fs-lead); color: var(--text-soft); }
.text-center { text-align: center; }

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: .95em 1.5em; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--cta { background: var(--accent); color: #241505; box-shadow: var(--shadow-sm); }
.btn--cta:hover { background: var(--accent-dark); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); color: #fff; }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--outline { background: #fff; border-color: var(--border); color: var(--brand); }
.btn--outline:hover { border-color: var(--brand); background: var(--c-petrol-050); color: var(--brand); }
.btn--lg { font-size: 1.06rem; padding: 1.05em 1.9em; }
.btn .ic { width: 1.15em; height: 1.15em; flex: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ---------- 5. Header + Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); min-height: var(--header-h); }
.site-header .container { max-width: 1320px; }
.brand-logo { display: inline-flex; align-items: center; gap: .55em; flex: none;
  text-decoration: none; color: var(--brand-dark); font-weight: 800; font-size: 1.02rem;
  letter-spacing: -.02em; }
.brand-logo .mark { width: 36px; height: 36px; flex: none; }
.brand-logo .brand-name { line-height: 1.05; }
.brand-logo .brand-name span { display: block; font-size: .66rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); }

.nav-toggle { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
/* fokus checkboxa rysujemy na etykiecie – checkbox sam jest wizualnie ukryty, ale FOKUSOWALNY */
.nav-toggle:focus-visible + .nav-toggle-btn { outline: 3px solid var(--focus); outline-offset: 2px; }
.nav-toggle-btn { display: none; }

.primary-nav { flex: none; }
.primary-nav ul { display: flex; align-items: center; gap: 1px;
  list-style: none; margin: 0; padding: 0; }
.primary-nav li { margin: 0; }
.primary-nav a { display: inline-block; padding: .5em .55em; border-radius: 8px;
  color: var(--text-soft); font-weight: 600; font-size: .9rem; text-decoration: none;
  white-space: nowrap; }
.primary-nav a:hover { background: var(--c-petrol-050); color: var(--brand); }
.primary-nav a[aria-current="page"] { color: var(--brand); background: var(--c-petrol-100); }
.header-cta { display: inline-flex; align-items: center; gap: var(--sp-3); flex: none; }
.header-phone { display: inline-flex; align-items: center; gap: .45em;
  font-weight: 800; font-size: .95rem; color: var(--brand-dark); text-decoration: none; white-space: nowrap; }
.header-phone .ic { width: 1.1em; height: 1.1em; color: var(--accent-dark); }
.header-phone:hover { color: var(--accent-dark); }

@media (max-width: 1259px) {
  .nav-toggle-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 10px;
    background: #fff; cursor: pointer; color: var(--brand-dark); flex: none;
    margin-left: auto;
  }
  .nav-toggle-btn .ic { width: 24px; height: 24px; }
  .primary-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height .28s ease;
  }
  .primary-nav ul { flex-direction: column; align-items: stretch; padding: var(--sp-3); gap: 2px; }
  .primary-nav a { padding: .85em 1em; font-size: 1.05rem; }
  .nav-toggle:checked ~ .primary-nav { max-height: 80vh; overflow: auto; }
}
@media (max-width: 720px) {
  .header-phone .num { display: none; }
  .header-phone { width: 46px; height: 46px; justify-content: center;
    border: 1px solid var(--border); border-radius: 10px; }
  .header-phone .ic { width: 22px; height: 22px; }
}

/* ---------- 6. Hero ---------- */
.hero { position: relative; color: #e7f1f4; overflow: hidden;
  background: linear-gradient(155deg, var(--c-petrol-800) 0%, var(--c-petrol-900) 62%, #04191f 100%); }
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .55; pointer-events: none; z-index: 1;
  background-image: radial-gradient(circle at 84% 14%, rgba(182,127,38,.18), transparent 46%),
                    radial-gradient(circle at 10% 86%, rgba(42,144,168,.32), transparent 50%);
}
.hero .container { position: relative; z-index: 2; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 45%; z-index: 0; }
.hero-shade { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(6,39,47,.94), rgba(6,39,47,.82) 46%, rgba(11,61,73,.62)); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--sp-7);
  align-items: center; padding-block: clamp(2.5rem, 6vw, 5rem); }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: var(--sp-6); } }
.hero h1 { color: #fff; font-size: var(--fs-hero); margin-bottom: var(--sp-4); }
.hero strong, .cta-band strong, .section--brand strong { color: #fff; }
.hero a { color: #fff; }
.hero .lead { color: #c2d6dc; margin-bottom: var(--sp-5); }
.hero-claim { font-weight: 700; color: #fff; font-size: 1.1rem; margin-bottom: var(--sp-5); }
.hero-usps { list-style: none; padding: 0; margin: var(--sp-5) 0 0; display: grid; gap: .55em; }
.hero-usps li { display: flex; align-items: flex-start; gap: .6em; color: #d2e3e8; font-weight: 600; }
.hero-usps .ic { width: 1.3em; height: 1.3em; color: var(--c-brass-500); flex: none; margin-top: .1em; }
.hero-phone-lg { display: inline-flex; align-items: center; gap: .5em; white-space: nowrap;
  font-size: 1.4rem; font-weight: 800; color: #fff; text-decoration: none; }
.hero-phone-lg .ic { width: 1.05em; height: 1.05em; color: var(--c-brass-500); }
.hero-phone-lg:hover { color: var(--c-brass-500); }
.hero--compact .hero-grid { padding-block: clamp(2rem, 4vw, 3.25rem); }

/* Kontakt-/Angebotskarte */
.quote-card { background: #fff; color: var(--text); border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem); box-shadow: var(--shadow-lg); }
.quote-card h2 { font-size: 1.3rem; margin-bottom: var(--sp-2); }
.quote-card .form-note { font-size: var(--fs-sm); color: var(--text-muted); margin-bottom: var(--sp-4); }

/* ---------- 7. Karten ---------- */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--sp-5); box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .15s ease, border-color .2s ease; }
.card--link { display: flex; flex-direction: column; }
a.card { text-decoration: none; color: inherit; }
a.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--c-petrol-100); }
.card h3 { margin-bottom: var(--sp-2); }
.card p { color: var(--text-soft); margin-bottom: var(--sp-3); }
.card p:last-child { margin-bottom: 0; }
.card .card-more { margin-top: auto; font-weight: 700; color: var(--brand);
  display: inline-flex; align-items: center; gap: .35em; }
a.card:hover .card-more { color: var(--accent-dark); }

.icon-badge { display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 14px; margin-bottom: var(--sp-4);
  background: var(--c-petrol-050); color: var(--brand); border: 1px solid var(--c-petrol-100); }
.icon-badge .ic { width: 30px; height: 30px; }
.card--accent .icon-badge { background: var(--c-brass-100); color: var(--accent-dark); border-color: #eeddba; }

/* ---------- 8. Prozess / Zeitstrahl ---------- */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-5); counter-reset: step; }
.timeline.timeline--row { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .timeline.timeline--row { grid-template-columns: 1fr; } }
.timeline li { position: relative; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: var(--sp-5); padding-top: var(--sp-6);
  box-shadow: var(--shadow-sm); margin: 0; }
.timeline li::before { counter-increment: step; content: counter(step);
  position: absolute; top: -22px; left: var(--sp-5);
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--accent); color: #241505; font-weight: 800; font-size: 1.2rem;
  border-radius: 50%; box-shadow: var(--shadow-sm); border: 3px solid #fff; }
.timeline li h3 { margin-bottom: var(--sp-2); }
.timeline li p { color: var(--text-soft); margin: 0; }

/* Nummerierte Schrittliste (Ablauf) */
.steps { list-style: none; margin: var(--sp-6) 0 0; padding: 0; counter-reset: bigstep;
  display: grid; gap: var(--sp-6); }
.steps > li { position: relative; margin: 0; padding-left: 4.25rem; }
.steps > li::before { counter-increment: bigstep; content: counter(bigstep);
  position: absolute; left: 0; top: -.15em; width: 3rem; height: 3rem;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--c-petrol-050); border: 2px solid var(--c-petrol-100);
  color: var(--brand); font-weight: 800; font-size: 1.25rem; }
@media (max-width: 560px) { .steps > li { padding-left: 0; padding-top: 3.6rem; }
  .steps > li::before { top: 0; } }
.steps h3 { margin-bottom: var(--sp-2); }

/* ---------- 9. Vertrauensband ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-5); }
@media (max-width: 820px){ .trust-grid { grid-template-columns: 1fr; } }
.trust-item { display: flex; gap: var(--sp-4); }
.trust-item .ic-wrap { flex: none; width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,.1); display: grid; place-items: center; color: var(--c-brass-500); }
.trust-item .ic { width: 26px; height: 26px; }
.trust-item h3 { font-size: 1.1rem; margin-bottom: .3em; }
.trust-item p { color: #bed2d8; margin: 0; font-size: var(--fs-sm); }

/* ---------- 10. Hinweise / Platzhalter ---------- */
.owner-note {
  border: 1px solid var(--c-warn-line); background: var(--c-warn-bg); color: var(--c-warn-ink);
  border-radius: var(--radius-sm); padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-sm); margin-bottom: var(--sp-5);
}
.owner-note strong { color: var(--c-warn-ink); }
.note {
  border-left: 4px solid var(--accent); background: var(--c-brass-100);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--sp-4) var(--sp-5); color: var(--text-soft);
}
.note h3 { margin-bottom: var(--sp-2); font-size: 1.08rem; }
.note p:last-child { margin: 0; }

/* Bild-Platzhalter (Fotos folgen in einem separaten Schritt) */
.img-ph { position: relative; border-radius: var(--radius); overflow: hidden; margin: 0;
  background: linear-gradient(135deg, var(--c-petrol-100), var(--c-petrol-050));
  border: 1px solid var(--c-petrol-100); display: grid; place-items: center;
  min-height: 220px; color: var(--brand); }
.img-ph .ic { width: 64px; height: 64px; opacity: .55; }
.img-ph.tall { min-height: 340px; }
.img-ph figcaption, .img-ph .cap { position: absolute; bottom: 0; left: 0; right: 0;
  font-size: var(--fs-xs); color: var(--text-muted); background: rgba(255,255,255,.78);
  padding: .4em .7em; }
.img-ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.img-ph.has-photo .ic { display: none; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- 11. FAQ (natives details) ---------- */
.faq { display: grid; gap: var(--sp-3); }
.faq details { border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: #fff; overflow: hidden; }
.faq summary { cursor: pointer; padding: var(--sp-4) var(--sp-5); font-weight: 700;
  color: var(--brand-dark); list-style: none; display: flex; justify-content: space-between;
  gap: 1em; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--accent-dark); line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { border-bottom: 1px solid var(--border); }
.faq .faq-body { padding: var(--sp-4) var(--sp-5); color: var(--text-soft); }
.faq .faq-body p:last-child { margin: 0; }

/* ---------- 12. Formulare ---------- */
.form-grid { display: grid; gap: var(--sp-4); }
.field { display: grid; gap: .4em; }
.field label { font-weight: 650; font-size: var(--fs-sm); color: var(--text-soft); }
.field .req { color: var(--accent-dark); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--text);
  padding: .8em .9em; border: 1px solid #c3d1d6; border-radius: var(--radius-sm);
  background: #fff; width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid var(--focus); outline-offset: 1px; border-color: var(--brand); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 560px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-fallback { font-size: var(--fs-sm); color: var(--text-muted); margin-top: var(--sp-3); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- 13. Brotkrümel ---------- */
.breadcrumb { padding: var(--sp-3) 0; font-size: var(--fs-sm); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4em; margin: 0; padding: 0; }
.breadcrumb li { display: flex; align-items: center; gap: .4em; color: var(--text-muted); margin: 0; }
.breadcrumb li + li::before { content: "\203A"; color: var(--c-ink-300); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--text-soft); }

/* ---------- 14. Fliesstext ---------- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: var(--sp-7); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: var(--sp-5); }
.prose ul { padding-left: 1.2em; }
.prose li { color: var(--text-soft); }
.check-list { list-style: none; padding: 0; display: grid; gap: .5em; margin-bottom: var(--sp-4); }
.check-list li { display: flex; align-items: flex-start; gap: .6em; color: var(--text-soft); }
.check-list .ic { width: 1.25em; height: 1.25em; color: var(--c-success); flex: none; margin-top: .22em; }

/* Fakten-Raster */
.fact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--sp-4); }
@media (max-width: 620px){ .fact-grid { grid-template-columns: 1fr; } }
.fact { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: var(--sp-4) var(--sp-5); margin: 0; }
.fact dt { font-weight: 700; color: var(--brand-dark); margin-bottom: .2em; }
.fact dd { margin: 0; color: var(--text-soft); font-size: var(--fs-sm); }

/* Kontaktdaten-Block */
.contact-facts { display: grid; gap: var(--sp-4); margin: 0; }
.contact-facts > div { display: flex; gap: var(--sp-4); align-items: flex-start; }
.contact-facts .ic-wrap { flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--c-petrol-050); border: 1px solid var(--c-petrol-100);
  display: grid; place-items: center; color: var(--brand); }
.contact-facts .ic { width: 22px; height: 22px; }
.contact-facts dt { font-weight: 700; color: var(--brand-dark); }
.contact-facts dd { margin: 0; color: var(--text-soft); }
.contact-facts .big { font-size: 1.25rem; font-weight: 800; color: var(--brand-dark); text-decoration: none; }
.contact-facts .big:hover { color: var(--accent-dark); }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: .5em; list-style: none; padding: 0; margin: 0; }
.chips li { margin: 0; }
.chip { display: inline-block; background: var(--c-petrol-050); border: 1px solid var(--c-petrol-100);
  color: var(--brand); border-radius: 999px; padding: .35em .85em; font-size: var(--fs-sm); font-weight: 600; }

/* Tabelle (Kosten-Richtwerte) */
.table-wrap { overflow-x: auto; margin-bottom: var(--sp-5); border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: #fff; }
.data-table { width: 100%; border-collapse: collapse; font-size: var(--fs-base); min-width: 30rem; }
.data-table caption { text-align: left; padding: var(--sp-4) var(--sp-5) 0;
  font-size: var(--fs-sm); color: var(--text-muted); }
.data-table th, .data-table td { text-align: left; padding: .85em var(--sp-5);
  border-bottom: 1px solid var(--border); }
.data-table thead th { background: var(--c-petrol-050); color: var(--brand-dark);
  font-size: var(--fs-sm); letter-spacing: .02em; }
.data-table tbody tr:last-child th, .data-table tbody tr:last-child td { border-bottom: 0; }
.data-table td { color: var(--text-soft); white-space: nowrap; }
.data-table tbody th { font-weight: 650; color: var(--text); }

/* ---------- 15. Bezirksliste ---------- */
.district-list { columns: 2; column-gap: var(--sp-5); list-style: none; padding: 0; margin: 0; }
@media (max-width: 480px){ .district-list { columns: 1; } }
.district-list li { margin-bottom: .5em; break-inside: avoid; }
.district-list a { display: inline-flex; align-items: center; gap: .5em; text-decoration: none;
  color: var(--text-soft); font-weight: 600; }
.district-list a::before { content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex: none; }
.district-list a:hover { color: var(--brand); }

/* ---------- 16. CTA-Band ---------- */
.cta-band { background: linear-gradient(155deg, var(--c-petrol-700), var(--c-petrol-900));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 3rem); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c8dde2; max-width: 56ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: var(--sp-5); }

/* ---------- 17. Footer ---------- */
.site-footer { background: var(--c-petrol-900); color: #b1c6cc; padding-block: var(--sp-8) var(--sp-6); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: var(--sp-6); }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: .9rem; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: var(--sp-4); }
.site-footer a { color: #b1c6cc; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-nav ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5em; }
.footer-nav li { margin: 0; }
.footer-brand .brand-logo { color: #fff; }
.footer-brand .brand-logo .brand-name span { color: #84a2aa; }
.footer-brand p { color: #98b3ba; font-size: var(--fs-sm); margin-top: var(--sp-4); }
.footer-contact p { margin: 0 0 .5em; font-size: var(--fs-sm); }
.footer-contact .phone { font-size: 1.18rem; font-weight: 800; color: #fff; }
.footer-contact .phone a { color: #fff; }
.footer-hours { font-size: var(--fs-sm); margin: var(--sp-4) 0 0; }
.footer-hours dt { color: #fff; font-weight: 600; margin-top: .4em; }
.footer-hours dd { margin: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: var(--sp-7);
  padding-top: var(--sp-5); display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: var(--sp-3); font-size: var(--fs-xs); color: #84a2aa; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: var(--sp-4); }

/* ---------- 18. Feste Anruf-Leiste (mobil) ---------- */
.mobile-callbar { display: none; }
@media (max-width: 720px) {
  .mobile-callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: var(--border); box-shadow: 0 -2px 12px rgba(6,39,47,.15);
  }
  .mobile-callbar a { display: flex; align-items: center; justify-content: center; gap: .5em;
    padding: .95em; font-weight: 700; text-decoration: none; font-size: 1rem; }
  .mobile-callbar .call { background: var(--accent); color: #241505; }
  .mobile-callbar .quote { background: #fff; color: var(--brand); }
  .mobile-callbar .ic { width: 1.2em; height: 1.2em; }
  body { padding-bottom: 58px; }
}

/* ---------- 19. Utilities ---------- */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.stack > * + * { margin-top: var(--sp-4); }
.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; }
.split { display:grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); align-items:center; }
.split--start { align-items: start; }
@media (max-width: 820px){ .split { grid-template-columns: 1fr; } }
.badge-soft { display:inline-block; background:var(--c-petrol-050); color:var(--brand);
  border:1px solid var(--c-petrol-100); border-radius:999px; padding:.3em .8em;
  font-size:var(--fs-xs); font-weight:700; }

/* Schrittlabel im Ablauf */
.steps .step-label { display: block; font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dark);
  margin-bottom: .35em; }

/* Sehr schmale Viewports (<=420px): Logo kompakter, damit Menü + Telefon Platz haben */
@media (max-width: 420px) {
  .brand-logo { font-size: .98rem; }
  .brand-logo .mark { width: 34px; height: 34px; }
  .brand-logo .brand-name span { display: none; }
  .header-cta { gap: var(--sp-2); }
}

.img-ph img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.img-ph.has-photo .ic{display:none}

/* Statusmeldung des Lead-Formulars */
.form-status{margin:var(--sp-3) 0 0;padding:.75em 1em;border-radius:var(--radius);font-size:.95em;line-height:1.5}
.form-status[data-state="ok"]{background:#e8f5ec;border:1px solid #35804f;color:#1c5433}
.form-status[data-state="error"]{background:#fdecec;border:1px solid #b3261e;color:#8c1d18}

/* Direkter Kontakt (ersetzt das Formular) */
.contact-direct { display: grid; gap: var(--sp-3); }
.contact-direct p { margin: 0; }
.contact-direct .btn { width: 100%; justify-content: center; }
.contact-direct a[href^="mailto:"] { font-weight: 600; word-break: break-word; }
