/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(160deg, var(--gruen) 0%, var(--gruen-mid) 55%, #1a5c35 100%);
  color: #fff;
  padding: 4rem 1.25rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c1d1c7' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-family: var(--ff-ui);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.hero-text h1 span { color: var(--mint); }

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,.88);
  margin-bottom: 1.8rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero-img-wrap { position: relative; }

.hero-img-wrap img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  border: 4px solid rgba(193,209,199,.3);
}

.hero-caption {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  background: rgba(6,69,32,.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  padding: .75rem 1rem;
  font-family: var(--ff-ui);
  font-size: .75rem;
  color: var(--mint);
  line-height: 1.5;
  text-align: center;
}

.hero-caption strong { color: #fff; }

/* ═══════════════════════════════════════════════════
   STAT BAR
   ═══════════════════════════════════════════════════ */
.stat-bar { background: var(--rot); color: #fff; padding: 1.4rem 1.25rem; }

.stat-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
  text-align: center;
}

.stat-item { font-family: var(--ff-ui); }

.stat-num {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: .75rem;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: .2rem;
}

/* ═══════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--mint-light);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  border-left: 5px solid var(--gruen);
  transition: box-shadow .2s, transform .2s;
}

.card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }

.card-icon { font-size: 1.9rem; margin-bottom: .65rem; display: block; line-height: 1; }

.card h3 {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gruen);
  margin-bottom: .45rem;
  line-height: 1.3;
}

.card p { font-size: .9rem; color: var(--text-mid); line-height: 1.65; }

/* ═══════════════════════════════════════════════════
   INFO CARD
   ═══════════════════════════════════════════════════ */
.info-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  border-top: 6px solid var(--gruen);
  box-shadow: var(--sh-sm);
  max-width: 720px;
}

.info-card p { font-size: 1.03rem; line-height: 1.85; color: var(--text-mid); margin-bottom: .9rem; }
.info-card p:last-child { margin-bottom: 0; }

.info-highlight {
  display: block;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gruen);
  margin-bottom: .65rem;
}

/* ═══════════════════════════════════════════════════
   ZIELE + KONTAKT
   ═══════════════════════════════════════════════════ */
.ziele-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.check-list { display: flex; flex-direction: column; gap: .85rem; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-mid);
}

.check-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--gruen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .18rem;
  font-size: .72rem;
  color: #fff;
  font-weight: 700;
}

.kontakt-aside {
  background: var(--gruen);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sh-md);
}

.kontakt-aside h3 {
  font-family: var(--ff-ui);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--mint);
  margin-bottom: 1.25rem;
}

.kontakt-zeile {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: .9rem;
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(255,255,255,.88);
}

.kontakt-zeile .ikon { font-size: 1.05rem; flex-shrink: 0; margin-top: .1rem; }

.kontakt-zeile a { color: var(--mint); text-decoration: none; padding: 2px 0; }
.kontakt-zeile a:hover { color: #fff; text-decoration: underline; }

.oeffnung-box {
  background: rgba(193,209,199,.15);
  border-radius: var(--r);
  padding: .85rem 1rem;
  margin-top: 1.1rem;
  font-family: var(--ff-ui);
  font-size: .88rem;
  border-left: 3px solid var(--mint);
  line-height: 1.7;
  color: rgba(255,255,255,.85);
}

.oeffnung-box strong {
  display: block;
  color: var(--mint);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .3rem;
}

/* ═══════════════════════════════════════════════════
   NEWS
   ═══════════════════════════════════════════════════ */
.news-card {
  background: var(--sand);
  border-radius: var(--r-lg);
  padding: 1.65rem 1.75rem;
  border-left: 5px solid var(--rot);
  max-width: 680px;
  box-shadow: var(--sh-sm);
}

.news-tag {
  font-family: var(--ff-ui);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--rot);
  font-weight: 700;
  margin-bottom: .45rem;
}

.news-card h3 {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gruen);
  margin-bottom: .65rem;
  line-height: 1.45;
}

.news-card .news-body { font-size: .92rem; color: var(--text-mid); line-height: 1.7; }

.news-card .mehr {
  display: inline-block;
  margin-top: .85rem;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: .88rem;
  color: var(--rot);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color .18s;
  padding: 4px 0;
}

.news-card .mehr:hover { border-color: var(--rot); }

/* ═══════════════════════════════════════════════════
   TRANSPARENZ
   ═══════════════════════════════════════════════════ */
.transparenz-box {
  background: var(--mint-light);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.65rem;
  max-width: 480px;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  border: 2px solid var(--mint);
  margin-top: 1.75rem;
}

.transparenz-box img { width: 72px; flex-shrink: 0; }

.transparenz-box p {
  font-family: var(--ff-ui);
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.transparenz-box strong { color: var(--gruen); }

/* ═══════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════ */
.cta-wrap { padding: 4rem 1.25rem; }

.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-inner h2,
.cta-inner h3 {
  font-family: var(--ff-ui);
  font-weight: 800;
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: .55rem;
  line-height: 1.2;
}

.cta-inner p { color: var(--mint); font-size: 1rem; line-height: 1.7; }
.cta-inner a { color: #fff; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--gruen);
  color: var(--mint);
  padding: 2.5rem 1.25rem;
  padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.site-footer h4 {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  margin-bottom: .85rem;
}

.site-footer p,
.site-footer li { font-size: .88rem; line-height: 1.8; color: rgba(193,209,199,.8); }

.site-footer a { color: var(--mint); text-decoration: none; padding: 2px 0; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 1.75rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(193,209,199,.22);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-family: var(--ff-ui);
  font-size: .74rem;
  color: rgba(193,209,199,.5);
}


/* ── Termin-Badges auf Angebotskarten ── */
.card-termine {
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid var(--mint);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.card-termine span {
  font-family: var(--ff-ui);
  font-size: .78rem;
  color: var(--gruen);
  display: flex;
  align-items: center;
  gap: .35rem;
  line-height: 1.4;
}
.card-termine .icon { font-size: .85rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════
   SCHRITTE / TIMELINE
   ═══════════════════════════════════════════════════ */
.tl-heading {
  font-family: var(--ff-ui);
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--gruen);
  margin-bottom: .4rem;
}
.tl-intro {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.tl-steps {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 740px;
  margin-inline: auto;
}

/* Vertikale Linie */
.tl-steps::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--rot);
  border-radius: 2px;
}

.tl-step {
  display: block;
  padding-bottom: 2rem;
  padding-left: 1.25rem;
  position: relative;
}
.tl-step:last-child { padding-bottom: 0; }

/* Nummerierter Punkt */
.tl-step-dot { display: none; }

/* Inhalt */
.tl-step-body {
  background: var(--mint-light);
  border-radius: var(--r-lg, 12px);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--rot);
  flex: 1;
  transition: box-shadow .25s, transform .25s;
}
.tl-step:hover .tl-step-body {
  box-shadow: var(--sh-md, 0 4px 20px rgba(0,0,0,.08));
  transform: translateY(-2px);
}

.tl-step-date {
  font-family: var(--ff-ui);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--rot);
  display: block;
  margin-bottom: .25rem;
}

.tl-step-title {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: .95rem;
  color: var(--gruen);
  display: block;
  margin-bottom: .35rem;
}

.tl-step-desc {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* Auf dunklem Hintergrund: Text weiß */
.bg-gruen .tl-heading,
.bg-gruen .tl-intro {
  color: #fff;
}
.bg-gruen .tl-step-body,
.bg-gruen .tl-step-date,
.bg-gruen .tl-step-title,
.bg-gruen .tl-step-desc {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.bg-gruen .tl-step-body { background: rgba(255,255,255,.1); }

.bg-sand .tl-step-date  { color: var(--rot); }
.bg-sand .tl-step-title { color: var(--gruen); }
.bg-sand .tl-step-desc  { color: var(--text-mid); }

/* Responsive: Desktop zweispaltig */
@media (min-width: 700px) {
  /* Vertikale Linie mittig */
  .tl-steps::before { left: 50%; transform: translateX(-50%); }

  /* Zickzack: zwei Spalten mit Linie in der Mitte */
  .tl-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
    align-items: start;
    padding-left: 0;
  }

  /* Dot auf der Mittellinie — kein Label */
  .tl-step::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 1.25rem;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--rot);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--rot);
    z-index: 2;
  }

  /* Ungerade: Inhalt links */
  .tl-step:nth-child(odd) .tl-step-body {
    grid-column: 1;
    text-align: right;
    border-left: none;
    border-right: 4px solid var(--rot);
    padding-right: 1.75rem;
    padding-left: 1.25rem;
  }

  /* Gerade: Inhalt rechts */
  .tl-step:nth-child(even) .tl-step-body {
    grid-column: 2;
    text-align: left;
    border-left: 4px solid var(--rot);
    border-right: none;
    padding-left: 1.75rem;
    padding-right: 1.25rem;
  }
  .tl-step:nth-child(even) .tl-step-body { grid-row: 1; }
}
