/* ============================================================
 * WURZELWERK e.V. — Stadtnatur-Verein Musterort
 * ============================================================
 * Style: Naturverbunden & Organisch — Erdtöne, Blob-Formen,
 *        Naturfotografie, weiche Übergänge
 */

/* -------------------- Tokens -------------------- */
:root {
  /* Erdtöne */
  --paper: #f4f0e6;
  --paper-deep: #ebe4d2;
  --paper-soft: #f9f5ec;
  --moss: #2d4a2b;
  --moss-soft: #3f6240;
  --moss-line: #5a7a52;
  --terra: #c66b3e;
  --terra-deep: #a25530;
  --ochre: #c89b3e;
  --sage: #a7b890;
  --bark: #5a3e25;
  --ink: #221a14;
  --muted: #6b5d4d;
  --line: #d8cdb6;

  /* Typo */
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', 'Helvetica Neue', system-ui, -apple-system, Segoe UI, sans-serif;

  /* Layout */
  --nav-h: 78px;
  --container: 1240px;
  --radius: 18px;
  --radius-blob: 36% 64% 51% 49% / 38% 47% 53% 62%;
  --radius-blob-2: 60% 40% 50% 50% / 45% 55% 45% 55%;

    --demo-banner-bg: #2d4a2b;
    --demo-banner-fg: #f4f0e6;
    --demo-banner-accent: #c66b3e;
}

/* -------------------- Reset / Base -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--terra); color: var(--paper); }

/* -------------------- Typo -------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
  color: var(--moss);
  letter-spacing: -0.012em;
  line-height: 1.07;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.1rem; }
em {
  font-style: italic;
  color: var(--terra);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
p { margin: 0 0 1em; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 18px;
}
.kicker::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--terra);
  border-radius: 2px;
}
.kicker--paper { color: var(--paper); }
.kicker--paper::before { background: var(--paper); }
.kicker--ochre { color: var(--ochre); }
.kicker--ochre::before { background: var(--ochre); }

/* -------------------- Layout -------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section--paper { background: var(--paper); }
.section--cream { background: var(--paper-soft); }
.section--moss {
  background: var(--moss);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.section--moss h1, .section--moss h2, .section--moss h3 { color: var(--paper); }
.section--moss em { color: var(--ochre); }
.section--terra {
  background: var(--terra);
  color: var(--paper-soft);
}
.section--terra h1, .section--terra h2, .section--terra h3 { color: var(--paper); }
.section--terra em { color: var(--moss); }
.section__head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.section__head p { color: var(--muted); font-size: 1.1rem; max-width: 560px; margin: 16px auto 0; }
.section--moss .section__head p,
.section--terra .section__head p {
  color: rgba(244, 240, 230, 0.82);
}

/* Blob decoration */
.blob {
  position: absolute;
  border-radius: var(--radius-blob);
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
}
.blob--ochre { background: var(--ochre); opacity: 0.22; }
.blob--sage { background: var(--sage); opacity: 0.55; }
.blob--terra { background: var(--terra); opacity: 0.18; }

/* -------------------- Navigation -------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(244, 240, 230, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--moss);
}
.nav__brand-mark {
  width: 42px; height: 42px;
  border-radius: var(--radius-blob-2);
  background: var(--moss);
  color: var(--ochre);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: border-radius 0.6s ease;
}
.nav__brand:hover .nav__brand-mark { border-radius: 50%; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.04; }
.nav__brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--moss);
  letter-spacing: -0.01em;
}
.nav__brand-sub {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bark);
  font-weight: 600;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--moss);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--terra); }
.nav__links a[aria-current="page"] {
  color: var(--terra);
}
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--terra);
  border-radius: 2px;
}
.nav__cta {
  background: var(--terra);
  color: var(--paper);
  padding: 11px 22px;
  border-radius: var(--radius-blob-2);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, transform 0.3s ease, border-radius 0.6s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav__cta:hover { background: var(--terra-deep); border-radius: 50%; transform: translateY(-1px); padding: 11px 26px; }
.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 60;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: var(--moss);
  transition: transform 0.25s ease, opacity 0.2s ease;
  display: block;
  border-radius: 2px;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: var(--moss);
  color: var(--paper);
  border: 1.5px solid var(--moss);
  border-radius: var(--radius-blob-2);
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn:hover {
  background: var(--terra);
  border-color: var(--terra);
  border-radius: 50%;
  transform: translateY(-2px);
  padding: 16px 36px;
}
.btn--terra {
  background: var(--terra);
  border-color: var(--terra);
}
.btn--terra:hover {
  background: var(--moss);
  border-color: var(--moss);
}
.btn--ghost {
  background: transparent;
  color: var(--moss);
  border: 1.5px solid var(--moss);
}
.btn--ghost:hover { background: var(--moss); color: var(--paper); }
.btn--paper {
  background: var(--paper);
  color: var(--moss);
  border-color: var(--paper);
}
.btn--paper:hover { background: var(--ochre); border-color: var(--ochre); color: var(--moss); }
.btn--paper-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn--paper-ghost:hover { background: var(--paper); color: var(--moss); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* -------------------- Hero -------------------- */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) 0 clamp(40px, 6vw, 80px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px; left: -120px;
  width: 540px; height: 540px;
  background: var(--sage);
  border-radius: var(--radius-blob);
  opacity: 0.45;
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
  animation: blob-drift 28s ease-in-out infinite;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -160px; right: -120px;
  width: 480px; height: 480px;
  background: var(--ochre);
  border-radius: var(--radius-blob-2);
  opacity: 0.25;
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
  animation: blob-drift 32s ease-in-out infinite reverse;
}
@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.06); }
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.hero__copy { padding: 20px 0; }
.hero__copy h1 {
  margin-bottom: 28px;
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  color: var(--bark);
  max-width: 480px;
  margin: 0 0 38px;
  line-height: 1.55;
}
.hero__media {
  position: relative;
  margin: 0;
}
.hero__media-wrap {
  position: relative;
  border-radius: var(--radius-blob);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  transition: border-radius 0.8s ease;
}
.hero__media-wrap:hover { border-radius: var(--radius-blob-2); }
.hero__media-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__stat {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--terra);
  color: var(--paper);
  padding: 22px 26px;
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(34, 26, 20, 0.18);
  display: grid;
  gap: 4px;
  z-index: 2;
  max-width: 220px;
}
.hero__stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 600;
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
}
.hero__stat span {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
}
.hero__stat-sub {
  position: absolute;
  top: -22px; right: -10px;
  background: var(--paper);
  color: var(--moss);
  padding: 12px 18px;
  border-radius: var(--radius-blob-2);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  border: 1.5px dashed var(--moss);
  transform: rotate(-3deg);
  z-index: 2;
}

/* Quick stats below hero */
.metrics {
  background: var(--paper-deep);
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metrics__list {
  list-style: none;
  margin: 0; padding: 0 28px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 18px 36px;
  max-width: var(--container);
  margin: 0 auto;
}
.metrics__list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--sans);
  color: var(--bark);
  font-size: 0.96rem;
}
.metrics__list strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--moss);
  font-variation-settings: "SOFT" 80, "WONK" 0, "opsz" 144;
}

/* -------------------- Mission strip -------------------- */
.mission {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.mission__lead {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  color: var(--moss);
  font-weight: 500;
  margin: 0 0 32px;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
}
.mission__lead em {
  display: inline;
  color: var(--terra);
  font-style: italic;
}

/* -------------------- Action cards (Mitmachen) -------------------- */
.actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.action {
  background: var(--paper-soft);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.action:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(34, 26, 20, 0.08);
}
.action__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.action__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0, 0.2, 1);
}
.action:hover .action__media img { transform: scale(1.06); }
.action__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--paper);
  color: var(--moss);
  padding: 4px 12px;
  border-radius: var(--radius-blob-2);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.action__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.action__title {
  font-size: 1.55rem;
  margin: 0 0 12px;
  color: var(--moss);
}
.action__desc {
  color: var(--muted);
  margin: 0 0 20px;
  font-size: 0.96rem;
  line-height: 1.6;
  flex-grow: 1;
}
.action__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--bark);
  font-weight: 600;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: auto;
}
.action__meta a {
  color: var(--terra);
  text-decoration: none;
  font-weight: 700;
}
.action__meta a:hover { text-decoration: underline; }

/* -------------------- Donation tiers -------------------- */
.donate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.donate-tier {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px 24px 26px;
  border: 1.5px solid var(--line);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.donate-tier:hover {
  transform: translateY(-3px);
  border-color: var(--terra);
}
.donate-tier__amount {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--moss);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 144;
}
.donate-tier__amount em {
  font-style: normal;
  color: var(--terra);
}
.donate-tier__what {
  font-family: var(--sans);
  font-size: 0.96rem;
  color: var(--bark);
  margin: 0;
  line-height: 1.5;
}
.donate-tier--featured {
  background: var(--moss);
  color: var(--paper);
  border-color: var(--moss);
  transform: translateY(-8px);
}
.donate-tier--featured:hover { transform: translateY(-12px); }
.donate-tier--featured .donate-tier__amount { color: var(--ochre); }
.donate-tier--featured .donate-tier__amount em { color: var(--paper); }
.donate-tier--featured .donate-tier__what { color: rgba(244, 240, 230, 0.85); }
.donate-tier__featured-tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--terra);
  color: var(--paper);
  padding: 4px 14px;
  border-radius: var(--radius-blob-2);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.donate-form {
  background: var(--paper-soft);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 48px);
  border: 1px solid var(--line);
  max-width: 760px;
  margin: 0 auto;
}
.donate-form h3 { margin-bottom: 8px; }
.donate-form__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 20px;
}
.donate-form__choice {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-blob-2);
  padding: 14px 22px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--moss);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.donate-form__choice:hover { border-color: var(--terra); }
.donate-form__choice.is-active {
  background: var(--moss);
  color: var(--paper);
  border-color: var(--moss);
}
.donate-form__custom {
  width: 200px;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-blob-2);
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--paper);
  color: var(--ink);
}
.donate-form__period {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.donate-form__period button {
  flex: 1;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--moss);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.donate-form__period button.is-active {
  background: var(--terra);
  color: var(--paper);
  border-color: var(--terra);
}
.donate-form__cta {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}
.donate-form__note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.86rem;
  color: var(--muted);
}

/* -------------------- About-Split -------------------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.about-split__media {
  border-radius: var(--radius-blob);
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 5;
  transition: border-radius 0.8s ease;
}
.about-split__media:hover { border-radius: var(--radius-blob-2); }
.about-split__media img { width: 100%; height: 100%; object-fit: cover; }
.about-split__body p { color: var(--bark); margin: 0 0 16px; line-height: 1.7; }
.about-split__body h2 { margin-bottom: 24px; }
.about-split__body .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--moss);
  margin-top: 32px;
  display: block;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.about-split__body .signature-sub {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

/* -------------------- Team grid -------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.team-card { text-align: center; }
.team-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-blob);
  overflow: hidden;
  margin: 0 0 22px;
  transition: border-radius 0.8s ease;
}
.team-card:hover .team-card__media { border-radius: var(--radius-blob-2); }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 {
  font-size: 1.55rem;
  margin: 0 0 4px;
  font-weight: 500;
}
.team-card__role {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 700;
  margin: 0 0 12px;
}
.team-card__bio {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

/* -------------------- Project cards -------------------- */
.projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.project {
  background: var(--paper-soft);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.project__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}
.project__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.project:hover .project__media img { transform: scale(1.04); }
.project__body {
  padding: 32px 32px 36px;
}
.project__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terra);
}
.project__meta::before {
  content: "";
  width: 14px; height: 1px;
  background: var(--terra);
}
.project__title { margin: 0 0 12px; }
.project__desc { color: var(--muted); margin: 0 0 20px; line-height: 1.65; }
.project__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
  margin-top: 6px;
}
.project__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.project__stat-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--moss);
  font-weight: 600;
  line-height: 1;
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 144;
}
.project__stat-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--bark);
  letter-spacing: 0.06em;
}

/* -------------------- News list -------------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.news-item:hover { transform: translateY(-4px); }
.news-item__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.news-item__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.news-item:hover .news-item__media img { transform: scale(1.05); }
.news-item__date {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 8px;
}
.news-item h3 {
  font-size: 1.35rem;
  margin: 0 0 10px;
  color: var(--moss);
  transition: color 0.2s ease;
}
.news-item:hover h3 { color: var(--terra); }
.news-item p { color: var(--muted); font-size: 0.96rem; margin: 0; line-height: 1.55; }

/* -------------------- Membership tiers -------------------- */
.member-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.member-tier {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid var(--line);
  display: flex;
  flex-direction: column;
}
.member-tier h3 {
  font-size: 1.3rem;
  margin: 0 0 6px;
}
.member-tier__price {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--terra);
  margin: 12px 0 8px;
  font-variation-settings: "SOFT" 60, "WONK" 1, "opsz" 144;
}
.member-tier__price small {
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 500;
}
.member-tier ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 20px;
  font-size: 0.92rem;
  color: var(--bark);
  flex-grow: 1;
}
.member-tier ul li {
  padding: 6px 0 6px 22px;
  position: relative;
}
.member-tier ul li::before {
  content: "•";
  position: absolute;
  left: 4px; top: 6px;
  color: var(--terra);
  font-weight: 700;
}

/* -------------------- Form -------------------- */
.form {
  background: var(--paper-soft);
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--line);
  max-width: 760px;
  margin: 0 auto;
}
.form__row { display: grid; gap: 20px; margin-bottom: 20px; }
.form__row--two { grid-template-columns: 1fr 1fr; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 700;
}
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--terra);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--muted);
  margin: 12px 0 24px;
}
.form__consent input { margin-top: 4px; }
.form__submit { width: 100%; justify-content: center; }
.form__radios {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.form__radios label {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-blob-2);
  padding: 10px 18px;
  cursor: pointer;
  letter-spacing: normal;
  font-size: 0.94rem;
  text-transform: none;
  font-weight: 600;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.form__radios input { accent-color: var(--terra); }

/* -------------------- FAQ -------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 56px 24px 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--moss);
  position: relative;
  font-weight: 500;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--terra);
  font-weight: 300;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer {
  color: var(--muted);
  padding: 0 0 24px;
  font-size: 1rem;
  line-height: 1.65;
}

/* -------------------- Big CTA -------------------- */
.big-cta {
  background: var(--moss);
  color: var(--paper);
  border-radius: var(--radius);
  padding: clamp(48px, 6vw, 88px) clamp(28px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: var(--ochre);
  border-radius: var(--radius-blob);
  opacity: 0.2;
  pointer-events: none;
  filter: blur(2px);
}
.big-cta h2 { color: var(--paper); max-width: 540px; position: relative; z-index: 1; }
.big-cta em { color: var(--ochre); }
.big-cta p { color: rgba(244, 240, 230, 0.82); max-width: 540px; position: relative; z-index: 1; }
.big-cta .btn-row { position: relative; z-index: 1; }

/* -------------------- Transparenz / numbers strip -------------------- */
.transparency {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.transparency__card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.transparency__num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--terra);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
  font-variation-settings: "SOFT" 70, "WONK" 1, "opsz" 144;
}
.transparency__card h3 { margin-bottom: 12px; font-size: 1.35rem; }
.transparency__card p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* -------------------- Map placeholder -------------------- */
.map {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-deep);
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
}
.map__static {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 35% 50%, var(--sage) 0%, transparent 35%),
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(90, 62, 37, 0.06) 22px 23px),
    repeating-linear-gradient(-45deg, transparent 0 22px, rgba(45, 74, 43, 0.06) 22px 23px),
    var(--paper-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map__pin {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--terra);
  border: 4px solid var(--paper);
  box-shadow: 0 0 0 2px var(--terra), 0 8px 22px rgba(0,0,0,0.18);
  position: relative;
}
.map__pin::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid var(--terra);
  border-radius: 50%;
  opacity: 0.4;
  animation: pinPulse 2.4s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.6); opacity: 0; }
}

/* -------------------- Contact info -------------------- */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.contact-info__card {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}
.contact-info__icon {
  width: 52px; height: 52px;
  margin: 0 auto 16px;
  background: var(--ochre);
  border-radius: var(--radius-blob-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss);
  transition: border-radius 0.6s ease;
}
.contact-info__card:hover .contact-info__icon { border-radius: 50%; }
.contact-info__icon svg { width: 22px; height: 22px; }
.contact-info__label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 700;
  margin: 0 0 6px;
}
.contact-info__value {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--moss);
  margin: 0;
}
.contact-info__value a { text-decoration: none; }
.contact-info__value a:hover { color: var(--terra); }
.contact-info__sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

/* -------------------- Hours table (Sprechstunde) -------------------- */
.hours { display: grid; gap: 8px; font-family: var(--sans); }
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.96rem;
}
.hours__row:last-child { border-bottom: 0; }
.hours__row--closed { color: var(--muted); font-style: italic; }
.hours__day { color: var(--moss); font-weight: 500; }

/* -------------------- Footer -------------------- */
.footer {
  background: var(--moss);
  color: rgba(244, 240, 230, 0.82);
  padding: 80px 0 32px;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -100px; left: -100px;
  width: 380px; height: 380px;
  background: var(--moss-soft);
  border-radius: var(--radius-blob);
  opacity: 0.5;
  filter: blur(2px);
  pointer-events: none;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--paper);
  text-decoration: none;
}
.footer__brand-mark {
  width: 42px; height: 42px;
  border-radius: var(--radius-blob-2);
  background: var(--ochre);
  color: var(--moss);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
}
.footer__brand-name {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--paper);
  font-weight: 600;
}
.footer__about { font-size: 0.94rem; line-height: 1.65; max-width: 320px; margin-bottom: 18px; }
.footer__col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 18px;
}
.footer__col a, .footer__col p {
  display: block;
  text-decoration: none;
  color: rgba(244, 240, 230, 0.82);
  font-size: 0.94rem;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--ochre); }
.footer__seal {
  background: var(--paper);
  color: var(--moss);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-top: 12px;
}
.footer__seal-icon {
  width: 32px; height: 32px;
  background: var(--terra);
  color: var(--paper);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.96rem;
  font-weight: 700;
}
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(244, 240, 230, 0.12);
  padding-top: 24px;
  font-size: 0.84rem;
  color: rgba(244, 240, 230, 0.6);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer__legal a {
  color: rgba(244, 240, 230, 0.7);
  text-decoration: none;
  margin-left: 18px;
}
.footer__legal a:hover { color: var(--ochre); }

/* -------------------- Reveal animation -------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* -------------------- Page hero (subpages) -------------------- */
.page-hero {
  padding: clamp(72px, 8vw, 120px) 0 clamp(48px, 6vw, 80px);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(167, 184, 144, 0.45) 0%, transparent 60%),
    var(--paper);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -80px;
  width: 320px; height: 320px;
  background: var(--ochre);
  border-radius: var(--radius-blob);
  opacity: 0.2;
  filter: blur(2px);
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__crumbs {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
  font-weight: 700;
}
.page-hero__crumbs a { color: var(--terra); text-decoration: none; }
.page-hero__crumbs a:hover { color: var(--moss); }
.page-hero h1 { font-weight: 500; max-width: 920px; margin: 0 auto; }
.page-hero p { color: var(--bark); max-width: 680px; margin: 24px auto 0; font-size: 1.08rem; }

/* -------------------- Cookie banner -------------------- */
.cookie {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 460px;
  background: var(--moss);
  color: var(--paper);
  padding: 24px 26px;
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(34, 26, 20, 0.35);
  z-index: 200;
  display: none;
}
.cookie.is-visible { display: block; }
.cookie h4 {
  font-family: var(--serif);
  color: var(--paper);
  font-size: 1.4rem;
  margin: 0 0 8px;
  font-weight: 500;
}
.cookie p {
  font-size: 0.92rem;
  margin: 0 0 18px;
  color: rgba(244, 240, 230, 0.82);
}
.cookie__row { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn { padding: 10px 18px; font-size: 0.84rem; }

/* -------------------- Responsive -------------------- */
@media (max-width: 960px) {
  :root { --nav-h: 70px; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 32px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav__links a { font-size: 1.4rem; font-family: var(--serif); }
  body.menu-open .nav__links { transform: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media-wrap { aspect-ratio: 4 / 3; max-height: 480px; }
  .actions { grid-template-columns: 1fr; }
  .donate-grid { grid-template-columns: 1fr 1fr; }
  .donate-tier--featured { transform: none; }
  .donate-tier--featured:hover { transform: translateY(-4px); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .projects { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form__row--two { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .transparency { grid-template-columns: 1fr; }
  .member-tiers { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .team-grid { grid-template-columns: 1fr; }
  .donate-grid { grid-template-columns: 1fr; }
  .member-tiers { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .metrics__list { flex-direction: column; align-items: flex-start; }
}
