/* ══════════════════════════════════════════════════════
   Projekt Leonplus — style.css
   Schriften: Lora (Serif-Display) + Poppins (Sans)
   Farben:    Grüntöne, dunkel & natürlich
   ══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --g900: #0d1f17;  /* tiefes dunkelgrün */
  --g800: #1a2e25;
  --g700: #243b30;
  --g600: #2d6a4f;
  --g500: #40916c;
  --g400: #52b788;
  --g300: #74c69d;
  --g200: #b7e4c7;
  --g100: #d8f3dc;
  --g050: #f0faf3;
  --cream: #f8fdf9;
  --white: #ffffff;
  --text:  #1e3028;
  --muted: #4e6b58;
  --border:#c2dbc8;
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans:  'Poppins', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(45,106,79,.08);
  --shadow-md: 0 6px 24px rgba(45,106,79,.12);
  --shadow-lg: 0 16px 56px rgba(13,31,23,.22);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  /* Verhindert horizontales Scrollen auf Mobile */
  overflow-x: hidden;
}

/* Alle Bilder responsive */
img { max-width: 100%; height: auto; display: block; }

/* ── PAGE SWITCHING ── */
.page { display: none; }
.page.active { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }

/* ── NAVIGATION ── */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem;
  height: 66px;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--g800);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -.01em;
  user-select: none;
  flex-shrink: 0;
}
.navbar-links { display: flex; gap: 2.25rem; list-style: none; }
.navbar-links a {
  font-size: .85rem; font-weight: 500;
  color: var(--muted);
  cursor: pointer; text-decoration: none;
  transition: color .18s;
  letter-spacing: .01em;
  white-space: nowrap;
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--g600); }

/* Hamburger Button – nur auf Mobile sichtbar */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 4px; border-radius: 8px;
  transition: background .15s;
}
.nav-hamburger:hover { background: var(--g050); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--g700); border-radius: 2px;
  transition: all .22s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 560px) {
  .nav-hamburger { display: flex; }
  .navbar-links {
    display: none;
    position: absolute; top: 58px; left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 0;
    padding: .5rem 0;
    box-shadow: 0 8px 24px rgba(13,31,23,.1);
    z-index: 199;
  }
  .navbar-links.open { display: flex; }
  .navbar-links li a {
    display: block; padding: .9rem 1.5rem;
    font-size: .9rem; border-bottom: 1px solid var(--g050);
  }
  .navbar-links li:last-child a { border-bottom: none; }
  .navbar { height: 58px; padding: 0 1rem; position: relative; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .72rem 1.6rem;
  border-radius: 8px;
  font-family: var(--sans); font-weight: 600; font-size: .85rem;
  letter-spacing: .01em;
  cursor: pointer; text-decoration: none;
  border: none; transition: all .18s;
  line-height: 1;
}
.btn-primary { background: var(--g500); color: var(--white); }
.btn-primary:hover { background: var(--g600); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(64,145,108,.35); }
.btn-secondary { background: var(--g100); color: var(--g700); }
.btn-secondary:hover { background: var(--g200); }
.btn-dark-outline { background: transparent; color: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.35); }
.btn-dark-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn-white { background: var(--white); color: var(--g600); font-weight: 700; }
.btn-white:hover { background: var(--g100); }
.btn-white-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.45); }
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-ghost { background: transparent; color: var(--muted); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--g400); color: var(--g600); }
.btn-green { background: var(--g600); color: #fff; }
.btn-green:hover { background: var(--g500); transform: translateY(-1px); }

/* ── LAYOUT ── */
.wrap  { max-width: 980px;  margin: 0 auto; padding: 0 2rem; }
.wrap-sm { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.wrap-lg { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

section { padding: 5.5rem 2rem; }
.section-eyebrow {
  display: block;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--g500); margin-bottom: .7rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--g800); line-height: 1.18; margin-bottom: 1rem; font-weight: 400;
}
.section-sub {
  font-size: 1rem; color: var(--muted); line-height: 1.75; font-weight: 300;
  max-width: 560px; margin-bottom: 2.5rem;
}

/* ── HERO ── */
.hero {
  background: var(--g800);
  color: var(--white);
  padding: 6rem 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 55% 35%, rgba(64,145,108,.4) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(45,106,79,.22) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(216,243,220,.14);
  border: 1px solid rgba(216,243,220,.28);
  color: #95d4a8; font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .38rem 1.1rem; border-radius: 100px; margin-bottom: 1.6rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.08; font-weight: 400;
  margin-bottom: 1.3rem;
}
.hero h1 em { font-style: italic; color: var(--g300); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  font-weight: 300; line-height: 1.78; max-width: 520px;
  margin: 0 auto 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; }

.hero-image-frame {
  max-width: 900px; margin: 0 auto;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
  box-shadow: 0 -8px 60px rgba(0,0,0,.45), 0 -2px 0 rgba(64,145,108,.3);
  position: relative;
}
.hero-image-frame img {
  width: 100%; height: 380px; object-fit: cover; display: block;
}
.hero-image-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,46,37,.15) 0%, transparent 40%);
}

/* ── STAT BAR ── */
.stat-bar {
  background: var(--g700);
  padding: 2.2rem 2rem;
}
.stat-bar-inner {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; text-align: center;
}
.stat-item {}
.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem; color: var(--g300); font-weight: 400;
  line-height: 1;
}
.stat-label {
  font-size: .78rem; color: rgba(255,255,255,.5);
  font-weight: 300; margin-top: .35rem; letter-spacing: .02em;
}

/* ── GOALS / CARDS ── */
.bg-cream { background: var(--cream); }
.bg-pale  { background: var(--g050); }
.bg-dark  { background: var(--g800); }

.goals-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; margin-top: 2.5rem;
}
.goal-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  display: flex; gap: 1.1rem; align-items: flex-start;
  transition: box-shadow .2s, transform .2s;
}
.goal-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.goal-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--g100); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
}
.goal-card h3 { font-size: .95rem; font-weight: 600; color: var(--g800); margin-bottom: .35rem; }
.goal-card p  { font-size: .875rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── STEPS ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.step-card {
  background: var(--g050); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.6rem;
  text-align: center;
}
.step-num {
  width: 50px; height: 50px; margin: 0 auto 1.3rem;
  background: var(--g600); color: var(--white);
  font-family: var(--serif); font-size: 1.35rem;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.step-card h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--g800); margin-bottom: .6rem; font-weight: 400; }
.step-card p  { font-size: .875rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── LINUX SPLIT ── */
.split-section { background: var(--g800); }
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.split-text .section-title { color: var(--white); }
.split-text .section-eyebrow { color: var(--g300); }
.split-text .section-sub { color: rgba(255,255,255,.58); max-width: none; }
.split-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: .85rem; }
.split-list li {
  display: flex; gap: .8rem; align-items: flex-start;
  font-size: .925rem; color: rgba(255,255,255,.78); font-weight: 300;
}
.split-list li::before { content: '✓'; color: var(--g300); font-weight: 700; flex-shrink: 0; }
.split-img img {
  width: 100%; height: 360px; object-fit: cover;
  border-radius: 14px; display: block;
  box-shadow: var(--shadow-lg);
}

/* ── DETAIL SECTION ── */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.detail-grid img { width: 100%; height: 270px; object-fit: cover; border-radius: var(--radius); display: block; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-top: 1.2rem; }
.check-list li {
  display: flex; gap: .75rem;
  font-size: .925rem; color: var(--muted); font-weight: 300;
}
.check-list li::before { content: '✓'; color: var(--g500); font-weight: 700; flex-shrink: 0; }

/* ── HOW-TO STRIP ── */
.howto-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-top: 1.5rem; margin-bottom: 2.25rem;
}
.howto-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.howto-item .em { font-size: 1.6rem; margin-bottom: .5rem; }
.howto-item h3 { font-size: .88rem; font-weight: 600; color: var(--g800); margin-bottom: .2rem; }
.howto-item p  { font-size: .8rem; color: var(--muted); font-weight: 300; }

/* ── CTA BAND ── */
.cta-band { background: var(--g600); color: #fff; padding: 5rem 2rem; text-align: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(1.8rem,3vw,2.3rem); margin-bottom: 1rem; font-weight: 400; }
.cta-band p  { color: rgba(255,255,255,.75); margin-bottom: 2.25rem; font-size: 1rem; font-weight: 300; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: var(--g900);
  color: rgba(255,255,255,.55);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; max-width: 980px; margin: 0 auto 3rem;
}
.footer-brand-name {
  font-family: var(--serif); font-size: 1.15rem;
  color: rgba(255,255,255,.9); cursor: pointer;
  margin-bottom: .75rem; display: block;
}
.footer-brand p { font-size: .85rem; line-height: 1.7; font-weight: 300; }
.footer-col h4 {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.88);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a {
  font-size: .85rem; color: rgba(255,255,255,.45);
  text-decoration: none; cursor: pointer;
  transition: color .18s; font-weight: 300;
}
.footer-col ul li a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem; max-width: 980px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--g800);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 110%, rgba(64,145,108,.28) 0%, transparent 65%);
}
.page-header-inner { position: relative; }
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem,4vw,3.1rem);
  color: var(--white); font-weight: 400; margin-bottom: .75rem;
}
.page-header p { color: rgba(255,255,255,.55); font-size: 1rem; font-weight: 300; }

/* ── DONATE ── */
.donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.donate-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 16px; padding: 2.25rem;
}
.donate-card h2 { font-family: var(--serif); font-size: 1.45rem; color: var(--g800); margin-bottom: .8rem; font-weight: 400; }
.donate-card > p { color: var(--muted); font-size: .9rem; margin-bottom: 1.4rem; line-height: 1.7; font-weight: 300; }
.email-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.3rem 1.5rem;
  font-family: 'Courier New', monospace; font-size: .8rem;
  color: var(--text); line-height: 1.9; white-space: pre-wrap; word-break: break-word;
}
.email-box strong { color: var(--g700); font-weight: 700; }

/* FORMS */
.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-size: .82rem; font-weight: 600; color: var(--g800); margin-bottom: .4rem; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: .72rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--sans); font-size: .875rem; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-color: var(--g400);
  box-shadow: 0 0 0 3px rgba(82,183,136,.15);
}
.form-row textarea { min-height: 115px; resize: vertical; }
.form-success {
  display: none; margin-top: 1rem;
  background: var(--g100); border: 1px solid var(--g200);
  border-radius: 8px; padding: 1rem 1.25rem;
  font-size: .875rem; font-weight: 600; color: var(--g700);
}

/* ── NEWS ── */
.news-hero-wrap {
  background: var(--g800);
  padding: 4.5rem 2rem 3.5rem;
}
.news-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center; max-width: 980px; margin: 0 auto;
}
.news-hero-inner h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3vw,2.5rem);
  color: var(--white); font-weight: 400; line-height: 1.2; margin-bottom: 1rem;
}
.news-hero-inner p { color: rgba(255,255,255,.58); font-size: .95rem; font-weight: 300; line-height: 1.75; }
.news-hero-inner img { width: 100%; height: 290px; object-fit: cover; border-radius: 14px; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.service-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.6rem;
  transition: box-shadow .2s;
}
.service-card:hover { box-shadow: var(--shadow-sm); }
.service-card h3 { font-family: var(--serif); font-size: 1.05rem; color: var(--g800); margin-bottom: .5rem; font-weight: 400; }
.service-card p  { font-size: .85rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

.resources-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2.5rem; }
.res-block h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--white); margin-bottom: 1rem; font-weight: 400; }
.res-block ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.res-block ul li {
  font-size: .875rem; color: rgba(255,255,255,.6);
  padding-left: 1.1rem; position: relative; font-weight: 300;
}
.res-block ul li::before { content: '·'; position: absolute; left:0; color:var(--g300); font-size:1.2rem; line-height:.9; }
.res-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.res-imgs img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; }
.quote-pull {
  background: rgba(255,255,255,.05); border-left: 3px solid var(--g300);
  border-radius: 0 8px 8px 0; padding: 1.3rem 1.5rem; margin-top: 1.5rem;
}
.quote-pull blockquote { font-style: italic; color: rgba(255,255,255,.78); font-size: .925rem; margin-bottom: .5rem; font-weight: 300; line-height: 1.65; }
.quote-pull cite { font-size: .78rem; color: rgba(255,255,255,.35); }

.posts-wrap { max-width: 980px; margin: 0 auto; }
.post-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.post-item {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem 2rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer; transition: box-shadow .2s, border-color .2s;
}
.post-item:hover { box-shadow: var(--shadow-sm); border-color: var(--g400); }
.post-item h3 { font-family: var(--serif); font-size: 1.08rem; color: var(--g800); margin-bottom: .3rem; font-weight: 400; }
.post-meta { font-size: .78rem; color: var(--muted); }
.post-tag {
  background: var(--g100); color: var(--g600);
  font-size: .7rem; font-weight: 700; letter-spacing: .05em;
  padding: .3rem .8rem; border-radius: 100px; white-space: nowrap;
}

.newsletter-wrap {
  background: var(--g050); border-top: 1px solid var(--border);
  padding: 4.5rem 2rem; text-align: center;
}
.newsletter-wrap h2 { font-family: var(--serif); font-size: 1.75rem; color: var(--g800); margin-bottom: .5rem; font-weight: 400; }
.newsletter-wrap p  { color: var(--muted); margin-bottom: 1.75rem; font-size: .95rem; font-weight: 300; }
.nl-form { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.nl-form input {
  padding: .72rem 1.3rem; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--sans); font-size: .875rem; outline: none; min-width: 260px;
  transition: border-color .18s;
}
.nl-form input:focus { border-color: var(--g500); }

/* ── EXTRA PAGES ── */
.prose-page { padding: 4rem 2rem 5.5rem; }
.prose-page h1 { font-family: var(--serif); font-size: 2.3rem; color: var(--g800); margin-bottom: 1.75rem; font-weight: 400; }
.prose-page h2 {
  font-family: var(--serif); font-size: 1.35rem; color: var(--g800);
  margin: 2.5rem 0 .75rem; font-weight: 400;
  border-bottom: 1px solid var(--border); padding-bottom: .5rem;
}
.prose-page p  { color: var(--muted); margin-bottom: 1rem; font-size: .925rem; line-height: 1.8; font-weight: 300; }
.prose-page ul { padding-left: 1.5rem; color: var(--muted); font-size: .925rem; display: flex; flex-direction: column; gap: .4rem; font-weight: 300; }
.prose-page a  { color: var(--g600); }
.prose-page a:hover { text-decoration: underline; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.team-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.25rem; text-align: center;
  transition: box-shadow .2s;
}
.team-card:hover { box-shadow: var(--shadow-sm); }
.team-avatar {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--g600); color: var(--white);
  font-family: var(--serif); font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
}
.team-card h3 { font-size: 1rem; font-weight: 600; color: var(--g800); margin-bottom: .3rem; }
.team-card .role { font-size: .85rem; color: var(--muted); font-weight: 300; }

/* TIMELINE */
.timeline { margin-top: 2.25rem; display: flex; flex-direction: column; }
.tl-item { display: flex; gap: 2rem; padding-bottom: 2.75rem; position: relative; }
.tl-item:not(:last-child)::after {
  content: ''; position: absolute;
  left: 125px; top: 56px; bottom: 0; width: 2px; background: var(--border);
}
.tl-date {
  font-family: var(--serif); font-size: .95rem; color: var(--g500);
  font-weight: 400; min-width: 112px; padding-top: .3rem; text-align: right;
}
.tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--g600); border: 3px solid var(--g100);
  flex-shrink: 0; margin-top: .4rem;
}
.tl-body h3 { font-weight: 600; color: var(--g800); margin-bottom: .35rem; font-size: .95rem; }
.tl-body p  { font-size: .875rem; color: var(--muted); font-weight: 300; line-height: 1.65; }

/* KARRIERE */
.job-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.1rem; }
.job-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.6rem 2rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  transition: box-shadow .2s;
}
.job-card:hover { box-shadow: var(--shadow-sm); }
.job-card h3 { font-weight: 600; color: var(--g800); margin-bottom: .25rem; font-size: .95rem; }
.job-card p  { font-size: .85rem; color: var(--muted); font-weight: 300; }
.job-badge {
  background: var(--g100); color: var(--g600);
  font-size: .7rem; font-weight: 700; letter-spacing: .05em;
  padding: .32rem .9rem; border-radius: 100px; white-space: nowrap;
}

/* KONTAKT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-top: 2.25rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.75rem; }
.c-icon {
  width: 48px; height: 48px; background: var(--g100);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.contact-info-item h3 { font-weight: 600; color: var(--g800); margin-bottom: .2rem; font-size: .95rem; }
.contact-info-item p, .contact-info-item a { font-size: .875rem; color: var(--muted); font-weight: 300; }
.contact-info-item a { color: var(--g600); text-decoration: none; }
.contact-info-item a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
/* ══════════════════════════════════════════════════════
   RESPONSIVE — vollständig überarbeitet
   Breakpoints: 900px (Tablet) → 640px (Phablet) → 420px (Phone)
   ══════════════════════════════════════════════════════ */

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
  /* Grids → 1 Spalte */
  .goals-grid       { grid-template-columns: 1fr; gap: 1rem; }
  .steps-grid       { grid-template-columns: 1fr; gap: 1rem; }
  .split-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .donate-grid      { grid-template-columns: 1fr; gap: 1.5rem; }
  .resources-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid        { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
  .services-grid    { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .howto-strip      { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .detail-grid      { grid-template-columns: 1fr; gap: 1rem; }
  .news-hero-inner  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stat-bar-inner   { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .res-imgs         { grid-template-columns: 1fr 1fr; gap: .75rem; }

  /* Bilder in Split-Sektion */
  .split-img img    { height: 280px; }

  /* Hero Bild etwas kleiner */
  .hero-image-frame img { height: 280px; }

  /* Navbar Links enger */
  .navbar { padding: 0 1.5rem; }
  .navbar-links { gap: 1.5rem; }

  /* Post-Item umbrechen */
  .post-item { flex-direction: column; align-items: flex-start; gap: .5rem; }

  /* Timeline Date linksbündig  */
  .tl-item::after   { left: 112px; }
  .tl-date          { min-width: 95px; font-size: .85rem; }

  /* Job-Cards umbrechen */
  .job-card { flex-direction: column; align-items: flex-start; gap: .75rem; }

  /* Section Padding reduzieren */
  section { padding: 4rem 1.5rem; }
  .prose-page { padding: 3rem 1.5rem 4rem; }
}

/* ── Phablet (≤ 640px) ── */
@media (max-width: 640px) {
  /* Navbar: Links kompakter, kein Überlauf */
  .navbar           { padding: 0 1rem; height: 58px; }
  .navbar-brand     { font-size: 1rem; }
  .navbar-links     { gap: .9rem; }
  .navbar-links a   { font-size: .78rem; }

  /* Hero */
  .hero             { padding: 3.5rem 1rem 0; }
  .hero h1          { font-size: 2rem; }
  .hero-sub         { font-size: .95rem; }
  .hero-btns        { flex-direction: column; align-items: center; gap: .75rem; }
  .hero-btns .btn   { width: 100%; max-width: 280px; justify-content: center; }
  .hero-image-frame img { height: 220px; }
  .hero-badge       { font-size: .62rem; }

  /* Stat Bar → 2 Spalten */
  .stat-bar         { padding: 1.75rem 1rem; }
  .stat-bar-inner   { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .stat-num         { font-size: 1.8rem; }
  .stat-label       { font-size: .72rem; }

  /* Sektionen */
  section           { padding: 3rem 1rem; }
  .prose-page       { padding: 2.5rem 1rem 3.5rem; }
  .wrap, .wrap-sm, .wrap-lg { padding: 0 1rem; }

  /* Grids → immer 1 Spalte */
  .team-grid        { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .howto-strip      { grid-template-columns: 1fr 1fr; }
  .res-imgs         { grid-template-columns: 1fr; }
  .goals-grid       { grid-template-columns: 1fr; }

  /* Bilder */
  .split-img img    { height: 220px; }
  .detail-grid img  { height: 200px; }
  .res-imgs img     { height: 160px; }
  .news-hero-inner img { height: 200px; }

  /* Seiten-Header */
  .page-header      { padding: 3.5rem 1rem 3rem; }
  .page-header h1   { font-size: 1.8rem; }

  /* Karten */
  .donate-card      { padding: 1.5rem; }
  .goal-card        { padding: 1.25rem; gap: .85rem; }
  .step-card        { padding: 1.5rem 1.25rem; }
  .service-card     { padding: 1.25rem; }

  /* E-Mail Box */
  .email-box        { font-size: .75rem; padding: 1rem; }

  /* CTA Band */
  .cta-band         { padding: 3.5rem 1rem; }
  .cta-buttons      { flex-direction: column; align-items: center; gap: .75rem; }
  .cta-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Footer */
  .footer-grid      { grid-template-columns: 1fr; gap: 1.75rem; }
  footer            { padding: 3rem 1rem 1.75rem; }
  .footer-bottom    { flex-direction: column; gap: .5rem; text-align: center; }

  /* Stat Bar Page-Header Sub */
  .section-title    { font-size: 1.6rem; }

  /* Newsletter */
  .nl-form          { flex-direction: column; align-items: stretch; }
  .nl-form input    { min-width: 0; width: 100%; }
  .nl-form .btn     { width: 100%; justify-content: center; }
  .newsletter-wrap  { padding: 3rem 1rem; }

  /* Timeline */
  .tl-item          { flex-direction: column; gap: .5rem; padding-bottom: 2rem; }
  .tl-item::after   { display: none; }
  .tl-date          { min-width: auto; text-align: left; font-size: .85rem; }
  .tl-dot           { display: none; }

  /* Post Modal */
  .post-modal-box   { padding: 1.75rem 1.25rem; }

  /* News Hero */
  .news-hero-wrap   { padding: 3rem 1rem 2.5rem; }
  .news-hero-inner h1 { font-size: 1.5rem; }

  /* Modals */
  .modal-box        { padding: 2rem 1.25rem; }
  .modal-box h2     { font-size: 1.3rem; }

  /* Buttons allgemein */
  .btn              { font-size: .82rem; padding: .68rem 1.35rem; }

  /* How-To Strip */
  .howto-item       { padding: 1rem; }

  /* Coming Soon Banner */
  .coming-soon-banner { flex-direction: column; gap: .4rem; padding: .9rem 1rem; }
}

/* ── Phone (≤ 420px) ── */
@media (max-width: 420px) {
  /* Navbar: Markenname kürzen wenn nötig */
  .navbar-brand     { font-size: .9rem; }
  .navbar-links     { gap: .65rem; }
  .navbar-links a   { font-size: .72rem; }

  /* Stat Bar → 1 Spalte */
  .stat-bar-inner   { grid-template-columns: 1fr 1fr; }
  .stat-num         { font-size: 1.6rem; }

  /* How-To → 1 Spalte */
  .howto-strip      { grid-template-columns: 1fr; }

  /* Hero */
  .hero h1          { font-size: 1.75rem; }
  .hero-image-frame img { height: 180px; }

  /* Forms */
  .form-row input,
  .form-row textarea,
  .form-row select  { font-size: .82rem; }

  /* Donate Card */
  .donate-card      { padding: 1.25rem; }

  /* Schriften etwas kleiner */
  .section-title    { font-size: 1.45rem; }
  .page-header h1   { font-size: 1.6rem; }

  /* Team Avatar */
  .team-avatar      { width: 62px; height: 62px; font-size: 1.5rem; }

  /* Footer extra eng */
  .footer-col ul li a { font-size: .8rem; }

  /* Section */
  section           { padding: 2.5rem .875rem; }
  .prose-page       { padding: 2rem .875rem 3rem; }
  .wrap, .wrap-sm, .wrap-lg { padding: 0 .875rem; }

  /* Post Item */
  .post-item        { padding: 1.1rem 1.25rem; }
  .post-item h3     { font-size: .95rem; }

  /* Job Card */
  .job-card         { padding: 1.25rem; }

  /* Modal */
  .modal-box        { padding: 1.5rem 1rem; border-radius: 14px; }
  .modal-overlay    { padding: .875rem; }

  /* contact info items */
  .contact-info-item { flex-direction: column; gap: .5rem; }
  .c-icon           { width: 40px; height: 40px; font-size: 1.1rem; }
}

/* ─── MODALS (Coming Soon + Post Detail) ─── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 500;
  background: rgba(13,31,23,.75);
  backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.active { display: flex; animation: fadeIn .2s ease; }

.modal-box {
  background: var(--white);
  border-radius: 18px;
  padding: 2.5rem;
  max-width: 520px; width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp .22s ease;
}
@keyframes slideUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

.modal-close {
  position: absolute; top: 1.1rem; right: 1.2rem;
  background: var(--g050); border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 1.1rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.modal-close:hover { background: var(--g100); color: var(--g700); }

/* Coming Soon Modal */
.cs-icon { font-size: 3rem; margin-bottom: 1rem; }
.modal-box h2 { font-family: var(--serif); font-size: 1.5rem; color: var(--g800); margin-bottom: .75rem; font-weight: 400; }
.modal-box p  { color: var(--muted); font-size: .95rem; line-height: 1.75; font-weight: 300; }
.cs-badge {
  display: inline-block; margin-top: 1.3rem;
  background: var(--g100); color: var(--g600);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .4rem 1rem; border-radius: 100px;
}

/* Post Detail Modal */
.post-modal-box {
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  scrollbar-width: thin;
}
.post-modal-box h2 { font-family: var(--serif); font-size: 1.65rem; color: var(--g800); margin-bottom: .5rem; font-weight: 400; line-height: 1.2; }
.post-modal-meta { font-size: .8rem; color: var(--muted); margin-bottom: 1.75rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.post-modal-body p { color: var(--muted); font-size: .95rem; line-height: 1.8; font-weight: 300; margin-bottom: 1rem; }

/* ─── COMING SOON BANNER (Newsletter & App Sektionen) ─── */
.coming-soon-banner {
  display: flex; align-items: center; gap: .75rem;
  background: linear-gradient(135deg, #fff8e7, #fff3d6);
  border: 1.5px solid #f0d98a;
  border-radius: 10px;
  padding: .85rem 1.25rem;
  margin-bottom: 1.2rem;
  font-size: .875rem; color: #8a6a00; font-weight: 500;
}
.coming-soon-banner .cs-emoji { font-size: 1.2rem; flex-shrink: 0; }
.coming-soon-banner strong { color: #6b5000; }

/* ─── DISABLED BUTTON ─── */
.btn-disabled {
  opacity: .5; cursor: not-allowed !important;
  pointer-events: none;
}
.btn-coming-soon {
  background: var(--g100); color: var(--muted);
  border: 1.5px dashed var(--border);
  cursor: pointer;
}
.btn-coming-soon:hover { background: var(--g200); color: var(--g700); }
