:root {
  --bg: #f3f7f4;
  --surface: #ffffff;
  --surface-alt: #eef5f1;
  --text: #172d24;
  --muted: #617469;
  --primary: #123527;
  --primary-2: #1e6a48;
  --accent: #d59b36;
  --accent-soft: #f7ebcf;
  --border: rgba(18, 53, 39, 0.10);
  --shadow: 0 22px 60px rgba(18, 53, 39, 0.08);
  --shadow-soft: 0 20px 44px rgba(20, 48, 38, 0.16);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(213, 155, 54, 0.12), transparent 24%),
    linear-gradient(180deg, #f9fcfa 0%, var(--bg) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--primary-2); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.1; margin: 0 0 .6rem; }
p { margin: 0 0 1rem; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.narrow { width: min(calc(100% - 2rem), 900px); }
.section { padding: 92px 0; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(238,245,241,0.92) 100%); }
.section-accent { color: #fff; background: linear-gradient(135deg, #123527 0%, #1d5e42 100%); }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; padding: .8rem 1rem; border-radius: 12px; z-index: 999; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.shadow-soft { box-shadow: var(--shadow-soft); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(243,247,244,.86);
  border-bottom: 1px solid rgba(18,53,39,.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: var(--text);
  text-decoration: none;
}
.brand-logo { width: auto; height: 72px; max-width: min(60vw, 280px); object-fit: contain; }
.brand-meta { display:block; color: var(--muted); font-size: .92rem; font-weight: 700; margin-top: .2rem; }
.footer-logo { width: auto; height: 64px; max-width: 260px; object-fit: contain; margin-bottom: .9rem; }
.brand strong { display: block; font-size: 1.02rem; }
.brand small { color: var(--muted); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.main-nav a { font-weight: 700; color: var(--text); }
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  padding: .85rem 1rem;
  font-weight: 700;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px;
  padding: .98rem 1.45rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(18,53,39,.22);
}
.btn:hover { text-decoration: none; filter: brightness(1.05); }
.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(18,53,39,.12);
  box-shadow: none;
}
.btn-small { padding: .75rem 1.1rem; }
.hero { padding-top: 60px; }
.hero-grid, .split-grid, .cta-band-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  letter-spacing: -.045em;
  margin-bottom: .9rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: .9rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #8a5d12;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.lead { color: var(--muted); font-size: 1.13rem; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.4rem 0;
}
.hero-points span {
  display: inline-flex;
  align-items: center;
  padding: .68rem .95rem;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border);
  font-weight: 700;
}
.hero-media { overflow: hidden; }
.hero-media img, .image-panel img { width: 100%; height: auto; object-fit: cover; }
.mini-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
  display: grid;
  gap: .6rem;
}
.mini-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}
.mini-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-2);
  font-size: 1.35rem;
  line-height: 1;
}
.trust-strip {
  padding: 1.15rem 0;
  background: rgba(18,53,39,.98);
  color: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-grid div { display: grid; gap: .15rem; }
.trust-grid span { color: rgba(255,255,255,.78); font-size: .95rem; }
.section-heading { max-width: 780px; margin-bottom: 2rem; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.03em; }
.section-heading.light p, .section-heading.light h2 { color: #fff; }
.cards-grid { display: grid; gap: 1.2rem; }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.feature-card, .info-card, .contact-card, .mini-card { padding: 1.5rem; }
.feature-card, .stat, .area-box, .faq-item, .highlight-box { transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover, .stat:hover, .area-box:hover, .faq-item:hover, .highlight-box:hover { transform: translateY(-4px); }
.icon-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, #e8c178 100%);
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
}
.image-panel { overflow: hidden; }
.process-list { display: grid; gap: .95rem; }
.process-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  align-items: start;
}
.process-item span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  font-weight: 800;
}
.reverse { grid-template-columns: .98fr 1.02fr; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}
.stat {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
}
.stat strong { display: block; font-size: 1.65rem; color: var(--primary); }
.stat span { color: var(--muted); }
.highlight-box {
  margin-top: 1.3rem;
  padding: 1.2rem 1.3rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #f7fbf8 100%);
  border: 1px solid var(--border);
}
.area-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.area-box {
  min-height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 800;
}
.faq-list { display: grid; gap: 1rem; }
.faq-item { padding: 1rem 1.2rem; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: .9rem; color: var(--muted); }
.cta-band {
  background: linear-gradient(180deg, rgba(238,245,241,.7) 0%, rgba(255,255,255,.98) 100%);
}
.site-footer {
  background: #10281d;
  color: #eef6f1;
  padding-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr .8fr;
  gap: 1.5rem;
}
.site-footer a { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2rem;
  padding: 1rem 0 2rem;
  color: rgba(255,255,255,.75);
}
.legal-page { padding: 4rem 0 5rem; }
.legal-page h1 { font-size: clamp(2rem, 4vw, 3rem); }
.legal-page h2 { margin-top: 2rem; }
.back-link { display: inline-block; margin-bottom: 1.25rem; font-weight: 800; }
.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: #25d366;
  color: #fff;
  padding: .95rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(37,211,102,.28);
  font-weight: 800;
}
.floating-wa img { width: 22px; height: 22px; }
.floating-wa:hover { text-decoration: none; filter: brightness(1.03); }

@media (max-width: 1024px) {
  .hero-grid, .split-grid, .cta-band-inner, .cards-grid.three, .trust-grid, .area-boxes, .stats-grid, .footer-grid, .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: calc(100% + .5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .hero-grid, .split-grid, .reverse, .cta-band-inner, .cards-grid.three, .trust-grid, .stats-grid, .footer-grid, .gallery-grid {
    grid-template-columns: 1fr;
  }
  .area-boxes { grid-template-columns: 1fr 1fr; }
  .section { padding: 74px 0; }
  .hero-copy h1 { font-size: 2.45rem; }
  .floating-wa span { display: none; }
  .floating-wa { padding: .95rem; }
}


/* ============================================================
   Ergänzungen: Navigation, Inhaltsbausteine, Galerie, Consent
   ============================================================ */

.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.2rem; }
.main-nav a.is-active { color: var(--primary-2); text-decoration: underline; text-underline-offset: .35em; }
.textlink { font-weight: 800; }
.fineprint { color: var(--muted); font-size: .92rem; }
.center-cta { text-align: center; margin-top: 2rem; }
.narrow-content { width: min(calc(100% - 2rem), 880px); margin-inline: auto; }
.narrow-content h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -.02em; margin-top: 2.2rem; }
.narrow-content h2:first-child { margin-top: 0; }

/* Brotkrumen */
.breadcrumbs { padding: .9rem 0 0; font-size: .9rem; color: var(--muted); }
.breadcrumbs a { color: var(--muted); font-weight: 600; }
.breadcrumbs a:hover { color: var(--primary-2); }
.breadcrumbs .sep { padding: 0 .5rem; opacity: .5; }
.breadcrumbs [aria-current] { color: var(--text); font-weight: 700; }

.hero-compact { padding-top: 34px; padding-bottom: 62px; }

/* Listen */
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .7rem; }
.check-list li { position: relative; padding-left: 2rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .42em; width: 1.1rem; height: .6rem;
  border-left: 3px solid var(--primary-2); border-bottom: 3px solid var(--primary-2);
  transform: rotate(-45deg); border-radius: 2px;
}

/* Pills */
.pill-row { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.1rem 0 1.4rem; }
.pill {
  display: inline-flex; padding: .5rem .9rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--border); font-weight: 700; font-size: .95rem;
}

/* Hinweisboxen */
.notice {
  margin: 1.6rem 0; padding: 1.3rem 1.4rem; border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fff 0%, #f6faf7 100%);
  border: 1px solid var(--border); border-left: 5px solid var(--primary-2);
}
.notice h3 { margin-bottom: .5rem; }
.notice p:last-child { margin-bottom: 0; }
.notice-warn { border-left-color: var(--accent); background: linear-gradient(180deg, #fffdf8 0%, var(--accent-soft) 100%); }

/* Vergleichstabelle */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.4rem 0; border-radius: var(--radius-sm); }
.compare-table { width: 100%; min-width: 680px; border-collapse: collapse; background: #fff; font-size: .96rem; }
.compare-table th, .compare-table td { padding: .85rem 1rem; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.compare-table thead th { background: var(--primary); color: #fff; font-weight: 800; border-bottom: none; }
.compare-table thead th em { font-weight: 500; font-style: italic; opacity: .82; font-size: .88em; }
.compare-table tbody td:first-child { font-weight: 700; background: var(--surface-alt); }
.compare-table tbody tr:last-child td { border-bottom: none; }

/* Galerie */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gallery-item { overflow: hidden; margin: 0; display: flex; flex-direction: column; }
.gallery-item img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; }
.gallery-item figcaption { padding: 1rem 1.2rem 1.2rem; color: var(--muted); font-size: .95rem; }
.gallery-item figcaption strong { color: var(--text); display: block; margin-bottom: .25rem; }

/* Verlinkte Ortskacheln */
.area-boxes a.area-box { color: #fff; text-decoration: none; padding: .8rem; }
.area-boxes a.area-box:hover { background: rgba(255,255,255,.22); text-decoration: none; }
.info-card h3 a, .feature-card h3 a { color: var(--text); }
.info-card h3 a:hover, .feature-card h3 a:hover { color: var(--primary-2); }

.footer-nap { margin-top: 1rem; font-size: .95rem; color: rgba(238,246,241,.86); }
.site-footer h3 { font-size: 1.05rem; margin-bottom: .7rem; }
.site-footer .footer-grid p { font-size: .95rem; line-height: 1.9; }

/* Einwilligungs-Hinweis */
.consent-banner {
  position: fixed; inset: auto 1rem 1rem; z-index: 200;
  max-width: 640px; margin-inline: auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: 0 26px 70px rgba(18,53,39,.28); padding: 1.3rem 1.4rem;
}
.consent-banner[hidden] { display: none !important; }
.consent-banner p { font-size: .95rem; margin-bottom: 1rem; }
.consent-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.consent-actions .btn { flex: 1 1 auto; justify-content: center; }


@media (max-width: 760px) {
  .compare-table { min-width: 560px; }
  .gallery-item img { aspect-ratio: 4 / 3; }
  .floating-wa { bottom: 1rem; }
  .consent-banner { bottom: 5.2rem; }
  .hero-compact { padding-top: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .feature-card, .stat, .area-box, .faq-item, .highlight-box { transition: none; }
  .feature-card:hover, .stat:hover, .area-box:hover, .faq-item:hover, .highlight-box:hover { transform: none; }
}
:where(a, button, summary):focus-visible {
  outline: 3px solid var(--primary-2); outline-offset: 3px; border-radius: 6px;
}


/* --- Feinschliff Typografie & Navigation ------------------------------- */
.hero-copy h1 { font-size: clamp(2.05rem, 3.4vw, 3.35rem); letter-spacing: -.03em; }
.section-heading h2 { font-size: clamp(1.8rem, 3.1vw, 2.6rem); }
.hero-grid { grid-template-columns: 1fr 1fr; }
.brand-logo { height: 58px; }
.footer-logo { height: 54px; }
.main-nav { gap: 1rem; font-size: .97rem; }

@media (max-width: 1280px) {
  .main-nav { gap: .8rem; font-size: .93rem; }
  .brand-meta { display: none; }
}
@media (max-width: 980px) and (min-width: 761px) {
  .main-nav { gap: .6rem; font-size: .88rem; }
  .brand-logo { height: 46px; }
}
@media (max-width: 760px) {
  .brand-meta { display: block; }
  .main-nav { font-size: 1rem; gap: .35rem; }
  .main-nav a { padding: .55rem 0; }
}

/* --- Bildflaechen: einheitliches Format, damit Hochformate nicht ausufern -- */
.hero-media img, .image-panel img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 32%;
  height: auto;
}
@media (max-width: 760px) {
  .hero-media img, .image-panel img { aspect-ratio: 4 / 3; }
}

/* --- Fix: .main-nav a ueberschrieb die Buttonfarbe (auch im alten Stand) --- */
.main-nav a.btn { color: #fff; }
.main-nav a.btn:hover { color: #fff; }
.btn, .btn:visited { color: #fff; }
.btn-secondary, .btn-secondary:visited { color: var(--primary); }

/* --- Mobiler Feinschliff ---------------------------------------------- */
@media (max-width: 760px) {
  .hero-copy h1 { font-size: 1.95rem; line-height: 1.16; }
  .section-heading h2 { font-size: 1.65rem; }
  .eyebrow { font-size: .72rem; }
  .hero-points span { font-size: .92rem; }
  .cta-row .btn { width: 100%; }
  .consent-banner { padding: 1.1rem 1.15rem; }
  .consent-banner p { font-size: .9rem; }
}
@media (max-width: 560px) {
  .brand-meta { display: none; }
  .brand-logo { height: 48px; }
}
