/* ============================================================
   Ein Herz für Kenia – Hauptstylesheet
   Designsprache: Professionell & Nahbar
   Primärfarben: Burgunderrot #751d32 · Dunkelgrün #1e4d1a · Gold #f5c542
   Typografie: Nunito (Headlines) + Dancing Script (Akzente/Zitate)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&family=Nunito:wght@300;400;600;700;800;900&display=swap');

/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Farben */
  --burgundy:       #751d32;
  --burgundy-dark:  #5a1525;
  --burgundy-light: #8f2540;
  --green:          #1e4d1a;
  --green-mid:      #2d6a27;
  --green-light:    #3a8032;
  --yellow:         #f5c542;
  --yellow-light:   #fde87a;
  --white:          #ffffff;
  --cream:          #faf6ee;
  --light:          #f5f2ec;
  --text:           #2c2c2c;
  --text-muted:     #666;
  --border:         #e0d8c8;

  /* Schatten */
  --shadow-sm:      0 2px 10px rgba(0,0,0,.08);
  --shadow:         0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:      0 12px 48px rgba(0,0,0,.14);

  /* Radien */
  --radius:         12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --radius-full:    9999px;

  /* Spacing-Scale */
  --sp-xs:  16px;
  --sp-sm:  32px;
  --sp-md:  56px;
  --sp-lg:  88px;
  --sp-xl:  112px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .25s, opacity .25s; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
}

/* ─── TYPOGRAFIE ─────────────────────────────────────────── */
/* Headlines: Nunito (klar, professionell) */
h1 { font-size: clamp(2rem, 5vw, 3.5rem);   line-height: 1.1; font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.2; font-weight: 800; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); line-height: 1.25; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { margin-bottom: 0; }

/* Dancing Script: nur für Akzente / kurze emotionale Zeilen */
.script { font-family: 'Dancing Script', cursive; }

/* ─── UTILITY-KLASSEN ────────────────────────────────────── */
/* Layout */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px;  margin: 0 auto; padding: 0 24px; }
.container-wide   { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* Sections */
.section    { padding: var(--sp-lg) 0; }
.section-sm { padding: var(--sp-md) 0; }
.section-xs { padding: var(--sp-sm) 0; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr;         gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr);  gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr);  gap: 24px; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* Farben */
.bg-cream    { background: var(--cream); }
.bg-light    { background: var(--light); }
.bg-green    { background: var(--green); color: var(--white); }
.bg-burgundy { background: var(--burgundy); color: var(--white); }
.bg-white    { background: var(--white); }

/* Text */
.text-burgundy { color: var(--burgundy); }
.text-green    { color: var(--green); }
.text-muted    { color: var(--text-muted); }
.text-center   { text-align: center; }
.text-white    { color: var(--white); }

/* Prosa-Helfer */
.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.prose p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text); }

/* Abstands-Helfer */
.mt-xs { margin-top: var(--sp-xs); }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mb-xs { margin-bottom: var(--sp-xs); }
.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }

/* Media-Wrapper */
.media             { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.media img         { width: 100%; height: 100%; object-fit: cover; display: block; }
.media--portrait   { aspect-ratio: 3/4; }
.media--landscape  { aspect-ratio: 16/9; }
.media--square     { aspect-ratio: 1/1; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: background .25s, color .25s, transform .2s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--burgundy); color: var(--white); }
.btn-primary:hover { background: var(--burgundy-dark); box-shadow: 0 8px 28px rgba(117,29,50,.35); }
.btn-outline  { background: transparent; color: var(--burgundy); border-color: var(--burgundy); }
.btn-outline:hover { background: var(--burgundy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-white:hover { background: var(--white); color: var(--burgundy); border-color: var(--white); }
.btn-green  { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-mid); box-shadow: 0 8px 28px rgba(30,77,26,.35); }
.btn-white  { background: var(--white); color: var(--burgundy); }
.btn-white:hover { background: var(--cream); }
.btn-yellow { background: var(--yellow); color: var(--green); }
.btn-yellow:hover { background: var(--yellow-light); }
.btn-sm { padding: 10px 22px; font-size: .9rem; }
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }

/* ─── HEADER / NAVIGATION ────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  gap: 24px;
}
.nav-logo img { height: 60px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}
.nav-link {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
  position: relative;
  padding-bottom: 3px;
  letter-spacing: .01em;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--burgundy);
  transition: width .3s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--burgundy); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
/* ─── NAV DROPDOWN ───────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 3px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 700;
  line-height: inherit;
  color: var(--text);
}
.nav-dropdown-toggle .chevron { transition: transform .25s ease; flex-shrink: 0; }
.nav-dropdown.open .nav-dropdown-toggle .chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  min-width: 190px;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown-item:hover { background: var(--cream); color: var(--burgundy); }
.nav-dropdown-item.active { color: var(--burgundy); }

.nav-spenden {
  background: var(--burgundy);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: .9rem;
  transition: background .25s, transform .2s;
}
.nav-spenden::after { display: none; }
.nav-spenden:hover { background: var(--burgundy-dark) !important; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* ─── HERO (Startseite) ──────────────────────────────────── */
.hero-springs {
  min-height: 92vh;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.45) 0%,
      rgba(0,0,0,.25) 50%,
      rgba(0,0,0,.55) 100%
    ),
    url('../images/hero-kenya.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}
.hero-inner-center {
  text-align: center;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px;
}
.hero-kicker {
  display: inline-block;
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--yellow-light);
  margin-bottom: 16px;
  line-height: 1.3;
}
.hero-inner-center h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero-location {
  font-size: .9rem;
  opacity: .8;
  margin-bottom: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 36px;
  opacity: .95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  font-size: .8rem;
  letter-spacing: .05em;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px;
  padding: 4px 10px;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}

/* ─── PAGE HEADER (Unterseiten) ──────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  color: var(--white);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
}
.page-header p {
  font-size: 1.05rem;
  opacity: .85;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.page-header .page-kicker {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: var(--yellow-light);
  margin-bottom: 10px;
  position: relative;
}

/* ─── SECTION HEADERS ────────────────────────────────────── */
.section-eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--burgundy);
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-kicker {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 8px;
  line-height: 1.4;
}
.section-sub {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 52px;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ─── TRUST STRIP ────────────────────────────────────────── */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .02em;
}
.trust-item svg {
  width: 18px; height: 18px;
  fill: var(--green);
  flex-shrink: 0;
}
.trust-item span.trust-muted {
  font-weight: 600;
  color: var(--text-muted);
}

/* ─── STEPS (3-Schritte Sektion) ─────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--border);
  position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.step-card:hover {
  border-color: var(--burgundy);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.step-num {
  width: 52px; height: 52px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 20px;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.step-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── CTA-BAND ───────────────────────────────────────────── */
.cta-band {
  background: var(--burgundy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.15) 0%, transparent 60%);
}
.cta-band-inner { position: relative; }
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}
.cta-band p {
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  line-height: 1.75;
}
.cta-band-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FLIP CARDS ─────────────────────────────────────────── */
.flip-card { perspective: 1000px; height: 260px; }
.flip-card-inner {
  position: relative;
  width: 100%; height: 100%;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.flip-card-front { color: var(--white); }
.flip-card-front h2 { font-size: 2rem; font-weight: 900; }
.flip-front-hoffnung { background: var(--burgundy); }
.flip-front-kindheit { background: var(--green); }
.flip-front-zukunft  { background: #2c5e8a; }
.flip-card-back {
  background: var(--text);
  color: var(--white);
  transform: rotateY(180deg);
  text-align: center;
  gap: 12px;
}
.flip-card-back p { font-size: .95rem; line-height: 1.6; }
.flip-card-back em { font-style: italic; }

/* ─── COUNTER ────────────────────────────────────────────── */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.counter-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.counter-icon { height: 64px; display: flex; align-items: center; justify-content: center; }
.counter-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--burgundy);
  line-height: 1;
}
.counter-label { font-size: .9rem; color: var(--text-muted); font-weight: 700; }

/* ─── QUOTE BG SECTION ───────────────────────────────────── */
.quote-bg-section {
  background:
    linear-gradient(135deg, rgba(117,29,50,.9) 0%, rgba(30,77,26,.82) 100%),
    url('../images/kinder-draussen.jpg') center/cover no-repeat;
  padding: 88px 0;
}
.quote-bg-inner {
  max-width: 600px;
  margin: 0 0 0 50%;
  padding: 0 24px;
  color: var(--white);
}
.quote-bg-text {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
.quote-bg-author {
  font-weight: 700;
  opacity: .85;
  font-size: .95rem;
  letter-spacing: .04em;
}

/* ─── KINDHEITSSCHENKER SEKTION ──────────────────────────── */
.kindheitsschenker-section { background: var(--green); }
.kindheits-btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.kindheits-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.4;
  transition: background .25s, transform .25s, border-color .25s;
  min-width: 150px;
}
.kindheits-btn:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.6);
}

/* ─── HELDENGESCHICHTEN ──────────────────────────────────── */
.hero-story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.hero-story-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.story-name-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}
.story-red    { background: var(--burgundy); }
.story-yellow { background: #c98900; }
.story-green  { background: var(--green); }
.hero-story-body { padding: 20px; }
.hero-story-body p { color: var(--text-muted); font-size: .95rem; line-height: 1.7; }

/* ─── MEILENSTEINE ───────────────────────────────────────── */
.milestone-tabs { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.milestone-nav {
  display: flex;
  background: var(--green);
  overflow-x: auto;
}
.ms-year {
  flex: 1;
  min-width: 60px;
  padding: 15px 8px;
  font-size: .88rem;
  font-weight: 800;
  color: rgba(255,255,255,.55);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all .25s;
  white-space: nowrap;
  letter-spacing: .02em;
}
.ms-year:hover { color: var(--white); }
.ms-year.active { color: var(--yellow); border-bottom-color: var(--yellow); }
.milestone-content { position: relative; }
.ms-pane { display: none; }
.ms-pane.active { display: grid; grid-template-columns: 1fr 1fr; }
.ms-img { height: 300px; background-size: cover; background-position: center; }
.ms-desc {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.ms-desc p { color: var(--text-muted); line-height: 1.75; }

/* ─── DONATION LIST ──────────────────────────────────────── */
.donation-list { display: flex; flex-direction: column; gap: 10px; }
.donation-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color .2s, box-shadow .2s;
}
.donation-list li:hover { border-color: var(--burgundy); box-shadow: var(--shadow-sm); }
.donation-icon { font-size: 1.3rem; flex-shrink: 0; }
.donation-list li span:nth-child(2) { flex: 1; color: var(--text-muted); font-size: .95rem; }
.donation-list li strong { color: var(--burgundy); font-size: 1rem; white-space: nowrap; font-weight: 800; }

/* ─── NEWSLETTER ─────────────────────────────────────────── */
/* ─── ALLTAG GRID ────────────────────────────────────────── */
.alltag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}
.alltag-placeholder {
  background: linear-gradient(135deg, var(--green) 0%, #2d6e27 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  font-size: .9rem;
  letter-spacing: .05em;
  opacity: .75;
  box-shadow: var(--shadow);
}
.alltag-placeholder svg { width: 64px; height: 64px; }
.alltag-text h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--burgundy);
  margin-bottom: 16px;
}
.alltag-text p { color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
@media (max-width: 768px) {
  .alltag-grid { grid-template-columns: 1fr; gap: 28px; }
}

.newsletter-section {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-light) 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.newsletter-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.newsletter-section p  { opacity: .85; margin-bottom: 32px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.nl-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 14px;
  flex-wrap: wrap;
}
.nl-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(255,255,255,.15);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.nl-form input::placeholder { color: rgba(255,255,255,.55); }
.nl-form input:focus { outline: 2px solid var(--yellow); }
.nl-privacy { font-size: .8rem; opacity: .65; }
.nl-privacy a { color: var(--yellow-light); }

/* ─── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img   { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.card-body  { padding: 24px; }
.card-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.card-text  { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* ─── INFO CARDS ─────────────────────────────────────────── */
.info-card {
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.info-card-icon {
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.info-card-icon svg { width: 22px; height: 22px; fill: var(--white); }
.info-card-title { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.info-card-text  { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ─── KENYA FACTS ────────────────────────────────────────── */
.kenya-facts {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.kenya-facts h3 { color: var(--yellow); margin-bottom: 24px; font-family: 'Dancing Script', cursive; font-size: 1.8rem; }
.kenya-facts-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: .95rem;
}
.kenya-facts-row:last-child { border-bottom: none; }
.kenya-facts-label { opacity: .75; }
.kenya-facts-value { font-weight: 700; color: var(--yellow); }

/* ─── CHILD CARDS ────────────────────────────────────────── */
.child-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 32px; }
.child-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.child-card-img { width: 100%; height: 280px; object-fit: cover; object-position: center top; }
.child-card-body { padding: 22px; }
.child-card-name { font-size: 1.1rem; font-weight: 900; color: var(--text); margin-bottom: 3px; }
.child-card-age  { font-size: .85rem; color: var(--text-muted); margin-bottom: 16px; }
.child-detail     { display: flex; gap: 8px; margin-bottom: 7px; font-size: .88rem; }
.child-detail-lbl { font-weight: 700; color: var(--green); min-width: 90px; }
.child-detail-val { color: var(--text-muted); }
.child-story-btn {
  width: 100%;
  background: var(--light);
  border: none;
  padding: 11px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .88rem;
  color: var(--green);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .25s, color .25s;
}
.child-story-btn:hover { background: var(--green); color: var(--white); }
.child-story-btn .arrow { transition: transform .25s; }
.child-story-btn.open .arrow { transform: rotate(180deg); }
.child-story-body {
  display: none;
  padding: 16px;
  background: var(--cream);
  border-radius: var(--radius);
  margin-top: 8px;
  font-size: .88rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.child-story-body.open { display: block; }

/* ─── STATS ROW (patenschaft) ─────────────────────────────── */
.stats-row { background: var(--burgundy); padding: var(--sp-sm) 0; }
.stats-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  line-height: 1.4;
}

/* ─── POLAROIDS ──────────────────────────────────────────── */
.polaroid-row { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.polaroid { width: 200px; }
/* Team-Polaroids: festes Seitenverhältnis */
.polaroid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 4px; }
/* Tabitha-Polaroid: PNG mit eigenem Rahmen, nicht beschneiden */
.polaroid--full img { aspect-ratio: unset; object-fit: contain; height: auto; }
/* ─── TEAM-LISTE (unsere-mission) ─────────────────────────── */
/* Bilder untereinander, alle gleiche Höhe; Text rechts kaschiert die
   unterschiedlichen Bildbreiten. Reihen abwechselnd versetzt. */
.team-list {
  max-width: 880px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.team-member {
  display: flex;
  align-items: center;
  gap: 40px;
}
.team-member:nth-child(even) { flex-direction: row-reverse; }
/* leichter horizontaler Versatz der untereinander stehenden Bilder */
.team-member:nth-child(odd)  { margin-left: 40px;  margin-right: 0; }
.team-member:nth-child(even) { margin-right: 40px; margin-left: 0; }
.team-photo { flex: 0 0 auto; }
.team-photo img { height: 300px; width: auto; display: block; }
.team-bio { flex: 1 1 auto; min-width: 0; }
.team-bio h3 { font-size: 1.5rem; margin-bottom: 4px; }
.team-role {
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 12px;
  font-size: .95rem;
}
.team-bio p { color: var(--text-muted); line-height: 1.7; }

/* ─── SEALS ──────────────────────────────────────────────── */
.seal-row { display: flex; gap: 40px; flex-wrap: nowrap; align-items: center; justify-content: center; margin: 40px 0; }
.seal-img { width: 160px; height: 160px; object-fit: contain; flex-shrink: 0; }

/* ─── TIMELINE ───────────────────────────────────────────── */
.timeline { padding-left: 40px; position: relative; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px; top: 10px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--burgundy);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--burgundy);
}
.timeline-year {
  display: inline-block;
  background: var(--burgundy);
  color: var(--white);
  padding: 3px 14px;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.timeline-body {
  background: var(--cream);
  padding: 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--burgundy);
}
.timeline-body h4 { margin-bottom: 6px; font-weight: 800; }
.timeline-body p  { font-size: .9rem; color: var(--text-muted); }

/* ─── GOALS ──────────────────────────────────────────────── */
.goal-item { display: flex; gap: 20px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--border); }
.goal-item:last-child { border-bottom: none; }
.goal-num {
  width: 42px; height: 42px;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}
.goal-text { flex: 1; padding-top: 8px; font-size: .95rem; line-height: 1.65; color: var(--text-muted); }
.goal-text strong { color: var(--text); }

/* ─── DONATION FORM ──────────────────────────────────────── */
.donation-category {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.donation-choice {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
  cursor: pointer;
  transition: all .25s;
}
.donation-choice:hover,
.donation-choice.selected { border-color: var(--burgundy); background: #fdf0f3; }
.donation-choice input { display: none; }
.donation-choice-price { font-size: 1.4rem; font-weight: 900; color: var(--burgundy); }
.donation-choice-label { font-size: .82rem; font-weight: 700; color: var(--text); margin-top: 4px; }
.freq-toggle { display: flex; border: 2px solid var(--border); border-radius: var(--radius-full); overflow: hidden; margin-bottom: 28px; }
.freq-btn {
  flex: 1;
  padding: 11px;
  border: none;
  background: none;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-muted);
  transition: background .25s, color .25s;
}
.freq-btn.active { background: var(--burgundy); color: var(--white); }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-info-box {
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-box h3 { color: var(--yellow); margin-bottom: 24px; font-size: 1.3rem; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; font-size: .95rem; }
.contact-row svg { width: 20px; height: 20px; fill: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.contact-bank {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
  border: 2px solid var(--border);
}
.contact-bank-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.contact-bank-row:last-child { border-bottom: none; }
.contact-bank-row span:first-child { color: var(--text-muted); }
.contact-bank-row span:last-child  { font-weight: 700; font-family: monospace; }

/* ─── FORMS ──────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 700; margin-bottom: 7px; font-size: .9rem; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .25s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--burgundy); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--text-muted); }
.form-check input { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; accent-color: var(--burgundy); }
.form-check a { color: var(--burgundy); font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-success {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ─── LEGAL SEITEN ───────────────────────────────────────── */
.legal-body { max-width: 820px; margin: 0 auto; padding: 80px 24px; }
.legal-body h2 { font-size: 1.4rem; color: var(--burgundy); margin: 40px 0 12px; font-weight: 800; }
.legal-body h3 { font-size: 1.1rem; color: var(--text); margin: 28px 0 10px; font-weight: 700; }
.legal-body p  { font-size: .95rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }
.legal-body ul { margin: 0 0 16px 20px; list-style: disc; }
.legal-body ul li { font-size: .95rem; color: var(--text-muted); margin-bottom: 6px; line-height: 1.7; }
.legal-body a  { color: var(--burgundy); font-weight: 700; }
.legal-body .legal-intro {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
  border-left: 4px solid var(--burgundy);
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── SPRINGS SECTION ────────────────────────────────────── */
.springs-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.springs-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.springs-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* ─── BLOG ───────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-date {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: 8px;
}
.blog-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card-excerpt {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.blog-card-link {
  font-size: .88rem;
  font-weight: 800;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-card-link:hover { color: var(--burgundy-dark); }

.blog-post-header { max-width: 820px; margin: 0 auto; padding: 48px 24px 0; }
.blog-post-header h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; margin-bottom: 12px; }
.blog-post-meta { font-size: .85rem; color: var(--text-muted); font-weight: 700; margin-bottom: 32px; }
.blog-post-cover { max-width: 820px; margin: 0 auto; padding: 0 24px; margin-bottom: 40px; }
.blog-post-cover img { border-radius: var(--radius-lg); width: 100%; }
.blog-post-body { max-width: 820px; margin: 0 auto; padding: 0 24px 80px; }
.blog-post-body p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 24px; }
.blog-post-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--text); margin: 40px 0 14px; }
.blog-post-body img { border-radius: var(--radius); margin: 32px 0; box-shadow: var(--shadow); }
.blog-post-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin: 32px 0; }
.blog-post-gallery img { aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }

.blog-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}
.blog-empty svg { width: 64px; height: 64px; opacity: .25; margin: 0 auto 20px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--green);
  color: var(--white);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-logo { height: 52px; width: auto; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer-heading { font-size: .78rem; font-weight: 800; color: var(--yellow); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .1em; }
.footer-text { font-size: .88rem; opacity: .85; line-height: 1.8; }
.footer-link { display: flex; align-items: center; gap: 8px; font-size: .88rem; opacity: .8; margin-bottom: 10px; }
.footer-link:hover { opacity: 1; color: var(--yellow); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s;
}
.footer-socials a:hover { background: var(--yellow); color: var(--green); }
.footer-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .8rem;
  opacity: .6;
}
.footer-bottom a:hover { opacity: 1; color: var(--yellow); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { opacity: .8; }
.footer-bottom-links a:hover { opacity: 1; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .quote-bg-inner { margin: 0 auto; }
  .ms-pane.active { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 84px; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
    border-top: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; }
  .nav-dropdown.open .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--burgundy);
    border-radius: 0;
    padding: 4px 0 4px 14px;
    margin-top: 6px;
  }
  .nav-dropdown-item { padding: 7px 0; }
  .hero-btns { flex-direction: column; align-items: center; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .springs-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .seal-row { gap: 20px; flex-wrap: wrap; }
  .seal-row > div { text-align: center !important; order: -1; }
  .polaroid-row { gap: 16px; }
  .polaroid { width: 160px; }
  .polaroid-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  /* Team-Liste mobil: Bild oben, Text darunter, kein Versatz */
  .team-member,
  .team-member:nth-child(even) { flex-direction: column; align-items: center; text-align: center; gap: 16px; margin: 0; }
  .team-photo img { height: 260px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-strip-inner { gap: 20px; }
  .hero-trust { gap: 14px; font-size: .75rem; }
}
@media (max-width: 540px) {
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .donation-category { grid-template-columns: repeat(2, 1fr); }
  .nl-form { flex-direction: column; }
  .child-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-band-btns { flex-direction: column; align-items: center; }
}
