/* =========================================================
   Naturprojekte Mensch & Tier e.V. – Relaunch Stylesheet
   Warm, naturnah, ruhig. Mobile first.
   ========================================================= */

:root {
  --green-900: #1c3623;
  --green-800: #244a2f;
  --green-700: #2f5d3a;
  --green-500: #4f8a4b;
  --green-300: #9cc48a;
  --green-100: #e2eedb;
  --moss: #8aa64a;
  --sun: #e3a52f;
  --sun-dark: #b9801a;
  --sun-light: #fbefd3;
  --earth: #8a5a2b;
  --earth-light: #e9d9c3;
  --cream: #f7f2e7;
  --paper: #fffdf8;
  --ink: #22301f;
  --muted: #5f6b58;
  --line: #e4dccb;
  --shadow: 0 10px 30px rgba(34, 48, 31, 0.10);
  --shadow-sm: 0 3px 10px rgba(34, 48, 31, 0.08);
  --radius: 18px;
  --radius-sm: 10px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --container: 1160px;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-900); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-900);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; }
li { margin-bottom: 0.3em; }
strong { font-weight: 700; }
address { font-style: normal; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.4rem;
  border-left: 4px solid var(--sun);
  background: var(--paper);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-900);
}
blockquote cite { display: block; font-family: var(--font-body); font-size: 0.9rem; color: var(--muted); margin-top: 0.5rem; font-style: normal; }
.small, small { font-size: 0.9rem; color: var(--muted); }
.lead { font-size: 1.22rem; line-height: 1.6; color: var(--green-900); }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 0.7rem;
}
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.narrow { max-width: 780px; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--sun); color: var(--ink); padding: 0.6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: var(--font-body);
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-primary { background: var(--green-700); color: #fff; }
.btn-primary:hover { background: var(--green-800); color: #fff; }
.btn-sun { background: var(--sun); color: var(--green-900); }
.btn-sun:hover { background: #f0b53f; color: var(--green-900); }
.btn-outline { background: transparent; color: var(--green-700); border-color: var(--green-700); }
.btn-outline:hover { background: var(--green-700); color: #fff; }
.btn-light { background: rgba(255,255,255,0.92); color: var(--green-900); }
.btn-light:hover { background: #fff; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 242, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(228, 220, 203, 0.7);
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(34,48,31,0.08); }
/* backdrop-filter würde das fixierte Mobilmenü an den Header binden – daher bei offenem Menü aus */
.nav-open .site-header { backdrop-filter: none; background: var(--cream); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--green-900); }
.brand-mark { width: 52px; height: 52px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.brand-name .amp { color: var(--green-700); }
.brand-sub { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav-toggle {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: none; border: 2px solid var(--green-700); border-radius: 999px;
  padding: 0.45rem 0.9rem; color: var(--green-900); font-weight: 700; font-family: var(--font-body); cursor: pointer;
}
.nav-toggle-bars { position: relative; width: 20px; height: 2px; background: currentColor; display: block; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor; transition: transform 0.2s; }
.nav-toggle-bars::before { top: -6px; } .nav-toggle-bars::after { top: 6px; }
.nav-open .nav-toggle-bars { background: transparent; }
.nav-open .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

.site-nav { display: none; }
.nav-open .site-nav {
  display: block; position: fixed; inset: var(--header-h) 0 0 0; overflow-y: auto;
  background: var(--cream); padding: 1rem 1.25rem 3rem; z-index: 99;
}
.nav-list { list-style: none; margin: 0; padding: 0; }
.nav-list li { margin: 0; }
.nav-list > li > a:not(.btn), .sub-toggle {
  display: block; width: 100%; text-align: left;
  padding: 0.85rem 0.5rem; font-weight: 700; font-size: 1.1rem; color: var(--green-900);
  text-decoration: none; background: none; border: 0; border-bottom: 1px solid var(--line); font-family: var(--font-body); cursor: pointer;
}
.sub-toggle::after { content: "▾"; float: right; transition: transform 0.2s; }
.has-sub.open .sub-toggle::after { transform: rotate(180deg); }
.sub-list { list-style: none; margin: 0; padding: 0 0 0 1rem; display: none; }
.has-sub.open .sub-list { display: block; }
.sub-list a { display: block; padding: 0.6rem 0.5rem; color: var(--green-800); text-decoration: none; border-bottom: 1px dashed var(--line); }
.nav-list a[aria-current="page"], .sub-toggle.is-active { color: var(--earth); }
.nav-cta { margin-top: 1.2rem; }
.nav-cta .btn { width: 100%; justify-content: center; font-size: 1.05rem; padding: 0.9rem 1.4rem; }
.nav-list a[aria-current="page"]:not(.btn) { position: relative; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; }
  .nav-list { display: flex; align-items: center; gap: 0.15rem; }
  .nav-list > li { position: relative; }
  .nav-list > li > a:not(.btn), .sub-toggle {
    width: auto; padding: 0.55rem 0.8rem; font-size: 0.98rem; border: 0; border-radius: 999px;
  }
  .nav-list > li > a:not(.btn):hover, .sub-toggle:hover { background: var(--green-100); }
  .nav-list > li > a[aria-current="page"]:not(.btn), .sub-toggle.is-active { background: var(--green-700); color: #fff; }
  .sub-toggle::after { float: none; margin-left: 0.35rem; font-size: 0.8em; }
  .sub-list {
    position: absolute; top: 100%; left: 0; min-width: 240px; margin-top: 8px;
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
    box-shadow: var(--shadow); padding: 0.5rem;
  }
  /* unsichtbare Brücke, damit die Maus die Lücke zum Untermenü überwinden kann */
  .sub-list::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
  .has-sub:hover .sub-list, .has-sub:focus-within .sub-list { display: block; }
  .sub-list a { border: 0; border-radius: 8px; padding: 0.55rem 0.8rem; font-weight: 600; }
  .sub-list a:hover { background: var(--green-100); }
  .nav-cta { margin: 0 0 0 0.5rem; }
  .nav-cta .btn { width: auto; padding: 0.55rem 1.1rem; font-size: 0.95rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  min-height: clamp(460px, 72vh, 720px);
  display: grid; align-items: end;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,54,35,0.15) 0%, rgba(28,54,35,0.35) 45%, rgba(28,54,35,0.86) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 4rem 0 3rem; max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: 0.5rem; text-shadow: 0 2px 20px rgba(0,0,0,0.25); }
.hero .eyebrow { color: var(--sun); }
.hero p { font-size: 1.2rem; max-width: 620px; color: rgba(255,255,255,0.92); }
.hero .btn-group { margin-top: 1.5rem; }

.page-hero {
  position: relative; color: #fff; min-height: 320px; display: grid; align-items: end; overflow: hidden;
}
.page-hero .hero-media img { object-position: center 45%; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,54,35,0.2), rgba(28,54,35,0.82)); }
.page-hero .hero-content { padding: 3rem 0 2rem; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.9); font-size: 1.15rem; }
.page-hero .eyebrow { color: var(--sun); }
.page-hero.compact { min-height: 200px; background: var(--green-800); }
.page-hero.compact::after { background: none; }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-tight { padding: clamp(2rem, 5vw, 3.5rem) 0; }
.section-paper { background: var(--paper); }
.section-green { background: var(--green-800); color: #eaf0e6; }
.section-green h2, .section-green h3 { color: #fff; }
.section-green a:not(.btn) { color: var(--sun); }
.section-green .eyebrow { color: var(--sun); }
.section-sun { background: var(--sun-light); }
.section-head { max-width: 720px; margin-bottom: 2.2rem; }
.section-head.center { margin-inline: auto; }

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--green-100); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 0.4rem; }
.card-body p:last-of-type { margin-bottom: 0; }
.card-body .card-link { margin-top: auto; padding-top: 1rem; font-weight: 700; text-decoration: none; }
.card-link::after { content: " →"; }
.card-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--earth); margin-bottom: 0.4rem; }
a.card { color: inherit; text-decoration: none; }

.feature {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .feature.reverse .feature-media { order: 2; }
}
.feature-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.feature-media.portrait img { aspect-ratio: 3/4; }

.info-box {
  background: var(--paper); border: 1px solid var(--line); border-left: 5px solid var(--green-500);
  border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; margin: 1.5rem 0;
}
.info-box.warn { border-left-color: var(--sun); background: var(--sun-light); }
.info-box.earth { border-left-color: var(--earth); background: var(--earth-light); }
.info-box h3, .info-box h4 { margin-bottom: 0.4rem; }
.info-box p:last-child { margin-bottom: 0; }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; padding: 1.2rem 0.6rem; background: var(--paper); border-radius: var(--radius-sm); border: 1px solid var(--line); }
.stat .n { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--green-700); line-height: 1; }
.stat .l { display: block; font-size: 0.9rem; color: var(--muted); margin-top: 0.4rem; }

/* Pills / Lists */
.pill-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 1rem; }
.pill-list li { background: var(--green-100); color: var(--green-900); padding: 0.35rem 0.85rem; border-radius: 999px; font-size: 0.92rem; font-weight: 600; margin: 0; }
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 1.8rem; margin-bottom: 0.5rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green-500); font-weight: 700; }
.leaf-list { list-style: none; padding: 0; }
.leaf-list li { position: relative; padding-left: 1.6rem; margin-bottom: 0.5rem; }
.leaf-list li::before { content: "🌿"; position: absolute; left: 0; top: 0; font-size: 0.9em; }

/* ---------- Events ---------- */
.event-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.event {
  display: grid; grid-template-columns: 84px 1fr; gap: 1.2rem; align-items: start;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 720px) { .event.has-flyer { grid-template-columns: 84px 1fr 150px; } }
.event-date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--green-700); color: #fff; border-radius: var(--radius-sm); padding: 0.6rem 0.3rem; text-align: center; min-height: 84px;
}
.event-date .d { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.event-date .m { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.3rem; opacity: 0.9; }
.event.is-past .event-date { background: var(--earth-light); color: var(--earth); }
.event-body h3 { margin-bottom: 0.3rem; font-size: 1.25rem; }
.event-meta { font-size: 0.92rem; color: var(--muted); margin-bottom: 0.5rem; display: flex; flex-wrap: wrap; gap: 0.3rem 1rem; }
.event-body p:last-child { margin-bottom: 0; }
.event-flyer { display: none; }
@media (min-width: 720px) { .event-flyer { display: block; } }
.event-flyer img { border-radius: 8px; border: 1px solid var(--line); aspect-ratio: 3/4; object-fit: contain; object-position: top; background: #fff; width: 100%; }
.event.is-past { opacity: 0.85; }
.badge { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 999px; background: var(--sun); color: var(--green-900); vertical-align: middle; }
.badge.past { background: var(--earth-light); color: var(--earth); }
.badge.green { background: var(--green-100); color: var(--green-800); }

/* Jahreskreis */
.year-wheel { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .year-wheel { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .year-wheel { grid-template-columns: repeat(4, 1fr); } }
.season { background: var(--paper); border-radius: var(--radius); padding: 1.3rem; border-top: 6px solid var(--green-500); border: 1px solid var(--line); border-top-width: 6px; }
.season.spring { border-top-color: #9cc48a; }
.season.summer { border-top-color: var(--sun); }
.season.autumn { border-top-color: #c9752b; }
.season.winter { border-top-color: #7a9bb8; }
.season h3 { margin-bottom: 0.6rem; }
.season ul { padding-left: 1.1rem; margin: 0; font-size: 0.95rem; }

/* ---------- Animals ---------- */
.animal { display: grid; grid-template-columns: 1fr; gap: 0; background: var(--paper); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.animal img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.animal-body { padding: 1.3rem 1.4rem; }
.animal-body h3 { margin-bottom: 0.2rem; }
.animal-body dl { display: grid; grid-template-columns: auto 1fr; gap: 0.2rem 0.9rem; margin: 0.6rem 0 0.8rem; font-size: 0.95rem; }
.animal-body dt { color: var(--muted); font-weight: 600; }
.animal-body dd { margin: 0; }
@media (min-width: 640px) { .animal { grid-template-columns: 220px 1fr; } .animal img { aspect-ratio: auto; } }

/* ---------- Team ---------- */
.team-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.member { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; display: flex; gap: 1rem; align-items: flex-start; }
.member-initials { flex: none; width: 56px; height: 56px; border-radius: 50%; background: var(--green-100); color: var(--green-800); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.member h3 { font-size: 1.15rem; margin-bottom: 0.1rem; }
.member .role { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--earth); font-weight: 700; margin-bottom: 0.4rem; display: block; }
.member p { margin: 0; font-size: 0.95rem; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 12px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline li { position: relative; padding-left: 2.6rem; margin-bottom: 1.4rem; }
.timeline li::before { content: ""; position: absolute; left: 6px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--sun); border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--sun); }
.timeline .year { font-family: var(--font-display); font-weight: 700; color: var(--green-700); font-size: 1.15rem; display: block; }

/* ---------- Gallery ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.filter-bar button { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 0.45rem 1rem; font-weight: 700; font-family: var(--font-body); cursor: pointer; color: var(--green-900); }
.filter-bar button.active { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; } }
@media (min-width: 960px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { margin: 0; }
.gallery-item a { display: block; border-radius: var(--radius-sm); overflow: hidden; background: var(--green-100); aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.gallery-item a:hover img { transform: scale(1.05); }
.gallery-item figcaption { font-size: 0.85rem; color: var(--muted); margin-top: 0.3rem; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.wide a { aspect-ratio: 2 / 1; }

.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed; inset: 0; z-index: 500; background: rgba(20, 30, 20, 0.94);
  display: grid; place-items: center; padding: 1rem;
}
.lightbox figure { margin: 0; max-width: min(96vw, 1200px); max-height: 92vh; display: flex; flex-direction: column; align-items: center; }
.lightbox img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox figcaption { color: #fff; margin-top: 0.8rem; font-size: 0.95rem; text-align: center; max-width: 800px; }
.lightbox button { position: absolute; background: rgba(255,255,255,0.12); color: #fff; border: 0; font-size: 2rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; line-height: 1; }
.lightbox button:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 0.6rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 0.6rem; top: 50%; transform: translateY(-50%); }
body.lightbox-open { overflow: hidden; }

/* ---------- Presse ---------- */
.press-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.2rem; }
.press-item {
  display: grid; grid-template-columns: 1fr; gap: 1.2rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm);
}
@media (min-width: 720px) { .press-item { grid-template-columns: 170px 1fr; } .press-item.no-thumb { grid-template-columns: 1fr; } }
.press-thumb a { display: block; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.press-thumb img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.press-thumb .zoom { display: block; text-align: center; font-size: 0.8rem; color: var(--muted); margin-top: 0.4rem; }
.press-source { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem 0.8rem; font-size: 0.88rem; color: var(--muted); margin-bottom: 0.4rem; }
.press-source .medium { font-weight: 700; color: var(--earth); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; }
.press-item h3 { margin-bottom: 0.2rem; }
.press-item .sub { font-family: var(--font-display); color: var(--green-800); font-size: 1.05rem; margin-bottom: 0.6rem; }
.press-item p:last-child { margin-bottom: 0; }
.press-item .btn { margin-top: 0.8rem; }
.press-quote { font-style: italic; color: var(--green-900); border-left: 3px solid var(--sun); padding-left: 0.8rem; margin: 0.6rem 0; }

/* ---------- Downloads / Tables ---------- */
.download-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
.download-list a { display: flex; align-items: center; gap: 0.9rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.9rem 1.1rem; text-decoration: none; color: var(--ink); }
.download-list a:hover { border-color: var(--green-500); background: var(--green-100); }
.download-list .ico { flex: none; width: 38px; height: 38px; border-radius: 8px; background: var(--earth-light); color: var(--earth); display: grid; place-items: center; font-weight: 700; font-size: 0.7rem; }
.download-list .meta { font-size: 0.85rem; color: var(--muted); display: block; }

table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; background: var(--paper); border-radius: var(--radius-sm); overflow: hidden; }
th, td { text-align: left; padding: 0.75rem 0.9rem; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: var(--green-100); color: var(--green-900); font-weight: 700; }
tr:last-child td { border-bottom: 0; }
.table-wrap { overflow-x: auto; }

.price-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }
.price { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; text-align: center; display: flex; flex-direction: column; }
.price.featured { border-color: var(--sun); box-shadow: var(--shadow); }
.price h3 { font-size: 1.15rem; }
.price .amount { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--green-700); line-height: 1; margin: 0.4rem 0 0.2rem; }
.price .per { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.8rem; }
.price ul { text-align: left; font-size: 0.93rem; padding-left: 1.1rem; margin: 0 0 1rem; }
.price .btn { margin-top: auto; align-self: center; }

/* ---------- Donation ---------- */
.donate-box { background: var(--green-800); color: #eaf0e6; border-radius: var(--radius); padding: 2rem; }
.donate-box h2, .donate-box h3 { color: #fff; }
.donate-box .iban { font-family: ui-monospace, "SF Mono", Consolas, monospace; font-size: 1.15rem; letter-spacing: 0.04em; background: rgba(255,255,255,0.1); padding: 0.5rem 0.8rem; border-radius: 8px; display: inline-block; }
.donate-box a { color: var(--sun); }
.copy-btn { background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff; border-radius: 999px; padding: 0.3rem 0.8rem; font-size: 0.85rem; cursor: pointer; margin-left: 0.5rem; font-family: var(--font-body); }
.copy-btn:hover { background: rgba(255,255,255,0.12); }
.progress { background: rgba(255,255,255,0.15); border-radius: 999px; height: 12px; overflow: hidden; margin: 0.5rem 0 0.3rem; }
.progress span { display: block; height: 100%; background: var(--sun); border-radius: 999px; }
.goal { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; }
.goal h3 { margin-bottom: 0.3rem; }
.goal .amount { font-family: var(--font-display); color: var(--earth); font-weight: 700; font-size: 1.3rem; }
.goal.done { border-color: var(--green-500); background: var(--green-100); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1rem; }
.form label { font-weight: 700; display: block; margin-bottom: 0.3rem; }
.form input, .form textarea, .form select {
  width: 100%; padding: 0.8rem 0.9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; background: #fff; color: var(--ink);
}
.form input:focus, .form textarea:focus, .form select:focus { outline: 2px solid var(--green-500); outline-offset: 1px; border-color: var(--green-500); }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.contact-cards { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; text-align: center; }
.contact-card .ico { font-size: 1.8rem; display: block; margin-bottom: 0.3rem; }
.contact-card a { font-weight: 700; text-decoration: none; word-break: break-word; }

.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--paper); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }
.map-fallback { padding: 1.2rem 1.4rem; }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: step; display: grid; gap: 1rem; }
.steps li { counter-increment: step; position: relative; padding-left: 3.4rem; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0; width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--sun); color: var(--green-900); font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; display: grid; place-items: center;
}
.steps h3, .steps h4 { margin-bottom: 0.2rem; }

/* ---------- Partner logos ---------- */
.partner-row { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: center; }
.partner-row a, .partner-row div { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.8rem 1.2rem; display: grid; place-items: center; min-height: 80px; }
.partner-row img { max-height: 56px; width: auto; }
.partner-row .txt { font-family: var(--font-display); font-weight: 700; color: var(--green-800); font-size: 1.05rem; text-align: center; }

/* ---------- Ordnung ---------- */
.rules { counter-reset: rule; list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; }
@media (min-width: 720px) { .rules { grid-template-columns: 1fr 1fr; } }
.rules li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0.9rem 1rem 0.9rem 3.2rem; position: relative; margin: 0; }
.rules li::before { counter-increment: rule; content: counter(rule); position: absolute; left: 0.9rem; top: 0.75rem; width: 1.7rem; height: 1.7rem; border-radius: 50%; background: var(--green-100); color: var(--green-800); font-weight: 700; display: grid; place-items: center; font-size: 0.85rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--green-700), var(--green-500)); color: #fff; border-radius: var(--radius); padding: 2.2rem; display: grid; gap: 1.2rem; align-items: center; }
@media (min-width: 800px) { .cta-band { grid-template-columns: 1fr auto; } }
.cta-band h2 { color: #fff; margin-bottom: 0.3rem; }
.cta-band p { margin: 0; color: rgba(255,255,255,0.92); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #d9e2d3; margin-top: 3rem; font-size: 0.95rem; }
.footer-grid { display: grid; gap: 2rem; padding: 3.5rem 0 2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; } }
.footer-title { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sun); margin-bottom: 0.8rem; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--sun); }
.footer-logo { border-radius: 50%; margin-bottom: 0.8rem; background: #fff; padding: 4px; }
.footer-motto { font-family: var(--font-display); font-size: 1.15rem; color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a { text-decoration: none; }
.footer-links li { margin-bottom: 0.4rem; }
.site-footer .iban { font-family: ui-monospace, Consolas, monospace; font-size: 0.9rem; }
.site-footer .small { color: #a9b8a3; }
.social { display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; font-weight: 700; margin-top: 0.5rem; }
.footer-credit {
  text-align: center; padding: 1.6rem 1.2rem; margin-bottom: 0.4rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-credit p { margin: 0; }
.credit-label { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: #a9b8a3; margin-bottom: 0.4rem !important; }
.credit-name { display: inline-block; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: #fff; text-decoration: none; }
.credit-name:hover { color: var(--sun); }
.credit-sub { font-size: 0.9rem; color: #d9e2d3; margin: 0.25rem 0 0.5rem !important; }
.credit-contact { font-size: 0.9rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.3rem 0.6rem; }
.credit-contact a { text-decoration: none; }
.credit-contact span { color: #a9b8a3; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 1.2rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.85rem; color: #a9b8a3; }
.footer-bottom p { margin: 0; }
.footer-legal { list-style: none; padding: 0; margin: 0; display: flex; gap: 1.2rem; }
.footer-legal li { margin: 0; }

/* ---------- Reveal ---------- */
.reveal-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-ready .reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-ready .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .card:hover, .btn:hover { transform: none; }
}

/* ---------- Print ---------- */
/* Warnung auf der Zuwendungsbestätigung, solange die Angaben des Finanzamts fehlen */
.hinweis-unvollstaendig {
  max-width: 780px; margin: 0 auto 1.2rem; padding: 0.9rem 1.1rem;
  border: 1px solid #d9a441; border-left: 4px solid #d9a441; border-radius: var(--radius-sm);
  background: #fdf6e6; color: #5c4413; font-size: 0.95rem; line-height: 1.5;
}
.hinweis-unvollstaendig a { color: #5c4413; }

@media print {
  .site-header, .site-footer, .nav-toggle, .lightbox, .btn, .hinweis-unvollstaendig { display: none !important; }
  body { background: #fff; color: #000; }
  a::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}

/* ---------- Kompakter Kopf auf kleinen Bildschirmen ---------- */
@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name { font-size: 1rem; line-height: 1.1; max-width: 190px; }
  .brand-sub { display: none; }
  .nav-toggle { padding: 0.4rem 0.75rem; font-size: 0.9rem; }
  .hero .eyebrow, .page-hero .eyebrow { font-size: 0.7rem; letter-spacing: 0.1em; }
  .hero p { font-size: 1.05rem; }
  .hero { min-height: 78vh; }
}
