/* ── STATS STRIP ─────────────────── */
.stats-strip {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.stat-box {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 24px 20px; text-align: center;
}
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--green); line-height: 1; display: block; margin-bottom: 6px; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

/* ── VALUES ──────────────────────── */
.values-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: var(--container-max); margin: 0 auto;
}
.value-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 32px 32px 28px;
}
.value-card .vc-num {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
  display: block;
}
.value-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.value-card p {
  font-family: 'Source Serif 4', serif; font-weight: 400;
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.7;
}

/* ── TEAM ────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; max-width: var(--container-max); margin: 0 auto;
}
.team-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.team-card:hover {
  transform: translateY(-4px); box-shadow: 0 16px 48px rgba(62,124,47,.12);
}
.team-photo {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  background: var(--green-light);
  display: block;
}
.team-photo-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-light) 0%, #e0f0da 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.team-body { padding: 28px 28px 24px; }
.team-role {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 4px;
}
.team-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.team-title { font-size: 0.82rem; color: var(--text-muted); font-style: italic; margin-bottom: 16px; }
.team-bio {
  font-family: 'Source Serif 4', serif; font-weight: 400;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 20px;
}
.team-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.team-tag {
  font-size: 0.72rem; font-weight: 600;
  background: var(--green-light); border: 1px solid var(--green-mid);
  color: var(--green-dark); border-radius: 20px; padding: 4px 12px;
}

/* ── NETWORK ─────────────────────── */
.network-box {
  max-width: var(--container-max); margin: 0 auto;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 36px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center;
}
.network-box h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; }
.network-box p {
  font-family: 'Source Serif 4', serif; font-weight: 400;
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.7;
}
.network-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.network-tag {
  font-size: 0.8rem; font-weight: 600;
  background: var(--green-light); border: 1px solid var(--green-mid);
  color: var(--green-dark); border-radius: 20px; padding: 6px 16px;
  display: flex; align-items: center; gap: 6px;
}
.network-tag .lucide { width: 14px; height: 14px; stroke: var(--green); }

/* ── PARTNER LOGOS ───────────────── */
.partner-strip {
  max-width: var(--container-max); margin: 0 auto;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 32px 40px;
}
.partner-strip h3 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 24px;
  text-align: center;
}
.partner-logos {
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: center; align-items: center;
}
.partner-logo {
  height: 48px; object-fit: contain; opacity: 0.75;
  transition: opacity .2s;
  filter: grayscale(0.2);
}
.partner-logo:hover { opacity: 1; }

/* ── FRANK BOX (Text-Bild-Split) ───────── */
.frank-box {
  max-width: var(--container-max); margin: 0 auto;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 1.35fr 1fr;
  align-items: stretch;
  transition: transform .22s ease, box-shadow .22s ease;
}
.frank-box:hover {
  transform: translateY(-3px); box-shadow: 0 16px 48px rgba(62,124,47,.12);
}
.frank-box .frank-body { padding: 44px 44px 40px; order: 1; }
.frank-box .frank-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  display: block; order: 2;
  min-height: 420px;
}
@media (max-width: 820px) {
  .frank-box { grid-template-columns: 1fr; }
  .frank-box .frank-photo { min-height: 0; aspect-ratio: 3/2; order: 1; }
  .frank-box .frank-body { padding: 32px 28px 28px; order: 2; }
}

/* ── INTRO-SPLIT (Text links, Fach-Netzwerk-Tags rechts) ── */
.intro-split {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px; align-items: start;
}
.intro-split-text h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.intro-split-text h2 span { color: var(--green); }
.intro-split-text p {
  font-family: 'Source Serif 4', serif; font-weight: 400;
  font-size: 0.98rem; color: var(--text-muted);
  line-height: 1.7; max-width: var(--text-max);
}
.intro-split-text p + p { margin-top: 14px; }
.intro-split-tags h3 {
  font-size: 1rem; font-weight: 800;
  margin-bottom: 12px; color: var(--text);
}
.intro-split-tags-lead {
  font-family: 'Source Serif 4', serif; font-weight: 400;
  font-size: 0.92rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 16px;
}
@media (max-width: 820px) {
  .intro-split { grid-template-columns: 1fr; gap: 28px; }
}

/* ── ZEITSCHIENE ─────────────────── */
.timeline-grid {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.timeline-item {
  background: var(--white); border: 1.5px solid var(--border);
  border-top: 4px solid var(--green);
  border-radius: 14px; padding: 26px 22px 22px;
}
.timeline-year {
  font-size: 1.6rem; font-weight: 800; color: var(--green);
  line-height: 1.1; margin-bottom: 8px; display: block;
}
.timeline-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 10px; display: block;
}
.timeline-text {
  font-family: 'Source Serif 4', serif; font-weight: 400;
  font-size: 0.9rem; color: var(--text); line-height: 1.6;
}

/* ── RESPONSIVE ──────────────────── */
@media (max-width: 900px) {
  .timeline-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .values-grid { grid-template-columns: 1fr; }
  .network-box { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .partner-strip { padding: 24px; }
}
@media (max-width: 480px) {
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
}
  
