/* ==========================================================================
   Moor-clean Gebäudeservice — Stylesheet
   --------------------------------------------------------------------------
   Aufbau:
     1.  Design-Tokens (Farben, Typo, Abstände, Radien, Schatten)
     2.  Reset & Grundlagen
     3.  Typografie-Bausteine
     4.  Buttons & Links
     5.  Layout-Container & Sektions-Rhythmus
     6.  Navigation (sticky + Mobile-Overlay)
     7.  Hero
     8.  Trust-Leiste & Kennzahlen
     9.  Leistungen
    10.  Vorher/Nachher-Slider
    11.  Ablauf
    12.  Über uns
    13.  Einzugsgebiet (SVG-Karte)
    14.  Testimonials
    15.  FAQ
    16.  Abschluss-CTA
    17.  Footer
    18.  Kontaktseite (Hero, Formular, Karte)
    19.  Rechtsseiten
    20.  Scroll-Animationen
    21.  Responsive Breakpoints
    22.  Reduced Motion & Print
   ========================================================================== */


/* ==========================================================================
   1. DESIGN-TOKENS
   ========================================================================== */

:root {
  /* --- Farbwelt "Moor": gedeckte Grün- und Brauntöne, warmer Ockerakzent ---
     Bewusst KEIN Reinigungsfirmen-Blau/Türkis. Die Palette leitet sich vom
     Namen ab: Moorwasser (fast schwarzes Grün), Moos, Torf, Sand, Schilf. */
  --c-ink:          #14201a;  /* Moorgrün-Schwarz — Fließtext & dunkle Flächen */
  --c-ink-soft:     #1e2e26;  /* etwas aufgehellt, für Verläufe/Karten auf Dunkel */
  --c-forest:       #2c4335;  /* Tannengrün */
  --c-moss:         #4e6b55;  /* Moos — sekundäre Flächen */
  --c-moss-light:   #7d9a85;  /* Moos hell — Icons/Linien auf Dunkel */
  --c-peat:         #55432f;  /* Torfbraun */
  --c-peat-light:   #8a745a;  /* Torf hell */

  --c-sand:         #dfd3be;  /* Sand — Trennlinien auf Creme */
  --c-cream:        #f2ece1;  /* Creme — abgesetzte Sektionen */
  --c-paper:        #faf7f1;  /* Papier — Standard-Seitenhintergrund */
  --c-white:        #ffffff;

  --c-ocker:        #b8862f;  /* Akzent — Linien, Zahlen, aktive Zustände */
  --c-ocker-light:  #d9a94a;  /* Akzent auf dunklem Grund (kontraststark) */
  --c-ocker-wash:   #f4ead6;  /* Akzent als Fläche, sehr hell */

  /* Textfarben mit geprüftem Kontrast auf --c-paper */
  --c-text:         #26332c;  /* ~12:1 — Fließtext */
  --c-text-muted:   #55645b;  /* ~6.4:1 — sekundär */
  --c-text-invert:  #f2ece1;  /* auf dunklem Grund */
  --c-text-invert-muted: #b3c0b6;

  --c-border:       #e2dacb;  /* feine Linien auf Papier */
  --c-border-strong:#cdc0a9;
  --c-border-dark:  rgba(242, 236, 225, 0.16); /* Linien auf Dunkel */

  /* --- Typografie ---
     Display: Fraunces (variable Serif, warm & eigenständig)
     Text:    System-Stack (schnell, vertraut, keine zusätzliche Ladezeit) */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-text: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;

  /* Fluide Schriftgrößen — bewusst moderat gehalten ("hochwertig, aber ruhig"):
     keine Display-Monster, sondern klare Hierarchie mit ruhigen Sprüngen. */
  --fs-display:  clamp(2.25rem, 1.35rem + 3.6vw, 3.9rem);   /*  36 → 62px */
  --fs-h1:       clamp(2rem,    1.35rem + 2.6vw, 3.25rem);  /*  32 → 52px */
  --fs-h2:       clamp(1.65rem, 1.2rem  + 1.8vw, 2.5rem);   /*  26 → 40px */
  --fs-h3:       clamp(1.2rem,  1.05rem + 0.6vw, 1.5rem);   /*  19 → 24px */
  --fs-lead:     clamp(1.06rem, 0.99rem + 0.32vw, 1.25rem); /*  17 → 20px */
  --fs-body:     1rem;
  --fs-small:    0.9375rem;
  --fs-micro:    0.8125rem;
  --fs-stat:     clamp(2.4rem, 1.7rem + 2.6vw, 3.6rem);

  --lh-tight: 1.1;
  --lh-snug:  1.28;
  --lh-body:  1.68;

  --ls-label: 0.14em;   /* Versal-Labels */
  --ls-tight: -0.015em; /* große Headlines */

  /* --- Abstände (4px-Raster) --- */
  --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.5rem;   --sp-8: 3rem;
  --sp-9: 4rem;     --sp-10: 5rem;    --sp-11: 6.5rem;  --sp-12: 8rem;

  /* Vertikaler Sektions-Rhythmus, fluid */
  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);

  /* --- Maße --- */
  --wrap:        1240px;  /* Standard-Inhaltsbreite */
  --wrap-narrow:  760px;  /* Lesetexte, FAQ */
  --wrap-wide:   1440px;  /* randnahe Bildbahnen */
  --gutter: clamp(1.25rem, 0.6rem + 2.6vw, 3rem);

  --nav-h:         5.25rem;  /* Navigationshöhe im Ruhezustand */
  --nav-h-compact: 4.25rem;  /* verkleinert nach dem Scrollen */

  /* --- Radien --- */
  --r-sm: 4px;  --r-md: 8px;  --r-lg: 14px;  --r-xl: 22px;  --r-full: 999px;

  /* --- Schatten: weich und warm getönt, nie neutralgrau --- */
  --sh-sm: 0 1px 2px rgba(20, 32, 26, 0.05),
           0 2px 6px rgba(20, 32, 26, 0.04);
  --sh-md: 0 2px 4px rgba(20, 32, 26, 0.05),
           0 10px 24px -6px rgba(20, 32, 26, 0.10);
  --sh-lg: 0 4px 10px rgba(20, 32, 26, 0.06),
           0 24px 56px -14px rgba(20, 32, 26, 0.18);
  --sh-nav: 0 1px 0 rgba(20, 32, 26, 0.06),
            0 8px 28px -12px rgba(20, 32, 26, 0.16);

  /* --- Bewegung ---
     Zwei Kurven: "soft" für Flächen/Bewegung, "out" für kleine UI-Reaktionen. */
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:  cubic-bezier(0.33, 1, 0.68, 1);
  --t-fast: 180ms;
  --t-med:  320ms;
  --t-slow: 720ms;

  --z-map: 1;
  --z-sticky: 50;
  --z-nav: 100;
  --z-overlay: 200;
}


/* ==========================================================================
   2. RESET & GRUNDLAGEN
   ========================================================================== */

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Anker landen unterhalb der fixierten Navigation */
  scroll-padding-top: calc(var(--nav-h-compact) + var(--sp-4));
}

body {
  font-family: var(--font-text);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-text);
  background-color: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Feines Korn über der gesamten Seite: nimmt Flächen den digitalen
   "Flat-Look" und lässt die Farben gedruckter wirken. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

img { height: auto; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; background: none; border: none; }

ul, ol { list-style: none; padding: 0; }

a { color: inherit; text-decoration: none; }

/* Sichtbarer, markenkonformer Fokusring — nie entfernen */
:focus-visible {
  outline: 2px solid var(--c-ocker);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* Sprunglink für Tastatur- und Screenreader-Nutzung */
.skip-link {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  z-index: calc(var(--z-overlay) + 10);
  padding: var(--sp-3) var(--sp-5);
  background: var(--c-ink);
  color: var(--c-text-invert);
  border-radius: var(--r-md);
  font-size: var(--fs-small);
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform var(--t-fast) var(--ease-out);
}
.skip-link:focus-visible { transform: translateY(0); }

/* Nur für Screenreader */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}


/* ==========================================================================
   3. TYPOGRAFIE-BAUSTEINE
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--c-ink);
  /* Fraunces ist eine Variable Font: optische Größe an die Schriftgröße
     koppeln, damit große Headlines feiner und kleine Titel robuster wirken. */
  font-variation-settings: "SOFT" 0, "WONK" 0;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 100; }
h2 { font-size: var(--fs-h2); font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 72; }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 24; }

p { text-wrap: pretty; }

/* Kleines Versal-Label über Überschriften — gliedert ohne Lautstärke */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-text);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--c-peat-light);
  margin-bottom: var(--sp-4);
}
/* Kurzer Ockerstrich als Marker */
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--c-ocker);
  flex: none;
}
.eyebrow--invert { color: var(--c-ocker-light); }
.eyebrow--invert::before { background: var(--c-ocker-light); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--c-text-muted);
  max-width: 58ch;
}

.section-head { max-width: 62ch; margin-bottom: var(--sp-8); }
.section-head p { margin-top: var(--sp-4); }

/* Kursive Hervorhebung in Headlines: nutzt die Italic-Achse von Fraunces */
.accent-italic {
  font-style: italic;
  color: var(--c-peat);
  font-variation-settings: "SOFT" 20, "WONK" 1;
}
.accent-italic--invert { color: var(--c-ocker-light); }


/* ==========================================================================
   4. BUTTONS & LINKS
   ========================================================================== */

.btn {
  --btn-bg: var(--c-ink);
  --btn-fg: var(--c-text-invert);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: 0.95rem 1.6rem;
  min-height: 48px;             /* komfortables Touch-Ziel */
  border-radius: var(--r-full);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-fast) var(--ease-out),
              box-shadow var(--t-med) var(--ease-out),
              color var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out);
}

/* Mikrointeraktion: eine Füllfläche wächst von unten in den Button hinein */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--c-forest);
  transform: translateY(101%);
  transition: transform var(--t-med) var(--ease-soft);
}
.btn:hover::before,
.btn:focus-visible::before { transform: translateY(0); }

.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn:active { transform: translateY(0); transition-duration: 80ms; }

/* Pfeil im Button wandert beim Hover ein Stück nach rechts */
.btn svg { flex: none; transition: transform var(--t-med) var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

/* Sekundär: Kontur auf hellem Grund */
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--c-ink);
  border-color: var(--c-border-strong);
}
.btn--ghost::before { background: var(--c-ink); }
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--c-text-invert); border-color: var(--c-ink); }

/* Akzent: Ocker, für den finalen Call-to-Action */
.btn--accent { --btn-bg: var(--c-ocker); --btn-fg: #22190a; }
.btn--accent::before { background: var(--c-ocker-light); }
.btn--accent:hover, .btn--accent:focus-visible { color: #22190a; }

/* Auf dunklem Grund */
.btn--light { --btn-bg: var(--c-cream); --btn-fg: var(--c-ink); }
.btn--light::before { background: var(--c-white); }
.btn--light:hover, .btn--light:focus-visible { color: var(--c-ink); }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--c-text-invert);
  border-color: rgba(242, 236, 225, 0.34);
}
.btn--outline-light::before { background: var(--c-cream); }
.btn--outline-light:hover, .btn--outline-light:focus-visible { color: var(--c-ink); border-color: var(--c-cream); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-7);
}

/* Textlink mit unterstrichener Grundlinie, die beim Hover durchläuft */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--c-ink);
  padding-bottom: 2px;
  background-image: linear-gradient(var(--c-ocker), var(--c-ocker));
  background-size: 0% 1.5px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size var(--t-med) var(--ease-soft);
}
.link-arrow:hover, .link-arrow:focus-visible { background-size: 100% 1.5px; }
.link-arrow svg { transition: transform var(--t-med) var(--ease-out); }
.link-arrow:hover svg { transform: translateX(3px); }


/* ==========================================================================
   5. LAYOUT-CONTAINER & SEKTIONS-RHYTHMUS
   ========================================================================== */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }
.wrap--wide   { max-width: var(--wrap-wide); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: calc(var(--section-y) * 0.68); }

/* Flächenvarianten für den Wechsel im Seitenrhythmus */
.section--cream { background: var(--c-cream); }
/* Alle dunklen Flächen teilen sich dieselben Textfarben. Ohne diese Regel
   erben Überschriften das dunkle --c-ink aus der Basis-Typografie und
   verschwinden auf dem dunklen Grund. */
.section--dark, .trust, .area, .cta-final {
  background: var(--c-ink);
  color: var(--c-text-invert);
}
.section--dark h1, .section--dark h2, .section--dark h3,
.trust h1, .trust h2, .trust h3,
.area h1, .area h2, .area h3,
.cta-final h1, .cta-final h2, .cta-final h3 { color: var(--c-cream); }

.section--dark .lead, .trust .lead, .area .lead, .cta-final .lead {
  color: var(--c-text-invert-muted);
}

/* Haarfeine Trennlinie zwischen gleichfarbigen Sektionen */
.rule { height: 1px; background: var(--c-border); border: 0; }


/* ==========================================================================
   6. NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: height var(--t-med) var(--ease-soft),
              background-color var(--t-med) var(--ease-soft),
              box-shadow var(--t-med) var(--ease-soft),
              backdrop-filter var(--t-med) var(--ease-soft);
}

/* Zustand nach dem Scrollen: kompakter, mit Milchglas-Hintergrund.
   Die Klasse wird in script.js gesetzt. */
.nav.is-scrolled {
  height: var(--nav-h-compact);
  background: rgba(250, 247, 241, 0.86);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--sh-nav);
}

/* Unterseiten starten direkt mit hellem Inhalt — dort ist der
   Milchglas-Zustand von Anfang an aktiv. */
.nav--solid {
  background: rgba(250, 247, 241, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--c-border);
}

.nav__inner {
  width: 100%;
  max-width: var(--wrap-wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
}

/* --- Wortmarke: Signet + gesetzte Wortmarke ------------------------------
   Die gelieferte Logodatei ist ein weißes Rechteck mit dunkler Zeichnung
   (durchgehend Alpha 204, also nicht freigestellt) und nur 278px breit. Das
   Signet ist deshalb als Inline-SVG nachgezeichnet: in jeder Größe scharf,
   über currentColor einfärbbar und ohne weißen Kasten auf dunklem Grund. */
.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex: none;
}
.brand__mark {
  width: 40px;
  height: 32px;
  flex: none;
  color: var(--c-ink);
  overflow: visible;
  transition: transform var(--t-med) var(--ease-soft);
}
.brand:hover .brand__mark { transform: scale(1.06) rotate(-1.5deg); }

/* Der Funkel-Stern im Signet greift die Akzentfarbe auf */
.brand__spark {
  fill: var(--c-ocker);
  transition: fill var(--t-med) var(--ease-out);
}
.brand:hover .brand__spark { fill: var(--c-ocker-light); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.brand__tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--c-peat-light);
}

/* --- Desktop-Links --- */
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(var(--sp-4), 1.6vw, var(--sp-6));
}
.nav__link {
  position: relative;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--c-text);
  padding-block: var(--sp-2);
  transition: color var(--t-fast) var(--ease-out);
}
/* Ockerstrich, der aus der Mitte aufläuft */
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--c-ocker);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-med) var(--ease-soft);
}
.nav__link:hover { color: var(--c-ink); }
.nav__link:hover::after,
.nav__link:focus-visible::after { transform: scaleX(1); }
/* Aktiver Abschnitt — wird beim Scrollen per Scrollspy gesetzt */
.nav__link.is-active { color: var(--c-ink); font-weight: 600; }
.nav__link.is-active::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: var(--sp-4); }

/* Telefonnummer in der Navigation — der häufigste Kontaktweg im Handwerk */
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--c-ink);
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease-out);
}
.nav__phone svg { color: var(--c-ocker); flex: none; }
.nav__phone:hover { color: var(--c-peat); }

.nav__cta { padding: 0.7rem 1.3rem; min-height: 42px; font-size: var(--fs-small); }

/* --- Burger --- */
.nav__burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: var(--r-full);
  flex: none;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease-soft),
              opacity var(--t-fast) linear;
}
/* Burger wird zum Kreuz */
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --- Mobiles Vollbild-Menü --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--c-ink);
  color: var(--c-text-invert);
  padding: calc(var(--nav-h) + var(--sp-6)) var(--gutter) var(--sp-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Vom rechten Rand einfahren; Sichtbarkeit verzögert ausblenden, damit
     die Transition sauber zu Ende läuft. */
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--t-slow) var(--ease-soft),
              visibility 0s linear var(--t-slow);
}
.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform var(--t-slow) var(--ease-soft), visibility 0s linear 0s;
}

.mobile-menu__links { display: flex; flex-direction: column; gap: var(--sp-1); }
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 2.6vw, 2.4rem);
  font-weight: 600;
  color: var(--c-cream);
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--c-border-dark);
  /* Startwerte für die gestaffelte Einblendung */
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-soft),
              color var(--t-fast) var(--ease-out);
}
.mobile-menu.is-open .mobile-menu__link { opacity: 1; transform: translateY(0); }
/* Staffelung: jeder Eintrag startet 60ms später */
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 120ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 180ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 240ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 300ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 360ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(6) { transition-delay: 420ms; }
.mobile-menu__link:hover { color: var(--c-ocker-light); }

.mobile-menu__foot {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--t-med) var(--ease-out) 460ms,
              transform var(--t-med) var(--ease-soft) 460ms;
}
.mobile-menu.is-open .mobile-menu__foot { opacity: 1; transform: translateY(0); }
.mobile-menu__phone {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--c-ocker-light);
}
.mobile-menu__hours { font-size: var(--fs-small); color: var(--c-text-invert-muted); }

/* Scroll sperren, solange das Menü offen ist */
body.is-locked { overflow: hidden; }


/* ==========================================================================
   7. HERO
   --------------------------------------------------------------------------
   Zweispaltig: ruhige Textspalte links, randabfallende Bildbahn rechts.
   Bewusst kein Vollbild-Foto mit Text-Overlay — das liest sich schlechter
   und wirkt beliebig.
   ========================================================================== */

.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + var(--sp-7));
  padding-bottom: var(--sp-9);
  overflow: hidden;
  /* Sehr weicher Verlauf von Creme nach Papier als Untergrund */
  background:
    radial-gradient(1100px 620px at 12% -10%, var(--c-ocker-wash) 0%, transparent 62%),
    linear-gradient(180deg, var(--c-cream) 0%, var(--c-paper) 74%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.hero__content { max-width: 40rem; }

.hero__title {
  font-size: var(--fs-display);
  margin-bottom: var(--sp-5);
}

.hero__lead { font-size: var(--fs-lead); }

/* Drei knappe Vertrauenspunkte direkt unter den CTAs */
.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-6);
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-border);
}
.hero__point {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--c-text-muted);
}
.hero__point svg { color: var(--c-ocker); flex: none; }

/* --- Bildbahn --- */
.hero__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  /* Auf Mobile flacher, auf Desktop hochformatiger (siehe Breakpoints) */
  aspect-ratio: 4 / 3;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Startzustand für den Parallax-Zoom: leicht vergrößert, damit beim
     Verschieben keine Kanten sichtbar werden. */
  transform: scale(1.14);
  will-change: transform;
}
/* Warme Tönung über dem Foto, damit es sich in die Palette einfügt */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
              rgba(20, 32, 26, 0.10) 0%,
              rgba(85, 67, 47, 0.14) 55%,
              rgba(20, 32, 26, 0.30) 100%);
  pointer-events: none;
}

/* Freigestellte Karte auf dem Bild: Öffnungszeiten als Reaktionsversprechen */
.hero__badge {
  position: absolute;
  right: var(--sp-5);
  bottom: var(--sp-5);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-lg);
  background: rgba(250, 247, 241, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--sh-md);
  max-width: min(19rem, calc(100% - var(--sp-8)));
}
.hero__badge-dot {
  position: relative;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4f8a52;
  flex: none;
}
/* Sanfter Puls — signalisiert "jetzt erreichbar" */
.hero__badge-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid #4f8a52;
  animation: pulse-ring 2.6s var(--ease-soft) infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.7); opacity: 0.9; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
.hero__badge-title { font-size: var(--fs-small); font-weight: 700; color: var(--c-ink); line-height: 1.3; }
.hero__badge-sub { font-size: var(--fs-micro); color: var(--c-text-muted); }

/* Dezenter Scroll-Hinweis am unteren Heroende */
.hero__scroll {
  display: none;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text-muted);
}
.hero__scroll-line {
  width: 46px; height: 1px;
  background: var(--c-border-strong);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-ocker);
  animation: scroll-hint 2.4s var(--ease-soft) infinite;
}
@keyframes scroll-hint {
  0%   { transform: translateX(-100%); }
  55%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}


/* ==========================================================================
   8. TRUST-LEISTE & KENNZAHLEN
   ========================================================================== */

.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
}

.trust__intro { max-width: 34rem; }
.trust__intro h2 { color: var(--c-cream); margin-bottom: var(--sp-4); }
.trust__intro p { color: var(--c-text-invert-muted); }

/* Ortsliste des Einzugsgebiets als Chips */
.trust__places {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}
.trust__place {
  padding: 0.32rem 0.8rem;
  border: 1px solid var(--c-border-dark);
  border-radius: var(--r-full);
  font-size: var(--fs-micro);
  color: var(--c-text-invert-muted);
  transition: border-color var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out);
}
.trust__place:hover { border-color: var(--c-ocker-light); color: var(--c-ocker-light); }

/* --- Kennzahlen --- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6) var(--sp-5);
}
.stat { border-top: 1px solid var(--c-border-dark); padding-top: var(--sp-4); }
.stat__value {
  display: flex;
  align-items: baseline;
  gap: 1px;
  font-family: var(--font-display);
  font-size: var(--fs-stat);
  font-weight: 600;
  line-height: 1;
  color: var(--c-ocker-light);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat__suffix { font-size: 0.5em; }
.stat__label {
  margin-top: var(--sp-3);
  font-size: var(--fs-small);
  color: var(--c-text-invert-muted);
  line-height: 1.4;
}


/* ==========================================================================
   9. LEISTUNGEN
   --------------------------------------------------------------------------
   Kein gleichförmiges Icon-Raster: Fotokarten in asymmetrischem Grid, die
   erste Karte belegt zwei Spalten. Icons sind feine Linienzeichnungen als
   Ergänzung zum Foto, nicht als Ersatz.
   ========================================================================== */

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.service {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease-soft),
              box-shadow var(--t-med) var(--ease-soft),
              border-color var(--t-med) var(--ease-out);
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: var(--c-border-strong);
}

.service__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-cream);
}
.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-soft);
}
.service:hover .service__media img { transform: scale(1.06); }
/* Verlauf am unteren Bildrand, damit das Icon-Plättchen immer lesbar bleibt */
.service__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 32, 26, 0.34) 100%);
  pointer-events: none;
}

/* Icon-Plättchen, halb über die Bildkante gesetzt.
   Es hängt bewusst am Textteil und nicht am Bildrahmen: der Bildrahmen
   beschneidet seinen Inhalt (für den Zoom beim Überfahren) und würde die
   untere Hälfte des Plättchens abschneiden. */
.service__icon {
  position: absolute;
  left: var(--sp-5);
  top: 0;
  z-index: 2;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--c-paper);
  border: 1px solid var(--c-border);
  color: var(--c-forest);
  box-shadow: var(--sh-sm);
  transition: background-color var(--t-med) var(--ease-out),
              color var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-soft);
}
.service:hover .service__icon {
  background: var(--c-ocker);
  color: #22190a;
  transform: translateY(-50%) scale(1.06);
}

.service__body {
  position: relative;
  padding: calc(var(--sp-6) + 6px) var(--sp-5) var(--sp-5);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-3);
}
.service__title { font-size: var(--fs-h3); }
.service__text { font-size: var(--fs-small); color: var(--c-text-muted); flex: 1; }

/* Stichpunkte, die den Leistungsumfang konkret machen */
.service__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-1);
}
.service__list li {
  font-size: var(--fs-micro);
  color: var(--c-peat);
  background: var(--c-ocker-wash);
  border-radius: var(--r-full);
  padding: 0.24rem 0.7rem;
}

/* Breite Variante für die erste Karte auf großen Bildschirmen */
.service--wide .service__media { aspect-ratio: 16 / 9; }

/* Abschlusskarte "und vieles mehr" — Ockerfläche statt Foto */
.service--more {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--c-text-invert);
  justify-content: center;
  min-height: 15rem;
}
.service--more .service__body { padding: var(--sp-7) var(--sp-6); }
.service--more .service__title { color: var(--c-cream); }
.service--more .service__text { color: var(--c-text-invert-muted); }
.service--more .link-arrow {
  color: var(--c-ocker-light);
  background-image: linear-gradient(var(--c-ocker-light), var(--c-ocker-light));
  margin-top: var(--sp-2);
  align-self: flex-start;
}


/* ==========================================================================
   10. VORHER/NACHHER-SLIDER
   ========================================================================== */

.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y; /* vertikales Scrollen bleibt möglich */
  background: var(--c-cream);
}

.compare__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Die "Vorher"-Ebene liegt oben und wird per clip-path beschnitten.
   Der Grad der Verschmutzung ist über CSS-Filter simuliert — sobald echte
   Vorher-Fotos vorliegen, entfällt der Filter und das Bild wird getauscht. */
.compare__layer {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}
.compare__layer .compare__img {
  filter: saturate(0.42) contrast(0.74) brightness(0.62) sepia(0.5) hue-rotate(-8deg);
}
/* Zusätzlicher Schmutzschleier für den Vorher-Zustand */
.compare__layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 70% at 18% 28%, rgba(85, 67, 47, 0.52), transparent 72%),
    radial-gradient(45% 55% at 78% 68%, rgba(20, 32, 26, 0.48), transparent 72%),
    radial-gradient(30% 40% at 55% 90%, rgba(85, 67, 47, 0.40), transparent 70%),
    linear-gradient(180deg, rgba(85, 67, 47, 0.24), rgba(20, 32, 26, 0.38));
  mix-blend-mode: multiply;
}

/* Ziehgriff */
.compare__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--c-paper);
  transform: translateX(-1px);
  will-change: left;
  box-shadow: 0 0 0 1px rgba(20, 32, 26, 0.18);
}
.compare__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-paper);
  color: var(--c-ink);
  box-shadow: var(--sh-md);
  transition: transform var(--t-fast) var(--ease-out),
              background-color var(--t-fast) var(--ease-out);
}
.compare:hover .compare__grip { transform: translate(-50%, -50%) scale(1.07); }
.compare.is-dragging .compare__grip { background: var(--c-ocker); transform: translate(-50%, -50%) scale(1.12); }
.compare__grip:focus-visible { outline-offset: 5px; }

/* Beschriftungen */
.compare__tag {
  position: absolute;
  top: var(--sp-4);
  z-index: 3;
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  background: rgba(20, 32, 26, 0.62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--c-cream);
  pointer-events: none;
}
.compare__tag--before { left: var(--sp-4); }
.compare__tag--after  { right: var(--sp-4); }

/* Ehrlicher Hinweis, dass der Vorher-Zustand nachgestellt ist */
.compare-note {
  margin-top: var(--sp-4);
  font-size: var(--fs-micro);
  color: var(--c-text-muted);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
}
.compare-note svg { flex: none; margin-top: 2px; color: var(--c-peat-light); }

.compare-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  align-items: center;
}


/* ==========================================================================
   11. ABLAUF
   --------------------------------------------------------------------------
   Vier Schritte auf einer Linie, die beim Scrollen mitwächst.
   ========================================================================== */

.process { position: relative; }

.process__steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
}

/* Die Fortschrittslinie liegt hinter den Schritten. Höhe/Breite wird in
   script.js über --progress gesteuert. */
.process__track {
  position: absolute;
  background: var(--c-border);
  overflow: hidden;
  /* Mobile: senkrecht am linken Rand */
  left: 23px; top: 0; bottom: 0;
  width: 1.5px;
}
.process__track::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-ocker);
  transform-origin: top;
  transform: scaleY(var(--progress, 0));
  transition: transform 120ms linear;
}

.step { position: relative; padding-left: 4rem; }

.step__num {
  position: absolute;
  left: 0; top: 0;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-paper);
  border: 1.5px solid var(--c-border-strong);
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: background-color var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out),
              color var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-soft);
}
/* Wird gesetzt, sobald der Schritt im Blick ist */
.step.is-reached .step__num {
  background: var(--c-ocker);
  border-color: var(--c-ocker);
  color: #22190a;
  transform: scale(1.05);
}
.step__title { font-size: var(--fs-h3); margin-bottom: var(--sp-2); }
.step__text { font-size: var(--fs-small); color: var(--c-text-muted); }


/* ==========================================================================
   12. ÜBER UNS
   ========================================================================== */

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.about__media { position: relative; }
.about__media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Zitatkarte, die über die Bildkante ragt */
.about__quote {
  background: var(--c-ink);
  color: var(--c-text-invert);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--sh-lg);
  max-width: 22rem;
  margin-top: calc(var(--sp-6) * -1);
  margin-left: var(--sp-5);
  position: relative;
  z-index: 2;
}
.about__quote p {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--c-cream);
  font-variation-settings: "SOFT" 20, "WONK" 1;
}
.about__quote cite {
  display: block;
  margin-top: var(--sp-3);
  font-family: var(--font-text);
  font-style: normal;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--c-ocker-light);
}

/* Werte-Liste mit Häkchen */
.values { display: grid; gap: var(--sp-4); margin-top: var(--sp-6); }
.value { display: flex; gap: var(--sp-4); align-items: flex-start; }
.value__icon {
  width: 34px; height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-ocker-wash);
  color: var(--c-peat);
}
.value__title { font-weight: 600; color: var(--c-ink); font-size: var(--fs-body); }
.value__text { font-size: var(--fs-small); color: var(--c-text-muted); }


/* ==========================================================================
   13. EINZUGSGEBIET — stilisierte Karte
   --------------------------------------------------------------------------
   Selbst gezeichnetes SVG statt eingebetteter Fremdkarte: lädt sofort,
   setzt keine Cookies und lässt sich farblich in die Marke einpassen.
   ========================================================================== */

.area {
  position: relative;
  overflow: hidden;
}
/* Weiche Lichtquelle hinter der Karte */
.area::before {
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 60rem; height: 60rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 134, 47, 0.14) 0%, transparent 62%);
  pointer-events: none;
}

.area__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.area__map { position: relative; }
.area__map svg { width: 100%; height: auto; overflow: visible; }

/* Umriss des Einzugsgebiets */
.map-shape {
  fill: rgba(78, 107, 85, 0.16);
  stroke: rgba(125, 154, 133, 0.5);
  stroke-width: 1.5;
  stroke-dasharray: 6 5;
}
.map-river { fill: none; stroke: rgba(125, 154, 133, 0.34); stroke-width: 2; }
.map-road  { fill: none; stroke: rgba(242, 236, 225, 0.10); stroke-width: 1.2; }

/* Orte */
.map-dot { fill: var(--c-moss-light); transition: fill var(--t-fast) var(--ease-out); }
.map-label {
  fill: var(--c-text-invert-muted);
  font-family: var(--font-text);
  font-size: 11px;
  font-weight: 500;
  transition: fill var(--t-fast) var(--ease-out);
}
.map-city:hover .map-dot { fill: var(--c-ocker-light); }
.map-city:hover .map-label { fill: var(--c-cream); }

/* Hauptstandort Lahr */
.map-home .map-dot { fill: var(--c-ocker); r: 6; }
.map-home .map-label { fill: var(--c-cream); font-size: 14px; font-weight: 700; }
/* Pulsierender Ring um den Standort */
.map-pulse {
  fill: none;
  stroke: var(--c-ocker);
  stroke-width: 1.4;
  transform-origin: center;
  transform-box: fill-box;
  animation: map-pulse 3s var(--ease-soft) infinite;
}
@keyframes map-pulse {
  0%   { transform: scale(0.5); opacity: 0.85; }
  75%  { transform: scale(2.4);  opacity: 0; }
  100% { transform: scale(2.4);  opacity: 0; }
}

.area__facts { display: grid; gap: var(--sp-5); margin-top: var(--sp-6); }
.area__fact {
  border-left: 1.5px solid var(--c-ocker);
  padding-left: var(--sp-4);
}
.area__fact dt {
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--c-ocker-light);
  margin-bottom: var(--sp-1);
}
.area__fact dd { font-size: var(--fs-small); color: var(--c-text-invert-muted); }


/* ==========================================================================
   14. TESTIMONIALS
   ========================================================================== */

.testimonials { background: var(--c-cream); overflow: hidden; }

.testimonials__head {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--sp-8);
}

/* Der Viewport blendet an den Rändern weich aus */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; }

.carousel__track {
  display: flex;
  gap: var(--sp-5);
  transition: transform var(--t-slow) var(--ease-soft);
  will-change: transform;
}
.carousel.is-dragging .carousel__track { transition: none; }

.quote {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  background: var(--c-paper);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--sh-sm);
}
.quote__stars { display: flex; gap: 3px; color: var(--c-ocker); }
.quote__text {
  font-family: var(--font-display);
  font-size: 1.14rem;
  line-height: 1.5;
  color: var(--c-ink);
  flex: 1;
}
.quote__foot {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
}
/* Initialen statt Stockfoto-Portrait */
.quote__avatar {
  width: 40px; height: 40px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--c-forest);
  color: var(--c-cream);
  font-size: var(--fs-small);
  font-weight: 600;
}
.quote__name { font-weight: 600; font-size: var(--fs-small); color: var(--c-ink); }
.quote__meta { font-size: var(--fs-micro); color: var(--c-text-muted); }

/* Steuerung */
.carousel__controls {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.carousel__btn {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--c-border-strong);
  color: var(--c-ink);
  background: var(--c-paper);
  transition: background-color var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out),
              transform var(--t-fast) var(--ease-out);
}
.carousel__btn:hover:not(:disabled) {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: var(--c-cream);
  transform: translateY(-2px);
}
.carousel__btn:disabled { opacity: 0.34; cursor: not-allowed; }

.carousel__dots { display: flex; gap: var(--sp-2); margin-left: auto; }
.carousel__dot {
  width: 28px; height: 3px;
  border-radius: var(--r-full);
  background: var(--c-border-strong);
  transition: background-color var(--t-med) var(--ease-out),
              width var(--t-med) var(--ease-soft);
}
.carousel__dot.is-active { background: var(--c-ocker); width: 44px; }


/* ==========================================================================
   15. FAQ
   ========================================================================== */

.faq__list { border-top: 1px solid var(--c-border); }

.faq__item { border-bottom: 1px solid var(--c-border); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: var(--sp-5) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.06rem, 1rem + 0.35vw, 1.24rem);
  font-weight: 600;
  color: var(--c-ink);
  line-height: var(--lh-snug);
  transition: color var(--t-fast) var(--ease-out);
}
.faq__q:hover { color: var(--c-peat); }

/* Plus-Zeichen, das sich zum Minus dreht */
.faq__icon {
  position: relative;
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--c-border-strong);
  margin-top: 2px;
  transition: background-color var(--t-med) var(--ease-out),
              border-color var(--t-med) var(--ease-out),
              transform var(--t-med) var(--ease-soft);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease-soft), opacity var(--t-fast) linear;
}
.faq__icon::before { width: 13px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 1.5px; height: 13px; transform: translate(-50%, -50%); }

.faq__q[aria-expanded="true"] .faq__icon {
  background: var(--c-ocker);
  border-color: var(--c-ocker);
  color: #22190a;
  transform: rotate(180deg);
}
.faq__q[aria-expanded="true"] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); opacity: 0; }

/* Sanftes Aufklappen über grid-template-rows — funktioniert ohne
   feste Maximalhöhe und damit unabhängig von der Textlänge. */
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-med) var(--ease-soft);
}
.faq__a > div { overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a p {
  font-size: var(--fs-small);
  color: var(--c-text-muted);
  max-width: 64ch;
  padding-bottom: var(--sp-5);
}
.faq__a p + p { padding-top: var(--sp-3); }


/* ==========================================================================
   16. ABSCHLUSS-CTA
   ========================================================================== */

.cta-final {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Foto als gedämpfter Hintergrund */
.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cta-final__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.26;
  filter: grayscale(0.3);
}
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg,
              var(--c-ink) 8%,
              rgba(20, 32, 26, 0.92) 42%,
              rgba(20, 32, 26, 0.66) 100%);
}
.cta-final__inner { max-width: 46rem; }
.cta-final h2 { color: var(--c-cream); margin-bottom: var(--sp-4); }
.cta-final p { color: var(--c-text-invert-muted); font-size: var(--fs-lead); }

/* Direkter Telefonlink als gleichwertige Alternative zum Button */
.cta-final__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1rem + 1.2vw, 1.75rem);
  font-weight: 600;
  color: var(--c-cream);
  transition: color var(--t-fast) var(--ease-out);
}
.cta-final__phone svg { color: var(--c-ocker-light); flex: none; }
.cta-final__phone:hover { color: var(--c-ocker-light); }


/* ==========================================================================
   17. FOOTER
   ========================================================================== */

.footer {
  background: var(--c-ink);
  color: var(--c-text-invert-muted);
  border-top: 1px solid var(--c-border-dark);
  padding-block: var(--sp-9) var(--sp-6);
  font-size: var(--fs-small);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--c-border-dark);
}

.footer .brand__name { color: var(--c-cream); }
.footer .brand__tag { color: var(--c-ocker-light); }
.footer .brand__mark { color: var(--c-cream); }
.footer .brand__spark { fill: var(--c-ocker-light); }

.footer__about { max-width: 26rem; margin-top: var(--sp-4); }

.footer__title {
  font-family: var(--font-text);
  font-size: var(--fs-micro);
  font-weight: 700;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--c-cream);
  margin-bottom: var(--sp-4);
}

.footer__list { display: grid; gap: var(--sp-3); }
.footer__list a, .footer__list span { transition: color var(--t-fast) var(--ease-out); }
.footer__list a:hover { color: var(--c-ocker-light); }

.footer__contact { display: grid; gap: var(--sp-4); }
.footer__contact-row { display: flex; gap: var(--sp-3); align-items: flex-start; }
.footer__contact-row svg { color: var(--c-ocker-light); flex: none; margin-top: 3px; }
.footer__contact strong { display: block; color: var(--c-cream); font-weight: 600; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-6);
  font-size: var(--fs-micro);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.footer__legal a { transition: color var(--t-fast) var(--ease-out); }
.footer__legal a:hover { color: var(--c-ocker-light); }

/* Demo-Hinweis: macht unmissverständlich klar, dass dies ein Entwurf ist */
.footer__demo {
  margin-top: var(--sp-5);
  padding: var(--sp-3) var(--sp-4);
  border: 1px dashed var(--c-border-dark);
  border-radius: var(--r-md);
  font-size: var(--fs-micro);
  color: var(--c-text-invert-muted);
  line-height: 1.5;
}


/* ==========================================================================
   18. KONTAKTSEITE
   ========================================================================== */

/* Kompakter Kopfbereich statt eines zweiten großen Heros */
.page-hero {
  padding-top: calc(var(--nav-h) + var(--sp-8));
  padding-bottom: var(--sp-8);
  background:
    radial-gradient(900px 480px at 85% -20%, var(--c-ocker-wash) 0%, transparent 60%),
    linear-gradient(180deg, var(--c-cream) 0%, var(--c-paper) 100%);
  border-bottom: 1px solid var(--c-border);
}
.page-hero__inner { max-width: 44rem; }
.page-hero h1 { margin-bottom: var(--sp-4); }

/* Brotkrumen */
.crumbs {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-micro);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-5);
}
.crumbs a { transition: color var(--t-fast) var(--ease-out); }
.crumbs a:hover { color: var(--c-ocker); }
.crumbs span[aria-current] { color: var(--c-ink); font-weight: 600; }

/* --- Zweispaltiges Layout: Formular + Direktkontakt --- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.form-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: clamp(var(--sp-5), 3vw, var(--sp-8));
  box-shadow: var(--sh-md);
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}

.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--c-ink);
}
.field .req { color: var(--c-ocker); }
.field__hint { font-size: var(--fs-micro); color: var(--c-text-muted); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  min-height: 50px;
  background: var(--c-paper);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-md);
  font-size: var(--fs-body);
  color: var(--c-text);
  transition: border-color var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out),
              background-color var(--t-fast) var(--ease-out);
}
.field textarea { min-height: 8.5rem; resize: vertical; line-height: 1.6; }

/* Eigener Pfeil für das Auswahlfeld, damit es zum übrigen Stil passt */
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none' stroke='%2355645b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: var(--c-peat-light); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--c-white);
  border-color: var(--c-ocker);
  box-shadow: 0 0 0 3px rgba(184, 134, 47, 0.16);
}

/* Fehlerzustand — wird per JS über .is-invalid gesetzt */
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #a8322a;
  background: #fdf5f4;
}
.field.is-invalid input:focus,
.field.is-invalid select:focus,
.field.is-invalid textarea:focus {
  box-shadow: 0 0 0 3px rgba(168, 50, 42, 0.14);
}

.field__error {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-micro);
  color: #a8322a;
  font-weight: 500;
}
.field.is-invalid .field__error { display: flex; }
.field__error svg { flex: none; }

/* Gültig ausgefüllt: dezenter grüner Haken rechts im Feld */
.field.is-valid input,
.field.is-valid textarea {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%234f8a52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13.5 4.5L6 12 2.5 8.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
}
.field.is-valid textarea { background-position: right 1rem top 0.9rem; }

/* Einwilligung */
.consent {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: var(--fs-small);
  color: var(--c-text-muted);
}
.consent input[type="checkbox"] {
  width: 20px; height: 20px;
  min-height: 0;
  flex: none;
  margin-top: 2px;
  accent-color: var(--c-ocker);
  cursor: pointer;
  padding: 0;
}
.consent a { text-decoration: underline; text-underline-offset: 2px; }
.consent a:hover { color: var(--c-ocker); }

.form__submit { width: 100%; margin-top: var(--sp-2); }

/* Sammelmeldung über dem Formular */
.form__status {
  display: none;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  font-size: var(--fs-small);
  margin-bottom: var(--sp-5);
}
.form__status.is-visible { display: flex; }
.form__status--error {
  background: #fdf1f0;
  border: 1px solid #eccbc8;
  color: #8f2a23;
}
.form__status--success {
  background: #eef5ee;
  border: 1px solid #c9dfca;
  color: #2f5c33;
}
.form__status svg { flex: none; margin-top: 2px; }

/* Erfolgsansicht, die das Formular ersetzt */
.form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-4);
  padding: var(--sp-8) var(--sp-5);
}
.form__success.is-visible { display: flex; }
.form__success-icon {
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef5ee;
  color: #4f8a52;
  animation: pop-in 520ms var(--ease-soft) both;
}
@keyframes pop-in {
  0%   { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.form__success p { color: var(--c-text-muted); max-width: 34ch; }

/* --- Direktkontakt-Spalte --- */
.contact__aside { display: grid; gap: var(--sp-5); }

.info-card {
  background: var(--c-ink);
  color: var(--c-text-invert);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.info-card h2 { color: var(--c-cream); font-size: var(--fs-h3); margin-bottom: var(--sp-2); }
.info-card > p { color: var(--c-text-invert-muted); font-size: var(--fs-small); }

.info-card__phone {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.55rem);
  font-weight: 600;
  color: var(--c-cream);
  transition: color var(--t-fast) var(--ease-out);
}
.info-card__phone:hover { color: var(--c-ocker-light); }
.info-card__phone svg { color: var(--c-ocker-light); flex: none; }

.info-list {
  display: grid;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-border-dark);
}
.info-list__row { display: flex; gap: var(--sp-3); align-items: flex-start; }
.info-list__row svg { color: var(--c-moss-light); flex: none; margin-top: 3px; }
.info-list dt { font-size: var(--fs-micro); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--c-ocker-light); font-weight: 600; }
.info-list dd { font-size: var(--fs-small); color: var(--c-text-invert-muted); margin-top: 2px; }

/* Reaktionsversprechen */
.response-card {
  background: var(--c-ocker-wash);
  border: 1px solid #e6d6b4;
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}
.response-card svg { color: var(--c-ocker); flex: none; margin-top: 2px; }
.response-card strong { display: block; color: var(--c-ink); margin-bottom: var(--sp-1); }
.response-card p { font-size: var(--fs-small); color: var(--c-peat); }

/* --- Eingebettete Karte --- */
.map-embed {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  box-shadow: var(--sh-md);
  background: var(--c-cream);
  aspect-ratio: 16 / 10;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: var(--z-map);
  /* Karte farblich etwas zurücknehmen, damit sie sich einfügt */
  filter: saturate(0.82) contrast(0.96);
}
/* Liegt unter dem iframe (z-index 1) und wird nur sichtbar, wenn die
   Karte nicht geladen wurde. */
.map-embed__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  text-align: center;
  padding: var(--sp-6);
  color: var(--c-text-muted);
  background: var(--c-cream);
}
.map-embed__fallback svg { color: var(--c-peat-light); }
.map-embed__fallback strong { color: var(--c-ink); }

.map-embed__caption {
  position: absolute;
  left: var(--sp-4);
  bottom: var(--sp-4);
  z-index: 2;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  background: rgba(250, 247, 241, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: var(--sh-sm);
  font-size: var(--fs-micro);
  color: var(--c-text-muted);
  max-width: calc(100% - var(--sp-8));
}
.map-embed__caption strong { display: block; color: var(--c-ink); font-size: var(--fs-small); }


/* ==========================================================================
   19. RECHTSSEITEN
   ========================================================================== */

.legal { padding-block: var(--sp-9); }
.legal h2 {
  font-size: var(--fs-h3);
  margin-top: var(--sp-7);
  margin-bottom: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-border);
}
.legal h2:first-of-type { margin-top: 0; border-top: 0; padding-top: 0; }
.legal p, .legal ul { margin-bottom: var(--sp-4); color: var(--c-text-muted); }
.legal ul { list-style: disc; padding-left: var(--sp-5); display: grid; gap: var(--sp-2); }
.legal a { color: var(--c-peat); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--c-ocker); }

/* Auffälliger Platzhalter-Hinweis auf den Rechtsseiten */
.notice {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-5);
  margin-bottom: var(--sp-7);
  background: var(--c-ocker-wash);
  border: 1px solid #e6d6b4;
  border-radius: var(--r-lg);
  font-size: var(--fs-small);
  color: var(--c-peat);
}
.notice svg { color: var(--c-ocker); flex: none; margin-top: 2px; }
.notice strong { display: block; color: var(--c-ink); margin-bottom: var(--sp-1); }


/* ==========================================================================
   20. SCROLL-ANIMATIONEN
   --------------------------------------------------------------------------
   Elemente mit [data-anim] starten unsichtbar und leicht versetzt. Der
   IntersectionObserver in script.js setzt .is-visible, sobald sie in den
   Blick kommen. Ohne JavaScript bleibt alles sichtbar (siehe .no-js).
   ========================================================================== */

[data-anim] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms var(--ease-out),
              transform 720ms var(--ease-soft);
  will-change: opacity, transform;
}
[data-anim="left"]  { transform: translateX(-26px); }
[data-anim="right"] { transform: translateX(26px); }
[data-anim="scale"] { transform: scale(0.965); }
[data-anim="fade"]  { transform: none; }

[data-anim].is-visible {
  opacity: 1;
  transform: none;
}

/* Verzögerungen für gestaffelte Gruppen */
[data-delay="1"] { transition-delay: 90ms; }
[data-delay="2"] { transition-delay: 180ms; }
[data-delay="3"] { transition-delay: 270ms; }
[data-delay="4"] { transition-delay: 360ms; }
[data-delay="5"] { transition-delay: 450ms; }

/* Fallback: ohne JavaScript ist alles sofort sichtbar */
.no-js [data-anim] { opacity: 1; transform: none; }

/* Feiner Lesefortschritt am oberen Rand */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  z-index: calc(var(--z-nav) + 1);
  height: 2px;
  width: 100%;
  background: var(--c-ocker);
  transform: scaleX(var(--scroll, 0));
  transform-origin: left;
  pointer-events: none;
}


/* ==========================================================================
   21. RESPONSIVE BREAKPOINTS
   --------------------------------------------------------------------------
   Mobile-first: Die Basis oben gilt für Smartphones (ab 320px). Hier folgen
   nur die Erweiterungen für größere Flächen.
   ========================================================================== */

/* --- ab 560px: zweispaltige Detailbereiche --- */
@media (min-width: 35rem) {
  .form__grid { grid-template-columns: 1fr 1fr; }
  .stats { gap: var(--sp-7) var(--sp-6); }
  .hero__media { aspect-ratio: 16 / 10; }
}

/* --- ab 768px (Tablet) --- */
@media (min-width: 48rem) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: var(--sp-7); }
  .values { grid-template-columns: 1fr; }
  .area__facts { grid-template-columns: repeat(3, 1fr); }
  .quote { flex: 0 0 calc((100% - var(--sp-5)) / 2); }
  .compare { aspect-ratio: 16 / 9; }

  /* Ablauf wird waagerecht */
  .process__steps { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
  .process__track {
    left: 24px; right: 24px; top: 24px;
    bottom: auto;
    width: auto;
    height: 1.5px;
  }
  .process__track::after {
    transform-origin: left;
    transform: scaleX(var(--progress, 0));
  }
  .step { padding-left: 0; padding-top: 4.5rem; }
  .step__num { left: 0; top: 0; }
}

/* --- ab 62rem (kleines Desktop) --- */
@media (min-width: 62rem) {
  .hero { padding-top: calc(var(--nav-h) + var(--sp-8)); padding-bottom: var(--sp-10); }
  .hero__grid { grid-template-columns: 1.02fr 0.98fr; gap: var(--sp-9); }
  .hero__media { aspect-ratio: 3 / 4; max-height: 40rem; }
  .hero__scroll { display: flex; }

  .trust__grid { grid-template-columns: 0.85fr 1.15fr; gap: var(--sp-9); align-items: center; }

  .about__grid { grid-template-columns: 0.92fr 1.08fr; gap: var(--sp-10); }
  .about__media { position: relative; }
  .about__quote { margin-top: calc(var(--sp-8) * -1); margin-left: var(--sp-7); }

  .area__grid { grid-template-columns: 1.15fr 0.85fr; gap: var(--sp-9); }
  .compare-layout { grid-template-columns: 1.25fr 0.75fr; gap: var(--sp-9); }

  .contact__grid { grid-template-columns: 1.25fr 0.75fr; gap: var(--sp-8); }

  /* Erste Leistungskarte über zwei Spalten */
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .service--wide { grid-column: span 2; }
  .service--wide .service__media { aspect-ratio: 21 / 9; }
}

/* --- ab 90rem (großes Desktop) --- */
@media (min-width: 90rem) {
  .hero__media { max-height: 44rem; }
}

/* --- unter 62rem: Navigation auf Burger umstellen --- */
@media (max-width: 61.99rem) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
}

/* Auf sehr schmalen Geräten Buttons in voller Breite */
@media (max-width: 26rem) {
  .btn-row .btn { width: 100%; }
  .hero__badge { left: var(--sp-4); right: var(--sp-4); bottom: var(--sp-4); max-width: none; }
}


/* ==========================================================================
   22. REDUCED MOTION & PRINT
   ========================================================================== */

/* Nutzerinnen und Nutzer, die weniger Bewegung eingestellt haben, bekommen
   dieselbe Seite ohne Animationen — nichts bleibt dadurch unsichtbar. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-anim] { opacity: 1 !important; transform: none !important; }
  .hero__media img { transform: scale(1) !important; }
  .mobile-menu__link, .mobile-menu__foot { opacity: 1; transform: none; }
}

@media print {
  .nav, .mobile-menu, .progress-bar, .hero__scroll,
  .carousel__controls, body::after { display: none !important; }
  body { background: #fff; color: #000; }
  .section--dark, .trust, .area, .cta-final, .footer { background: #fff !important; color: #000 !important; }
  [data-anim] { opacity: 1 !important; transform: none !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
