/* =========================================================================
   L & L Hausmeisterservice, Wetter (Hessen) — Entwurf
   Farbwelt aus dem Firmenlogo: Marineblau + Logo-Grün.
   ========================================================================= */

/* ---------- Token ---------- */
:root {
  --marine-900: #0d1b33;
  --marine-800: #16294a;
  --marine-700: #21395f;
  --marine-600: #2e4b78;

  --gruen-700: #3f6a18;
  --gruen-600: #4d7f1e;   /* trägt weißen Text: 4,9:1 */
  --gruen-400: #8ec63f;   /* Akzent auf dunklem Grund */
  --gruen-100: #eef6e2;

  --ink:   #16294a;   /* = marine-800: eine kräftige Textfarbe, nicht drei */
  --text:  #3c4553;
  --muted: #5a6474;
  --line:  #e2e6ec;
  --auf-dunkel:       #c6d3e6;  /* Text auf marineblauem Grund   */
  --auf-dunkel-leise: #9fb0c8;  /* zurückgenommen, ebendort      */

  --sand:  #f5f7f9;
  --sand-2:#eef1f5;
  --weiss: #ffffff;

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --schatten-s: 0 1px 2px rgba(13, 27, 51, .06), 0 2px 6px rgba(13, 27, 51, .05);
  --schatten-m: 0 2px 6px rgba(13, 27, 51, .06), 0 12px 28px rgba(13, 27, 51, .08);
  --schatten-l: 0 8px 20px rgba(13, 27, 51, .10), 0 28px 60px rgba(13, 27, 51, .16);

  --takt: clamp(4rem, 1.5rem + 7vw, 7rem);
  --bahn: 1180px;
  --rand: clamp(1.25rem, 4vw, 2.5rem);

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
          Arial, "Noto Sans", "Liberation Sans", sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--weiss);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 800;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.25rem + 3.2vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 1.2rem + 1.9vw, 2.5rem); }
h3 { font-size: 1.1875rem; letter-spacing: -.01em; font-weight: 750; }
p  { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

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

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

.bahn { width: 100%; max-width: var(--bahn); margin-inline: auto; padding-inline: var(--rand); }
.abschnitt { padding-block: var(--takt); }
.abschnitt--sand { background: var(--sand); }

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

.springmarke {
  position: absolute; left: var(--rand); top: -100px; z-index: 200;
  background: var(--marine-800); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) var(--r-sm); font-weight: 700; text-decoration: none;
  transition: top .18s var(--ease);
}
.springmarke:focus { top: 0; color: #fff; }

/* ---------- Kopfzeile eines Abschnitts ---------- */
.kopf { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.kopf--mitte { margin-inline: auto; text-align: center; }

.auge {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .8125rem; font-weight: 750; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gruen-700);
  margin-bottom: .9em;
}
.auge::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--gruen-600);
}
.kopf--mitte .auge { justify-content: center; }

.vorspann { font-size: clamp(1.0625rem, 1rem + .3vw, 1.1875rem); color: var(--muted); }

/* ---------- Schaltflächen ---------- */
.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 52px; padding: .85em 1.6em;
  border: 2px solid transparent; border-radius: var(--r-pill);
  font: inherit; font-weight: 750; font-size: 1rem; line-height: 1.2;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), transform .2s var(--ease),
              box-shadow .2s var(--ease);
}
.knopf:active { transform: translateY(1px); }
.knopf svg { width: 20px; height: 20px; flex: none; }

.knopf--primaer { background: var(--gruen-600); color: #fff; box-shadow: var(--schatten-s); }
.knopf--primaer:hover { background: var(--gruen-700); color: #fff; box-shadow: var(--schatten-m); }

.knopf--hell { background: var(--gruen-400); color: var(--marine-800); box-shadow: var(--schatten-m); }
.knopf--hell:hover { background: #9ed352; color: var(--marine-800); }

.knopf--linie { border-color: var(--line); background: var(--weiss); color: var(--ink); }
.knopf--linie:hover { border-color: var(--marine-800); background: var(--weiss); color: var(--marine-800); }

.knopf--geist { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
.knopf--geist:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* =========================================================================
   Entwurfs-Banner
   ========================================================================= */
.entwurfsbanner {
  background: var(--marine-900);
  color: var(--auf-dunkel);
  font-size: .875rem;
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 2px solid var(--gruen-600);
}
.entwurfsbanner .bahn {
  display: flex; align-items: center; justify-content: center;
  gap: .7em; text-align: center;
}
.entwurfsbanner svg { width: 18px; height: 18px; flex: none; color: var(--gruen-400); }
.entwurfsbanner b { color: #fff; font-weight: 750; }

/* =========================================================================
   Kopfbereich / Navigation
   ========================================================================= */
.kopfleiste {
  position: sticky; top: 0; z-index: 100;
  /* Kein backdrop-filter: er zieht die Kopfleiste in eine eigene Ebene, die
     in Chromium über dem ::backdrop des Lichtkastens landet — der Hintergrund
     schien dann bei geöffnetem Bild durch. Deckendes Weiß tut es genauso. */
  background: var(--weiss);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.kopfleiste[data-gescrollt="ja"] { box-shadow: var(--schatten-m); }
.kopfleiste .bahn {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 76px;
}

.marke { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.marke__zeichen { width: 42px; height: 42px; flex: none; }
.marke__text { display: flex; flex-direction: column; line-height: 1.1; }
.marke__name {
  font-size: 1.0625rem; font-weight: 800; color: var(--marine-800);
  letter-spacing: -.01em;
}
.marke__zusatz {
  font-size: .75rem; font-weight: 650; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-top: 2px;
}

.navi { display: flex; align-items: center; gap: clamp(.5rem, 1.6vw, 1.6rem); }
.navi__liste { display: flex; align-items: center; gap: clamp(.25rem, 1.4vw, 1.35rem); list-style: none; margin: 0; padding: 0; }
.navi__liste a {
  display: block; padding: .5em .25em; font-size: .9375rem; font-weight: 650;
  color: var(--text); text-decoration: none; position: relative;
  transition: color .18s var(--ease);
}
.navi__liste a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--gruen-600); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ease);
}
.navi__liste a:hover { color: var(--marine-800); }
.navi__liste a:hover::after { transform: scaleX(1); }

.navi__knopf { padding: .7em 1.3em; min-height: 46px; font-size: .9375rem; }

.burger {
  display: none; align-items: center; justify-content: center;
  width: 48px; height: 48px; padding: 0;
  background: var(--weiss); border: 1px solid var(--line); border-radius: var(--r-sm);
  color: var(--marine-800); cursor: pointer;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.burger:hover { border-color: var(--marine-800); }
.burger svg { width: 24px; height: 24px; }
.burger__zu { display: none; }
.burger[aria-expanded="true"] .burger__auf { display: none; }
.burger[aria-expanded="true"] .burger__zu { display: block; }

@media (max-width: 900px) {
  .burger { display: inline-flex; }
  .navi {
    position: fixed; inset: 0 0 auto; top: var(--kopf-hoehe, 76px);
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--weiss); border-bottom: 1px solid var(--line);
    box-shadow: var(--schatten-l);
    padding: .5rem var(--rand) 1.5rem;
    max-height: calc(100dvh - var(--kopf-hoehe, 76px)); overflow-y: auto;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .navi[data-offen="ja"] { transform: none; opacity: 1; visibility: visible; }
  .navi__liste { flex-direction: column; align-items: stretch; gap: 0; }
  .navi__liste a {
    padding: .95em .25em; font-size: 1.0625rem;
    border-bottom: 1px solid var(--line);
  }
  .navi__liste a::after { display: none; }
  .navi__knopf { margin-top: 1.1rem; width: 100%; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(120% 130% at 88% 8%, rgba(142, 198, 63, .16) 0%, transparent 55%),
    linear-gradient(158deg, var(--marine-800) 0%, var(--marine-900) 100%);
  color: var(--auf-dunkel);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(13, 27, 51, .35));
  pointer-events: none;
}
.hero .bahn {
  position: relative; z-index: 1;
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5.5rem);
}
@media (min-width: 941px) {
  .hero .bahn { grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); }
}

.hero__marker {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .5em 1.05em; margin-bottom: 1.4rem;
  background: rgba(142, 198, 63, .14);
  border: 1px solid rgba(142, 198, 63, .38);
  border-radius: var(--r-pill);
  font-size: .8125rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--gruen-400);
}
.hero__marker svg { width: 15px; height: 15px; }

.hero h1 { color: #fff; margin-bottom: .55em; }
.hero h1 em { font-style: normal; color: var(--gruen-400); }

.hero__text {
  font-size: clamp(1.0625rem, 1rem + .45vw, 1.25rem);
  color: var(--auf-dunkel); max-width: 54ch; margin-bottom: 2rem;
}

.hero__knoepfe { display: flex; flex-wrap: wrap; gap: .875rem; }

.hero__belege {
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem;
  margin-top: 2.5rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  list-style: none; padding-left: 0; margin-bottom: 0;
}
.hero__belege li {
  display: flex; align-items: center; gap: .5em;
  font-size: .9375rem; font-weight: 650; color: var(--auf-dunkel);
}
.hero__belege svg { width: 17px; height: 17px; color: var(--gruen-400); flex: none; }

.hero__bild { position: relative; }
.hero__bild img {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: var(--schatten-l);
  aspect-ratio: 3 / 2; object-fit: cover; object-position: 42% center;
}
@media (min-width: 941px) { .hero__bild img { aspect-ratio: 4 / 5; } }
.hero__stempel {
  position: absolute; left: -14px; bottom: -22px;
  display: flex; align-items: center; gap: .75rem;
  padding: .9rem 1.25rem;
  background: var(--weiss); border-radius: var(--r);
  box-shadow: var(--schatten-l);
  max-width: min(280px, 84%);
}
.hero__stempel svg { width: 30px; height: 30px; color: var(--gruen-600); flex: none; }
.hero__stempel { max-width: min(330px, 92%); }
.hero__stempel b { display: block; color: var(--ink); font-size: .9375rem; line-height: 1.25; }
.hero__stempel span { display: block; color: var(--muted); font-size: .8125rem; line-height: 1.35; }

@media (max-width: 940px) {
  .hero__stempel { left: 8px; bottom: -18px; }
  .hero__bild { margin-bottom: 1.5rem; }
}

/* =========================================================================
   Leistungen
   ========================================================================= */
.kacheln {
  display: grid; gap: 1.25rem; align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
}
.kachel {
  display: flex; flex-direction: column;
  padding: clamp(1.5rem, 2.4vw, 2rem);
  background: var(--weiss);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              border-color .22s var(--ease);
}
.kachel:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: var(--schatten-m);
}
.kachel__icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; margin-bottom: 1.25rem;
  background: var(--gruen-100); color: var(--gruen-700);
  border-radius: var(--r); flex: none;
  transition: background-color .22s var(--ease), color .22s var(--ease);
}
.kachel__icon svg { width: 26px; height: 26px; }
.kachel:hover .kachel__icon { background: var(--marine-800); color: var(--gruen-400); }

.kachel h3 { margin-bottom: .5rem; }
.kachel__liste {
  list-style: none; margin: 0; padding: 0;
  font-size: .9375rem; color: var(--muted);
}
.kachel__liste li {
  position: relative; padding-left: 1.35em; margin-bottom: .3em;
}
.kachel__liste li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gruen-600);
}

.chips {
  display: flex; flex-wrap: wrap; gap: .625rem;
  margin-top: 2.25rem; padding: 1.6rem 1.75rem;
  background: var(--weiss); border: 1px dashed var(--line); border-radius: var(--r-lg);
  align-items: center;
}
.chips__titel {
  font-weight: 750; color: var(--ink); font-size: .9375rem;
  margin-right: .35rem;
}
.chip {
  display: inline-flex; align-items: center; gap: .45em;
  padding: .45em 1em; border-radius: var(--r-pill);
  background: var(--sand); border: 1px solid var(--line);
  font-size: .875rem; font-weight: 650; color: var(--text);
}
.chip svg { width: 15px; height: 15px; color: var(--gruen-700); }

/* =========================================================================
   Über uns / Vertrauen
   ========================================================================= */
.split {
  display: grid; gap: clamp(2.25rem, 5vw, 4rem); align-items: center;
}
@media (min-width: 861px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr); align-items: stretch; }
  .split--gedreht > :first-child { order: 2; }
  /* Das Bild trägt die volle Höhe der Textspalte, statt mittig zu schweben. */
  .split__bild img { height: 100%; aspect-ratio: auto; min-height: 380px; }
}

.split__bild { position: relative; isolation: isolate; }
.split__bild img {
  position: relative; z-index: 1;
  width: 100%; border-radius: var(--r-lg); box-shadow: var(--schatten-m);
  aspect-ratio: 45 / 32; object-fit: cover;
}


.vorteile { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: .875rem; }
@media (min-width: 560px) { .vorteile { grid-template-columns: 1fr 1fr; } }
.vorteile li {
  display: flex; align-items: flex-start; gap: .65em;
  font-size: .9375rem; font-weight: 650; color: var(--ink); line-height: 1.45;
}
.vorteile svg { width: 20px; height: 20px; color: var(--gruen-600); flex: none; margin-top: 1px; }

/* Kennzahlen-Band */
.band {
  background: var(--marine-800);
  color: #fff;
  background-image: radial-gradient(90% 140% at 12% 0%, rgba(142,198,63,.13) 0%, transparent 60%);
}
.band__gitter {
  display: grid; gap: 2rem clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  text-align: center;
}
.band__punkt svg { width: 34px; height: 34px; color: var(--gruen-400); margin-bottom: .85rem; }
.band__punkt b {
  display: block; color: #fff; font-size: 1.0625rem; font-weight: 750;
  letter-spacing: -.01em; margin-bottom: .35rem;
}
.band__punkt span { display: block; color: var(--auf-dunkel-leise); font-size: .9375rem; line-height: 1.55; }

/* =========================================================================
   Galerie
   ========================================================================= */
.galerie {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}
.galerie__feld {
  position: relative; padding: 0; border: 0; margin: 0;
  background: var(--sand-2); border-radius: var(--r);
  overflow: hidden; cursor: zoom-in; display: block; width: 100%;
  aspect-ratio: 4 / 3;
  transition: box-shadow .22s var(--ease);
}
.galerie__feld img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.galerie__feld::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,51,.55), transparent 45%);
  opacity: 0; transition: opacity .25s var(--ease);
}
.galerie__feld:hover { box-shadow: var(--schatten-m); }
.galerie__feld:hover img { transform: scale(1.05); }
.galerie__feld:hover::after, .galerie__feld:focus-visible::after { opacity: 1; }
.galerie__titel {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 1rem 1.1rem; color: #fff; font-size: .875rem; font-weight: 700;
  text-align: left; line-height: 1.35;
  opacity: 0; transform: translateY(6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.galerie__feld:hover .galerie__titel,
.galerie__feld:focus-visible .galerie__titel { opacity: 1; transform: none; }

/* Lichtkasten — als <dialog>, damit er im Top-Layer liegt und die sticky
   Kopfleiste nicht durchscheint. */
.lichtkasten {
  width: 100%; max-width: none; height: 100%; max-height: none;
  margin: 0; padding: clamp(1rem, 4vw, 3rem);
  border: 0; color: inherit; overflow: hidden;
  /* Die Abdunklung sitzt auf dem Dialog selbst, nicht nur im ::backdrop:
     der Dialog füllt ohnehin den Viewport, und so deckt er auch dort ab, wo
     ::backdrop nicht greift (Fallback ohne showModal, ältere Browser). */
  background: rgba(9, 17, 32, .96);
}
.lichtkasten[open] { display: grid; place-items: center; }
.lichtkasten::backdrop { background: rgba(9, 17, 32, .96); }
.lichtkasten__inhalt { max-width: min(1000px, 100%); text-align: center; }
.lichtkasten img {
  max-width: 100%; max-height: 74dvh; width: auto; margin-inline: auto;
  border-radius: var(--r); box-shadow: var(--schatten-l);
}
.lichtkasten__bu { color: var(--auf-dunkel); font-size: .9375rem; margin: 1rem 0 0; }
.lichtkasten__zaehler { color: var(--auf-dunkel-leise); font-size: .8125rem; margin-top: .3rem; }
.lichtkasten__steuer {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center;
  width: 52px; height: 52px; padding: 0;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%; color: #fff; cursor: pointer;
  transition: background-color .18s var(--ease);
}
.lichtkasten__steuer:hover { background: rgba(255,255,255,.22); }
.lichtkasten__steuer svg { width: 24px; height: 24px; }
.lichtkasten__steuer--vor { right: clamp(.75rem, 3vw, 2rem); }
.lichtkasten__steuer--zurueck { left: clamp(.75rem, 3vw, 2rem); }
.lichtkasten__zu {
  position: absolute; top: clamp(.75rem, 3vw, 1.75rem); right: clamp(.75rem, 3vw, 1.75rem);
  transform: none;
}

/* =========================================================================
   Kontakt
   ========================================================================= */
.kontakt__gitter { display: grid; gap: clamp(2rem, 4vw, 3.25rem); }
@media (min-width: 921px) {
  .kontakt__gitter { grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); }
}

.draht { margin: 0 0 2rem; padding: 0; display: grid; gap: 1.5rem; }
.draht__zeile { display: flex; gap: 1rem; align-items: flex-start; }
.draht__icon {
  display: grid; place-items: center; width: 46px; height: 46px; flex: none;
  background: var(--gruen-100); color: var(--gruen-700); border-radius: var(--r);
}
.draht__icon svg { width: 22px; height: 22px; }
.draht dt {
  font-size: .75rem; font-weight: 750; letter-spacing: .09em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .2rem;
}
.draht dd { margin: 0; }
.draht dd a, .draht dd strong {
  color: var(--ink); font-weight: 750; font-size: 1.0625rem;
  text-decoration: none; line-height: 1.45;
}
.draht dd a:hover { color: var(--gruen-700); text-decoration: underline; }
.draht dd small { display: block; font-size: .875rem; color: var(--muted); font-weight: 400; margin-top: .2rem; }

.gebiet {
  padding: 1.5rem 1.75rem; background: var(--weiss);
  border: 1px solid var(--line); border-radius: var(--r-lg);
}
.gebiet h3 { font-size: 1rem; margin-bottom: .5rem; }
.gebiet p { font-size: .9375rem; color: var(--muted); margin-bottom: 1.1rem; }

/* Formular */
.formular {
  padding: clamp(1.6rem, 3.2vw, 2.5rem);
  background: var(--weiss); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--schatten-s);
}
.feld { margin-bottom: 1.15rem; }
.feld label {
  display: block; font-size: .875rem; font-weight: 700;
  color: var(--ink); margin-bottom: .45rem;
}
.feld label .pflicht { color: var(--gruen-700); }
.feld input, .feld select, .feld textarea {
  width: 100%; min-height: 50px; padding: .75em .95em;
  font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--weiss);
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.feld textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.feld select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6474' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center;
  background-size: 20px; padding-right: 2.8rem;
}
.feld input:hover, .feld select:hover, .feld textarea:hover { border-color: #c3cbd7; }
.feld input:focus, .feld select:focus, .feld textarea:focus {
  outline: none; border-color: var(--gruen-600);
  box-shadow: 0 0 0 3px rgba(77, 127, 30, .16);
}
.feld input::placeholder, .feld textarea::placeholder { color: #97a1b0; }

@media (min-width: 620px) {
  .feld-paar { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.15rem; }
}

.zustimmung {
  display: flex; gap: .75rem; align-items: flex-start;
  margin: 1.5rem 0; font-size: .875rem; line-height: 1.6; color: var(--muted);
}
.zustimmung input {
  width: 22px; height: 22px; min-height: 0; flex: none; margin-top: 2px;
  accent-color: var(--gruen-600); cursor: pointer;
}
.zustimmung label { cursor: pointer; }

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

.formular__fuss {
  margin-top: 1.25rem; font-size: .8125rem; color: var(--muted); line-height: 1.6;
}
.formular .knopf { width: 100%; }

.hinweis {
  display: none; align-items: flex-start; gap: .7rem;
  margin-top: 1.15rem; padding: .95rem 1.15rem;
  border-radius: var(--r-sm); font-size: .9375rem; line-height: 1.55;
}
.hinweis[data-sichtbar="ja"] { display: flex; }
.hinweis svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.hinweis--gut { background: var(--gruen-100); color: #2f5512; }
.hinweis--gut svg { color: var(--gruen-700); }

/* =========================================================================
   Fußbereich
   ========================================================================= */
.fuss { background: var(--marine-900); color: var(--auf-dunkel-leise); padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.fuss__gitter {
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  padding-bottom: 2.75rem;
}
.fuss__spalte:first-child { grid-column: span 1; }
@media (min-width: 780px) { .fuss__spalte:first-child { max-width: 34ch; } }

.fuss .marke__name { color: #fff; font-size: 1rem; white-space: nowrap; }
.fuss .marke__zusatz { color: var(--auf-dunkel-leise); }
.fuss__satz { margin-top: 1.15rem; font-size: .9375rem; line-height: 1.65; }

.fuss h2 {
  font-size: .8125rem; font-weight: 750; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; margin-bottom: 1.15rem;
}
.fuss ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.fuss a { color: var(--auf-dunkel-leise); text-decoration: none; font-size: .9375rem; }
.fuss a:hover { color: var(--gruen-400); text-decoration: underline; }
.fuss address { font-style: normal; font-size: .9375rem; line-height: 1.7; }

.fuss__unten {
  border-top: 1px solid rgba(255,255,255,.11);
  padding-block: 1.75rem 2.25rem;
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  align-items: center; justify-content: space-between;
  font-size: .8125rem; line-height: 1.6;
}
.fuss__ersteller { max-width: 82ch; }
.fuss__ersteller a { font-size: inherit; text-decoration: underline; }

/* =========================================================================
   Rechtstexte (Unterseiten)
   ========================================================================= */
.rechtstext { max-width: 76ch; }
.rechtstext h2 {
  font-size: clamp(1.25rem, 1.1rem + .7vw, 1.5rem);
  margin-top: 2.75rem; padding-top: 1.75rem; border-top: 1px solid var(--line);
}
.rechtstext h2:first-of-type { margin-top: 2rem; }
.rechtstext h3 { margin-top: 1.75rem; font-size: 1.0625rem; }
.rechtstext ul { padding-left: 1.3rem; margin: 0 0 1.1em; }
.rechtstext li { margin-bottom: .4em; }
.rechtstext address { font-style: normal; line-height: 1.8; }

.seitenkopf {
  background: var(--marine-800);
  background-image: radial-gradient(100% 150% at 85% 0%, rgba(142,198,63,.14) 0%, transparent 58%);
  color: var(--auf-dunkel);
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
}
.seitenkopf h1 { color: #fff; margin-bottom: .35em; }
.seitenkopf p { font-size: 1.0625rem; margin-bottom: 0; }

.luecke {
  display: inline-block;
  padding: .1em .55em; border-radius: var(--r-sm);
  background: #fdf3d6; border: 1px dashed #c99a1f;
  color: #6b4c00; font-size: .875rem; font-weight: 700;
  white-space: normal;
}

/* =========================================================================
   Scroll-Reveal (nur mit JS, dezent)
   ========================================================================= */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal[data-sichtbar="ja"] {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .entwurfsbanner, .kopfleiste, .lichtkasten, .formular { display: none; }
}
