:root {
  --green: #00894D;
  --lime: #66C430;
  --ink: #1c2a22;
  --muted: #65746b;
  --warm: #f5f1e8;
  --paper: #fffdf8;
  --line: rgba(0,137,77,.16);
  --shadow: 0 24px 70px rgba(26, 42, 34, .13);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--green);
  color: #fff;
  font-size: 13px;
}
.topbar .container {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 5px 0;
}
.topbar strong { color: #d8ffca; font-weight: 800; }

.site-header {
  position: relative;
  z-index: 20;
  background:
    radial-gradient(circle at 18% 0%, rgba(102,196,48,.12), transparent 34%),
    linear-gradient(135deg, rgba(255,253,248,.94) 0%, rgba(246,241,230,.92) 100%);
  backdrop-filter: blur(18px);
  border-bottom: 0;
}
.nav {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding: 2px 0 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  margin-left: 0;
}
.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.brand-banner {
  width: 260px;
  max-height: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0,137,77,.12));
}
.brand-text span {
  display: block;
  font-weight: 800;
  letter-spacing: .01em;
  font-size: 20px;
  line-height: 1.05;
  color: var(--green);
}
.brand-text small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}
.sticky-nav-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0 0 4px;
  margin-top: -8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(102,196,48,.08), transparent 34%),
    linear-gradient(135deg, rgba(255,253,248,.90) 0%, rgba(246,241,230,.86) 100%);
  backdrop-filter: blur(18px);
  border-bottom: 0;
}

.sticky-nav-container {
  display: flex;
  justify-content: flex-end;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  margin: 0;
  list-style: none;
  font-size: 15px;
  color: #34453a;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(0,137,77,.10);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(26,42,34,.06);
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--green);
  background: rgba(102,196,48,.18);
  box-shadow: inset 0 0 0 1px rgba(102,196,48,.08);
}
.mobile-toggle { display: none; }

/* INFO-BANNER START: Text in der index.html ändern. Komplett entfernbar durch Löschen des Banner-Blocks. */
.info-banner {
  position: relative;
  z-index: 12;
  padding: 14px 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(102,196,48,.20), transparent 28%),
    linear-gradient(135deg, rgba(255,253,248,.98), rgba(245,241,232,.98));
  border-bottom: 0;
  overflow: hidden;
}

.info-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(102,196,48,.18), transparent);
  transform: translateX(-100%);
  animation: infoBannerSheen 5.8s ease-in-out infinite;
  pointer-events: none;
}

.info-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 48px;
  padding: 13px 22px;
  color: #123321;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(0,137,77,.18);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(26,42,34,.08);
  backdrop-filter: blur(14px);
  animation: infoBannerFloat 3.8s ease-in-out infinite;
}

.info-banner-dot {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(102,196,48,.42);
  animation: infoBannerPulse 2.4s ease-out infinite;
}

.info-banner p {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .01em;
  text-align: center;
}

@keyframes infoBannerSheen {
  0%, 42% { transform: translateX(-100%); opacity: 0; }
  52% { opacity: 1; }
  78%, 100% { transform: translateX(100%); opacity: 0; }
}

@keyframes infoBannerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes infoBannerPulse {
  0% { box-shadow: 0 0 0 0 rgba(102,196,48,.45); }
  70% { box-shadow: 0 0 0 10px rgba(102,196,48,0); }
  100% { box-shadow: 0 0 0 0 rgba(102,196,48,0); }
}
/* INFO-BANNER ENDE */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 750;
  box-shadow: 0 12px 28px rgba(0,137,77,.20);
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid rgba(255,255,255,.25);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(0,137,77,.25); }
.btn.secondary {
  background: #fff;
  color: var(--green);
  border: 1px solid rgba(0,137,77,.22);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 72px;
  background:
    radial-gradient(circle at 18% 8%, rgba(102,196,48,.18), transparent 34%),
    linear-gradient(135deg, #fffdf8 0%, #f6f1e6 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 56px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(102,196,48,.13);
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--lime);
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: #14251b;
  letter-spacing: -.04em;
}
h1 {
  margin: 0 0 22px;
  font-size: clamp(43px, 6vw, 76px);
  line-height: .98;
}
h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  margin: 0 0 16px;
}
.lead {
  max-width: 630px;
  font-size: clamp(18px, 2vw, 21px);
  color: #4c5c52;
  margin: 0 0 30px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 34px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 620px;
}
.trust {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,137,77,.12);
}
.trust strong { display:block; color: var(--green); font-size: 22px; line-height:1; }
.trust span { display:block; margin-top:7px; color: var(--muted); font-size: 14px; }

.hero-card, .page-visual {
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}
.hero-card {
  position: relative;
  min-height: 570px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: url('../images/hero-startseite.png') center center / cover no-repeat;
}

section { padding: 88px 0; }
.section-head {
  max-width: 780px;
  margin-bottom: 38px;
}
.kicker {
  color: var(--green);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  margin-bottom: 12px;
}
.section-head p, .muted {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
}
.bg-white { background: #fff; }
.bg-warm { background: var(--warm); }

.cards, .team-grid, .partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 30px;
  border-radius: var(--radius);
  background: #fffdf8;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(26,42,34,.06);
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(102,196,48,.14);
  color: var(--green);
  font-weight: 900;
  margin-bottom: 20px;
  font-size: 22px;
}
.card h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.02em; }
.card p { margin: 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: stretch;
}
.image-panel {
  min-height: 540px;
  border-radius: 34px;
  background:
    linear-gradient(rgba(0,0,0,.04), rgba(0,0,0,.16)),
    url('https://images.unsplash.com/photo-1600489000022-c2086d79f9d4?auto=format&fit=crop&w=1200&q=85') center/cover;
  box-shadow: var(--shadow);
}
.steps { display: grid; gap: 16px; }
.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px;
  background: rgba(255,253,248,.82);
  border: 1px solid rgba(0,137,77,.12);
  border-radius: 24px;
}
.num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}
.step h3 { margin: 0 0 6px; font-size: 21px; }
.step p { margin: 0; color: var(--muted); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service {
  min-height: 210px;
  padding: 24px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(145deg, var(--green), #06723e);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.service:nth-child(even) { background: linear-gradient(145deg, #244135, var(--green)); }
.service::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(102,196,48,.22);
}
.service h3, .service p { position: relative; z-index:1; }
.service h3 { margin: 0; font-size: 22px; }
.service p { margin: 16px 0 0; color: rgba(255,255,255,.82); }

.gallery {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
}
.gallery-main, .gallery-side div {
  border-radius: 30px;
  overflow: hidden;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 44px rgba(26,42,34,.10);
  position: relative;
}
.gallery-main {
  background-image: linear-gradient(rgba(0,0,0,.06), rgba(0,0,0,.28)), url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1400&q=85');
}
.gallery-side { display: grid; gap: 18px; }
.gallery-side div { min-height: 251px; }
.g1 { background-image: linear-gradient(rgba(0,0,0,.03), rgba(0,0,0,.22)), url('https://images.unsplash.com/photo-1565538810643-b5bdb714032a?auto=format&fit=crop&w=900&q=85'); }
.g2 { background-image: linear-gradient(rgba(0,0,0,.03), rgba(0,0,0,.22)), url('https://images.unsplash.com/photo-1615873968403-89e068629265?auto=format&fit=crop&w=900&q=85'); }
.caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,253,248,.86);
  backdrop-filter: blur(10px);
  color: #1c2a22;
  font-weight: 800;
}

.hours {
  background: linear-gradient(135deg, #0a8b50, #006d3d);
  color: #fff;
}
.hours .section-head h2, .hours .kicker { color: #fff; }
.hours .section-head p { color: rgba(255,255,255,.80); }
.info-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.hours-box, .contact-box {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  padding: 30px;
  backdrop-filter: blur(10px);
}
.hours-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.hours-list li:last-child { border-bottom: 0; }
.contact-box p { margin: 0 0 14px; color: rgba(255,255,255,.82); }
.contact-box strong { color: #fff; }

.person {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(26,42,34,.06);
}
.person-img {
  height: 320px;
  width: 100%;
  object-fit: cover;
}
.person-body { padding: 24px; }
.person-body h3 { margin: 0 0 6px; }
.person-body p { margin: 0; color: var(--muted); }

.page-hero {
  padding: 52px 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(102,196,48,.16), transparent 34%),
    linear-gradient(135deg, #fffdf8 0%, #f6f1e6 100%);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 42px;
  align-items: center;
}
.page-visual {
  min-height: 360px;
  background-image: linear-gradient(rgba(0,0,0,.06), rgba(0,0,0,.25)), url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1200&q=85');
}
.legal-content {
  max-width: 860px;
  padding: 70px 0;
}
.legal-content h2 { font-size: 32px; margin-top: 42px; }
.legal-content p, .legal-content li { color: var(--muted); }

.site-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(102,196,48,.12), transparent 34%),
    linear-gradient(135deg, #F4F8EA 0%, rgba(246,241,230,.92) 100%);
  color: #1c2a22;
  padding: 52px 0 34px;
  border-bottom: 8px solid #00894D;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 30px;
  align-items: start;
}
.site-footer .brand-text span { color: var(--green); }
.site-footer .brand-text small { color: rgba(28,42,34,.72); }
.site-footer .footer-links strong { color: #0b4b34; }
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-links a { color: rgba(28,42,34,.82); }
.footer-links a:hover { color: var(--green); }
.legal {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,137,77,.14);
  font-size: 14px;
  color: rgba(28,42,34,.76);
}

@media (max-width: 960px) {
  .hero-grid, .split, .info-grid, .gallery, .footer-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .cards, .services-grid, .team-grid, .partner-grid { grid-template-columns: 1fr 1fr; }
  .mobile-toggle { display: inline-flex; }
  .sticky-nav-shell {
    padding: 9px 0;
    overflow-x: auto;
  }
  .sticky-nav-container {
    justify-content: flex-start;
  }
  .main-nav {
    display: block;
    position: static;
    width: max-content;
    padding: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    border: 0;
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    display: flex;
    gap: 6px;
    width: max-content;
    border-radius: 999px;
    background: rgba(255,255,255,.68);
    box-shadow: 0 12px 30px rgba(26,42,34,.06);
    border: 1px solid rgba(0,137,77,.10);
    padding: 7px;
    white-space: nowrap;
  }
  .main-nav a {
    min-height: 34px;
    padding: 0 12px;
    font-size: 14px;
  }
  .hero-card {
  position: relative;
  min-height: 570px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: url('../images/hero-startseite.png') center center / cover no-repeat;
}
}
@media (max-width: 640px) {

  .info-banner { padding: 10px 0; }
  .info-banner-inner {
    width: min(100%, calc(100vw - 28px));
    min-height: auto;
    padding: 12px 16px;
    border-radius: 22px;
    align-items: flex-start;
  }
  .info-banner p {
    font-size: 14px;
    line-height: 1.35;
  }
  .info-banner-dot {
    width: 9px;
    height: 9px;
    margin-top: 5px;
  }
  .container { width: min(100% - 28px, 1160px); }
  .topbar .container { justify-content: center; text-align: center; }
  .brand-text small { display: none; }
  .brand-banner { width: 180px; max-height: none; }
  .brand { min-width: auto; margin-left: 0; }
  .nav { min-height: 0; padding: 2px 0 0; }
  .hero { padding: 54px 0 52px; }
  .hero-card {
  position: relative;
  min-height: 570px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: url('../images/hero-startseite.png') center center / cover no-repeat;
}
  .trust-row, .cards, .services-grid, .team-grid, .partner-grid { grid-template-columns: 1fr; }
  section { padding: 62px 0; }
  .gallery-main, .gallery-side div { min-height: 330px; }
  .hours-list li { flex-direction: column; gap: 2px; }
}

