/* ==========================================================================
   MW GbR – Hausmeister- & Renovierungsservice
   Design & Umsetzung: KindlySolutions · kindlysolutions.de
   Mobile-first. Reines CSS, keine externen Ressourcen.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts (lokal eingebunden – DSGVO: keine Verbindung zu Google)
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/bitter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Bitter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/bitter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------------------
   2. Design-Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Marke – gesampelt aus dem Logo */
  --gruen: #4d9160;         /* Marken-Grün, Flächen und Akzente */
  --gruen-tief: #2e6b41;    /* Buttons/Links – AA-tauglich auf Hell */
  --gruen-tiefer: #245635;  /* Hover-Stufe */
  --gruen-hell: #eaf2ec;    /* Icon-Chips, ruhige Flächen */
  --gruen-blass: #93cfa4;   /* Grün auf dunklem Grund */

  --anthrazit: #333b43;
  --anthrazit-tief: #1e252b;
  --anthrazit-mild: #5b656e;

  --papier: #faf9f6;
  --weiss: #ffffff;
  --linie: #e4e2dc;
  --linie-zart: #efeee9;
  --linie-stark: #cfccc4;   /* Feldrahmen im Hover */
  --grau-mild: #7f878e;     /* Platzhaltertext */

  --fokus: #1f6b3d;

  /* Rückmeldungen */
  --fehler: #b3261e;
  --fehler-tief: #8c1d18;
  --fehler-flaeche: #fdf1f0;
  --fehler-feld: #fdf6f5;

  /* Weiß auf farbigem Grund – als Token, damit Themes später greifen */
  --auf-dunkel: #ffffff;

  /* Typografie */
  --display: 'Bitter', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;

  /* Schriftgrößen – fließend, damit zwischen den Breakpoints nichts springt */
  --text-h1: clamp(2.25rem, 8.5vw, 4.25rem);
  --text-h2: clamp(1.85rem, 5.5vw, 2.9rem);
  --text-h3: clamp(1.15rem, 2.6vw, 1.35rem);
  --text-basis: 1.0625rem;
  --text-klein: 0.9375rem;
  --text-mini: 0.875rem;
  --text-mikro: 0.8125rem;
  --text-label: 0.75rem;

  /* Abstands-Raster – 8px-System */
  --s1: 0.5rem;   /*  8px */
  --s2: 1rem;     /* 16px */
  --s3: 1.5rem;   /* 24px */
  --s4: 2rem;     /* 32px */
  --s5: 3rem;     /* 48px */
  --s6: 4rem;     /* 64px */
  --s7: 5.5rem;   /* 88px */
  --s8: 7.5rem;   /* 120px */

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

  /* Tiefe – weich und tief liegend, nie hart */
  --schatten-flach: 0 1px 2px rgba(30, 37, 43, 0.04),
    0 4px 14px rgba(30, 37, 43, 0.05);
  --schatten-karte: 0 2px 4px rgba(30, 37, 43, 0.035),
    0 12px 32px -8px rgba(30, 37, 43, 0.09);
  --schatten-hoch: 0 4px 8px rgba(30, 37, 43, 0.04),
    0 24px 56px -16px rgba(30, 37, 43, 0.16);

  --breite: 1180px;
  --schmal: 720px;
  --rand: 1.25rem;

  /* Höhe der mobilen Kontaktleiste inkl. Safe-Area – der Body reserviert
     unten exakt diesen Platz, damit die Leiste nie Inhalt verdeckt. */
  --leiste-hoehe: 4.5rem;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 40em) {
  :root { --rand: 2rem; }
}

@media (min-width: 64em) {
  :root { --rand: 2.5rem; }
}

/* --------------------------------------------------------------------------
   3. Reset & Basis
   -------------------------------------------------------------------------- */

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

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

body {
  margin: 0;
  background: var(--papier);
  color: var(--anthrazit);
  font-family: var(--sans);
  font-size: var(--text-basis);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--anthrazit-tief);
  margin: 0 0 var(--s2);
  text-wrap: balance;
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); letter-spacing: -0.01em; }

p { margin: 0 0 var(--s2); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--gruen-tief); text-decoration-thickness: 1px; text-underline-offset: 3px; }
@media (hover: hover) {
  a:hover { color: var(--gruen-tiefer); }
}

ul { margin: 0; padding: 0; }

/* Tastaturbedienung: sichtbarer, markenkonformer Fokus */
:focus-visible {
  outline: 3px solid var(--fokus);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}
:focus:not(:focus-visible) { outline: none; }

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

.skip-link {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -140%);
  z-index: 200;
  background: var(--anthrazit-tief);
  color: var(--auf-dunkel);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-size: var(--text-klein);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); color: var(--auf-dunkel); }

/* --------------------------------------------------------------------------
   4. Layout-Bausteine
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--breite);
  margin-inline: auto;
  padding-inline: var(--rand);
}

.wrap--schmal { max-width: var(--schmal); }

section { position: relative; }

.sektion {
  padding-block: var(--s7);
}

@media (min-width: 64em) {
  .sektion { padding-block: var(--s8); }
}

.sektion--papier { background: var(--papier); }
.sektion--weiss  { background: var(--weiss); }

/* Sektionskopf – ein Blickanker pro Sektion */
.kopf {
  max-width: 46rem;
  margin-bottom: var(--s5);
}
.kopf--zentriert {
  margin-inline: auto;
  text-align: center;
}
/* Ersetzen die früheren style="margin-bottom:…"-Attribute, damit die CSP
   ohne 'unsafe-inline' auskommt. */
.kopf--eng { margin-bottom: var(--s3); }
.kopf--mittel { margin-bottom: var(--s4); }

/* Das Icon-Sprite wird nur definiert, nicht dargestellt. */
.sprite { position: absolute; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gruen-tief);
  margin: 0 0 var(--s2);
}
.eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 2px;
  background: var(--gruen);
  border-radius: 2px;
}
.kopf--zentriert .eyebrow::before { display: none; }

.lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--anthrazit-mild);
  max-width: 40rem;
}
.kopf--zentriert .lead { margin-inline: auto; }

@media (min-width: 48em) {
  .lead { font-size: 1.1875rem; }
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9375rem 1.75rem;
  min-height: 3.25rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease),
    border-color 0.22s var(--ease), transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}

.btn svg { flex: none; }

.btn--primaer {
  background: var(--gruen-tief);
  color: var(--auf-dunkel);
  box-shadow: 0 2px 4px rgba(30, 37, 43, 0.08),
    0 12px 28px -10px rgba(46, 107, 65, 0.55);
}
@media (hover: hover) {
  .btn--primaer:hover {
    background: var(--gruen-tiefer);
    color: var(--auf-dunkel);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(30, 37, 43, 0.1),
      0 18px 36px -12px rgba(46, 107, 65, 0.6);
  }
}
.btn--primaer:active { transform: translateY(0); }

.btn--sekundaer {
  background: transparent;
  color: var(--anthrazit-tief);
  border-color: var(--linie);
  background-color: rgba(255, 255, 255, 0.72);
}
@media (hover: hover) {
  .btn--sekundaer:hover {
    color: var(--anthrazit-tief);
    border-color: var(--gruen);
    background-color: var(--auf-dunkel);
    transform: translateY(-2px);
    box-shadow: var(--schatten-flach);
  }
}

.btn--block { width: 100%; }

@media (min-width: 30em) {
  .btn--block { width: auto; }
}

/* --------------------------------------------------------------------------
   6. Header & Navigation
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background-color 0.3s var(--ease);
}

.header.ist-gescrollt {
  border-bottom-color: var(--linie-zart);
  box-shadow: 0 1px 24px -8px rgba(30, 37, 43, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  min-height: 4.5rem;
}

@media (min-width: 64em) {
  .header__inner { min-height: 5.25rem; }
}

.marke {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  flex: none;
}

.marke__logo {
  width: auto;
  height: 2.5rem;
}

@media (min-width: 64em) {
  .marke__logo { height: 3rem; }
}

.marke__text { display: none; }

@media (min-width: 30em) {
  .marke__text {
    display: block;
    line-height: 1.2;
  }
  .marke__name {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: var(--text-basis);
    letter-spacing: -0.01em;
    color: var(--anthrazit-tief);
  }
  .marke__claim {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--anthrazit-mild);
  }
}

/* Desktop-Navigation */
.nav { display: none; }

@media (min-width: 64em) {
  .nav {
    display: flex;
    align-items: center;
    gap: var(--s1);
    margin-left: auto;
  }
  .nav__liste {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
  }
  .nav__link {
    display: block;
    padding: 0.5rem 0.875rem;
    border-radius: var(--r-pill);
    font-size: var(--text-klein);
    font-weight: 500;
    color: var(--anthrazit);
    text-decoration: none;
    transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
  }
  .nav__link[aria-current='true'] {
    color: var(--gruen-tiefer);
    background: var(--gruen-hell);
  }
  @media (hover: hover) {
    .nav__link:hover {
      color: var(--gruen-tiefer);
      background: var(--gruen-hell);
    }
  }
}

.header__cta { display: none; }

@media (min-width: 64em) {
  .header__cta {
    display: inline-flex;
    margin-left: var(--s2);
    padding: 0.75rem 1.375rem;
    min-height: 2.875rem;
    font-size: var(--text-klein);
  }
}

/* Burger */
.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.875rem;
  height: 2.875rem;
  padding: 0;
  background: var(--auf-dunkel);
  border: 1px solid var(--linie);
  border-radius: var(--r-md);
  cursor: pointer;
  color: var(--anthrazit-tief);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
@media (hover: hover) {
  .burger:hover { border-color: var(--gruen); box-shadow: var(--schatten-flach); }
}

@media (min-width: 64em) {
  .burger { display: none; }
}

/* Ohne JS lässt sich das Menü nicht öffnen – dann steht dort auch kein
   toter Knopf. Die Seite ist eine Single-Page: Inhalte sind per Scrollen,
   Footer-Navigation und Kontaktleiste erreichbar. */
html:not(.js) .burger { display: none; }

.burger__balken {
  position: relative;
  display: block;
  width: 1.125rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.28s var(--ease), background-color 0.15s var(--ease);
}
.burger__balken::before,
.burger__balken::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.28s var(--ease), top 0.2s var(--ease);
}
.burger__balken::before { top: -6px; }
.burger__balken::after { top: 6px; }

.burger[aria-expanded='true'] .burger__balken { background: transparent; }
.burger[aria-expanded='true'] .burger__balken::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded='true'] .burger__balken::after  { top: 0; transform: rotate(-45deg); }

/* Mobile-Menü */
.mobilnav {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--rand) var(--s5);
  background: var(--papier);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.28s var(--ease), visibility 0.28s var(--ease);
}
.mobilnav.ist-offen { visibility: visible; opacity: 1; }

@media (min-width: 64em) {
  .mobilnav { display: none; }
}

.mobilnav__liste {
  list-style: none;
  margin-bottom: var(--s4);
}

.mobilnav__liste li + li { border-top: 1px solid var(--linie-zart); }

.mobilnav__link {
  display: block;
  padding: var(--s2) 0;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--anthrazit-tief);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
@media (hover: hover) {
  .mobilnav__link:hover {
    color: var(--gruen-tief);
    transform: translateX(4px);
  }
}

.mobilnav__aktionen {
  display: grid;
  gap: var(--s1);
}

body.menue-offen { overflow: hidden; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding-block: var(--s6) var(--s7);
  overflow: hidden;
}


@media (min-width: 64em) {
  .hero { padding-block: var(--s7) var(--s8); }
}

/* sehr dezenter Farbschleier – keine grellen Verläufe */
.hero::before {
  content: '';
  position: absolute;
  top: -18rem;
  right: -14rem;
  width: 44rem;
  height: 44rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 145, 96, 0.13), rgba(77, 145, 96, 0) 68%);
  pointer-events: none;
}

.hero__inner { position: relative; }

@media (min-width: 64em) {
  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--s6);
    align-items: center;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 0.875rem 0.4375rem 0.5rem;
  margin-bottom: var(--s3);
  background: var(--auf-dunkel);
  border: 1px solid var(--linie);
  border-radius: var(--r-pill);
  font-size: var(--text-mikro);
  font-weight: 500;
  color: var(--anthrazit);
  box-shadow: var(--schatten-flach);
}
.hero__badge svg { color: var(--gruen-tief); flex: none; }

.hero h1 { margin-bottom: var(--s3); }

/* Signature-Move: hervorgehobenes Schlüsselwort mit handgezeichnetem Strich */
.akzent {
  position: relative;
  display: inline-block;
  color: var(--gruen-tief);
  white-space: nowrap;
}
.akzent__strich {
  position: absolute;
  left: 0;
  bottom: -0.14em;
  width: 100%;
  height: 0.28em;
  color: var(--gruen);
  overflow: visible;
}
/* Ohne .animiert liegt der Strich fertig gezeichnet da – siehe Abschnitt 14. */

@keyframes strich-zeichnen {
  to { stroke-dashoffset: 0; }
}

.hero__lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--anthrazit-mild);
  max-width: 34rem;
  margin-bottom: var(--s4);
}

@media (min-width: 48em) {
  .hero__lead { font-size: 1.25rem; }
}

.hero__aktionen {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  margin-bottom: var(--s4);
}

@media (min-width: 30em) {
  .hero__aktionen { flex-direction: row; flex-wrap: wrap; gap: 0.75rem; }
}

.hero__hinweis {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--text-klein);
  color: var(--anthrazit-mild);
}
.hero__hinweis svg { flex: none; margin-top: 0.25rem; color: var(--gruen); }

/* Bildseite */
.hero__medien {
  position: relative;
  margin-top: var(--s5);
}

@media (min-width: 64em) {
  .hero__medien { margin-top: 0; }
}

.hero__bild {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--schatten-hoch);
  background: var(--gruen-hell);
}
.hero__bild img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* feine Layering-Kante */
.hero__bild::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.hero__karte {
  position: absolute;
  left: var(--s2);
  bottom: -1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.125rem;
  background: var(--auf-dunkel);
  border-radius: var(--r-lg);
  box-shadow: var(--schatten-hoch);
  max-width: 17rem;
}

@media (min-width: 48em) {
  .hero__karte { left: -1rem; bottom: -1.75rem; }
}

.hero__karte-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--r-md);
  background: var(--gruen-hell);
  color: var(--gruen-tief);
}

.hero__karte-text {
  font-size: var(--text-mini);
  line-height: 1.45;
  color: var(--anthrazit-mild);
}
.hero__karte-text strong {
  display: block;
  font-size: var(--text-klein);
  font-weight: 600;
  color: var(--anthrazit-tief);
}


/* Auf kleinen Displays wird der Hero gestrafft, damit der Anruf-CTA auch bei
   670 px Viewporthöhe über der Falte liegt – und zwar oberhalb der fixierten
   Kontaktleiste. Reine Abstands-Korrektur, keine Textänderung. */
@media (max-width: 47.99em) {
  .hero { padding-block: var(--s2) var(--s6); }
  .hero__badge {
    margin-bottom: var(--s1);
    padding: 0.375rem 0.75rem 0.375rem 0.5rem;
    font-size: var(--text-mikro);
  }
  .hero h1 { margin-bottom: var(--s1); }
  .hero__lead {
    line-height: 1.55;
    margin-bottom: var(--s2);
  }
  .hero__aktionen { margin-bottom: var(--s3); }
}

/* --------------------------------------------------------------------------
   8. Werte-Band
   -------------------------------------------------------------------------- */

.werte {
  padding-block: var(--s5);
  background: var(--weiss);
  border-block: 1px solid var(--linie-zart);
}

.werte__liste {
  display: grid;
  gap: var(--s4);
  list-style: none;
}

@media (min-width: 48em) {
  .werte__liste {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s5);
  }
}

.wert {
  display: flex;
  gap: var(--s2);
  align-items: flex-start;
}

.wert__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 3rem;
  height: 3rem;
  border-radius: var(--r-md);
  background: var(--gruen-hell);
  color: var(--gruen-tief);
}

.wert__titel {
  display: block;
  font-family: var(--display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--anthrazit-tief);
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

.wert__text {
  display: block;
  font-size: var(--text-klein);
  line-height: 1.6;
  color: var(--anthrazit-mild);
  margin: 0;
}

/* --------------------------------------------------------------------------
   9. Leistungen
   -------------------------------------------------------------------------- */

.leistungen__grid {
  display: grid;
  gap: var(--s2);
  list-style: none;
}

@media (min-width: 34em) {
  .leistungen__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s3); }
}

@media (min-width: 64em) {
  .leistungen__grid { grid-template-columns: repeat(3, 1fr); }
}

.leistung {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--s3);
  background: var(--weiss);
  border: 1px solid var(--linie-zart);
  border-radius: var(--r-lg);
  box-shadow: var(--schatten-flach);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

@media (min-width: 48em) {
  .leistung { padding: var(--s4) var(--s3) var(--s3); }
}

@media (hover: hover) {
  .leistung:hover {
    transform: translateY(-4px);
    border-color: rgba(77, 145, 96, 0.35);
    box-shadow: var(--schatten-karte);
  }
}

.leistung__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: var(--s2);
  border-radius: var(--r-md);
  background: var(--gruen-hell);
  color: var(--gruen-tief);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
@media (hover: hover) {
  .leistung:hover .leistung__icon {
    background: var(--gruen-tief);
    color: var(--auf-dunkel);
  }
}

.leistung h3 { margin-bottom: 0.5rem; }

.leistung p {
  font-size: var(--text-klein);
  line-height: 1.65;
  color: var(--anthrazit-mild);
  margin: 0;
}

/* Abschlusskarte „Weitere Arbeiten auf Anfrage" – schließt das Raster
   über die volle Breite ab, statt eine Reihe halbleer stehen zu lassen. */
.leistung--anfrage {
  background: var(--anthrazit-tief);
  border-color: var(--anthrazit-tief);
  color: var(--auf-dunkel);
  justify-content: space-between;
  gap: var(--s3);
}

@media (min-width: 34em) {
  .leistung--anfrage {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: var(--s4);
    padding: var(--s4);
  }
  .leistung--anfrage .leistung__inhalt {
    display: flex;
    align-items: center;
    gap: var(--s3);
  }
  .leistung--anfrage .leistung__icon { margin-bottom: 0; flex: none; }
  .leistung--anfrage p { margin-bottom: 0; max-width: 34rem; }
  .leistung--anfrage .leistung__link { align-self: center; flex: none; }
}
.leistung--anfrage h3 { color: var(--auf-dunkel); }
.leistung--anfrage p { color: rgba(255, 255, 255, 0.75); margin-bottom: var(--s3); }
.leistung--anfrage .leistung__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--auf-dunkel);
}
@media (hover: hover) {
  .leistung--anfrage:hover { border-color: var(--gruen); }
}
@media (hover: hover) {
  .leistung--anfrage:hover .leistung__icon { background: var(--gruen); color: var(--auf-dunkel); }
}

.leistung__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-klein);
  font-weight: 600;
  color: var(--auf-dunkel);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: gap 0.25s var(--ease), border-color 0.25s var(--ease);
}
@media (hover: hover) {
  .leistung__link:hover {
    color: var(--auf-dunkel);
    gap: 0.75rem;
    border-bottom-color: var(--auf-dunkel);
  }
}

/* --------------------------------------------------------------------------
   10. Über uns
   -------------------------------------------------------------------------- */

.ueber__inner {
  display: grid;
  gap: var(--s5);
}

@media (min-width: 64em) {
  .ueber__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: var(--s6);
    align-items: center;
  }
}

.ueber__medien { position: relative; }

.ueber__bild {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--schatten-karte);
}
.ueber__bild img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 60% center;
}

@media (min-width: 48em) and (max-width: 63.99em) {
  .ueber__bild img { aspect-ratio: 16 / 9; }
}

.ueber__maskottchen {
  position: absolute;
  right: -0.5rem;
  bottom: -1.5rem;
  width: 7.5rem;
  filter: drop-shadow(0 18px 28px rgba(30, 37, 43, 0.22));
  pointer-events: none;
}

@media (min-width: 48em) {
  .ueber__maskottchen { width: 10rem; right: -1.5rem; bottom: -2rem; }
}

.ueber__punkte {
  display: grid;
  gap: var(--s2);
  list-style: none;
  margin-top: var(--s4);
}

.ueber__punkt {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
}
.ueber__punkt svg {
  flex: none;
  margin-top: 0.3rem;
  color: var(--gruen-tief);
}
.ueber__punkt strong { color: var(--anthrazit-tief); font-weight: 600; }

/* Inhaber-Doppel */
.inhaber {
  display: grid;
  gap: var(--s2);
  margin-top: var(--s4);
  list-style: none;
}

@media (min-width: 30em) {
  .inhaber { grid-template-columns: repeat(2, 1fr); }
}

.inhaber__karte {
  padding: var(--s2) var(--s3);
  background: var(--weiss);
  border: 1px solid var(--linie-zart);
  border-radius: var(--r-md);
}

.inhaber__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--text-basis);
  color: var(--anthrazit-tief);
  margin: 0;
}

.inhaber__rolle {
  font-size: var(--text-mikro);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gruen-tief);
  margin: 0 0 0.25rem;
}

.inhaber__tel {
  font-size: var(--text-klein);
  font-weight: 500;
  color: var(--anthrazit);
  text-decoration: none;
  border-bottom: 1px solid var(--linie);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
@media (hover: hover) {
  .inhaber__tel:hover { color: var(--gruen-tiefer); border-bottom-color: var(--gruen); }
}

/* --------------------------------------------------------------------------
   11. Kontakt
   -------------------------------------------------------------------------- */

.kontakt { background: var(--anthrazit-tief); color: rgba(255, 255, 255, 0.82); }
.kontakt h2, .kontakt h3 { color: var(--auf-dunkel); }
/* Das Formular sitzt als helle Karte in der dunklen Sektion – Textfarben zurückdrehen */
.kontakt .formular h3, .kontakt .formular__titel { color: var(--anthrazit-tief); }
.kontakt .eyebrow { color: var(--gruen-blass); }
.kontakt .eyebrow::before { background: var(--gruen); }
.kontakt .lead { color: rgba(255, 255, 255, 0.72); }

.kontakt__inner {
  display: grid;
  gap: var(--s5);
}

@media (min-width: 64em) {
  .kontakt__inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: var(--s6);
    align-items: start;
  }
}

.kontakt__karten {
  display: grid;
  gap: var(--s2);
  list-style: none;
  margin-bottom: var(--s3);
}

.kontaktkarte {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}
@media (hover: hover) {
  .kontaktkarte:hover {
    color: inherit;
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(147, 207, 164, 0.5);
    transform: translateY(-2px);
  }
}

.kontaktkarte__icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--r-sm);
  background: var(--gruen);
  color: var(--auf-dunkel);
}

.kontaktkarte__label {
  display: block;
  font-size: var(--text-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}

.kontaktkarte__wert {
  display: block;
  font-size: var(--text-basis);
  font-weight: 600;
  color: var(--auf-dunkel);
  line-height: 1.35;
}

.kontakt__gebiet {
  padding: var(--s2) var(--s3);
  border-left: 2px solid var(--gruen);
  font-size: var(--text-klein);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}
.kontakt__gebiet strong { color: var(--auf-dunkel); display: block; font-weight: 600; }

/* Formular */
.formular {
  padding: var(--s3);
  background: var(--weiss);
  border-radius: var(--r-xl);
  box-shadow: var(--schatten-hoch);
  color: var(--anthrazit);
}

@media (min-width: 48em) {
  .formular { padding: var(--s5); }
}

.formular__titel {
  font-family: var(--display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--anthrazit-tief);
  margin: 0 0 0.25rem;
}

.formular__sub {
  font-size: var(--text-klein);
  color: var(--anthrazit-mild);
  margin: 0 0 var(--s3);
}

.feldreihe {
  display: grid;
  gap: var(--s2);
}

@media (min-width: 40em) {
  .feldreihe--zwei { grid-template-columns: repeat(2, 1fr); }
}

.feld { margin-bottom: var(--s2); }

.feld__label {
  display: block;
  font-size: var(--text-mini);
  font-weight: 600;
  color: var(--anthrazit-tief);
  margin-bottom: 0.375rem;
}
.feld__label span { color: var(--anthrazit-mild); font-weight: 400; }

/* :not([type='checkbox']) ausgenommen: der Datenschutz-Checkbox-Container
   trägt sowohl .feld als auch .feld--check, sonst würde diese Textfeld-
   Formatierung (appearance:none, volle Breite, Padding) auch die Checkbox
   treffen und sie unsichtbar machen. Die eigentliche Checkbox-Optik steht
   weiter unten unter „Checkbox". */
.feld input:not([type='checkbox']),
.feld textarea {
  width: 100%;
  padding: 0.8125rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--anthrazit-tief);
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: var(--r-md);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease),
    background-color 0.2s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.feld input::placeholder,
.feld textarea::placeholder { color: var(--grau-mild); }

@media (hover: hover) {
  .feld input:not([type='checkbox']):hover,
  .feld textarea:hover { border-color: var(--linie-stark); }
}

.feld input:not([type='checkbox']):focus,
.feld textarea:focus {
  outline: none;
  background: var(--auf-dunkel);
  border-color: var(--gruen-tief);
  box-shadow: 0 0 0 3px rgba(77, 145, 96, 0.18);
}

.feld textarea { min-height: 8.5rem; resize: vertical; }

.feld input:not([type='checkbox'])[aria-invalid='true'],
.feld textarea[aria-invalid='true'] {
  border-color: var(--fehler);
  background: var(--fehler-feld);
}
.feld input:not([type='checkbox'])[aria-invalid='true']:focus,
.feld textarea[aria-invalid='true']:focus {
  box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.16);
}

.feld__fehler {
  display: none;
  margin-top: 0.375rem;
  font-size: var(--text-mikro);
  font-weight: 500;
  color: var(--fehler);
}
.feld__fehler.ist-sichtbar { display: block; }

/* Fehlermeldung der Datenschutz-Checkbox rückt an die Checkbox heran */
.feld__fehler--check { margin-top: -1rem; margin-bottom: 1rem; }

/* Checkbox */
.feld--check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-block: var(--s3);
}

.feld--check input[type='checkbox'] {
  flex: none;
  width: 1.375rem;
  height: 1.375rem;
  margin: 0.125rem 0 0;
  accent-color: var(--gruen-tief);
  cursor: pointer;
}

.feld--check label {
  font-size: var(--text-mini);
  line-height: 1.6;
  color: var(--anthrazit-mild);
  cursor: pointer;
}

/* Honeypot – unsichtbar für Menschen, Köder für Bots */
.honigtopf {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.formular__meldung {
  display: none;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: var(--s2);
  padding: var(--s2);
  border-radius: var(--r-md);
  font-size: var(--text-klein);
  line-height: 1.55;
}
.formular__meldung.ist-sichtbar { display: flex; }
.formular__meldung svg { flex: none; margin-top: 0.15rem; }

.formular__meldung--erfolg {
  background: var(--gruen-hell);
  color: var(--gruen-tiefer);
  border: 1px solid rgba(77, 145, 96, 0.3);
}
.formular__meldung--fehler {
  background: var(--fehler-flaeche);
  color: var(--fehler-tief);
  border: 1px solid rgba(179, 38, 30, 0.25);
}

/* Fallback ohne Endpoint bzw. ohne JavaScript */
.formular__fallback {
  margin-top: var(--s2);
  padding: var(--s3);
  background: var(--gruen-hell);
  border: 1px solid rgba(77, 145, 96, 0.3);
  border-radius: var(--r-md);
}
.formular__fallback[hidden] { display: none; }

/* Ohne JS greift der Absende-Handler nie – dann steht der Weg zum Betrieb
   von Anfang an da, statt erst nach einem folgenlosen Klick. */
html:not(.js) .formular__fallback[hidden] { display: block; }

.formular__fallback-titel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: var(--text-basis);
  font-weight: 700;
  color: var(--gruen-tiefer);
}
.formular__fallback-titel svg { flex: none; }

.formular__fallback-text {
  margin: 0 0 var(--s2);
  font-size: var(--text-mini);
  color: var(--anthrazit);
}

.formular__fallback-liste { list-style: none; display: grid; gap: var(--s1); }

.formular__fallback-liste a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 2.75rem;
  padding: 0.375rem 0.75rem;
  background: var(--weiss);
  border-radius: var(--r-sm);
  font-size: var(--text-klein);
  font-weight: 600;
  color: var(--anthrazit-tief);
  text-decoration: none;
}
.formular__fallback-liste svg { flex: none; color: var(--gruen-tief); }

@media (hover: hover) {
  .formular__fallback-liste a:hover { color: var(--gruen-tiefer); }
}

.formular__hinweis {
  margin-top: var(--s2);
  font-size: var(--text-mikro);
  color: var(--anthrazit-mild);
}

button[aria-busy='true'] { opacity: 0.7; pointer-events: none; }

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--papier);
  border-top: 1px solid var(--linie);
  padding-block: var(--s5) var(--s3);
}

.footer__oben {
  display: grid;
  gap: var(--s4);
  padding-bottom: var(--s4);
  border-bottom: 1px solid var(--linie-zart);
}

@media (min-width: 48em) {
  .footer__oben {
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
    gap: var(--s5);
  }
}

.footer__logo { height: 3.25rem; width: auto; margin-bottom: var(--s2); }

.footer__text {
  font-size: var(--text-klein);
  line-height: 1.65;
  color: var(--anthrazit-mild);
  max-width: 26rem;
}

.footer__adresse {
  margin-top: var(--s2);
  font-style: normal;
  font-size: var(--text-klein);
  line-height: 1.65;
  color: var(--anthrazit-mild);
}

.footer__titel {
  font-family: var(--sans);
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--anthrazit-tief);
  margin: 0 0 var(--s2);
}

.footer__liste { list-style: none; display: grid; gap: 0.625rem; }

.footer__liste a {
  font-size: var(--text-klein);
  color: var(--anthrazit-mild);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
@media (hover: hover) {
  .footer__liste a:hover { color: var(--gruen-tiefer); text-decoration: underline; }
}

.footer__unten {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  padding-top: var(--s3);
  font-size: var(--text-mikro);
  color: var(--anthrazit-mild);
}

@media (min-width: 40em) {
  .footer__unten {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Feiner Marken-Footer */
.marken-footer {
  color: var(--anthrazit-mild);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
@media (hover: hover) {
  .marken-footer:hover { color: var(--gruen-tiefer); }
}
.marken-footer strong { font-weight: 600; color: var(--anthrazit); }

/* --------------------------------------------------------------------------
   13. Rechtsseiten (Impressum / Datenschutz)
   -------------------------------------------------------------------------- */

.rechtsseite { padding-block: var(--s6) var(--s7); }

.rechtsseite h1 { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: var(--s2); }

.rechtsseite h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-top: var(--s5);
  margin-bottom: var(--s2);
  padding-top: var(--s3);
  border-top: 1px solid var(--linie-zart);
}
.rechtsseite h2:first-of-type { border-top: 0; padding-top: 0; }

.rechtsseite h3 { font-size: var(--text-basis); margin-top: var(--s3); margin-bottom: 0.5rem; }

.rechtsseite p,
.rechtsseite li { font-size: 1rem; line-height: 1.75; color: var(--anthrazit); }

.rechtsseite ul { padding-left: 1.25rem; margin-bottom: var(--s2); }
.rechtsseite li { margin-bottom: 0.375rem; }

.rechtsseite address {
  font-style: normal;
  line-height: 1.8;
}

.rechts-box {
  padding: var(--s3);
  margin-bottom: var(--s4);
  background: var(--weiss);
  border: 1px solid var(--linie-zart);
  border-radius: var(--r-lg);
  box-shadow: var(--schatten-flach);
}

.zurueck {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--s3);
  font-size: var(--text-klein);
  font-weight: 500;
  color: var(--anthrazit-mild);
  text-decoration: none;
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}
@media (hover: hover) {
  .zurueck:hover { color: var(--gruen-tiefer); gap: 0.75rem; }
}

.stand {
  margin-top: var(--s5);
  padding-top: var(--s3);
  border-top: 1px solid var(--linie-zart);
  font-size: var(--text-mikro);
  color: var(--anthrazit-mild);
}

/* --------------------------------------------------------------------------
   13b. Kontakt-Anstoß zwischen den Sektionen
   Wiederholt die Primäraktion, ohne einen zweiten, konkurrierenden CTA
   aufzumachen: anrufen bleibt primär, "Nachricht" führt zum bestehenden
   Formular-Anker.
   -------------------------------------------------------------------------- */

.anstoss {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  align-items: flex-start;
  padding: var(--s4);
  margin-top: var(--s6);
  background: var(--gruen-hell);
  border: 1px solid rgba(77, 145, 96, 0.22);
  border-radius: var(--r-lg);
}

@media (min-width: 48em) {
  .anstoss {
    /* Nebeneinander, solange der CONTAINER breit genug ist. In schmalen
       Spalten (Rechtsseiten, 404) bricht der Block sauber um, statt den
       Text auf zwei Wörter pro Zeile zusammenzuquetschen. */
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--s3) var(--s4);
    padding: var(--s4) var(--s5);
  }
}

/* Anstoß, der allein auf einer Seite steht (404, danke) */
.anstoss--solo { margin-top: var(--s5); }

.anstoss__text {
  flex: 1 1 20rem;
  min-width: 0;
  font-family: var(--display);
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.35;
  color: var(--anthrazit-tief);
  margin: 0;
  max-width: 34rem;
}

.anstoss__text span {
  display: block;
  font-family: var(--sans);
  font-size: var(--text-klein);
  font-weight: 400;
  color: var(--anthrazit-mild);
  margin-top: 0.375rem;
}

.anstoss__aktionen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex: none;
}

/* --------------------------------------------------------------------------
   13c. Mobile Kontaktleiste (< 48em)
   Fixiert am unteren Rand, respektiert die Safe-Area und verdeckt nie
   Inhalt – der Body reserviert unten exakt die Leistenhöhe.
   -------------------------------------------------------------------------- */

.kontaktleiste {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  gap: var(--s1);
  padding: 0.625rem var(--s2);
  padding-bottom: calc(0.625rem + env(safe-area-inset-bottom, 0px));
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid var(--linie);
  box-shadow: 0 -2px 24px -8px rgba(30, 37, 43, 0.16);
}

@media (min-width: 48em) {
  .kontaktleiste { display: none; }
}

/* Platz freihalten, damit die Leiste nichts überdeckt */
@media (max-width: 47.99em) {
  body {
    padding-bottom: calc(var(--leiste-hoehe) + env(safe-area-inset-bottom, 0px));
  }
  /* Anker-Ziele landen nicht unter der Leiste */
  html { scroll-padding-bottom: calc(var(--leiste-hoehe) + 1rem); }
}

.kontaktleiste__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1 1 0;
  min-height: 3rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-family: var(--sans);
  font-size: var(--text-klein);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.22s var(--ease), border-color 0.22s var(--ease);
}

.kontaktleiste__btn svg { flex: none; }

.kontaktleiste__btn--anruf {
  flex: 1.35 1 0;
  background: var(--gruen-tief);
  color: var(--auf-dunkel);
}

.kontaktleiste__btn--nachricht {
  background: var(--weiss);
  color: var(--anthrazit-tief);
  border-color: var(--linie);
}

@media (hover: hover) {
  .kontaktleiste__btn--anruf:hover {
    background: var(--gruen-tiefer);
    color: var(--auf-dunkel);
  }
  .kontaktleiste__btn--nachricht:hover {
    border-color: var(--gruen);
    color: var(--gruen-tiefer);
  }
}

/* --------------------------------------------------------------------------
   13d. Touch-Ziele
   Auf Geräten mit grobem Zeiger bekommen die verbliebenen Inline-Links
   (Footer, Inhaber-Telefon, Zurück-Link) die geforderten 44 px Höhe.
   Rein additiv – am Desktop ändert sich nichts.
   -------------------------------------------------------------------------- */

@media (pointer: coarse) {
  .marke,
  .footer__liste a,
  .footer__unten a,
  .inhaber__tel,
  .leistung__link,
  .zurueck {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .footer__liste { gap: 0; }
}

/* --------------------------------------------------------------------------
   14. Bewegung – zurückhaltend, kaum bemerkbar
   -------------------------------------------------------------------------- */

/* Grundsatz: .reveal ist im Default SICHTBAR. Kein Inhalt hängt davon ab,
   dass JavaScript läuft. Erst wenn main.js .animiert an das <html> setzt –
   also JS da ist, der IntersectionObserver existiert und keine reduzierte
   Bewegung gewünscht ist – wird überhaupt etwas ausgeblendet und
   anschließend eingeblendet. */
html.animiert .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
html.animiert .reveal.ist-sichtbar {
  opacity: 1;
  transform: none;
}

/* gestaffelt für Listen */
html.animiert .reveal[data-verzoegerung='1'] { transition-delay: 0.07s; }
html.animiert .reveal[data-verzoegerung='2'] { transition-delay: 0.14s; }
html.animiert .reveal[data-verzoegerung='3'] { transition-delay: 0.21s; }
html.animiert .reveal[data-verzoegerung='4'] { transition-delay: 0.28s; }
html.animiert .reveal[data-verzoegerung='5'] { transition-delay: 0.35s; }

/* Der Hero-Unterstrich zeichnet sich nur, wenn animiert wird. */
html.animiert .akzent__strich path {
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: strich-zeichnen 1.1s var(--ease) 0.45s forwards;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  /* Sicherheitsnetz, falls .animiert doch gesetzt wurde */
  html.animiert .reveal { opacity: 1; transform: none; }
  .akzent__strich path { stroke-dashoffset: 0; }
  .kontaktleiste { transition: none; }
}

/* --------------------------------------------------------------------------
   15. Print
   -------------------------------------------------------------------------- */

@media print {
  .header, .mobilnav, .burger, .hero__medien, .formular { display: none !important; }
  body { background: var(--auf-dunkel); color: var(--anthrazit-tief); }
  .sektion { padding-block: 1.5rem; }
  a[href^='http']::after { content: ' (' attr(href) ')'; font-size: 0.75em; }
}
