/* ─────────────────────────────────────────────
   BRUNNEN FÜR TANSANIA — Spendenseite Kisangasa
   Warm, handgemacht, emotional
   ───────────────────────────────────────────── */

:root {
  --paper: #f5efe4;
  --paper-2: #ede4d3;
  --ink: #1a2942;
  --ink-soft: #2c4060;
  --blue: #1a3a5c;
  --blue-deep: #102845;
  --terracotta: #c2452d;
  --terracotta-deep: #9a3320;
  --gold: #e3a82b;
  --green: #1f6b4a;
  --bone: #faf6ed;

  --shadow-soft: 0 1px 3px rgba(26,41,66,.06), 0 8px 24px rgba(26,41,66,.08);
  --shadow-card: 0 2px 8px rgba(26,41,66,.08), 0 16px 40px rgba(26,41,66,.10);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Lora', Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Type ── */

.display, h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--blue);
  margin: 0;
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(34px, 4.5vw, 58px); }
h3 { font-size: clamp(22px, 2vw, 28px); letter-spacing: -0.01em; }

.hand {
  font-family: 'Caveat', cursive;
  font-weight: 600;
}

.eyebrow {
  font-family: 'Bricolage Grotesque', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
}

p { margin: 0 0 1em 0; text-wrap: pretty; }
a { color: inherit; }

/* ── Layout ── */

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.wrap-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}
section {
  padding: 96px 0;
  position: relative;
}
@media (max-width: 760px) {
  section { padding: 64px 0; }
  .wrap, .wrap-narrow { padding: 0 20px; }
}

/* ── Navigation ── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--paper) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--blue);
  text-decoration: none;
}
.brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  transition: color .2s;
}
.nav-links a:hover { color: var(--terracotta); }
@media (max-width: 760px) {
  .nav-links a:not(.btn) { display: none; }
}

.lang-toggle {
  background: transparent;
  border: 1px solid color-mix(in oklab, var(--ink) 18%, transparent);
  border-radius: 999px;
  padding: 6px 12px;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  letter-spacing: 0.06em;
}
.lang-toggle .on { color: var(--terracotta); }
.lang-sep { opacity: 0.4; }

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s;
}
.btn-primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 1px 0 rgba(0,0,0,.1), 0 8px 22px rgba(194,69,45,.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(0,0,0,.1), 0 12px 28px rgba(194,69,45,.45);
}
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid color-mix(in oklab, var(--blue) 25%, transparent);
}
.btn-ghost:hover { background: color-mix(in oklab, var(--blue) 8%, transparent); }
.btn-blue { background: var(--blue); color: white; }
.btn-blue:hover { background: var(--blue-deep); }

/* ─── Who We Help Page ─── */

.help-hero {
  padding: 96px 0 76px;
  background: var(--paper);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 7%, transparent);
}
.help-hero-inner {
  max-width: 900px;
}
.help-hero h1 {
  margin-top: 16px;
  margin-bottom: 28px;
}
.help-hero .lede {
  max-width: 760px;
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.section-kicker {
  margin-bottom: 34px;
}
.section-kicker h2 {
  margin-top: 12px;
}
.help-people-section,
.help-press-section {
  background: var(--paper);
}
.help-daily-section,
.help-cta-section {
  background: var(--paper-2);
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.person-card,
.daily-card,
.press-card {
  background: var(--bone);
  border: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.person-card:hover,
.daily-card:hover,
.press-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.person-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.person-card-body {
  padding: 22px 22px 24px;
}
.person-card h3 {
  margin-bottom: 4px;
  font-size: 26px;
}
.person-age {
  margin-bottom: 12px;
  color: var(--terracotta);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.person-card p,
.daily-card p,
.press-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}
.daily-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.daily-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}
.daily-card-body,
.press-card-body {
  padding: 24px 24px 28px;
}
.daily-card h3,
.press-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}
.press-card {
  max-width: 900px;
  margin: 0 auto;
}
.press-card .image-zoom-trigger {
  aspect-ratio: 3 / 2;
}
.press-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.help-cta {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.help-cta h2 {
  margin-bottom: 18px;
}
.help-cta p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.6;
}
@media (max-width: 960px) {
  .people-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .daily-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .help-hero {
    padding: 68px 0 56px;
  }
  .people-grid {
    grid-template-columns: 1fr;
  }
  .person-card-body,
  .daily-card-body,
  .press-card-body {
    padding: 20px;
  }
}

/* ── Hand-drawn accents ── */

.hand-underline {
  position: relative;
  display: inline-block;
}
h2 .hand-underline {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.12em;
  letter-spacing: 0;
}
.hand-underline::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -8px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M2,10 Q 50,2 100,7 T 198,6' stroke='%23c2452d' stroke-width='3.5' fill='none' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
}

.heart-svg {
  display: inline-block;
  vertical-align: -0.15em;
  width: 0.95em; height: 0.95em;
  color: var(--terracotta);
}

/* ── Utility ── */
.img-fit { width: 100%; height: 100%; object-fit: cover; display: block; }
.center { text-align: center; }
.muted { color: var(--ink-soft); opacity: 0.85; }
.divider {
  height: 1px;
  background: color-mix(in oklab, var(--ink) 12%, transparent);
  border: none;
  margin: 0;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--rot, 0deg)); }
}

/* ─── Hero ─── */

.hero { padding-top: 56px; padding-bottom: 80px; position: relative; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero-text .eyebrow { margin-bottom: 18px; }
.hero-text h1 { margin-bottom: 24px; }
.hero-text .lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-tagline { margin-top: 24px; font-size: 22px; color: var(--terracotta); line-height: 1.2; }

.hero-images {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  max-width: 560px;
  min-height: 430px;
  margin-left: auto;
}
@media (max-width: 960px) {
  .hero-images { margin: 0 auto; aspect-ratio: 1 / 0.9; max-width: 540px; min-height: 320px; }
}

.hero-img-main {
  position: absolute;
  inset: 0 18% 22% 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform: rotate(-1.5deg);
  background: var(--paper-2);
}
.hero-img-main img,
.hero-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-img-main::before {
  content: '';
  position: absolute;
  top: -12px; left: 30%;
  width: 110px; height: 26px;
  background: rgba(227,168,43,.55);
  transform: rotate(-3deg);
  z-index: 2;
}

.hero-img-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 18px;
  color: var(--blue);
}

.hero-img-small {
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--paper-2);
}
.hero-img-1 {
  width: 38%;
  aspect-ratio: 3 / 4;
  right: 0;
  top: 18%;
  transform: rotate(3deg);
  z-index: 3;
}
.hero-img-2 {
  width: 30%;
  aspect-ratio: 1 / 1;
  left: 12%;
  bottom: 0;
  transform: rotate(-4deg);
  z-index: 3;
}

.hero-drop {
  position: absolute;
  top: -2%;
  right: -4%;
  width: 70px;
  filter: drop-shadow(0 6px 12px rgba(26,58,92,.25));
  animation: float-slow 4s ease-in-out infinite;
  z-index: 4;
}

/* Donation card */
.donation-card {
  background: var(--bone);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid color-mix(in oklab, var(--ink) 6%, transparent);
}
.donation-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.donation-stat-c { text-align: center; }
.donation-stat-r { text-align: right; }
.donation-stat-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
}
.donation-stat-value.pct { color: var(--terracotta); }
.donation-stat-label {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.donation-bar-track {
  position: relative;
  height: 16px;
  background: color-mix(in oklab, var(--blue) 10%, transparent);
  border-radius: 999px;
  overflow: visible;
}
.donation-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), #2d6da3 60%, #4a9bd3);
  transition: width 1.6s cubic-bezier(.25,.8,.25,1);
  overflow: hidden;
  width: 0;
}
.donation-bar-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  animation: shine 2.5s ease-in-out infinite;
}
@keyframes shine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}
.donation-bar-drop {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
  transition: left 1.6s cubic-bezier(.25,.8,.25,1);
  left: -14px;
}
.donation-remaining {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-soft);
}
.donation-remaining strong {
  color: var(--terracotta);
  font-weight: 700;
}
.donation-updated {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.85;
}

/* ─── Story ─── */

.story-section {
  background: var(--bone);
  border-top: 1px solid color-mix(in oklab, var(--ink) 6%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 6%, transparent);
}
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) {
  .story-grid { grid-template-columns: 1fr; gap: 56px; }
}
.story-text h2 { margin-top: 14px; margin-bottom: 32px; }

.story-prose p {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--ink-soft);
}
.story-prose .story-highlight {
  font-size: 21px;
  color: var(--ink);
  border-left: 3px solid var(--terracotta);
  padding-left: 20px;
  margin: 28px 0;
  font-style: italic;
}
.story-quote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  line-height: 1.4;
  color: var(--blue);
  font-weight: 600;
  margin: 32px 0;
}
.story-signature {
  margin-top: 32px;
  font-size: 16px;
  color: var(--ink-soft);
}
.story-signature .hand { font-size: 28px; color: var(--terracotta); }

.story-images { position: sticky; top: 100px; }
.story-img-stack { position: relative; aspect-ratio: 1 / 1.1; }

.polaroid {
  position: absolute;
  background: white;
  padding: 12px 12px 50px;
  box-shadow: var(--shadow-card);
  margin: 0;
  overflow: hidden;
}
.polaroid img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
}
.polaroid .image-zoom-trigger {
  height: auto;
  aspect-ratio: 4 / 5;
}
.polaroid figcaption {
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
  text-align: center;
  font-size: 22px;
  color: var(--blue);
}
.polaroid-1 { top: 0; left: 5%; width: 70%; transform: rotate(-3deg); z-index: 2; }
.polaroid-2 { bottom: 0; right: 0; width: 60%; transform: rotate(4deg); z-index: 1; }

/* Werte */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
}
@media (max-width: 760px) {
  .value-grid { grid-template-columns: 1fr; gap: 16px; }
}
.value-card {
  padding: 32px 28px;
  background: white;
  border-radius: 20px;
  border: 1px solid color-mix(in oklab, var(--ink) 6%, transparent);
}
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 16px color-mix(in oklab, currentColor 20%, transparent);
}
.value-card h3 { margin-bottom: 8px; font-size: 22px; }
.value-card p { margin: 0; font-size: 16px; }

/* ─── Events ─── */

.events-head { margin-bottom: 56px; }
.events-head h2 { margin: 12px auto 16px; max-width: 760px; }
.events-head p { max-width: 580px; margin: 0 auto; font-size: 18px; }

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
@media (max-width: 960px) {
  .events-grid { grid-template-columns: 1fr; }
}
.event-card {
  background: var(--bone);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--ink) 6%, transparent);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.event-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--paper-2);
}
.image-zoom-trigger {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  font: inherit;
}
.image-zoom-trigger img { transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.image-zoom-trigger:hover img,
.image-zoom-trigger:focus-visible img,
.event-card:hover .image-zoom-trigger img {
  transform: scale(1.06) rotate(.4deg);
  filter: saturate(1.08) contrast(1.04);
}
.image-zoom-trigger:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--terracotta) 70%, white);
  outline-offset: -3px;
}
.image-zoom-cue {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.92);
  color: var(--blue);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  transform: translateY(8px) scale(.85);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
}
.image-zoom-trigger:hover .image-zoom-cue,
.image-zoom-trigger:focus-visible .image-zoom-cue,
.event-card:hover .image-zoom-cue {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.event-cake-overlay {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 80px; height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  background: var(--paper);
}
.event-upcoming {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.event-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.event-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.event-tag {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.event-card-blue .event-tag { background: color-mix(in oklab, var(--blue) 12%, transparent); color: var(--blue); }
.event-card-red .event-tag { background: color-mix(in oklab, var(--terracotta) 12%, transparent); color: var(--terracotta-deep); }
.event-card-gold .event-tag { background: color-mix(in oklab, var(--gold) 25%, transparent); color: #6b4d10; }
.event-date { color: var(--ink-soft); font-weight: 500; }
.event-card h3 { margin-bottom: 10px; }
.event-card p { font-size: 16px; }
.event-stat {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px dashed color-mix(in oklab, var(--ink) 15%, transparent);
}
.event-where {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}
.events-foot { margin-top: 56px; }
.events-foot .hand { font-size: 26px; color: var(--terracotta); margin-bottom: 16px; }

.planned-action {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto 56px;
  background: white;
  border: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.planned-action-media {
  position: relative;
  min-height: 300px;
  background: var(--paper-2);
}
.planned-action-media .image-zoom-trigger {
  position: absolute;
  inset: 0;
}
.planned-action-media img {
  object-position: center top;
}
.planned-action-media .image-zoom-trigger:hover img,
.planned-action-media .image-zoom-trigger:focus-visible img {
  transform: scale(1.07) rotate(-.35deg);
}
.poster-label {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--blue);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(16,40,69,.76);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.image-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.image-lightbox-inner {
  position: relative;
  max-width: min(920px, 92vw);
  max-height: 86vh;
  transform: translateY(18px) scale(.94);
  opacity: 0;
  transition: transform .34s cubic-bezier(.2,.8,.2,1), opacity .24s ease;
}
.image-lightbox.open .image-lightbox-inner {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.image-lightbox img {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,.36);
}
.image-lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--blue);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}
.image-lightbox-close:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.planned-action-body {
  padding: 30px 30px 32px 0;
  display: flex;
  flex-direction: column;
}
.planned-action .event-tag {
  background: color-mix(in oklab, var(--gold) 25%, transparent);
  color: #6b4d10;
}
.planned-action h3 {
  margin-bottom: 12px;
}
.planned-action p {
  font-size: 17px;
}
@media (max-width: 760px) {
  .planned-action {
    grid-template-columns: 1fr;
  }
  .planned-action-media {
    min-height: 360px;
  }
  .planned-action-body {
    padding: 24px;
  }
}

/* ─── Example Images ─── */

.example-section {
  background: var(--paper);
  padding: 96px 0;
  border-top: 1px solid color-mix(in oklab, var(--ink) 6%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 6%, transparent);
}
.example-head {
  max-width: 760px;
  margin: 0 auto 28px;
}
.example-head h2 { margin-top: 12px; }
.example-notice {
  max-width: 900px;
  margin: 0 auto 34px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--gold) 18%, white);
  border: 1px solid color-mix(in oklab, var(--gold) 35%, transparent);
  color: var(--blue);
}
.example-notice span {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
}
.example-notice p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}
.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.example-card {
  margin: 0;
  background: var(--bone);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  box-shadow: var(--shadow-soft);
}
.example-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-2);
}
.example-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.example-card figcaption {
  padding: 16px 18px 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 960px) {
  .example-grid { grid-template-columns: 1fr; }
}

/* ─── Updates Timeline ─── */

.updates-section {
  background: var(--bone);
  padding: 96px 0;
  border-top: 1px solid color-mix(in oklab, var(--ink) 6%, transparent);
}
.updates-head { margin-bottom: 48px; }
.updates-head h2 { margin: 12px 0; }
.updates-head p { max-width: 540px; margin: 0 auto; font-size: 18px; }

.updates-list {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.updates-list::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: color-mix(in oklab, var(--blue) 18%, transparent);
}
.update-row {
  display: grid;
  grid-template-columns: 32px 130px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  position: relative;
}
.update-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 4px solid var(--bone);
  box-shadow: 0 0 0 2px color-mix(in oklab, var(--terracotta) 40%, transparent);
  margin-top: 6px;
  margin-left: -1px;
  z-index: 2;
}
.update-date {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 8px;
}
.update-body h3 { font-size: 22px; margin-bottom: 6px; }
.update-body p { font-size: 16px; margin: 0; }
@media (max-width: 640px) {
  .update-row { grid-template-columns: 28px 1fr; }
  .update-date { grid-column: 2; padding-top: 0; margin-bottom: 4px; }
  .update-body { grid-column: 2; }
}

/* ─── About ─── */

.about-section {
  background: var(--paper);
  border-top: 1px solid color-mix(in oklab, var(--ink) 6%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 6%, transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-text h2 { margin-top: 12px; margin-bottom: 24px; }
.about-text p { font-size: 19px; line-height: 1.6; margin-bottom: 18px; }
.about-text p.muted { margin-bottom: 24px; color: var(--ink-soft); }
.about-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform: rotate(-1deg);
}
.about-img-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 22px;
  color: var(--blue);
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
}
.about-quote {
  background: var(--paper-2);
  border-left: 4px solid var(--terracotta);
  padding: 24px 28px;
  border-radius: 8px;
  margin: 0;
  line-height: 1.4;
}
.about-quote .hand { font-size: 28px; color: var(--terracotta); line-height: 1.3; }

/* ─── Transparenz ─── */

.transparency-section {
  background: var(--paper);
  padding: 96px 0;
  border-top: 1px solid color-mix(in oklab, var(--ink) 6%, transparent);
}
.transparency-head { margin-bottom: 42px; }
.transparency-head h2 { margin-top: 12px; }
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.transparency-card {
  background: var(--bone);
  border: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.transparency-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.transparency-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}
@media (max-width: 960px) {
  .transparency-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .transparency-grid { grid-template-columns: 1fr; }
}

/* ─── FAQ ─── */

.faq-head { margin-bottom: 48px; }
.faq-head h2 { margin-top: 12px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bone);
  border: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--terracotta); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--blue);
}
.faq-icon {
  font-family: monospace;
  font-size: 22px;
  color: var(--terracotta);
  width: 28px;
  text-align: center;
}
.faq-a {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* ─── Spenden CTA ─── */

.cta-section {
  background: var(--blue);
  color: white;
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.cta-section h2 { color: white; margin-top: 12px; margin-bottom: 24px; }
.cta-section .eyebrow { color: var(--gold); }
.cta-section .lede { font-size: 19px; opacity: 0.9; max-width: 480px; margin-bottom: 32px; }
.cta-title-em { color: var(--gold); font-weight: 600; }

.cta-waves {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 960px) {
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  opacity: 0.95;
}

.donate-form {
  background: white;
  color: var(--ink);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.donate-form-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.donate-presets {
  display: grid;
  grid-template-columns: repeat(5, 1fr) 1.4fr;
  gap: 8px;
  margin-bottom: 18px;
}
@media (max-width: 540px) {
  .donate-presets { grid-template-columns: repeat(3, 1fr); }
  .donate-custom { grid-column: span 3; }
}
.donate-preset {
  padding: 12px 6px;
  border: 1.5px solid color-mix(in oklab, var(--ink) 12%, transparent);
  border-radius: 12px;
  background: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  color: var(--ink);
  transition: all .15s;
}
.donate-preset:hover { border-color: var(--terracotta); }
.donate-preset.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: white;
}
.donate-custom {
  padding: 12px 14px;
  border: 1.5px solid color-mix(in oklab, var(--ink) 12%, transparent);
  border-radius: 12px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 15px;
  width: 100%;
  outline: none;
}
.donate-custom:focus { border-color: var(--terracotta); }

.donate-impact {
  background: color-mix(in oklab, var(--gold) 15%, transparent);
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
  margin-bottom: 20px;
  color: var(--blue);
}
.donate-impact .hand { font-size: 20px; color: var(--terracotta); }
.donate-impact strong { color: var(--terracotta); font-size: 17px; }

.donate-submit {
  width: 100%;
  justify-content: center;
  font-size: 17px;
  padding: 18px;
}
.donate-methods {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  justify-content: center;
}
.donate-method {
  text-decoration: none;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 1px dashed color-mix(in oklab, var(--blue) 30%, transparent);
}
.donate-method:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }

.floating-donate {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--terracotta);
  color: white;
  font-family: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(26,41,66,.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
}
.floating-donate:hover { background: var(--terracotta-deep); }
.floating-donate.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 640px) {
  .floating-donate {
    right: 20px;
    left: 20px;
    bottom: 16px;
    min-height: 42px;
    padding: 11px 15px;
    font-size: 14px;
    width: auto;
  }
}

/* ─── Legal Pages ─── */

.legal-page {
  min-height: 100vh;
  padding: 64px 0;
  background: var(--paper);
}
.legal-brand {
  margin-bottom: 28px;
}
.legal-card {
  background: var(--bone);
  border: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.legal-card h1 {
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 24px;
}
.legal-card h2 {
  font-size: 24px;
  margin: 28px 0 10px;
}
.legal-card p {
  color: var(--ink-soft);
  font-size: 17px;
}
.legal-card ul {
  color: var(--ink-soft);
  font-size: 17px;
  margin: 0 0 1em 1.2em;
  padding: 0;
}
.legal-card a {
  color: var(--blue);
  font-weight: 600;
}

/* ─── Footer ─── */

footer {
  background: var(--blue);
  color: color-mix(in oklab, white 80%, var(--blue));
  padding: 64px 0 32px;
  margin-top: 0;
}
footer h4 {
  color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 16px;
}
footer a { color: white; opacity: 0.85; text-decoration: none; }
footer a:hover { opacity: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: span 2; }
}
.footer-col-list { display: flex; flex-direction: column; gap: 8px; font-size: 15px; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-social svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  opacity: 0.7;
  margin-top: 20px;
}
.footer-bottom .hand { font-size: 18px; }
.footer-divider { margin: 40px 0 20px; opacity: 0.2; }

/* ── Mobile feinschliff ── */
@media (max-width: 640px) {
  h1 { font-size: 44px; }
  h2 { font-size: 30px; }
  .donation-stat-value { font-size: 22px; }
  .donate-form { padding: 22px; }
  .nav-inner { padding: 14px 18px; }
  .brand span { display: none; }
  .lang-toggle { padding: 5px 10px; font-size: 11px; }
}
