/* =========================================================================
   JOLLY GOOD FARM — Design System
   "Quiet Farm Editorial": warm, natürlich, erwachsen. Serif + Sans,
   Papier-Textur, organische Formen, ruhige Bewegung.
   ========================================================================= */

:root {
  /* Farben */
  --ink: #232c25;
  --ink-soft: #3a443b;
  --muted: #6c7568;
  --meadow: #3f6b48;
  --meadow-deep: #2c4d33;
  --hay: #d8a24a;
  --hay-deep: #b9842f;
  --sky: #8fb9d1;
  --clay: #b4623f;
  --cream: #f6f1e6;
  --paper: #fdfaf2;
  --paper-2: #fbf5e9;
  --white: #ffffff;
  --line: #e3dccb;
  --line-strong: #d3c9b3;
  --soft: rgba(63, 107, 72, 0.10);
  --soft-2: rgba(63, 107, 72, 0.06);

  /* Schrift */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Maße */
  --container: 1180px;
  --container-wide: 1320px;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 26px;
  --r-pill: 999px;
  --shadow-sm: 0 8px 24px rgba(35, 44, 37, 0.07);
  --shadow: 0 22px 50px rgba(35, 44, 37, 0.11);
  --shadow-lg: 0 36px 80px rgba(35, 44, 37, 0.16);
  --ring: 0 0 0 3px rgba(63, 107, 72, 0.28);
}

/* ---------- Reset / Base ---------- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; }

::selection { background: rgba(216, 162, 74, 0.35); }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 6px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  font-optical-sizing: auto;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
  font-variation-settings: "SOFT" 28, "WONK" 0;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Papier-Textur ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.container.wide { width: min(var(--container-wide), calc(100% - 48px)); }

main { position: relative; z-index: 2; }

.section {
  position: relative;
  padding: clamp(64px, 9vw, 124px) 0;
}
.section.tight { padding: clamp(48px, 6vw, 84px) 0; }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--meadow);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--hay);
}
.eyebrow.center::before { display: none; }
.eyebrow.on-dark { color: var(--hay); }

h1 { font-size: clamp(40px, 6.4vw, 78px); font-weight: 540; }
h2 { font-size: clamp(30px, 4.4vw, 52px); }
h3 { font-size: clamp(20px, 2.2vw, 25px); }

.lead {
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
}
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 24px;
  border: 1.5px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-weight: 650;
  font-size: 15.5px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn.primary { background: var(--meadow); color: var(--white); box-shadow: 0 12px 26px rgba(44, 77, 51, 0.28); }
.btn.primary:hover { background: var(--meadow-deep); box-shadow: 0 16px 34px rgba(44, 77, 51, 0.34); }

.btn.gold { background: var(--hay); color: #2b1f08; box-shadow: 0 12px 26px rgba(185, 132, 47, 0.32); }
.btn.gold:hover { background: #e6ae54; }

.btn.ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn.ghost:hover { border-color: var(--meadow); background: var(--soft-2); }

.btn.on-dark.ghost { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn.on-dark.ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.btn.lg { min-height: 58px; padding: 0 30px; font-size: 16.5px; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 650;
  color: var(--meadow-deep);
  border-bottom: 2px solid rgba(63,107,72,0.25);
  padding-bottom: 2px;
  transition: border-color 0.18s ease, gap 0.18s ease;
}
.textlink:hover { border-color: var(--meadow); gap: 11px; }
.textlink svg { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 242, 0.82);
  backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(35,44,37,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--meadow);
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-text { display: grid; line-height: 1; }
.brand-text strong {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.18em; color: var(--muted);
}
.brand-text em {
  font-family: var(--font-display);
  font-style: normal; font-weight: 600;
  font-size: 21px; letter-spacing: -0.01em;
  color: var(--ink);
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 9px 14px;
  border-radius: var(--r-pill);
  font-size: 15px; font-weight: 550;
  color: var(--ink-soft);
  transition: background 0.18s ease, color 0.18s ease;
}
.main-nav a:hover { background: var(--soft-2); color: var(--ink); }
.main-nav a.active { color: var(--meadow-deep); background: var(--soft); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
  z-index: -2;
  transform: scale(1.04);
}
.hero-veil {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(25,32,28,0.55) 0%, rgba(25,32,28,0.05) 30%, rgba(25,32,28,0.18) 60%, rgba(20,26,22,0.92) 100%),
    linear-gradient(80deg, rgba(20,26,22,0.6), rgba(20,26,22,0) 65%);
}
.hero-inner {
  position: relative;
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
  padding: 0 0 clamp(48px, 8vh, 90px);
  color: var(--white);
}
.hero h1 { color: var(--white); max-width: 16ch; margin-bottom: 22px; }
.hero .eyebrow { color: #ffd684; }
.hero .eyebrow::before { background: #ffd684; }
.hero-lead {
  max-width: 56ch;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta {
  margin-top: 34px;
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  font-size: 14px; color: rgba(255,255,255,0.78);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 17px; height: 17px; color: #ffd684; }

.scroll-cue {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: 40px;
  z-index: 2;
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue i {
  writing-mode: horizontal-tb;
  width: 1px; height: 42px;
  background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0));
  animation: cuePulse 2.2s ease-in-out infinite;
}
@keyframes cuePulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Value strip ---------- */
.value-strip { background: var(--ink); color: var(--white); position: relative; z-index: 2; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.value-grid > div {
  padding: 30px clamp(16px, 2.4vw, 30px);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.value-grid > div:last-child { border-right: 0; }
.value-grid small {
  display: block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 9px;
}
.value-grid strong {
  font-family: var(--font-display);
  font-weight: 540; font-size: clamp(19px, 2vw, 24px);
  line-height: 1.12; color: var(--white);
}

/* ---------- Section backgrounds ---------- */
.bg-paper { background: var(--paper); }
.bg-cream { background: var(--cream); }
.bg-meadow { background: var(--meadow-deep); color: var(--white); }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-paper2 { background: var(--paper-2); }

.bg-meadow h2, .bg-ink h2, .bg-meadow h3, .bg-ink h3 { color: var(--white); }
.bg-meadow .lead, .bg-ink .lead { color: rgba(255,255,255,0.84); }
.bg-meadow .muted, .bg-ink .muted { color: rgba(255,255,255,0.7); }

/* Organische Trenner */
.wave-top, .wave-bottom { display: block; width: 100%; height: 56px; }
.wave-top { margin-bottom: -1px; }
.wave-bottom { margin-top: -1px; }

/* ---------- Intro / Manifest ---------- */
.manifest {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
}
.manifest-lead {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.015em;
  max-width: 18ch;
}
.manifest-lead b { color: var(--meadow); font-weight: 560; }
.manifest-body { columns: 2; column-gap: 48px; max-width: 880px; }
.manifest-body p { color: var(--ink-soft); break-inside: avoid; }
.pull {
  margin: 8px 0 0;
  padding: 26px 30px;
  border-left: 3px solid var(--hay);
  background: var(--paper-2);
  border-radius: 0 var(--r) var(--r) 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 500;
  line-height: 1.32;
  color: var(--ink);
}

/* ---------- Feature grid (Was entsteht) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-strong); }

.feature-card { padding: 28px; display: flex; flex-direction: column; min-height: 270px; }
.feature-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: var(--soft);
  color: var(--meadow-deep);
  margin-bottom: 22px;
}
.feature-ico svg { width: 30px; height: 30px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--muted); font-size: 15.5px; margin-top: auto; }

/* ---------- Contrast (über das System hinaus) ---------- */
.contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contrast-col {
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px);
}
.contrast-col.old {
  background: var(--paper-2);
  border: 1px dashed var(--line-strong);
}
.contrast-col.new {
  background: var(--meadow-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}
.contrast-col h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-family: var(--font-sans); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 22px;
}
.contrast-col.old h3 { color: var(--muted); }
.contrast-col.new h3 { color: #ffd684; }
.contrast-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.contrast-col li {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px;
  align-items: start;
  font-size: 16px; line-height: 1.45;
}
.contrast-col.old li { color: var(--ink-soft); }
.contrast-col.new li { color: rgba(255,255,255,0.92); }
.contrast-col li svg { width: 20px; height: 20px; margin-top: 1px; }
.contrast-col.old li svg { color: var(--clay); }
.contrast-col.new li svg { color: #9fd6a6; }

/* ---------- Pädagogik-Modell (Teaser) ---------- */
.model-stack { display: grid; gap: 14px; max-width: 860px; margin: 0 auto 40px; }
.model-layer {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 26px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.model-layer .lv {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 560;
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: var(--soft); color: var(--meadow-deep);
}
.model-layer h3 { margin-bottom: 4px; }
.model-layer p { color: var(--muted); margin: 0; font-size: 15.5px; }
.model-layer.l1 { border-bottom: 3px solid var(--meadow); }
.model-layer.l2 { border-bottom: 3px solid var(--hay); }
.model-layer.l3 { border-bottom: 3px solid var(--sky); }

.ways-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.way {
  padding: 24px 20px;
  border-radius: var(--r);
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
}
.way-ico {
  width: 50px; height: 50px; margin: 0 auto 16px;
  border-radius: 14px; display: grid; place-items: center;
  background: var(--white); border: 1px solid var(--line);
  color: var(--meadow-deep);
}
.way-ico svg { width: 28px; height: 28px; }
.way h4 { font-family: var(--font-display); font-weight: 560; font-size: 18px; margin: 0 0 7px; }
.way p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.45; }

/* ---------- Tag auf der Farm ---------- */
.day-timeline {
  display: grid;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
}
.day-step {
  position: relative;
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.day-step:last-child { border-bottom: 1px solid var(--line); }
.day-time {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 560; color: var(--meadow-deep);
  display: flex; align-items: baseline; gap: 10px;
}
.day-time .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--hay); flex-shrink: 0;
  align-self: center;
}
.day-step h4 { font-family: var(--font-display); font-weight: 560; font-size: 20px; margin: 0 0 5px; }
.day-step p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* ---------- Tiere ---------- */
.animal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.animal {
  padding: 30px 26px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.animal:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.animal-art {
  width: 92px; height: 92px;
  margin-bottom: 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--paper-2);
}
.animal-art svg { width: 58px; height: 58px; color: var(--ink); }
.animal:nth-child(1) .animal-art { background: rgba(143,185,209,0.18); }
.animal:nth-child(2) .animal-art { background: rgba(216,162,74,0.16); }
.animal:nth-child(3) .animal-art { background: rgba(180,98,63,0.14); }
.animal:nth-child(4) .animal-art { background: var(--soft); }
.animal h3 { font-size: 21px; margin-bottom: 8px; }
.animal p { color: var(--muted); font-size: 15px; margin: 0; }
.animal .tag {
  display: inline-block; margin-top: 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--meadow-deep);
  background: var(--soft); padding: 5px 11px; border-radius: var(--r-pill);
}

/* ---------- Duotone Foto-Band ---------- */
.photo-band {
  position: relative;
  min-height: 460px;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.photo-band img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
  z-index: -2;
}
.photo-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(28,49,33,0.92), rgba(28,49,33,0.55) 70%, rgba(28,49,33,0.3));
  mix-blend-mode: multiply;
}
.photo-band .quote {
  color: var(--white);
  max-width: 24ch;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.16;
}
.photo-band .quote span { color: #ffd684; }
.photo-band cite {
  display: block; margin-top: 18px; font-style: normal;
  font-family: var(--font-sans); font-size: 14px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
}

/* ---------- Funding ---------- */
.fund-head { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; margin-bottom: 40px; }
.fund-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fund-card {
  display: flex; flex-direction: column;
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.fund-card.featured { border-color: var(--hay); box-shadow: 0 24px 54px rgba(185,132,47,0.18); }
.fund-card .stage {
  align-self: flex-start;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--meadow-deep); background: var(--soft);
  padding: 6px 12px; border-radius: var(--r-pill); margin-bottom: 16px;
}
.fund-card.featured .stage { color: var(--hay-deep); background: rgba(216,162,74,0.16); }
.fund-card h3 { font-size: 23px; margin-bottom: 10px; }
.fund-card p { color: var(--muted); font-size: 15px; flex-grow: 1; }
.fund-progress { margin-top: 22px; }
.bar { height: 12px; border-radius: var(--r-pill); background: #eadfca; overflow: hidden; }
.bar span {
  display: block; height: 100%; width: 0; border-radius: inherit;
  background: linear-gradient(90deg, var(--meadow), var(--hay));
  transition: width 1.1s cubic-bezier(0.22,1,0.36,1);
}
.fund-numbers {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 12px; gap: 12px;
}
.fund-numbers .now { font-family: var(--font-display); font-size: 21px; font-weight: 560; color: var(--ink); }
.fund-numbers .goal { font-size: 13.5px; color: var(--muted); }

.pledge {
  margin-top: 18px;
  display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center;
  padding: 26px 30px;
  border-radius: var(--r-lg);
  background: var(--paper-2);
  border: 1px dashed var(--line-strong);
}
.pledge h3 { margin-bottom: 6px; font-size: 22px; }
.pledge p { margin: 0; color: var(--muted); font-size: 15px; }
.pledge-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.pledge-btns button {
  min-height: 48px; padding: 0 18px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line-strong);
  background: var(--white);
  font-weight: 650; cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
.pledge-btns button:hover { border-color: var(--hay); background: #fff; transform: translateY(-2px); }
.note { font-size: 13.5px; color: var(--muted); margin-top: 18px; }
.note svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: 4px; color: var(--meadow); }

/* ---------- Erste Öffnung / 5 Kinder ---------- */
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.first-card {
  padding: clamp(30px, 4vw, 46px);
  border-radius: var(--r-lg);
  background: var(--meadow-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}
.first-card .big {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 104px);
  font-weight: 540; line-height: 0.9; color: #ffd684;
  margin-bottom: 8px;
}
.first-card h2 { color: var(--white); }
.first-card p { color: rgba(255,255,255,0.85); }
.rhythm { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rhythm-item { padding: 22px; border-radius: var(--r); background: var(--white); border: 1px solid var(--line); }
.rhythm-item .n {
  width: 36px; height: 36px; border-radius: 10px; margin-bottom: 16px;
  display: grid; place-items: center;
  background: var(--soft); color: var(--meadow-deep); font-weight: 800; font-size: 15px;
}
.rhythm-item strong { display: block; font-family: var(--font-display); font-weight: 560; font-size: 18px; margin-bottom: 5px; }
.rhythm-item p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ---------- Familie ---------- */
.family { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.family-aside {
  padding: 32px;
  border-radius: var(--r-lg);
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.family-aside small {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--clay); display: block; margin-bottom: 14px;
}
.family-aside .q {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px); font-weight: 500; line-height: 1.28;
}
.family-aside ol { margin: 16px 0 0; padding-left: 1.1em; color: var(--ink-soft); }
.family-aside li { margin-bottom: 8px; }

/* ---------- Needs (was wir brauchen) ---------- */
.needs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.need {
  padding: 26px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.need-ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--soft); color: var(--meadow-deep); margin-bottom: 18px; }
.need-ico svg { width: 26px; height: 26px; }
.need h3 { font-size: 19px; margin-bottom: 8px; }
.need p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Etappen / Timeline ---------- */
.timeline { max-width: 940px; margin: 0 auto; position: relative; padding-left: 8px; }
.tl-item {
  position: relative;
  display: grid; grid-template-columns: 150px 1fr; gap: 28px;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.tl-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.14); }
.tl-phase {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #ffd684; height: fit-content;
}
.tl-phase .ring { width: 14px; height: 14px; border-radius: 50%; border: 2px solid #ffd684; }
.tl-item.now .tl-phase .ring { background: #ffd684; }
.tl-item h3 { color: var(--white); margin-bottom: 8px; font-size: 22px; }
.tl-item p { color: rgba(255,255,255,0.74); margin: 0; }

/* ---------- Boundary ---------- */
.boundary { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px, 4vw, 50px); }
.boundary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-content: start; }
.boundary-grid div {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 22px;
  border-radius: var(--r);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-weight: 550; font-size: 16px;
}
.boundary-grid svg { width: 20px; height: 20px; color: #e8a78c; flex-shrink: 0; }

/* ---------- GOODFARM App ---------- */
.app-section { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.phone-wrap { display: grid; place-items: center; }
.phone {
  width: min(300px, 100%);
  border-radius: 38px;
  padding: 14px;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone::before {
  content: ""; position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.18);
}
.phone-screen {
  border-radius: 26px;
  background: var(--paper);
  padding: 40px 22px 22px;
  min-height: 500px;
  display: flex; flex-direction: column;
}
.phone-screen .app-brand { font-family: var(--font-display); font-weight: 600; color: var(--meadow); font-size: 17px; letter-spacing: 0.02em; }
.phone-screen .app-card {
  margin-top: 22px; padding: 18px; border-radius: 16px; background: var(--white); border: 1px solid var(--line);
}
.phone-screen .app-card small { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.phone-screen .app-card strong { display: block; font-family: var(--font-display); font-weight: 560; font-size: 22px; margin: 6px 0 14px; }
.phone-screen .mini-bar { height: 10px; border-radius: 999px; background: #eadfca; overflow: hidden; }
.phone-screen .mini-bar span { display: block; height: 100%; width: 64%; background: linear-gradient(90deg, var(--meadow), var(--hay)); }
.phone-screen .app-card .amt { display: block; margin-top: 10px; font-size: 13px; color: var(--muted); }
.phone-screen .app-btn { margin-top: auto; min-height: 46px; border-radius: 12px; background: var(--hay); color: #2b1f08; font-weight: 700; display: grid; place-items: center; }
.app-features { display: grid; gap: 14px; margin-top: 26px; }
.app-features li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; list-style: none; }
.app-features svg { width: 22px; height: 22px; color: var(--meadow); margin-top: 2px; }
.app-features b { font-weight: 650; }
ul.app-features { padding: 0; margin: 26px 0 0; }

/* ---------- Newsletter ---------- */
.newsletter {
  display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center;
  padding: clamp(30px, 4vw, 50px);
  border-radius: var(--r-lg);
  background: var(--meadow-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}
.newsletter h2 { color: var(--white); margin-bottom: 8px; }
.newsletter p { color: rgba(255,255,255,0.82); margin: 0; max-width: 46ch; }
.nl-form { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-form input {
  min-height: 54px; padding: 0 18px; min-width: 240px;
  border-radius: var(--r-pill); border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1); color: var(--white); font-size: 15.5px;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.6); }
.nl-form input:focus-visible { box-shadow: 0 0 0 3px rgba(255,214,132,0.4); border-color: #ffd684; }
.nl-msg { font-size: 14px; color: #ffd684; margin-top: 12px; min-height: 1.2em; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 22px 24px;
  font-family: var(--font-display); font-weight: 560; font-size: 19px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-sans); font-weight: 400; font-size: 26px; color: var(--meadow);
  transition: transform 0.25s ease; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 24px 24px; color: var(--muted); }

/* ---------- Kontakt ---------- */
.contact { text-align: center; max-width: 720px; margin: 0 auto; }
.contact h2 { color: var(--white); }
.contact .lead { color: rgba(255,255,255,0.85); margin-bottom: 30px; }
.contact-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: #1c241e; color: rgba(255,255,255,0.7); position: relative; z-index: 2; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer-grid .brand-text strong { color: rgba(255,255,255,0.55); }
.footer-grid .brand-text em { color: var(--white); }
.footer-brand p { margin-top: 18px; max-width: 42ch; font-size: 14.5px; line-height: 1.6; }
.footer-col h4 { font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; color: rgba(255,255,255,0.78); font-size: 15px; transition: color 0.18s ease; }
.footer-col a:hover { color: #ffd684; }
.footer-bottom {
  margin-top: 44px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.5);
}

/* =========================================================================
   Pädagogik-Seite
   ========================================================================= */
.page-hero {
  background: var(--meadow-deep);
  color: var(--white);
  padding: clamp(70px, 11vw, 130px) 0 clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,162,74,0.22), transparent 70%);
}
.page-hero .eyebrow { color: #ffd684; }
.page-hero .eyebrow::before { background: #ffd684; }
.page-hero h1 { color: var(--white); max-width: 18ch; }
.page-hero .lead { color: rgba(255,255,255,0.85); max-width: 60ch; margin-top: 18px; }
.page-hero .crumb { margin-bottom: 24px; }
.page-hero .crumb a { color: rgba(255,255,255,0.7); font-size: 14px; }
.page-hero .crumb a:hover { color: #ffd684; }

.prose { max-width: 760px; }
.prose p { color: var(--ink-soft); font-size: 17.5px; line-height: 1.7; }
.prose .big-q {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(24px, 3.4vw, 38px); line-height: 1.25;
  color: var(--ink); margin: 0 0 0.6em;
}
.prose .big-q b { color: var(--meadow); }

.points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.point {
  padding: 26px; border-radius: var(--r-lg);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.point .num { font-family: var(--font-display); font-size: 30px; color: var(--hay-deep); font-weight: 560; }
.point h3 { margin: 8px 0; font-size: 20px; }
.point p { color: var(--muted); margin: 0; font-size: 15.5px; }

/* Vergleichstabelle */
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--white);
}
.compare-table th, .compare-table td { padding: 18px 22px; text-align: left; vertical-align: top; font-size: 15.5px; }
.compare-table thead th { font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.compare-table thead .old { background: var(--paper-2); color: var(--muted); }
.compare-table thead .new { background: var(--meadow-deep); color: #ffd684; }
.compare-table tbody tr:nth-child(even) td { background: var(--paper); }
.compare-table td.old { color: var(--ink-soft); border-right: 1px solid var(--line); }
.compare-table td.new { color: var(--ink); font-weight: 550; }
.compare-table tbody tr + tr td { border-top: 1px solid var(--line); }

/* Großes Modell (Pädagogikseite) */
.model-big { display: grid; gap: 16px; max-width: 880px; margin: 0 auto; }
.model-big .layer {
  padding: 30px clamp(24px, 3vw, 38px); border-radius: var(--r-lg); color: var(--white);
  position: relative; overflow: hidden;
}
.model-big .layer small { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; }
.model-big .layer h3 { color: var(--white); margin: 8px 0 8px; font-size: clamp(22px, 2.6vw, 30px); }
.model-big .layer p { margin: 0; max-width: 60ch; opacity: 0.92; }
.model-big .f1 { background: var(--meadow-deep); }
.model-big .f2 { background: var(--hay-deep); }
.model-big .f3 { background: var(--ink); }
.model-big .layer .ghost-n {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 120px; font-weight: 560;
  opacity: 0.12; line-height: 1;
}

.detail-list { display: grid; gap: 16px; }
.detail {
  display: grid; grid-template-columns: 60px 1fr; gap: 22px;
  padding: 26px; border-radius: var(--r-lg);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.detail .d-ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--soft); color: var(--meadow-deep); }
.detail .d-ico svg { width: 30px; height: 30px; }
.detail h3 { margin-bottom: 6px; }
.detail p { margin: 0; color: var(--muted); }

.field-map {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center;
  padding: clamp(26px, 3vw, 40px); border-radius: var(--r-lg);
  background: var(--paper-2); border: 1px solid var(--line);
}
.field-seed { text-align: center; }
.field-seed .circle { width: 120px; height: 120px; border-radius: 50%; background: rgba(216,162,74,0.16); display: grid; place-items: center; margin: 0 auto 12px; }
.field-seed .circle svg { width: 70px; height: 70px; color: var(--ink); }
.field-seed strong { font-family: var(--font-display); font-weight: 560; font-size: 20px; }
.field-branches { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-branch { padding: 16px 18px; border-radius: var(--r); background: var(--white); border: 1px solid var(--line); }
.field-branch b { display: block; font-size: 14px; color: var(--meadow-deep); margin-bottom: 3px; }
.field-branch span { font-size: 14px; color: var(--muted); }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip { font-size: 13.5px; font-weight: 600; color: var(--meadow-deep); background: var(--soft); padding: 8px 14px; border-radius: var(--r-pill); }

.callout {
  padding: clamp(26px, 3vw, 40px); border-radius: var(--r-lg);
  background: var(--ink); color: var(--white); text-align: center; max-width: 820px; margin: 0 auto;
}
.callout h2 { color: var(--white); }
.callout ol { display: inline-grid; gap: 12px; text-align: left; margin: 18px 0 0; padding-left: 1.2em; color: rgba(255,255,255,0.86); font-size: 18px; }

/* =========================================================================
   Checklisten-Seite
   ========================================================================= */
.checklist-page { background: var(--paper); }
.check-hero {
  background: var(--ink); color: var(--white);
  padding: clamp(56px, 8vw, 96px) 0 clamp(36px, 5vw, 60px);
}
.check-hero .eyebrow { color: #ffd684; }
.check-hero .eyebrow::before { background: #ffd684; }
.check-hero h1 { color: var(--white); max-width: 20ch; }
.check-hero p { color: rgba(255,255,255,0.78); max-width: 64ch; }
.check-status {
  margin-top: 30px; max-width: 640px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
}
.check-status .count { font-weight: 650; white-space: nowrap; }
.check-status .pct { font-family: var(--font-display); font-size: 30px; font-weight: 560; color: #ffd684; }
.check-status .bar { background: rgba(255,255,255,0.16); }

.check-controls { background: var(--white); border-bottom: 1px solid var(--line); }
.check-controls .container { display: flex; flex-wrap: wrap; gap: 10px; padding-block: 18px; align-items: center; }
.check-controls button {
  min-height: 44px; padding: 0 18px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line-strong); background: var(--white);
  font-weight: 650; cursor: pointer; transition: border-color 0.18s, background 0.18s;
}
.check-controls button:hover { border-color: var(--meadow); background: var(--soft-2); }
.check-controls .spacer { flex: 1; }
.check-controls .saved { font-size: 13.5px; color: var(--muted); }
.check-controls .saved svg { width: 15px; height: 15px; vertical-align: -2px; color: var(--meadow); margin-right: 4px; }

.check-groups { display: grid; gap: 16px; padding-block: clamp(30px, 4vw, 50px) clamp(50px, 7vw, 90px); }
.check-group {
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--white);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.check-group > summary {
  list-style: none; cursor: pointer;
  padding: 22px 26px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center;
}
.check-group > summary::-webkit-details-marker { display: none; }
.check-group .g-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--soft); color: var(--meadow-deep); }
.check-group .g-ico svg { width: 24px; height: 24px; }
.check-group .g-title { font-family: var(--font-display); font-weight: 560; font-size: 21px; }
.check-group .g-meta { display: flex; align-items: center; gap: 14px; }
.check-group .g-count { font-size: 13.5px; font-weight: 650; color: var(--muted); white-space: nowrap; }
.check-group .g-chev { width: 22px; height: 22px; color: var(--muted); transition: transform 0.25s ease; }
.check-group[open] .g-chev { transform: rotate(180deg); }
.check-group .g-ring {
  width: 40px; height: 40px; border-radius: 50%;
  background: conic-gradient(var(--meadow) calc(var(--p, 0) * 1%), #eadfca 0);
  display: grid; place-items: center; flex-shrink: 0;
}
.check-group .g-ring::after { content: ""; width: 30px; height: 30px; border-radius: 50%; background: var(--white); }

.tasks { padding: 4px 26px 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tasks label {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start;
  padding: 14px 16px; border-radius: var(--r);
  border: 1px solid var(--line); background: var(--paper);
  cursor: pointer; line-height: 1.4; font-size: 15px;
  transition: border-color 0.16s ease, background 0.16s ease;
}
.tasks label:hover { border-color: var(--line-strong); }
.tasks input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--meadow); cursor: pointer; }
.tasks input:checked + span { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--line-strong); }

/* =========================================================================
   Reveal-Animation
   ========================================================================= */
/* Ohne JS (keine .js-Klasse) bleiben alle Inhalte sichtbar. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.js .reveal.in { opacity: 1; transform: none; }
.check-controls .saved { transition: opacity 0.3s ease; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-photo { transform: none; }
  .scroll-cue i { animation: none; }
  .bar span { transition: none; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1080px) {
  .feature-grid, .animal-grid, .needs-grid { grid-template-columns: repeat(2, 1fr); }
  .ways-grid { grid-template-columns: repeat(3, 1fr); }
  .fund-grid { grid-template-columns: 1fr; }
  .app-section, .family, .split, .boundary, .newsletter, .field-map { grid-template-columns: 1fr; }
  .manifest-body { columns: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .main-nav, .header-actions .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.menu-open .main-nav {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    padding: 16px 24px 24px; gap: 4px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-header.menu-open .main-nav a { padding: 14px 16px; font-size: 17px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-grid > div { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .value-grid > div:nth-child(2) { border-right: 0; }
  .contrast, .points, .field-branches { grid-template-columns: 1fr; }
  .field-map { text-align: center; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .container, .container.wide { width: calc(100% - 36px); }
  .feature-grid, .animal-grid, .needs-grid, .ways-grid, .rhythm, .boundary-grid, .tasks { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid > div { border-right: 0; }
  .day-step { grid-template-columns: 1fr; gap: 6px; }
  .day-time { margin-bottom: 4px; }
  .tl-item { grid-template-columns: 1fr; gap: 10px; }
  .model-layer { grid-template-columns: 1fr; text-align: center; }
  .model-layer .lv { margin: 0 auto; }
  .detail { grid-template-columns: 1fr; }
  .fund-head { grid-template-columns: 1fr; }
  .pledge { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .check-status { grid-template-columns: 1fr; text-align: left; }
  .model-big .layer .ghost-n { display: none; }
  .phone { width: 260px; }
}

/* =========================================================================
   v3 — Conversion, Storytelling & App-Push (adaptiert aus der App)
   ========================================================================= */
:root {
  --coral: #e8795a;
  --berry: #c8536b;
  --meadow-bright: #5a8c63;
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Emotionale Tagline-Bänder ---- */
.tagline-band {
  text-align: center;
  padding: clamp(40px, 6vw, 72px) 0;
  background: var(--paper-2);
}
.tagline-band p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  max-width: 20ch;
  margin: 0 auto;
  color: var(--ink);
}
.tagline-band p .accent { color: var(--meadow); }

/* ---- Live-Band (sozialer Beweis) ---- */
.live-band { background: var(--meadow-deep); color: #fff; position: relative; z-index: 2; overflow: hidden; }
.live-inner { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: clamp(30px, 4vw, 46px) 0; }
.live-main .label { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #ffd684; display: inline-flex; align-items: center; gap: 8px; }
.live-main .label .live-dot { width: 8px; height: 8px; border-radius: 50%; background: #8be0a0; animation: livePulse 1.8s infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(139,224,160,0.6); } 70% { box-shadow: 0 0 0 8px rgba(139,224,160,0); } 100% { box-shadow: 0 0 0 0 rgba(139,224,160,0); } }
.live-main .count { font-family: var(--font-display); font-size: clamp(44px, 7vw, 76px); font-weight: 540; line-height: 1; margin: 8px 0 6px; }
.live-main .csub { color: rgba(255,255,255,0.82); font-size: 16px; }
.live-feed { display: grid; gap: 10px; min-width: 240px; }
.live-feed .lf {
  display: flex; align-items: center; gap: 10px; font-size: 14px;
  padding: 12px 16px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
}
.live-feed .lf .e { font-size: 18px; }
.live-feed .lf.in { animation: lfIn 0.5s var(--ease) both; }
@keyframes lfIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }

/* ---- App-Showcase ---- */
.app-showcase { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.app-showcase.bg { } /* uses bg-ink section */
.phone-mock {
  width: min(290px, 100%); justify-self: center;
  border-radius: 40px; padding: 12px; background: #11150f;
  box-shadow: var(--shadow-lg); position: relative;
}
.phone-mock::before { content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 80px; height: 6px; border-radius: 999px; background: rgba(255,255,255,0.2); z-index: 2; }
.pm-screen { border-radius: 30px; overflow: hidden; background: var(--cream); }
.pm-bar { display: flex; justify-content: space-between; align-items: center; padding: 26px 16px 8px; background: var(--paper); }
.pm-bar .pm-brand { display: flex; align-items: center; gap: 8px; }
.pm-bar .pm-logo { width: 26px; height: 26px; border-radius: 8px; background: var(--meadow); display: grid; place-items: center; color: #fff; }
.pm-bar .pm-logo svg { width: 16px; height: 16px; }
.pm-bar .pm-brand b { font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.pm-bar .pm-demo { font-size: 9px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--hay-deep); background: rgba(216,162,74,0.18); padding: 4px 7px; border-radius: 999px; }
.pm-body { padding: 12px 14px 14px; display: grid; gap: 11px; }
.pm-greet { font-family: var(--font-display); font-weight: 560; font-size: 18px; }
.pm-ticker { background: linear-gradient(150deg, var(--meadow), var(--meadow-deep)); color: #fff; border-radius: 16px; padding: 14px; }
.pm-ticker small { font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }
.pm-ticker .n { font-family: var(--font-display); font-size: 27px; font-weight: 560; line-height: 1; margin-top: 4px; }
.pm-chips { display: flex; gap: 9px; }
.pm-chip { flex: 1; background: var(--white); border: 1px solid var(--line); border-radius: 13px; padding: 11px 10px; text-align: center; }
.pm-chip .e { font-size: 22px; }
.pm-chip .p { display: inline-block; margin-top: 7px; font-size: 11px; font-weight: 800; color: var(--meadow-deep); background: var(--soft); padding: 4px 9px; border-radius: 999px; }
.pm-tabs { display: flex; justify-content: space-around; padding: 10px 0 14px; border-top: 1px solid var(--line); background: var(--paper); color: var(--muted); }
.pm-tabs span { width: 20px; height: 20px; border-radius: 6px; background: #e4dcc9; }
.pm-tabs .mid { background: var(--hay); border-radius: 50%; box-shadow: 0 4px 10px rgba(189,134,31,0.4); }

.app-points { display: grid; gap: 14px; margin: 22px 0 26px; }
.app-points li { list-style: none; display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.app-points .ico { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; font-size: 22px; background: rgba(255,255,255,0.1); }
.app-points b { display: block; font-size: 16.5px; margin-bottom: 2px; }
.app-points p { color: rgba(255,255,255,0.78); font-size: 14.5px; line-height: 1.5; margin: 0; }
.bg-ink .app-points b { color: #fff; }

.store-badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.badge-store {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 14px; background: #11150f; color: #fff;
  border: 1px solid rgba(255,255,255,0.18); min-height: 56px;
}
.badge-store svg { width: 24px; height: 24px; }
.badge-store small { display: block; font-size: 10px; opacity: 0.7; letter-spacing: 0.04em; }
.badge-store b { display: block; font-size: 15px; font-weight: 700; }
.badge-soon { position: relative; }
.badge-soon::after { content: "bald"; position: absolute; top: -8px; right: -6px; font-size: 9px; font-weight: 800; text-transform: uppercase; background: var(--hay); color: #2b1f08; padding: 2px 7px; border-radius: 999px; }

/* ---- Give-Taste (interaktiv) ---- */
.give-taste-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.web-give-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 760px; margin: 0 auto; }
.web-chip {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 22px 16px; border-radius: var(--r-lg);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  cursor: pointer; transition: transform 0.18s var(--spring), box-shadow 0.18s, border-color 0.18s;
}
.web-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.web-chip:active { transform: scale(0.96); }
.web-chip.just-gave { border-color: var(--meadow-bright); }
.web-chip .e { font-size: 34px; }
.web-chip .who { font-size: 14px; font-weight: 600; color: var(--ink-soft); text-align: center; line-height: 1.3; }
.web-chip .p { font-weight: 800; font-size: 15px; color: var(--meadow-deep); background: var(--soft); padding: 7px 15px; border-radius: var(--r-pill); transition: background 0.2s, color 0.2s; }
.web-chip:hover .p { background: var(--meadow); color: #fff; }
.web-chip .cb { position: absolute; top: 10px; right: 10px; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--hay); color: #2b1f08; font-size: 12px; font-weight: 800; display: grid; place-items: center; transform: scale(0); transition: transform 0.3s var(--spring); }
.web-chip .cb.show { transform: scale(1); }

.outcome-web { max-width: 620px; margin: 30px auto 0; padding: 26px; border-radius: var(--r-lg); background: var(--paper-2); border: 1px solid var(--line); }
.outcome-web .amt { text-align: center; font-family: var(--font-display); font-size: 46px; font-weight: 560; color: var(--meadow-deep); }
.outcome-web .amt.bump { animation: pop 0.4s var(--spring); }
@keyframes pop { 0% { transform: scale(0.8); } 60% { transform: scale(1.1); } 100% { transform: scale(1); } }
.outcome-web .slider { width: 100%; -webkit-appearance: none; appearance: none; height: 8px; border-radius: 999px; background: #e9dec9; margin: 14px 0; }
.outcome-web .slider::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%; background: var(--meadow); border: 4px solid #fff; box-shadow: 0 4px 12px rgba(44,77,51,0.4); cursor: pointer; }
.outcome-web .slider::-moz-range-thumb { width: 28px; height: 28px; border-radius: 50%; background: var(--meadow); border: 4px solid #fff; cursor: pointer; }
.outcome-web .res { display: flex; align-items: center; gap: 14px; justify-content: center; margin-top: 8px; text-align: left; }
.outcome-web .res .e { font-size: 34px; }
.outcome-web .res b { display: block; font-family: var(--font-display); font-weight: 560; font-size: 18px; }
.outcome-web .res span { font-size: 13.5px; color: var(--muted); }
.demo-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 20px; }
.demo-note svg { width: 15px; height: 15px; vertical-align: -2px; color: var(--meadow); margin-right: 4px; }

/* ---- Story-Karten (Tiere) ---- */
.story-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.story-card { padding: 24px; border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.22s var(--spring), box-shadow 0.22s; }
.story-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.story-card .ava { width: 76px; height: 76px; border-radius: 22px; display: grid; place-items: center; font-size: 42px; margin-bottom: 16px; background: var(--paper-2); }
.story-card:nth-child(1) .ava { background: rgba(143,185,209,0.2); }
.story-card:nth-child(2) .ava { background: rgba(216,162,74,0.18); }
.story-card:nth-child(3) .ava { background: rgba(216,162,74,0.14); }
.story-card:nth-child(4) .ava { background: rgba(180,98,63,0.16); }
.story-card h3 { font-size: 20px; margin-bottom: 3px; }
.story-card .sp { font-size: 12.5px; color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.story-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.story-card .adopt { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--meadow-deep); }
.story-card .adopt svg { width: 15px; height: 15px; }

/* ---- Finale CTA-Band ---- */
.final-cta { text-align: center; }
.final-cta h2 { font-size: clamp(32px, 5vw, 58px); max-width: 18ch; margin: 0 auto 16px; color: #fff; }
.final-cta .lead { color: rgba(255,255,255,0.85); max-width: 52ch; margin: 0 auto 30px; }
.final-cta .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Sticky App-Bar (mobil) ---- */
.sticky-app {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
  display: none; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--r-lg);
  background: rgba(28,36,30,0.96); backdrop-filter: blur(10px); color: #fff;
  box-shadow: var(--shadow-lg); transform: translateY(140%); transition: transform 0.4s var(--spring);
}
.sticky-app.show { transform: none; }
.sticky-app .si { font-size: 26px; }
.sticky-app .st { flex: 1; }
.sticky-app .st b { display: block; font-size: 14.5px; }
.sticky-app .st small { font-size: 12px; color: rgba(255,255,255,0.7); }
.sticky-app .sx { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.sticky-app .sx svg { width: 16px; height: 16px; }

/* ---- Toast + Konfetti (Web) ---- */
.toast-web-layer { position: fixed; left: 0; right: 0; bottom: 26px; display: flex; flex-direction: column; align-items: center; gap: 8px; pointer-events: none; z-index: 80; padding: 0 16px; }
.toast-web { pointer-events: auto; display: flex; align-items: center; gap: 11px; padding: 13px 18px; border-radius: var(--r-pill); background: var(--ink); color: #fff; box-shadow: var(--shadow-lg); font-size: 14.5px; font-weight: 600; animation: twIn 0.45s var(--spring) both; }
.toast-web.out { animation: twOut 0.35s ease forwards; }
.toast-web.success { background: linear-gradient(120deg, var(--meadow), var(--meadow-deep)); }
.toast-web.love { background: linear-gradient(120deg, var(--coral), var(--berry)); }
.toast-web .e { font-size: 20px; }
@keyframes twIn { from { opacity: 0; transform: translateY(20px) scale(0.92); } to { opacity: 1; transform: none; } }
@keyframes twOut { to { opacity: 0; transform: translateY(-10px); } }
.confetti-web-layer { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 75; }
.confetti-web { position: fixed; width: 10px; height: 14px; border-radius: 2px; will-change: transform, opacity; }

@media (max-width: 1080px) {
  .app-showcase { grid-template-columns: 1fr; }
  .live-inner { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .sticky-app { display: flex; }
}
@media (max-width: 600px) {
  .web-give-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .live-main .label .live-dot { animation: none; }
  .confetti-web { display: none; }
}

/* =========================================================================
   v4 — Design-Uplift: einheitliches System, Raster, Module, Hierarchie
   ========================================================================= */
:root {
  --container: 1200px;
  --container-narrow: 880px;
  --s-1: 8px; --s-2: 16px; --s-3: 24px; --s-4: 36px; --s-5: 56px; --s-6: 88px;
  --r-card: 20px;
  --shadow-sm: 0 6px 18px rgba(35, 44, 37, 0.05);
  --shadow: 0 18px 40px rgba(35, 44, 37, 0.09);
  --shadow-lg: 0 34px 70px rgba(35, 44, 37, 0.14);
  --hairline: rgba(35, 44, 37, 0.09);
}

/* Rhythmus & Raster */
.section { padding: clamp(64px, 8.5vw, 116px) 0; }
.section.tight { padding: clamp(44px, 6vw, 76px) 0; }
.section + .section.bg-paper,
.bg-paper + .bg-paper, .bg-cream + .bg-cream { border-top: 1px solid var(--hairline); }

/* Einheitlicher Section-Header mit Index-Kicker */
.sec-head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 60px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--meadow);
  margin: 0 0 18px;
}
.kicker .n { font-variant-numeric: tabular-nums; color: var(--hay-deep); }
.kicker .ln { width: 26px; height: 1.5px; background: var(--hay); border-radius: 2px; }
.kicker.on-dark { color: #ffe3a6; } .kicker.on-dark .n { color: #ffd684; }
.sec-head.center .kicker { justify-content: center; }
.sec-head h2 { font-size: clamp(31px, 4.2vw, 50px); line-height: 1.05; letter-spacing: -0.018em; }
.sec-head .lead { margin-top: 16px; font-size: clamp(17px, 1.8vw, 20px); line-height: 1.55; color: var(--muted); max-width: 62ch; }
.sec-head.center .lead { margin-inline: auto; }

/* Einheitliche Karten */
.card, .feature-card, .animal, .story-card, .need, .fund-card, .point {
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.card:hover, .feature-card:hover, .animal:hover, .story-card:hover, .need:hover {
  box-shadow: var(--shadow); transform: translateY(-4px);
}
.feature-card, .need, .animal, .story-card { transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease); }

/* Buttons: etwas ruhiger & konsistenter */
.btn { letter-spacing: -0.005em; }
.btn.primary { background: var(--meadow); }
.btn.primary:hover { background: var(--meadow-deep); }

/* Eyebrow vereinheitlicht (inline) */
.eyebrow { font-size: 12px; letter-spacing: 0.14em; }

/* ---- Philosophie-Moment (großes Zitat) ---- */
.philosophy { background: var(--ink); color: #fff; text-align: center; }
.philosophy .inner { max-width: 900px; margin: 0 auto; }
.philosophy .q {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 5vw, 60px); line-height: 1.12; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 22px;
}
.philosophy .q .hl { color: #ffd684; }
.philosophy p { color: rgba(255,255,255,0.78); font-size: clamp(16px, 1.8vw, 19px); line-height: 1.6; max-width: 60ch; margin: 0 auto; }

/* ---- Modell: kostenlos für Familien / Erwachsene ---- */
.model-free { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.free-card {
  background: linear-gradient(155deg, var(--meadow), var(--meadow-deep)); color: #fff;
  border-radius: var(--r-card); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow);
}
.free-card .big { font-family: var(--font-display); font-weight: 540; font-size: clamp(30px, 4vw, 44px); line-height: 1.05; margin-bottom: 14px; }
.free-card .big .hl { color: #ffd684; }
.free-card p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.6; }
.free-list { display: grid; gap: 14px; }
.free-list .fi { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; }
.free-list .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--soft); color: var(--meadow-deep); display: grid; place-items: center; font-size: 22px; }
.free-list b { display: block; font-size: 17px; margin-bottom: 3px; }
.free-list p { color: var(--muted); font-size: 15px; line-height: 1.5; margin: 0; }

/* ---- Feature-Spot (Schneckenhaus, Rettungshunde) ---- */
.spot { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: center; }
.spot.flip .spot-visual { order: 2; }
.spot-visual {
  border-radius: var(--r-card); min-height: 320px; position: relative; overflow: hidden;
  display: grid; place-items: center; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.spot-visual .emoji { font-size: clamp(90px, 16vw, 150px); filter: drop-shadow(0 12px 20px rgba(0,0,0,0.12)); }
.spot-visual.snail { background: radial-gradient(120% 120% at 30% 20%, #eaf0e6, #dfe9da); }
.spot-visual.rescue { background: radial-gradient(120% 120% at 30% 20%, #f3e7dd, #ecdccd); }
.spot-visual .tagchip { position: absolute; top: 18px; left: 18px; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; background: var(--white); border: 1px solid var(--line); color: var(--meadow-deep); padding: 7px 13px; border-radius: var(--r-pill); }
.spot-body h3 { font-size: clamp(24px, 3vw, 34px); line-height: 1.08; margin-bottom: 14px; letter-spacing: -0.015em; }
.spot-body p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.65; margin-bottom: 14px; }
.spot-body .mini { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 22px; }
.spot-body .mini span { font-size: 13.5px; font-weight: 600; color: var(--meadow-deep); background: var(--soft); padding: 8px 14px; border-radius: var(--r-pill); }

/* ---- Freiwilligen-Formular ---- */
.volunteer { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.vform { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-sm); }
.vform .field { margin-bottom: 16px; }
.vform label { display: block; font-size: 13.5px; font-weight: 650; margin-bottom: 7px; }
.vform input[type="text"], .vform input[type="email"], .vform textarea {
  width: 100%; min-height: 50px; padding: 12px 15px; border-radius: 13px;
  border: 1.5px solid var(--line); background: var(--paper); font: inherit; color: var(--ink);
}
.vform textarea { min-height: 92px; resize: vertical; }
.vform input:focus-visible, .vform textarea:focus-visible { border-color: var(--meadow); box-shadow: 0 0 0 3px rgba(63,107,72,0.18); outline: none; }
.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.opt {
  display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 13px;
  border: 1.5px solid var(--line); background: var(--paper); cursor: pointer; font-size: 14px; font-weight: 550;
  transition: border-color 0.16s, background 0.16s;
}
.opt:hover { border-color: var(--line-strong); }
.opt input { width: 18px; height: 18px; accent-color: var(--meadow); }
.opt.checked { border-color: var(--meadow); background: var(--soft); }
.vmsg { font-size: 14px; margin-top: 12px; min-height: 1.2em; font-weight: 600; }

/* ---- Partner-Teaser & Partner-Seite ---- */
.partner-teaser { background: var(--paper-2); }
.partner-teaser .inner { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.partner-teaser h2 { font-size: clamp(26px, 3.4vw, 40px); letter-spacing: -0.015em; }
.partner-teaser p { color: var(--muted); margin-top: 10px; max-width: 60ch; }

.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tier {
  display: flex; flex-direction: column; padding: 28px; border-radius: var(--r-card);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.tier.feature { border-color: var(--hay); box-shadow: 0 22px 50px rgba(189,134,31,0.16); }
.tier .tname { font-family: var(--font-display); font-weight: 560; font-size: 23px; }
.tier .tprice { font-size: 14px; color: var(--muted); margin: 4px 0 16px; }
.tier .tprice b { font-family: var(--font-display); font-weight: 560; font-size: 26px; color: var(--meadow-deep); }
.tier ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 11px; }
.tier li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.45; }
.tier li svg { width: 18px; height: 18px; color: var(--meadow); margin-top: 1px; }
.tier .btn { margin-top: auto; }

.partner-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pp { padding: 24px; border-radius: var(--r-card); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.pp .ic { width: 48px; height: 48px; border-radius: 14px; background: var(--soft); color: var(--meadow-deep); display: grid; place-items: center; font-size: 24px; margin-bottom: 16px; }
.pp h3 { font-size: 19px; margin-bottom: 7px; }
.pp p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

@media (max-width: 1080px) {
  .model-free, .spot, .spot.flip .spot-visual, .volunteer, .partner-teaser .inner { grid-template-columns: 1fr; }
  .spot.flip .spot-visual { order: 0; }
  .tier-grid { grid-template-columns: 1fr; }
  .partner-points { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .opt-grid { grid-template-columns: 1fr; }
  .free-list .fi { grid-template-columns: 40px 1fr; }
}

/* =========================================================================
   v5 — Pixel-Brand: Sprites aus dem Farm-Game als verbindende Bildsprache
   ========================================================================= */
.story-card .ava { overflow: hidden; }
.story-card .ava img { width: 58px; height: 58px; display: block; }
.spot-visual .scene {
  width: 88%; max-width: 460px; height: auto; display: block;
  filter: drop-shadow(0 14px 22px rgba(35,44,37,0.18));
}
.spot-visual.game { background: linear-gradient(180deg, #cfe3ee 0%, #e8efdb 60%, #d6e6c8 100%); }
.spot-visual.snail .scene, .spot-visual.rescue .scene { width: 82%; }
.pixel-note { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12.5px; font-weight: 700; color: var(--muted); }
.pixel-note img { width: 22px; height: 22px; }

/* Pixel-Wiesenband als Sektions-Übergang */
.pixel-band { display: block; width: 100%; height: auto; margin-bottom: -6px; }

/* =========================================================================
   v6 — Premium Refinement (Claude Design pass)
   Mehr Tiefe, feinere Typo, modernere Details, ruhigere Motion.
   Additiver Layer: kaskadiert sauber über die bestehenden Schichten.
   ========================================================================= */

/* ---- Tokens: wärmere, mehrschichtige Schatten + feinere Linien ---- */
:root {
  --shadow-sm: 0 1px 2px rgba(35,44,37,0.04), 0 4px 10px rgba(35,44,37,0.05);
  --shadow: 0 2px 4px rgba(35,44,37,0.05), 0 18px 38px -12px rgba(35,44,37,0.16);
  --shadow-lg: 0 4px 8px rgba(35,44,37,0.06), 0 40px 80px -24px rgba(35,44,37,0.30);
  --line: #e7e0cf;
  --line-strong: #d6cbb2;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Globale Feinheiten ---- */
html { scroll-behavior: smooth; }
::selection { background: rgba(216,162,74,0.30); color: var(--ink); }
[id] { scroll-margin-top: 92px; }
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 2.5px solid var(--hay); outline-offset: 3px; border-radius: 6px;
}
.bg-ink a:focus-visible, .bg-meadow a:focus-visible, .philosophy a:focus-visible,
.bg-ink button:focus-visible, .hero a:focus-visible { outline-color: #ffd684; }
@media (hover: hover) {
  ::-webkit-scrollbar { width: 12px; height: 12px; }
  ::-webkit-scrollbar-thumb { background: var(--line-strong); border: 3px solid var(--cream); border-radius: 999px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--meadow); }
  ::-webkit-scrollbar-track { background: var(--cream); }
}

/* ---- Typo: geschärfte Display-Hierarchie ---- */
h1, h2, h3, .sec-head h2, .hero h1, .manifest-lead {
  font-optical-sizing: auto;
  letter-spacing: -0.021em;
  font-feature-settings: "ss01" 1;
}
h3 { letter-spacing: -0.012em; }
.lead { color: var(--ink-soft); font-size: clamp(17px, 1.9vw, 21px); line-height: 1.6; }
.eyebrow { font-size: 11.5px; letter-spacing: 0.16em; font-weight: 750; }
.eyebrow::before { width: 18px; height: 2px; background: linear-gradient(90deg, var(--hay), rgba(216,162,74,0)); }
.kicker { font-size: 11.5px; letter-spacing: 0.18em; }
.kicker .ln { background: linear-gradient(90deg, var(--hay), rgba(216,162,74,0.15)); }

/* ---- Buttons: Tiefe, Verlauf, Lichtkante, ruhiger Lift ---- */
.btn {
  font-weight: 680; letter-spacing: -0.005em;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease), filter 0.22s var(--ease), border-color 0.22s var(--ease);
}
.btn.primary {
  background: linear-gradient(180deg, #4b7c56 0%, var(--meadow) 60%, var(--meadow-deep) 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.14) inset, 0 10px 22px -8px rgba(44,77,51,0.55);
}
.btn.primary:hover { background: linear-gradient(180deg, #538560, var(--meadow)); box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 16px 30px -8px rgba(44,77,51,0.55); transform: translateY(-2px); }
.btn.gold {
  background: linear-gradient(180deg, #ecbb63 0%, var(--hay) 58%, #cf9837 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 10px 22px -8px rgba(185,132,47,0.6);
}
.btn.gold:hover { background: linear-gradient(180deg, #f0c272, #dda948); box-shadow: 0 1px 0 rgba(255,255,255,0.45) inset, 0 16px 32px -8px rgba(185,132,47,0.6); transform: translateY(-2px); }
.btn.ghost { background: rgba(255,255,255,0.5); border-color: var(--line-strong); backdrop-filter: blur(4px); }
.btn.ghost:hover { background: var(--white); border-color: var(--meadow); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0) scale(0.99); }

/* ---- Header: schlanker im Scroll, feinere Navigation ---- */
.site-header { background: rgba(253,250,242,0.72); }
.site-header.scrolled { background: rgba(253,250,242,0.9); box-shadow: 0 1px 0 var(--line), 0 10px 30px -16px rgba(35,44,37,0.28); }
.header-inner { transition: min-height 0.3s var(--ease); }
.site-header.scrolled .header-inner { min-height: 64px; }
.main-nav a { font-weight: 560; position: relative; }
.main-nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px;
  background: var(--meadow); border-radius: 2px; transform: scaleX(0); transform-origin: center;
  transition: transform 0.25s var(--ease); opacity: 0.0;
}
.main-nav a:hover::after { transform: scaleX(0.6); opacity: 0.5; }
.main-nav a.active { background: transparent; color: var(--meadow-deep); }
.main-nav a.active::after { transform: scaleX(1); opacity: 1; }
.brand-mark { background: linear-gradient(155deg, #4b7c56, var(--meadow-deep)); box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 6px 14px -6px rgba(44,77,51,0.5); border-radius: 13px; }

/* ---- Hero: cinematischer Verlauf, Ken-Burns, Glas-Chips ---- */
.hero { min-height: min(94vh, 920px); }
.hero-veil {
  background:
    radial-gradient(120% 80% at 78% 18%, rgba(255,232,180,0.16), transparent 55%),
    linear-gradient(180deg, rgba(22,28,24,0.62) 0%, rgba(22,28,24,0.10) 26%, rgba(20,26,22,0.30) 62%, rgba(16,21,18,0.95) 100%),
    linear-gradient(90deg, rgba(16,21,18,0.72) 0%, rgba(16,21,18,0.12) 48%, rgba(16,21,18,0) 72%);
}
.hero-photo { animation: heroKen 32s var(--ease) infinite alternate; will-change: transform; }
@keyframes heroKen { from { transform: scale(1.05); } to { transform: scale(1.14) translate(-1%, -1.5%); } }
.hero h1 { font-size: clamp(44px, 7vw, 86px); line-height: 0.98; margin-bottom: 20px; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero .eyebrow {
  display: inline-flex; padding: 7px 14px 7px 12px; border-radius: 999px; margin-bottom: 20px;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(10px); color: #ffe6ad; font-weight: 700;
}
.hero .eyebrow::before { width: 7px; height: 7px; border-radius: 50%; background: #ffd684; box-shadow: 0 0 10px #ffd684; }
.hero-lead { color: rgba(255,255,255,0.92); text-shadow: 0 1px 16px rgba(0,0,0,0.3); }
.hero-meta { gap: 10px 12px; }
.hero-meta span {
  padding: 8px 13px; border-radius: 999px; font-weight: 600; color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); backdrop-filter: blur(8px);
}

/* ---- Karten: vereinheitlichte, ruhige Premium-Haptik ---- */
.card, .feature-card, .story-card, .need, .fund-card, .animal, .point, .pp, .tier {
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.card:hover, .feature-card:hover, .story-card:hover, .need:hover, .pp:hover, .tier:hover {
  transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--line-strong);
}
.feature-ico, .need-ico, .way-ico, .free-list .ic, .pp .ic {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 4px 10px -4px rgba(63,107,72,0.25);
}

/* ---- Dunkle Sektionen: Tiefe statt Fläche ---- */
.bg-ink {
  background:
    radial-gradient(90% 70% at 15% 0%, rgba(63,107,72,0.30), transparent 60%),
    radial-gradient(80% 60% at 100% 100%, rgba(216,162,74,0.10), transparent 55%),
    var(--ink);
}
.bg-meadow {
  background:
    radial-gradient(85% 70% at 85% 10%, rgba(143,185,209,0.16), transparent 55%),
    linear-gradient(165deg, #3f6b48, var(--meadow-deep));
}
.philosophy {
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(63,107,72,0.34), transparent 60%),
    radial-gradient(60% 60% at 80% 100%, rgba(216,162,74,0.12), transparent 55%),
    var(--ink);
}
.live-band {
  background:
    radial-gradient(80% 120% at 12% 0%, rgba(124,174,95,0.22), transparent 55%),
    linear-gradient(120deg, #3f6b48, var(--meadow-deep));
}
.final-cta-section, .section.bg-meadow .final-cta { }

/* ---- Tagline-Band: ruhiger, editorialer ---- */
.tagline-band { background: linear-gradient(180deg, var(--paper-2), var(--cream)); }
.tagline-band p { letter-spacing: -0.02em; }

/* ---- Bewegungs-Politur ---- */
.reveal { transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-photo { animation: none; }
  .main-nav a::after { transition: none; }
  .btn, .card, .feature-card, .story-card, .need, .pp, .tier { transition: none; }
}

/* ---- Mobile-Härtung (v6) ---- */
@media (max-width: 600px) {
  .hero { min-height: min(88vh, 760px); }
  .hero h1 { font-size: clamp(33px, 9.2vw, 50px); line-height: 1.02; }
  .hero .eyebrow { max-width: 100%; white-space: normal; line-height: 1.3; }
  .hero-lead { font-size: 16.5px; }
  .hero-meta span { font-size: 12.5px; padding: 7px 11px; }
}

