/* ============================================================================
   Hausmeisterservice Jesse Meisterjahn - stil.css
   Eine Datei, keine Abhaengigkeiten, keine externen Ressourcen.

   GLIEDERUNG
   01 Variablen        06 Buttons          11 Formular
   02 Grundlagen       07 Karten/Raster    12 FAQ
   03 Layout           08 Bildplaetze      13 Fussbereich
   04 Typografie       09 Startseite       14 Sticky-Kontakt
   05 Kopfbereich      10 Tabellen         15 Druck / Bewegung
   ========================================================================== */

/* == 01 VARIABLEN ========================================================= */
:root {
  --gruen-900: #1C3A2E;   /* Kopf-/Fussbereich, dunkle Flaechen              */
  --gruen-800: #234A3A;   /* Zwischenebene auf Dunkelgruen                   */
  --gruen-700: #2A5343;   /* Hover auf dunklen Flaechen                      */
  --gruen-100: #E8EDE7;   /* helle Flaechenhinterlegung                      */
  --sand:      #F5F7F4;   /* Abschnittswechsel, Kartenhintergrund            */
  --gold:      #A87C2D;   /* Flaechen, Linien, Fokusrahmen                   */
  /* Fuer Text: --gold erreicht als 16-px-Schrift nur 3,8:1 auf Weiss und 3,5:1
     auf Sand und verfehlt damit die 4,5:1 aus WCAG 1.4.3. Dieser dunklere Ton
     erreicht 5,7:1 auf Weiss, 5,3:1 auf Sand und 4,8:1 auf Hellgruen. Flaechen,
     Linien und der Fokusrahmen bleiben beim helleren --gold. */
  --gold-text: #86601F;   /* derselbe Ton fuer Text, WCAG-tauglich           */
  --gold-hell: #D6A34A;   /* Akzent auf dunklem Grund (5,4:1 auf gruen-900)  */
  --text:      #1A1A1A;   /* Fliesstext                                      */
  --text-grau: #4A4A4A;   /* Sekundaertext - nicht heller setzen!            */
  --weiss:     #FFFFFF;
  --rot:       #A32D2D;   /* ausschliesslich Formularfehler                  */

  --linie:      #E3E0D8;  /* warme Haarlinie auf hellem Grund                */
  --linie-dunkel: rgba(214,163,74,.26);  /* Goldhaarlinie auf Dunkelgruen    */
  --hinweis-bg: #FBF6EC;

  /* Tiefe: sehr flach gehalten - eine Kante, ein weicher Abfall.            */
  --schatten-1: 0 1px 2px rgba(28,58,46,.05), 0 8px 24px -18px rgba(28,58,46,.42);
  --schatten-2: 0 2px 4px rgba(28,58,46,.07), 0 18px 40px -22px rgba(28,58,46,.5);
  --schatten-knopf: 0 1px 2px rgba(28,58,46,.14), 0 8px 18px -12px rgba(28,58,46,.55);

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

  --breite:     1140px;
  --lesebreite: 34rem;
  --radius:     8px;
  --radius-gr:  12px;

  --r1: .25rem;  --r2: .5rem;  --r3: .75rem;  --r4: 1rem;
  --r5: 1.5rem;  --r6: 2rem;   --r7: 3rem;    --r8: 5.5rem;
}

/* == 02 GRUNDLAGEN ======================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 1rem; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--weiss);
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gruen-900); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-text); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 3px; }
.abschnitt--dunkel :focus-visible, .kopf :focus-visible,
.fuss :focus-visible, .sticky-kontakt :focus-visible { outline-color: var(--gold-hell); }

.sprunglink {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold-hell); color: var(--gruen-900);
  padding: var(--r3) var(--r5); font-weight: 700; text-decoration: none;
}
.sprunglink:focus { left: 0; }

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

/* == 03 LAYOUT ============================================================ */
.behaelter { width: 100%; max-width: var(--breite); margin-inline: auto; padding-inline: var(--r5); }

.abschnitt { padding-block: var(--r8); position: relative; }
.abschnitt--sand   { background: var(--sand); }
.abschnitt--gruen  { background: var(--gruen-100); }
.abschnitt--eng    { padding-block: var(--r7); }

/* Dunkle Flaechen bekommen eine sehr feine Struktur: ein Raster aus
   Haarlinien plus ein weicher Lichtabfall oben rechts. Das nimmt der
   Flaeche das Plakative, ohne dass ein Bild geladen werden muss. */
.abschnitt--dunkel, .kopf, .fuss {
  background-color: var(--gruen-900);
  background-image:
    radial-gradient(1200px 520px at 82% -10%, rgba(214,163,74,.10), transparent 62%),
    repeating-linear-gradient(0deg,  rgba(255,255,255,.028) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.028) 0 1px, transparent 1px 52px);
}
.abschnitt--dunkel { color: var(--gruen-100); }
.abschnitt--dunkel p, .abschnitt--dunkel li { color: var(--gruen-100); }
.abschnitt--dunkel a { color: var(--weiss); text-decoration-color: var(--gold-hell); }
.abschnitt--dunkel a:hover { color: var(--gold-hell); }
.abschnitt--dunkel .vor { color: var(--gold-hell); }
.abschnitt--dunkel .klein, .abschnitt--dunkel .grau { color: #C6D2C6; }
.abschnitt--dunkel strong { color: var(--weiss); }

@media (max-width: 767px) { .abschnitt { padding-block: var(--r7); } }

.zweispaltig { display: grid; gap: var(--r6); }
@media (min-width: 900px) {
  .zweispaltig { grid-template-columns: 1fr 1fr; align-items: center; gap: var(--r7); }
  .zweispaltig--text-schmal { grid-template-columns: 1.34fr .66fr; gap: 3.5rem; }
}


/* == 04 TYPOGRAFIE ======================================================== */
h1, h2, h3, h4 { margin: 0 0 var(--r4); color: var(--gruen-900); font-weight: 700; }
h1 {
  font-size: clamp(2.1rem, 1.35rem + 3.1vw, 3.5rem);
  line-height: 1.07; letter-spacing: -.023em; margin-bottom: var(--r5);
}
h2 {
  font-size: clamp(1.6rem, 1.24rem + 1.55vw, 2.35rem);
  line-height: 1.16; letter-spacing: -.014em; margin-bottom: var(--r4);
}
h3 { font-size: 1.3rem; line-height: 1.28; letter-spacing: -.006em; }
h4 { font-size: 1.0625rem; line-height: 1.35; }
.abschnitt--dunkel h1, .abschnitt--dunkel h2,
.abschnitt--dunkel h3, .abschnitt--dunkel h4 { color: var(--weiss); }

p, ul, ol, dl, table { margin: 0 0 var(--r4); }
p, li { max-width: var(--lesebreite); }
.breit p, .breit li, table p, td p, .karte p, .karte li,
.hinweis p, .hinweis li, .ablauf p { max-width: none; }

/* Augenbraue ueber Ueberschriften - Gold, gesperrt, klein aber nie unter 16 px */
.vor {
  display: block; font-size: 1rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-text); margin-bottom: var(--r3);
}
.gross {
  font-size: clamp(1.125rem, 1.04rem + .38vw, 1.3rem);
  line-height: 1.55; color: var(--text-grau);
}
.abschnitt--dunkel .gross { color: #D8E2D8; }
.klein { font-size: 1rem; color: var(--text-grau); }
.grau  { color: var(--text-grau); }

ul.liste { list-style: none; padding: 0; }
ul.liste li { position: relative; padding-left: 1.75em; margin-bottom: var(--r3); }
ul.liste li::before {
  content: ""; position: absolute; left: .35em; top: .66em;
  width: 7px; height: 7px; background: var(--gold);
  transform: rotate(45deg);
}
.abschnitt--dunkel ul.liste li::before { background: var(--gold-hell); }

hr.trenner { border: 0; height: 1px; background: var(--linie); margin: var(--r7) 0; }

/* Faktenzeile */
.faktenzeile { list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: var(--r3) var(--r5); }
.faktenzeile li { max-width: none; display: flex; align-items: center; font-weight: 600; }
.faktenzeile li + li::before {
  content: ""; width: 6px; height: 6px; background: var(--gold);
  transform: rotate(45deg); margin-right: var(--r5); flex: none;
}
.abschnitt--dunkel .faktenzeile li + li::before { background: var(--gold-hell); }

/* Hinweis */
.hinweis {
  border-left: 3px solid var(--gold);
  background: var(--hinweis-bg);
  padding: var(--r5) var(--r5) var(--r5) var(--r6);
  margin: var(--r5) 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text);
}
.hinweis > :last-child { margin-bottom: 0; }
.hinweis strong { color: var(--gruen-900); }
.abschnitt--dunkel .hinweis {
  background: rgba(255,255,255,.055); border-left-color: var(--gold-hell); color: var(--gruen-100);
}
.abschnitt--dunkel .hinweis strong { color: var(--weiss); }
.abschnitt--dunkel .hinweis p { color: var(--gruen-100); }

.verfuegbar { display: flex; align-items: center; gap: var(--r3); font-size: 1rem; color: var(--text-grau); }
.verfuegbar::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); flex: none;
  box-shadow: 0 0 0 4px rgba(168,124,45,.16);
}
.abschnitt--dunkel .verfuegbar { color: #D8E2D8; }
.abschnitt--dunkel .verfuegbar::before {
  background: var(--gold-hell); box-shadow: 0 0 0 4px rgba(214,163,74,.2);
}

/* == 05 KOPFBEREICH ======================================================= */
/* Dunkelgruen mit aufgehelltem Logo - so wie die Geschaeftsdokumente des
   Betriebs. Auf Weiss erreichte das Goldlogo nur 3,7:1 und wirkte blass. */
.kopf { position: relative; z-index: 40; border-bottom: 1px solid var(--linie-dunkel); }
.kopf-innen { display: flex; align-items: center; gap: var(--r5); padding-block: var(--r4); }

.kopf-logo { display: block; flex: none; line-height: 0; }
/* Seitenverhaeltnis der Wortmarke: 520 x 165, also gut 3:1. Hoehe und Breite
   stehen fest im Stylesheet, damit beim Laden nichts springt. */
.kopf-logo img { width: 220px; height: 70px; }

.nav-desktop { display: none; margin-left: auto; }
.nav-desktop > ul { display: flex; align-items: center; gap: var(--r6); list-style: none; margin: 0; padding: 0; }
.nav-desktop li { max-width: none; }
.nav-desktop a, .klapp > summary {
  color: var(--gruen-100); text-decoration: none; font-weight: 500; font-size: 1.0625rem;
  padding: var(--r2) 0; display: inline-block; white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nav-desktop a:hover, .klapp > summary:hover { color: var(--gold-hell); }
.nav-desktop a[aria-current="page"], .klapp > summary[aria-current="page"] {
  color: var(--weiss); border-bottom-color: var(--gold-hell); font-weight: 600;
}

.klapp { position: relative; }
.klapp > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 7px;
}
.klapp > summary::-webkit-details-marker { display: none; }
.klapp > summary::after {
  content: ""; width: 7px; height: 7px; flex: none;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
}
.klapp[open] > summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.klapp > ul {
  position: absolute; top: calc(100% + 14px); left: -16px; min-width: 280px;
  background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius-gr);
  box-shadow: var(--schatten-2); padding: var(--r2); margin: 0; list-style: none; z-index: 50;
}
.klapp > ul::before {
  content: ""; position: absolute; top: -6px; left: 28px; width: 11px; height: 11px;
  background: var(--weiss); border-left: 1px solid var(--linie); border-top: 1px solid var(--linie);
  transform: rotate(45deg);
}
.klapp > ul a {
  display: block; padding: var(--r3) var(--r4); border-radius: var(--radius);
  color: var(--gruen-900); border: 0;
}
.klapp > ul a:hover { background: var(--sand); color: var(--gruen-900); }
/* Die aktive Seite bekam ueber .nav-desktop a[aria-current] weisse Schrift -
   im aufgeklappten Menue stand sie damit weiss auf weiss und war unsichtbar.
   Hier die Fassung fuer den hellen Klappkasten. */
.klapp > ul a[aria-current="page"] {
  color: var(--gruen-900); background: var(--gruen-100); font-weight: 700;
}

.kopf-aktion { display: none; align-items: center; gap: var(--r5); flex: none; }
.kopf-tel {
  font-weight: 700; text-decoration: none; white-space: nowrap;
  color: var(--weiss); font-size: 1.0625rem;
}
.kopf-tel:hover { color: var(--gold-hell); }

/* Mobil */
.kopf-tel-mobil {
  margin-left: auto; display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: var(--radius);
  border: 2px solid var(--gold-hell); color: var(--gold-hell); flex: none;
}
.kopf-tel-mobil:hover { background: var(--gold-hell); color: var(--gruen-900); }
.nav-mobil { border-top: 1px solid var(--linie-dunkel); }
.nav-mobil > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: var(--r3);
  min-height: 48px; font-weight: 600; padding: var(--r2) 0; color: var(--gruen-100);
}
.nav-mobil > summary::-webkit-details-marker { display: none; }
.nav-mobil ul { list-style: none; margin: 0 0 var(--r4); padding: 0; }
.nav-mobil li { max-width: none; border-top: 1px solid rgba(232,237,231,.14); }
.nav-mobil a {
  display: block; padding: var(--r3) 0; min-height: 48px;
  text-decoration: none; font-weight: 500; color: var(--gruen-100);
}
.nav-mobil a:hover { color: var(--gold-hell); }
.nav-mobil a[aria-current="page"] { color: var(--gold-hell); font-weight: 700; }
.nav-mobil .unter a { padding-left: var(--r4); font-weight: 400; }
.nav-mobil .btn-primary { margin-top: var(--r4); width: 100%; }

@media (min-width: 1040px) {
  .kopf-innen { padding-block: var(--r5); }
  .nav-desktop, .kopf-aktion { display: flex; }
  .kopf-tel-mobil, .nav-mobil { display: none; }
}
@media (max-width: 1039px) { .kopf-logo img { width: 150px; height: 48px; } }

/* == 06 BUTTONS =========================================================== */
.btn-primary, .btn-ghost, .btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--r3);
  min-height: 52px; padding: 15px 30px; border-radius: var(--radius);
  font: inherit; font-size: 1.0625rem; font-weight: 700; letter-spacing: .005em;
  text-decoration: none; text-align: center; cursor: pointer;
  border: 2px solid transparent;
  transition: background-color .16s ease, border-color .16s ease,
              color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.btn-primary {
  background: var(--gruen-900); color: var(--weiss); border-color: var(--gruen-900);
  box-shadow: var(--schatten-knopf);
}
.btn-primary:hover {
  background: var(--gruen-700); border-color: var(--gruen-700); color: var(--weiss);
  transform: translateY(-1px);
}
.btn-ghost { background: transparent; color: var(--gruen-900); border-color: var(--gruen-900); }
.btn-ghost:hover { background: var(--gruen-900); color: var(--weiss); }

.btn-whatsapp { background: transparent; color: var(--gruen-900); border-color: var(--gruen-900); }
.btn-whatsapp:hover { background: var(--gruen-900); color: var(--weiss); }
.btn-whatsapp svg { width: 22px; height: 22px; flex: none; }

/* Auf dunklem Grund kehrt sich die Hierarchie um: Gold fuehrt. */
.abschnitt--dunkel .btn-primary, .fuss .btn-primary, .nav-mobil .btn-primary {
  background: var(--gold-hell); border-color: var(--gold-hell); color: var(--gruen-900);
}
.abschnitt--dunkel .btn-primary:hover, .nav-mobil .btn-primary:hover {
  background: #E4B75F; border-color: #E4B75F; color: var(--gruen-900);
}
.abschnitt--dunkel .btn-ghost, .abschnitt--dunkel .btn-whatsapp {
  color: var(--weiss); border-color: rgba(255,255,255,.55); background: transparent;
}
.abschnitt--dunkel .btn-ghost:hover, .abschnitt--dunkel .btn-whatsapp:hover {
  background: var(--weiss); color: var(--gruen-900); border-color: var(--weiss);
}
.kopf .btn-primary { background: var(--gold-hell); border-color: var(--gold-hell); color: var(--gruen-900); }
.kopf .btn-primary:hover { background: #E4B75F; border-color: #E4B75F; }

.knopfreihe { display: flex; flex-wrap: wrap; gap: var(--r4); margin-bottom: var(--r5); }

/* == 07 KARTEN UND RASTER ================================================= */
.karte {
  background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius-gr);
  padding: var(--r6); box-shadow: var(--schatten-1);
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.karte > :last-child { margin-bottom: 0; }
.karte h3 { margin-bottom: var(--r3); }
.karte .btn-primary, .karte .btn-ghost { margin-top: var(--r4); }

/* min(..., 100%) statt einer festen Mindestbreite: sonst ist die Spalte auf
   einem 320-px-Geraet breiter als der Platz und die ganze Seite laesst sich
   seitlich schieben. */
.leistungsgitter { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(288px, 100%), 1fr)); gap: var(--r5); }
.zweiergitter    { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: var(--r5); }

/* Kachel als ganzflaechiger Link */
a.kachel { display: block; text-decoration: none; color: inherit; position: relative; overflow: hidden; }
a.kachel::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
a.kachel:hover { box-shadow: var(--schatten-2); transform: translateY(-3px); border-color: #D9D4C6; }
a.kachel:hover::before { transform: scaleX(1); }
a.kachel h3 { color: var(--gruen-900); }
a.kachel .weiter {
  color: var(--gruen-900); font-weight: 700; display: inline-flex; align-items: center; gap: 8px;
  margin-top: var(--r3);
}
a.kachel:hover .weiter { color: var(--gold-text); }
a.kachel:hover .weiter svg { transform: translateX(4px); }
a.kachel .weiter svg { transition: transform .2s ease; }

.kachel-symbol {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gruen-100); color: var(--gold); margin-bottom: var(--r4);
  transition: background-color .2s ease, color .2s ease;
}
.kachel-symbol svg { width: 28px; height: 28px; }
a.kachel:hover .kachel-symbol { background: var(--gruen-900); color: var(--gold-hell); }


figure { margin: 0; }
figcaption { font-size: 1rem; color: var(--text-grau); margin-top: var(--r3); }
.abschnitt--dunkel figcaption { color: #C6D2C6; }

/* Vorher/Nachher: zwei gleich grosse Bilder nebeneinander, kein Schieberegler */
.vorher-nachher { display: grid; grid-template-columns: 1fr 1fr; gap: var(--r4); }
.vorher-nachher figcaption {
  font-weight: 700; color: var(--gruen-900); font-size: 1rem;
  letter-spacing: .1em; text-transform: uppercase;
}
.abschnitt--dunkel .vorher-nachher figcaption { color: var(--gold-hell); }
@media (max-width: 479px) { .vorher-nachher { grid-template-columns: 1fr; } }

/* == 09 STARTSEITE UND ABLAUF ============================================= */
/* Kopfblock: dunkelgruene Markenzone, die aus dem Kopfbereich weiterlaeuft. */
.kopfblock { padding-block: clamp(3rem, 1.6rem + 5vw, 5.5rem) clamp(3.5rem, 2rem + 5.5vw, 6.5rem); }
.kopfblock h1 { position: relative; padding-top: var(--r6); }
.kopfblock h1::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 64px; height: 3px; background: var(--gold-hell);
}
.kopfblock .knopfreihe { margin-top: var(--r6); }

.saison {
  display: flex; gap: var(--r4); align-items: flex-start;
  background: rgba(255,255,255,.055); border-left: 3px solid var(--gold-hell);
  padding: var(--r4) var(--r5); border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: var(--r6);
}
.saison p { margin: 0; color: var(--gruen-100); }
.saison strong { color: var(--weiss); }
.saison svg { width: 24px; height: 24px; color: var(--gold-hell); flex: none; margin-top: 3px; }

.ablauf { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--r6); counter-reset: schritt; }
@media (min-width: 860px) { .ablauf { grid-template-columns: repeat(4, 1fr); gap: var(--r5); } }
.ablauf li { max-width: none; counter-increment: schritt; position: relative; padding-top: 4.25rem; }
.ablauf li::before {
  content: counter(schritt); position: absolute; top: 0; left: 0;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gruen-900); color: var(--gold-hell);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.25rem;
}
/* Verbindungslinie zwischen den Schritten */
@media (min-width: 860px) {
  .ablauf li::after {
    content: ""; position: absolute; top: 26px; left: 62px; right: -12px; height: 1px;
    background: var(--linie);
  }
  .ablauf li:last-child::after { display: none; }
}
.ablauf h3 { font-size: 1.1875rem; margin-bottom: var(--r2); }
.ablauf p { margin: 0; color: var(--text-grau); }

/* Der Ablauf steht auf der Dankeseite auf dunklem Grund. Die Grundfassung ist
   fuer helle Abschnitte gebaut: der Fliesstext stand dort in Dunkelgrau auf
   Dunkelgruen (1,4:1, unlesbar), der Ziffernkreis in Dunkelgruen auf
   Dunkelgruen. Deshalb hier eigene Werte. */
.abschnitt--dunkel .ablauf p { color: var(--gruen-100); }
.abschnitt--dunkel .ablauf li::before { background: var(--gold-hell); color: var(--gruen-900); }
.abschnitt--dunkel .ablauf li::after { background: rgba(214,163,74,.38); }

.sterne { display: inline-flex; align-items: center; gap: var(--r4); text-decoration: none; }
.sterne .sternreihe { display: inline-flex; gap: 3px; color: var(--gold); }
.sterne svg { width: 24px; height: 24px; }
.sterne .wert { font-weight: 700; color: var(--text); font-size: 1.125rem; }
.abschnitt--dunkel .sterne .sternreihe { color: var(--gold-hell); }
.abschnitt--dunkel .sterne .wert { color: var(--weiss); }

.kontaktwege { display: grid; gap: var(--r6); grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); }
/* Die Zeilenhoehe allein ergibt auf kleinen Geraeten nur rund 29 px Trefferflaeche.
   Das Innenabstand-Paar bringt sie auf die empfohlenen 44 px, ohne das Schriftbild
   zu aendern. */
.tel-gross {
  display: inline-block; font-size: clamp(1.6rem, 1.1rem + 1.9vw, 2.3rem);
  font-weight: 700; text-decoration: none; letter-spacing: -.02em; line-height: 1.15;
  padding-block: .4rem;
}
.abschnitt--dunkel .tel-gross { color: var(--weiss); }
.abschnitt--dunkel .tel-gross:hover { color: var(--gold-hell); }

/* == 10 TABELLEN ========================================================== */
.tabellenhuelle {
  overflow-x: auto; margin-bottom: var(--r5);
  border: 1px solid var(--linie); border-radius: var(--radius-gr);
}
table { border-collapse: collapse; width: 100%; min-width: 480px; }
th, td { text-align: left; padding: var(--r4) var(--r5); border-bottom: 1px solid var(--linie); vertical-align: top; }
thead th { background: var(--gruen-900); color: var(--weiss); font-weight: 700; border-bottom: 0;
           letter-spacing: .04em; text-transform: uppercase; font-size: 1rem; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: var(--sand); }
/* Nur die Zeilenkoepfe im Rumpf: mit "th:first-child" traf die Regel auch
   die Kopfzeile, und "Turnus" stand dort Dunkelgruen auf Dunkelgruen. */
tbody th:first-child { white-space: nowrap; color: var(--gruen-900); }

/* Unter 560 px passt die Tabelle nicht mehr nebeneinander. Statt sie seitlich
   scrollen zu lassen - was auf dem Telefon niemand bemerkt - wird jede Zeile
   zu einem Block: Turnus als Ueberschrift, Leistungen darunter. Die Kopfzeile
   bleibt fuer Screenreader erhalten, nur optisch ausgeblendet. */
@media (max-width: 559px) {
  table { min-width: 0; }
  thead { position: absolute; left: -9999px; }
  tbody tr { display: block; border-bottom: 1px solid var(--linie); }
  tbody tr:last-child { border-bottom: 0; }
  tbody th, tbody td { display: block; border-bottom: 0; padding-block: 0; }
  tbody th:first-child { white-space: normal; padding-top: var(--r4); }
  tbody td:last-child { padding-bottom: var(--r4); }
}

/* == 11 FORMULAR ========================================================== */
.formular { max-width: 44rem; }
.formular--breit { max-width: none; }
fieldset { border: 0; padding: 0; margin: 0 0 var(--r6); }
legend {
  padding: 0; font-size: 1.45rem; font-weight: 700; color: var(--gruen-900);
  margin-bottom: var(--r3); letter-spacing: -.012em;
}

.feld { margin-bottom: var(--r5); }
.feld > label, .feldgruppe > legend, .feld .feldname {
  display: block; font-weight: 700; margin-bottom: var(--r3);
  color: var(--gruen-900); font-size: 1.0625rem; letter-spacing: 0;
}
.feldgruppe > legend { font-size: 1.0625rem; }
.pflicht { color: var(--rot); font-weight: 700; }
.hilfe { display: block; font-size: 1rem; color: var(--text-grau); margin-bottom: var(--r3); line-height: 1.5; }

input[type="text"], input[type="tel"], input[type="email"], input[type="number"],
input[type="date"], select, textarea {
  width: 100%; min-height: 52px; padding: 13px 16px;
  font: inherit; font-size: 17px;
  color: var(--text); background: var(--weiss);
  border: 1px solid #9A9A9A; border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gruen-900); box-shadow: 0 0 0 3px rgba(28,58,46,.1);
}
textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gruen-900) 50%),
                    linear-gradient(135deg, var(--gruen-900) 50%, transparent 50%);
  background-position: calc(100% - 21px) 23px, calc(100% - 15px) 23px;
  background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 46px;
}
input:hover, select:hover, textarea:hover { border-color: var(--gruen-700); }

/* Auswahlfelder als antippbare Flaechen, mindestens 52 px hoch */
.auswahl { display: grid; gap: var(--r3); grid-template-columns: repeat(auto-fit, minmax(min(216px, 100%), 1fr)); }
.auswahl label {
  display: flex; align-items: flex-start; gap: var(--r3);
  min-height: 52px; padding: 14px 16px; cursor: pointer;
  border: 1px solid var(--linie); border-radius: var(--radius); background: var(--weiss);
  font-size: 1.0625rem; line-height: 1.45;
  transition: border-color .14s ease, background-color .14s ease, box-shadow .14s ease;
}
.auswahl label:hover { border-color: var(--gruen-700); background: var(--sand); }
.auswahl input { flex: none; width: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--gruen-900); }
.auswahl label:has(input:checked) {
  border-color: var(--gruen-900); background: var(--gruen-100); font-weight: 600;
  box-shadow: inset 0 0 0 1px var(--gruen-900);
}

.zustimmung { display: flex; align-items: flex-start; gap: var(--r3); cursor: pointer; }
.zustimmung input { flex: none; width: 24px; height: 24px; margin-top: 3px; accent-color: var(--gruen-900); }
.zustimmung span { font-size: 1.0625rem; line-height: 1.55; }

/* Fehler: am Feld, farbig UND im Text benannt - nie durch Farbe allein */
.fehler {
  display: none; margin-top: var(--r3); color: var(--rot); font-weight: 600; font-size: 1rem;
  align-items: flex-start; gap: 7px; line-height: 1.5;
}
.fehler.sichtbar { display: flex; }
.feld--fehlerhaft input, .feld--fehlerhaft select, .feld--fehlerhaft textarea,
.feld--fehlerhaft .auswahl label { border-color: var(--rot); }
.feld--fehlerhaft > label, .feld--fehlerhaft > .feldname, .feld--fehlerhaft > legend { color: var(--rot); }

.fehler-uebersicht {
  display: none; border: 2px solid var(--rot); border-radius: var(--radius-gr);
  padding: var(--r5) var(--r6); margin-bottom: var(--r6); background: #FDF4F4;
}
.fehler-uebersicht.sichtbar { display: block; }
.fehler-uebersicht h3 { color: var(--rot); margin-bottom: var(--r3); font-size: 1.2rem; }
.fehler-uebersicht ul { margin: 0; padding-left: var(--r5); }
.fehler-uebersicht li { margin-bottom: var(--r2); }
.fehler-uebersicht a { color: var(--rot); }

.honigtopf { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Schritte und Fortschritt - nur mit JavaScript sichtbar */
.fortschritt { display: none; margin-bottom: var(--r6); }
.js-aktiv .fortschritt { display: block; }
.fortschritt-text {
  font-weight: 700; color: var(--gruen-900); margin-bottom: var(--r3);
  font-size: 1rem; letter-spacing: .08em; text-transform: uppercase;
}
.fortschritt-balken { height: 6px; background: var(--gruen-100); border-radius: 100px; overflow: hidden; }
.fortschritt-balken span {
  display: block; height: 100%; background: var(--gold); border-radius: 100px;
  transition: width .28s ease;
}

.schritt-knoepfe { display: none; gap: var(--r4); flex-wrap: wrap; margin-top: var(--r6); }
.js-aktiv .schritt-knoepfe { display: flex; }
.js-aktiv .abschicken-ohne-js { display: none; }

/* Fotofeld */
.fotofeld {
  border: 2px dashed rgba(168,124,45,.55); border-radius: var(--radius-gr);
  padding: var(--r6); background: var(--hinweis-bg);
}
.fotofeld input[type="file"] { font-size: 1rem; width: 100%; margin-top: var(--r3); }
.foto-vorschau { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(116px, 100%), 1fr)); gap: var(--r4); margin-top: var(--r5); }
.foto-vorschau:empty { display: none; }
.foto-vorschau figure { position: relative; }
.foto-vorschau img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--linie);
}
.foto-vorschau figcaption { font-size: 1rem; margin-top: 4px; }
.foto-entfernen {
  position: absolute; top: 6px; right: 6px; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 0; border-radius: 50%; background: var(--gruen-900); color: var(--weiss);
  cursor: pointer; font-size: 20px; line-height: 1; box-shadow: var(--schatten-1);
}
.foto-entfernen:hover { background: var(--rot); }

.bestaetigung {
  border: 1px solid var(--linie-dunkel); border-left: 4px solid var(--gold-hell);
  border-radius: var(--radius-gr);
  padding: var(--r6); background: rgba(255,255,255,.055); margin-bottom: var(--r6);
}
.bestaetigung h1 { margin-bottom: var(--r4); padding-top: 0; }
.bestaetigung h1::before { display: none; }

/* == 12 FAQ =============================================================== */
.faq { border-top: 1px solid var(--linie); }
.faq details { border-bottom: 1px solid var(--linie); }
.faq summary {
  list-style: none; cursor: pointer; padding: var(--r5) 48px var(--r5) 0;
  font-weight: 700; font-size: 1.125rem; color: var(--gruen-900);
  position: relative; min-height: 52px; display: flex; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 14px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: translateY(-70%) rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details[open] summary { color: var(--gold-text); }
.faq summary:hover { color: var(--gold-text); }
.faq .antwort { padding: 0 0 var(--r5); }
.faq .antwort > :last-child { margin-bottom: 0; }

/* == 13 FUSSBEREICH ======================================================= */
.fuss {
  color: var(--gruen-100); padding-block: var(--r8) var(--r5);
  border-top: 3px solid var(--gold-hell);
}
.fuss a { color: var(--gruen-100); text-decoration: none; }
.fuss a:hover { color: var(--gold-hell); text-decoration: underline; text-underline-offset: 3px; }
.fuss h2 {
  font-size: 1rem; color: var(--gold-hell); margin-bottom: var(--r4);
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
}
.fuss h2 + ul + h2 { margin-top: var(--r6); }
.fuss-raster { display: grid; gap: var(--r7); grid-template-columns: 1fr; }
@media (min-width: 760px) { .fuss-raster { grid-template-columns: 1.15fr 1fr 1fr; gap: var(--r7); } }
.fuss ul { list-style: none; margin: 0; padding: 0; }
.fuss li { margin-bottom: var(--r3); max-width: none; line-height: 1.5; }
.fuss-logo { margin-bottom: var(--r5); display: block; }
.fuss-logo img { width: 200px; height: 63px; }
.fuss-tel { font-size: 1.35rem; font-weight: 700; color: var(--weiss) !important; letter-spacing: -.01em; }
.fuss-zeile {
  margin-top: var(--r7); padding-top: var(--r5);
  border-top: 1px solid var(--linie-dunkel);
  font-size: 1rem; color: #C6D2C6;
}
.fuss-zeile p { max-width: none; margin: 0; line-height: 1.7; }

/* == 14 STICKY-KONTAKT (nur unter 768 px) ================================= */
.sticky-kontakt { display: none; }
@media (max-width: 767px) {
  .sticky-kontakt {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
    height: 58px; background: var(--gruen-900);
    border-top: 2px solid var(--gold-hell);
    box-shadow: 0 -6px 20px rgba(28,58,46,.28);
  }
  .sticky-kontakt a {
    display: flex; align-items: center; justify-content: center; gap: var(--r3);
    color: var(--weiss); text-decoration: none; font-weight: 700; font-size: 1.0625rem;
  }
  .sticky-kontakt a + a { border-left: 1px solid rgba(232,237,231,.24); }
  .sticky-kontakt svg { width: 21px; height: 21px; flex: none; color: var(--gold-hell); }
  .fuss { padding-bottom: calc(var(--r5) + 58px); }
  /* Die feste Kontaktleiste verdeckt sonst das Feld, auf das der Browser
     beim Sprung aus der Fehleruebersicht oder aus einem Anker scrollt. */
  html { scroll-padding-bottom: 70px; }
}

/* == 15 DRUCK UND BEWEGUNG =============================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; transition-duration: .01ms !important;
  }
  a.kachel:hover, .btn-primary:hover { transform: none; }
}

@media print {
  /* Was am Papier nichts zu suchen hat. */
  .kopf, .fuss, .sticky-kontakt, .sprunglink, .formular,
  .knopfreihe, .schritt-knoepfe, .abschicken-ohne-js { display: none !important; }

  body { font-size: 12pt; background: #fff; color: #000; }

  /* Dunkle Abschnitte werden hell. Ohne die Zeile fuer Links und
     Auszeichnungen stuenden sie weiss auf weiss - etwa die beiden
     Sprungmarken im Kopf der Vertragsbedingungen. */
  .abschnitt--dunkel, .abschnitt--gruen, .abschnitt--sand {
    background: none !important; color: #000 !important;
  }
  .abschnitt--dunkel h1, .abschnitt--dunkel h2, .abschnitt--dunkel h3,
  .abschnitt--dunkel h4, .abschnitt--dunkel p, .abschnitt--dunkel li,
  .abschnitt--dunkel a, .abschnitt--dunkel strong, .abschnitt--dunkel .gross,
  .abschnitt--dunkel .vor, .abschnitt--dunkel figcaption,
  .abschnitt--dunkel .klein { color: #000 !important; }
  .abschnitt--dunkel ul.liste li::before,
  .abschnitt--dunkel .faktenzeile li + li::before { background: #000 !important; }

  /* Der Faktenstreifen ist eine eigene dunkle Flaeche, nicht .abschnitt--dunkel. */
  .faktenstreifen { background: none !important; border-block: 1px solid #000; }
  .faktenstreifen .faktenzeile li { color: #000 !important; }
  .faktenstreifen .faktenzeile li + li::before { background: #000 !important; }

  /* Das Kopfbild ist ein <img> und wuerde mitgedruckt - unter schwarzer
     Schrift ist es unlesbar und kostet nur Toner. Der Farbverlauf darueber
     ebenso. */
  .held-bild, .held::after { display: none !important; }
  .held, .held.abschnitt--dunkel { min-height: 0 !important; background: none !important; }
  .held-inhalt { padding-block: 1.5rem !important; }

  /* Adresse hinter externe Links setzen - auf Papier ist ein Link sonst
     nur unterstrichener Text. Interne Verweise sind relativ und wuerden
     ohne Domain ohnehin nichts nuetzen. */
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 10pt; word-break: break-all; }
  a[href^="tel:"]::after, a[href^="mailto:"]::after { content: none; }

  /* Umbrueche: Ueberschriften nicht allein am Seitenende, Aufzaehlungen,
     Tabellenzeilen und Fragen nicht mitten durchgeschnitten. */
  h1, h2, h3, h4 { break-after: avoid; }
  li, tr, figure, .karte, .faq details { break-inside: avoid; }
  .abschnitt { padding-block: 1.2rem !important; }
  .tabellenhuelle { overflow: visible !important; border: 0 !important; }
  table { min-width: 0 !important; }

  /* Das Aufklappen der Fragen erledigt navigation.js beim Druckereignis -
     per CSS laesst sich ein zugeklapptes <details> nicht oeffnen. */
}


/* ============================================================================
   AUSBAU NACH REFERENZEN
   Vorbilder: Gardenify / Greenday (grossformatiges Objektfoto im Kopfbereich mit
   Textueberlagerung) und Veloria / Lumora (Serifenschrift, viel Luft, ruhige
   Farbigkeit). Beides ohne eine einzige externe Ressource umgesetzt.
   ========================================================================== */

/* -- Anzeigenschrift ------------------------------------------------------ */
/* Serifenschrift fuer Ueberschriften, Grotesk fuer Fliesstext und Bedienung.
   Alle genannten Schriften sind auf Windows, macOS, iOS und Android vorhanden -
   es wird nichts nachgeladen, die Einwilligungsfreiheit bleibt unberuehrt. */
:root {
  --font-anzeige: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
                  Georgia, "Noto Serif", "Times New Roman", serif;
}

h1, h2, h3, legend, .tel-gross, .fuss-tel {
  font-family: var(--font-anzeige);
  font-weight: 600;
}
h1 { letter-spacing: -.018em; line-height: 1.06; }
h2 { letter-spacing: -.012em; line-height: 1.14; }
h3 { letter-spacing: -.006em; font-weight: 700; }
/* Untergrenze so gewaehlt, dass auch ein einzelnes langes Wort wie
   "Vertragsbedingungen" auf einem 320-px-Geraet noch in die Zeile passt. */
.kopfblock h1 { font-size: clamp(1.75rem, 1.2rem + 2.9vw, 3.35rem); }
.faq summary { font-family: var(--font-anzeige); font-weight: 700; }

/* -- Kopfbereich der Startseite: grossformatiges Objektfoto ---------------- */
.held { position: relative; overflow: hidden; background-color: var(--gruen-900); }
.held-bild { position: absolute; inset: 0; z-index: 0; }
.held-bild img { width: 100%; height: 100%; object-fit: cover; }

/* Ohne Foto bleibt eine feine Rasterstruktur als Grund. Frueher lag hier
   zusaetzlich ein selbst gezeichnetes Wappen ueber dem Kopfbild - seit die
   echte Wortmarke im Kopfbereich steht, ist ein zweites Zeichen eines zu
   viel. */
.held::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background-image:
    repeating-linear-gradient(0deg,  rgba(255,255,255,.03) 0 1px, transparent 1px 58px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0 1px, transparent 1px 58px);
  background-repeat: repeat, repeat;
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  opacity: .2;
}
.held:has(.held-bild img)::before { background-image: none; }

/* Farbverlauf, damit die Schrift auf jedem Foto lesbar bleibt (mind. 4,5:1) */
.held::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(103deg, rgba(17,36,28,.96) 0%, rgba(17,36,28,.9) 42%,
                    rgba(17,36,28,.55) 74%, rgba(17,36,28,.28) 100%),
    linear-gradient(0deg, rgba(17,36,28,.5) 0%, transparent 38%);
}
.held-inhalt {
  position: relative; z-index: 3; color: var(--gruen-100);
  padding-block: clamp(3.5rem, 1.8rem + 7vw, 8rem);
}
.held-raster { display: grid; gap: var(--r7); align-items: center; }
@media (min-width: 980px) { .held-raster { grid-template-columns: 1.5fr .8fr; gap: 4.5rem; } }

.held h1 {
  color: var(--weiss); font-size: clamp(2.2rem, 1.35rem + 3.2vw, 3.9rem);
  max-width: 16ch; padding-top: var(--r6); position: relative; margin-bottom: var(--r5);
}
.held h1::before {
  content: ""; position: absolute; top: 0; left: 0; width: 72px; height: 3px;
  background: var(--gold-hell);
}
.held .gross { color: #DCE5DC; max-width: 40ch; font-size: clamp(1.15rem, 1.05rem + .45vw, 1.35rem); }
.held .knopfreihe { margin-top: var(--r6); }

/* Freistehende Portraitkarte im Kopfbereich - Vorbild Lumora */
.held-karte {
  position: relative; border-radius: var(--radius-gr); overflow: hidden;
  border: 1px solid rgba(214,163,74,.4);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,.75);
  background: rgba(255,255,255,.05);
}
@media (max-width: 979px) { .held-karte { max-width: 320px; } }

/* -- Faktenstreifen unter dem Kopfbereich - Vorbild "Trusted by" ---------- */
.faktenstreifen { background: var(--gruen-800); padding-block: var(--r5); }
.faktenstreifen .faktenzeile { justify-content: center; gap: var(--r3) var(--r6); }
.faktenstreifen .faktenzeile li { color: var(--gruen-100); font-size: 1rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; }
.faktenstreifen .faktenzeile li + li::before { background: var(--gold-hell); margin-right: var(--r6); }

/* -- Arbeitsergebnisse als redaktionelles Raster -------------------------- */

/* -- Mehr Luft in den Textabschnitten ------------------------------------ */
.abschnitt > .behaelter > h2:first-child,
.abschnitt > .behaelter > .vor:first-child { margin-top: 0; }
.abschnitt--sand + .abschnitt--sand { padding-top: 0; }

/* Deutsche Komposita duerfen nicht mitten im Wort brechen. Ueberschriften
   trennen nur nach den Silbenregeln (lang="de" steht im html-Element), lange
   Kennungen und Dateinamen duerfen weiter hart umbrechen. */
h1, h2, h3, h4, legend, .tel-gross, .fuss-tel, .btn-primary, .btn-ghost, .btn-whatsapp {
  /* break-word statt normal: getrennt wird nach den Silbenregeln, hart
     umgebrochen nur, wenn ein einzelnes Wort auch allein nicht in die Zeile
     passt - "Vertragsbedingungen" auf einem 320-px-Geraet zum Beispiel. Nicht
     "anywhere": das zerlegt schon Woerter, die noch gepasst haetten. */
  overflow-wrap: break-word;
  hyphens: auto; -webkit-hyphens: auto;
}
.foto-vorschau figcaption, .fuss-zeile, code { overflow-wrap: anywhere; }

.held h1 { max-width: 21ch; }
/* Steht eine Vorzeile ueber der Ueberschrift, uebernimmt sie die Rolle des
   Goldstrichs - beides zusammen waere eine Auszeichnung zu viel. */
.held .vor { color: var(--gold-hell); }
.held .vor + h1 { padding-top: 0; }
.held .vor + h1::before { display: none; }
@media (min-width: 980px) { .held-raster { grid-template-columns: 1.62fr .72fr; gap: 3.5rem; } }

/* Der Kopfbereich fuehrt zusaetzlich die Klasse abschnitt--dunkel, damit alle
   Regeln fuer dunklen Grund greifen (Schaltflaechen, Hinweise, Bildplaetze).
   Die Flaechenstruktur zeichnet hier aber ::before - deshalb kein zweites
   Hintergrundbild auf dem Element selbst. */
.held.abschnitt--dunkel { background-image: none; padding-block: 0; }
.held .knopfreihe { margin-bottom: 0; }

/* <picture> ist von Haus aus inline und hat keine eigene Hoehe. Ohne diese
   Regel fuellt das Kopfbild die Flaeche nicht aus. */
.held-bild, .held-bild picture { display: block; width: 100%; height: 100%; }
.held-bild img { width: 100%; height: 100%; object-fit: cover; object-position: 65% 50%; }
/* Mindesthoehe, damit der Kopfbereich auch bei kurzem Text Wirkung hat */
@media (min-width: 980px) { .held { min-height: 74vh; display: flex; align-items: center; } }

/* -- Echte Fotos in Figuren ---------------------------------------------- */
figure img, figure picture img { border-radius: var(--radius-gr); }
.karte figure img { border-radius: var(--radius); }

/* Vorher/Nachher bei sehr breiten Aufnahmen (lange Hecke): untereinander statt
   nebeneinander - sonst wird jedes Bild zu einem unlesbaren Streifen. */
.vorher-nachher--breit { grid-template-columns: 1fr; gap: var(--r4); max-width: 820px; }
.vorher-nachher--breit img { width: 100%; height: auto; border: 1px solid var(--linie); }
.abschnitt--dunkel .vorher-nachher--breit img { border-color: var(--linie-dunkel); }

.beweis-fuss {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--r5) var(--r7); margin-top: var(--r7);
}

/* Bildkopf auf Unterseiten: gleiche Bauart wie die Startseite, nur flacher. */
.held--knapp { min-height: 0; }
.held--knapp .held-inhalt { padding-block: clamp(3rem, 1.6rem + 4.5vw, 5rem); }
.held--knapp h1 { max-width: 24ch; padding-top: var(--r6); position: relative; }
.held--knapp h1::before { content: ""; position: absolute; top: 0; left: 0; width: 64px; height: 3px; background: var(--gold-hell); }

/* Hervorgehobener Satz. Nur dort einsetzen, wo eine Aussage fuer sich steht -
   nicht als Dekoration, sonst verliert sie ihre Wirkung. */
.zitat {
  font-family: var(--font-anzeige); font-weight: 600;
  font-size: clamp(1.25rem, 1.05rem + .9vw, 1.75rem); line-height: 1.35;
  color: var(--gruen-900); border-left: 3px solid var(--gold);
  padding-left: var(--r5); margin: var(--r6) 0; max-width: 30rem;
}
.abschnitt--dunkel .zitat { color: var(--weiss); border-left-color: var(--gold-hell); }
