/* ============================================================================
   BEEOTOPIA Bridge — Übergangs-Stylesheet
   ----------------------------------------------------------------------------
   Zweck:  Nachbau der alten WordPress/Elementor-Optik, plain HTML/CSS,
           ohne Tracker, ohne externe Fonts, ohne JS-Frameworks.
           Wird beim DNS-Switch von beeotopia.de + www auf Strato eingespielt,
           damit zwischen Wechsel und Live-Gang der neuen Site nichts
           dunkel bleibt.

   Aufbau:  CSS-Variablen → Reset → Layout → Komponenten → Pages
   Fonts:   System-Fonts (kein Google Fonts, kein @fontsource — DSGVO-clean
            und sofort lieferbereit). Inter ist nahezu identisch zur alten Site.
   ============================================================================ */

:root {
  /* Farben aus BEEOTOPIA CI v3.2 — identisch zu apps/web/src/styles/global.css */
  --bee-dunkelgruen:  #1A3A0E;
  --bee-maigruen:     #7DC225;
  --bee-mittelgruen:  #2D5A1B;
  --bee-hellgruen:    #EAF3DE;
  --bee-weiss:        #FFFFFF;
  --bee-fast-schwarz: #1A1A18;
  --bee-grau-text:    #4A4A48;
  --bee-grau-line:    #D4D8CC;

  --font-body:    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: var(--font-body);

  --container:    1200px;
  --container-sm: 760px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(26,26,24,0.06);
  --shadow-md: 0 4px 12px rgba(26,26,24,0.08);
  --shadow-lg: 0 12px 32px rgba(26,26,24,0.12);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--bee-fast-schwarz);
  background: var(--bee-weiss);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a {
  color: var(--bee-mittelgruen);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:hover { color: var(--bee-maigruen); }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--bee-dunkelgruen);
  line-height: 1.2;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { margin: 0 0 1em; }
hr { border: 0; border-top: 1px solid var(--bee-hellgruen); margin: 2.5rem 0; }
.script {
  font-style: italic;
  color: var(--bee-mittelgruen);
  font-weight: 400;
}

/* ---------- Skip-Link ---------- */
.skip-link {
  position: absolute; left: -9999px;
}
.skip-link:focus {
  left: 0; top: 0;
  background: var(--bee-dunkelgruen);
  color: var(--bee-weiss);
  padding: 12px 24px;
  z-index: 9999;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bee-dunkelgruen);
  color: var(--bee-weiss);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header__logo img { height: 56px; width: auto; }
.site-header__nav { display: none; }
@media (min-width: 1024px) {
  .site-header__nav { display: block; }
}
.site-header__nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: 32px;
}
.site-header__nav a {
  color: var(--bee-weiss);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  transition: color 200ms ease;
}
.site-header__nav a:hover,
.site-header__nav a[aria-current="page"] {
  color: var(--bee-maigruen);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.site-header__cta {
  display: none;
}
@media (min-width: 768px) {
  .site-header__cta { display: inline-block; }
}

/* Burger (Mobile) — JS-frei, nutzt :target */
.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--bee-hellgruen);
  color: var(--bee-hellgruen);
  background: transparent;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.burger:hover {
  background: var(--bee-maigruen);
  color: var(--bee-dunkelgruen);
  border-color: var(--bee-maigruen);
}
@media (min-width: 1024px) { .burger { display: none; } }

/* Mobile-Nav-Overlay via :target */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--bee-dunkelgruen);
  color: var(--bee-weiss);
  z-index: 100;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav:target { display: block; }
.mobile-nav__close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px;
  border: 1px solid var(--bee-hellgruen);
  color: var(--bee-hellgruen);
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  padding: 0;
  line-height: 1;
}
.mobile-nav__close svg {
  width: 20px;
  height: 20px;
  display: block;
}
.mobile-nav__close:hover,
.mobile-nav__close:focus-visible {
  background: var(--bee-maigruen);
  color: var(--bee-dunkelgruen);
  border-color: var(--bee-maigruen);
  outline: none;
}
.mobile-nav ul {
  list-style: none; margin: 64px 0 0; padding: 0;
}
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav a {
  display: block;
  padding: 16px 0;
  color: var(--bee-weiss);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
}
.mobile-nav a:hover { color: var(--bee-maigruen); }

/* ---------- CTAs ---------- */
.cta {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  transition: all 200ms ease;
}
.cta--primary {
  background: var(--bee-maigruen);
  color: var(--bee-dunkelgruen);
}
.cta--primary:hover {
  background: var(--bee-dunkelgruen);
  color: var(--bee-maigruen);
}
.cta--secondary {
  background: transparent;
  color: var(--bee-dunkelgruen);
  border: 1px solid var(--bee-dunkelgruen);
  padding: 11px 27px;
}
.cta--secondary:hover {
  background: var(--bee-dunkelgruen);
  color: var(--bee-weiss);
}
.cta--on-dark {
  background: var(--bee-maigruen);
  color: var(--bee-dunkelgruen);
}
.cta--on-dark:hover {
  background: var(--bee-weiss);
  color: var(--bee-dunkelgruen);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--sm {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 80px 0;
}
.section--alt {
  background: var(--bee-hellgruen);
}
.section--dark {
  background: var(--bee-dunkelgruen);
  color: var(--bee-weiss);
}
.section--dark h1, .section--dark h2, .section--dark h3 {
  color: var(--bee-weiss);
}
.section--dark .script {
  color: var(--bee-maigruen);
}
.section--dark a:not(.cta) {
  color: var(--bee-maigruen);
}
.eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bee-mittelgruen);
  margin-bottom: 12px;
}
.section--dark .eyebrow { color: var(--bee-maigruen); }

/* ---------- Split-Layout (Text + Bild nebeneinander) ---------- */
/* Wird auf der Startseite für Team- und Climadaptive-Hub-Teaser verwendet.
   Auf Mobile gestapelt, ab 768 px nebeneinander mit gleicher Spaltenbreite. */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.split__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
/* Modifier: Spalten füllen sich auf gleiche Höhe — nötig, wenn Text-Inhalt
   sich an die Höhe der Bild-/Video-Spalte anpassen soll. */
.split--stretch {
  align-items: stretch;
}
/* Modifier: Bild rechts, Text links (auf Desktop) — Mobile bleibt Bild-oben-Text-unten. */
@media (min-width: 768px) {
  .split--reverse .split__image {
    order: 2;
  }
}

/* ---------- Projekt-Bullet-Liste (neben Video) ---------- */
.projekt-bullets {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.6;
}
.projekt-bullets li {
  padding: 4px 0;
}
@media (min-width: 768px) {
  /* Auf Desktop größere Schrift + flexible Verteilung über die volle Höhe,
     sodass die Liste die Höhe des quadratischen Videos rechts ungefähr erreicht. */
  .projekt-bullets {
    font-size: clamp(1.25rem, 1.8vw, 1.6rem);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .projekt-bullets li {
    padding: 0;
  }
}

/* ---------- Leistungsphasen-Grafik (Hintergrund-Wasserzeichen) ---------- */
.section--phasen-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.leistungsphasen-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
}
.leistungsphasen-bg svg {
  width: 92%;
  max-width: 1100px;
  height: auto;
  display: block;
}
.section--phasen-bg .section__content {
  position: relative;
  z-index: 1;
}
/* SVG-Element-Styling (gilt sowohl für Hintergrund- als auch ggf. spätere Inline-Grafik) */
.lp-line {
  stroke: var(--bee-maigruen);
  stroke-width: 2;
  fill: none;
}
.lp-circle {
  fill: var(--bee-dunkelgruen);
}
.lp-num {
  fill: var(--bee-weiss);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  text-anchor: middle;
}
.lp-label {
  fill: var(--bee-dunkelgruen);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-anchor: middle;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--bee-hellgruen);
  padding: 96px 0 80px;
}
.hero__title {
  max-width: 800px;
}
.hero__subtitle {
  max-width: 700px;
  font-size: 1.125rem;
  margin: 24px 0 32px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__image {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero__image img { width: 100%; height: auto; }

/* ---------- Hero mit Hintergrundbild (Startseite) ---------- */
.hero--bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(520px, 78vh, 760px);
  padding: 120px 0 96px;
  display: flex;
  align-items: center;
  color: var(--bee-weiss);
  background: var(--bee-dunkelgruen); /* Fallback, falls Bild noch fehlt */
}
/* Modifier: 20 px kürzer (für Unterseiten-Heros) */
.hero--bg.hero--short {
  min-height: clamp(500px, 76vh, 740px);
  padding-top: 110px;
  padding-bottom: 86px;
}
.hero--bg .hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero--bg .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Dunkler Verlauf für Lesbarkeit über dem Bild */
.hero--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(26, 58, 14, 0.55) 0%,
      rgba(26, 58, 14, 0.35) 55%,
      rgba(26, 58, 14, 0.70) 100%);
}
.hero--bg .hero__content {
  position: relative;
  z-index: 1;
}
.hero--bg .hero__title,
.hero--bg .hero__subtitle,
.hero--bg p {
  color: var(--bee-weiss);
}
.hero--bg .hero__title {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.hero--bg .script {
  color: var(--bee-maigruen);
}
.hero--bg .hero__subtitle {
  max-width: 720px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
/* Sekundärer CTA auf Bild — weißer Outline-Button */
.cta--on-image {
  display: inline-block;
  padding: 11px 27px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  background: transparent;
  color: var(--bee-weiss);
  border: 1px solid var(--bee-weiss);
  transition: all 200ms ease;
}
.cta--on-image:hover {
  background: var(--bee-weiss);
  color: var(--bee-dunkelgruen);
}

/* ---------- Grid ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Card ---------- */
.card {
  background: var(--bee-weiss);
  border: 1px solid var(--bee-hellgruen);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
}
.card__icon { height: 64px; width: auto; margin-bottom: 16px; }
.card__title { margin-bottom: 8px; }

/* ---------- Steps (Ablauf) ---------- */
.steps {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .steps { grid-template-columns: repeat(5, 1fr); }
}
.step {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius-md);
  background: var(--bee-weiss);
  border: 1px solid var(--bee-hellgruen);
}
.step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  width: 96px;
  height: 96px;
  background: var(--bee-dunkelgruen);
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.step__icon img,
.step__icon svg {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}
.step__title {
  font-weight: 700;
  color: var(--bee-dunkelgruen);
  margin-bottom: 8px;
}

/* ---------- Leistung-Detail-Sections (Bild + Text Split, abwechselnd L/R) ---------- */
/* Bilder werden über die .split-Klasse (Text + Bild nebeneinander) gerendert.
   Jeweils mit alternierendem .split--reverse für visuellen Rhythmus.
   Untergrund alterniert über .section + .section--alt. */
.leistung-detail .split__image img {
  /* Konsistentes Format trotz unterschiedlicher Originalfotos */
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

/* ---------- Leistungen-Tiles (Startseite, kompakte Karten-Variante) ---------- */
/* Karten-Version der Leistungen-Hero-Tiles für die Startseiten-Vorschau.
   Gleiche Optik (Bild + Verlauf + weißer Text), aber kompakter und im 4-Spalten-Raster. */
.leistung-tiles {
  /* nutzt .grid und .grid--4 für Layout */
}
.leistung-tile {
  position: relative;
  isolation: isolate;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: var(--bee-dunkelgruen); /* Fallback */
  background-size: cover;
  background-position: center;
  color: var(--bee-weiss);
  text-decoration: none;
  min-height: 320px;
  box-shadow: var(--shadow-sm);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.leistung-tile:hover,
.leistung-tile:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--bee-weiss);
  outline: none;
}
.leistung-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg,
    rgba(26, 58, 14, 0.10) 0%,
    rgba(26, 58, 14, 0.45) 45%,
    rgba(26, 58, 14, 0.85) 100%);
  pointer-events: none;
}
.leistung-tile__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.leistung-tile__title {
  color: var(--bee-weiss);
  margin: 0 0 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: color 200ms ease;
}
.leistung-tile:hover .leistung-tile__title,
.leistung-tile:focus-visible .leistung-tile__title {
  color: var(--bee-maigruen);
}
.leistung-tile p {
  color: var(--bee-weiss);
  margin: 0 0 12px;
  font-size: 0.95rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}
.leistung-tile p strong { color: var(--bee-maigruen); font-weight: 700; }
.leistung-tile__chevron {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bee-maigruen);
  transition: transform 200ms ease;
}
.leistung-tile:hover .leistung-tile__chevron,
.leistung-tile:focus-visible .leistung-tile__chevron {
  transform: translateX(6px);
}

/* Pro-Tile Hintergrundbild — leistung-ltec für L-Tec Green (Startseite),
   Rest analog zur Leistungen-Detailseite. */
.leistung-tile--sonnenarkade { background-image: url('../img/leistung-sonnenarkade.jpg'); }
.leistung-tile--fassade      { background-image: url('../img/leistung-fassade.jpg'); }
.leistung-tile--ltec         { background-image: url('../img/leistung-ltec.jpg'); }
.leistung-tile--wasser       { background-image: url('../img/leistung-wasser.jpg'); }

/* ---------- Image-Banner ---------- */
.image-banner {
  height: clamp(240px, 40vh, 480px);
  background-size: cover;
  background-position: center;
  background-color: var(--bee-hellgruen);
}

/* ---------- Team-Bild (Über uns) ---------- */
/* Bild wird in voller Breite gezeigt, Höhe ergibt sich proportional —
   kein Beschnitt mehr. */
.team-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

/* ---------- Projektbeispiele (Startseite) ---------- */
/* Fixe Aspect-Ratio + object-fit sorgt dafür, dass alle
   Bilder unabhängig von ihrer Originalgröße einheitlich
   dargestellt werden. */
.projekt-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-md);
  background: var(--bee-hellgruen); /* Platzhalter, falls Bild fehlt */
  display: block;
}

/* ---------- Projekt-Video (self-hosted, kein Embed) ---------- */
/* Quadratisches Video (1:1) — sitzt in der rechten Spalte neben der Aufzählungsliste. */
.projekt-video {
  margin: 0;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bee-dunkelgruen);
  box-shadow: var(--shadow-md);
}
.projekt-video video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  background: #000;
  object-fit: cover;
}

/* ---------- Swipeable Projekt-Galerie (CSS scroll-snap, JS-frei) ---------- */
.projekt-gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--bee-mittelgruen) var(--bee-hellgruen);
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px; /* Platz für Scrollbar */
  scroll-padding-left: 24px;
}
.projekt-gallery::-webkit-scrollbar {
  height: 8px;
}
.projekt-gallery::-webkit-scrollbar-track {
  background: var(--bee-hellgruen);
  border-radius: var(--radius-full);
}
.projekt-gallery::-webkit-scrollbar-thumb {
  background: var(--bee-mittelgruen);
  border-radius: var(--radius-full);
}
.projekt-gallery::-webkit-scrollbar-thumb:hover {
  background: var(--bee-maigruen);
}
.projekt-gallery .projekt-img {
  flex: 0 0 auto;
  width: clamp(260px, 70vw, 380px);
  height: auto;
  scroll-snap-align: start;
}
.projekt-gallery__hint {
  text-align: center;
  font-size: 0.875rem;
  color: var(--bee-mittelgruen);
  margin-top: 8px;
}

/* ---------- Mehrwert-Liste (2-Spalten Card-Grid) ---------- */
.feature-list {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .feature-list { grid-template-columns: repeat(2, 1fr); }
}
.feature {
  background: var(--bee-weiss);
  color: var(--bee-fast-schwarz);
  padding: 24px;
  border-radius: var(--radius-md);
  border-top: 4px solid var(--bee-maigruen);
  box-shadow: var(--shadow-sm);
}
.feature__title {
  font-weight: 700;
  color: var(--bee-dunkelgruen);
  margin-bottom: 8px;
  font-size: 1.25rem;
}
/* Override für .section--dark h3-Default (weiß) — Karten-Titel bleiben dunkelgrün */
.section--dark .feature__title {
  color: var(--bee-dunkelgruen);
}
.feature p {
  color: var(--bee-grau-text);
  margin: 0;
}
/* Modifier: über beide Spalten ziehen (z. B. für den abschließenden „Lebensqualität"-Block) */
@media (min-width: 768px) {
  .feature--wide { grid-column: 1 / -1; }
}

/* ---------- Kontakt-Block ---------- */
.contact-block {
  text-align: center;
  padding: 64px 0;
}
.contact-block__phone,
.contact-block__mail {
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
  margin: 8px 0;
}
.contact-block__phone a,
.contact-block__mail a {
  color: var(--bee-dunkelgruen);
  text-decoration: none;
}
.contact-block__phone a:hover,
.contact-block__mail a:hover {
  color: var(--bee-maigruen);
}

/* ---------- Form ---------- */
.form {
  display: grid;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}
.form__group { display: grid; gap: 4px; }
.form__group label { font-weight: 600; }
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--bee-grau-line);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--bee-weiss);
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: 2px solid var(--bee-maigruen);
  outline-offset: 2px;
  border-color: var(--bee-maigruen);
}
.form__radio-group { display: flex; gap: 24px; flex-wrap: wrap; }
.form__radio-group label { font-weight: 400; }
.form__hint { font-size: 0.875rem; color: var(--bee-grau-text); }

/* ---------- Verbände-Logos ---------- */
.partner-strip {
  padding: 32px 0;
  border-top: 1px solid var(--bee-hellgruen);
  border-bottom: 1px solid var(--bee-hellgruen);
}
.partner-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.partner-strip__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bee-mittelgruen);
}
.partner-strip img { height: 60px; width: auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bee-dunkelgruen);
  color: var(--bee-weiss);
  padding: 64px 0 24px;
  margin-top: 96px;
}
.site-footer h4 {
  color: var(--bee-maigruen);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.site-footer__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .site-footer__grid { grid-template-columns: repeat(4, 1fr); }
}
.site-footer__logo { height: 64px; margin-bottom: 16px; }
.site-footer__tag { font-size: 0.95rem; opacity: 0.9; }
.site-footer__address {
  font-style: normal;
  font-size: 0.95rem;
  margin-top: 16px;
  line-height: 1.7;
}
.site-footer ul {
  list-style: none;
  margin: 0; padding: 0;
}
.site-footer ul li { margin-bottom: 8px; }
.site-footer a {
  color: var(--bee-weiss);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--bee-maigruen);
  text-decoration: underline;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.875rem;
  opacity: 0.85;
}

/* ---------- Soziale Icons (Inline-SVG, cookie-frei) ---------- */
.social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.social a {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bee-weiss);
  border-radius: var(--radius-sm);
  color: var(--bee-weiss);
  text-decoration: none;
  transition: all 200ms ease;
}
.social a svg {
  width: 20px;
  height: 20px;
  display: block;
}
.social a:hover,
.social a:focus-visible {
  background: var(--bee-maigruen);
  color: var(--bee-dunkelgruen);
  border-color: var(--bee-maigruen);
  outline: none;
}

/* ---------- Legal-Page (Impressum/Datenschutz) ---------- */
.legal {
  padding: 64px 0;
}
.legal h2 {
  margin-top: 48px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bee-maigruen);
}
.legal h3 { margin-top: 32px; }
.legal h4 { margin-top: 24px; }
.legal ul { padding-left: 24px; }
.legal li { margin-bottom: 8px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mt-8 { margin-top: 64px; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
