:root {
  --black: #000000;
  --near-black: #0c0c0c;
  --yellow: #FDFF13;
  --yellow-dim: #d8da10;
  --off-white: #f2f2f2;
  --grey: #7a7a7a;
  --grey-line: #262626;
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  color: var(--near-black);
  background: #fff;
  line-height: 1.65;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Topbar */
.topbar {
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 9px 16px;
}
.topbar a { text-decoration: underline; }

/* Header */
header.site {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 60;
}

.site-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--off-white);
  font-weight: 800;
  white-space: nowrap;
  font-size: 1.05rem;
}

.brand img { height: 44px; width: auto; }

nav.main-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

nav.main-nav a {
  text-decoration: none;
  color: var(--off-white);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

nav.main-nav a:hover::after { transform: scaleX(1); }

nav.main-nav a.cta {
  background: var(--yellow);
  color: var(--black);
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 700;
}
nav.main-nav a.cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Hero image — stands alone, no text overlay */
.hero-image {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 1200px;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Hero text — follows the image */
.hero-text {
  background: var(--black);
  color: var(--off-white);
  text-align: center;
  padding: 90px 24px 96px;
}

.hero-inner { max-width: 800px; margin: 0 auto; }

.hero-text .eyebrow {
  display: inline-block;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  margin: 0 0 26px;
  font-weight: 800;
  line-height: 1.25;
}

.hero-text h1 .highlight {
  position: relative;
  color: var(--yellow);
  white-space: nowrap;
}

.hero-text h1 .highlight::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; bottom: -6px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  transform-origin: left;
  animation: draw-underline 6s ease-in-out infinite;
}

/* grows left→right, holds, retracts back into itself (same origin — no glitch), repeats */
@keyframes draw-underline {
  0%   { transform: scaleX(0); }
  14%  { transform: scaleX(1); }
  82%  { transform: scaleX(1); }
  96%  { transform: scaleX(0); }
  100% { transform: scaleX(0); }
}

.hero-text p.lead {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
  color: #d8d8d8;
}

/* Blog-post header — used by article/campaign subpages */
.post-header {
  background: #fff;
  padding: 64px 0 0;
}

.post-header .wrap { max-width: 800px; }

.post-header .eyebrow-sm { color: #a89f00; }

.post-title {
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 14px 0 20px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--grey);
  font-size: 0.92rem;
  margin-bottom: 40px;
}
.post-meta .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--grey);
  flex: none;
}

.post-featured {
  max-width: 900px;
  margin: 0 auto 8px;
  padding: 0 24px;
}
.post-featured img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.post-featured figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--grey);
  text-align: center;
}

.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 10px 26px rgba(253,255,19,0.25);
}
.btn-primary:hover { background: var(--yellow-dim); }

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 2px solid var(--off-white);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

.btn-dark {
  background: var(--black);
  color: var(--off-white);
  border: 2px solid var(--black);
}
.btn-dark:hover { background: var(--near-black); }

/* Sections */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.dark { background: var(--black); color: var(--off-white); }
section.grey { background: #faf9f4; }

.eyebrow-sm {
  display: inline-block;
  color: var(--yellow-dim);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
section.grey .eyebrow-sm, section:not(.dark):not(.grey) .eyebrow-sm {
  color: #a89f00;
}

h2.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--grey);
  margin: 0 0 48px;
  max-width: 640px;
  font-size: 1.08rem;
}
section.dark .section-sub { color: #b8b8b8; }

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Breadcrumb / back link for subpages */
.back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 28px;
  width: fit-content;
}
.back-link:hover { color: var(--near-black); }

/* Intro / Mission */
.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mission blockquote {
  margin: 0 0 26px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  border-left: 4px solid var(--yellow);
  padding-left: 22px;
}

.mission p { font-size: 1.05rem; color: #3a3a3a; }

.mission-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.mission-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Initiativen */
.init-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.init-card {
  background: #111;
  border-radius: var(--radius);
  padding: 34px 30px;
  border-top: 3px solid var(--yellow);
}

.init-card .icon { font-size: 1.8rem; margin-bottom: 18px; }
.init-card h3 { margin: 0 0 14px; font-size: 1.25rem; }
.init-card p { margin: 0; color: #bdbdbd; font-size: 0.98rem; }

/* Story spotlight */
.story {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.story-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.story-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.story h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0 0 20px; font-weight: 800; }
.story p { color: #3a3a3a; font-size: 1.05rem; margin: 0 0 18px; }
.story p:last-of-type { margin-bottom: 30px; }

/* Article (donation-call subpages) */
.article {
  max-width: 760px;
  margin: 0 auto;
}
.article p {
  font-size: 1.1rem;
  color: #2c2c2c;
  margin: 0 0 22px;
}
.article p:first-of-type {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--near-black);
}

.article h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 48px 0 18px;
  letter-spacing: -0.01em;
}
.article h2:first-child { margin-top: 0; }

.article h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--near-black);
  margin: 34px 0 12px;
}

.article ul, .article ol {
  margin: 0 0 24px;
  padding-left: 22px;
  color: #2c2c2c;
  font-size: 1.05rem;
}
.article li { margin-bottom: 8px; }

.article a { color: var(--near-black); text-decoration: underline; text-decoration-color: var(--yellow-dim); text-decoration-thickness: 2px; }
.article a:hover { color: #a89f00; }

.article strong { font-weight: 700; }

.article .lede {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--near-black);
}

.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 28px;
  font-size: 0.98rem;
}
.article table th, .article table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid #e6e6e0;
  vertical-align: top;
}
.article table th { color: var(--grey); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }

.article-source-note {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e6e6e0;
  color: var(--grey);
  font-size: 0.9rem;
}
.article-source-note a { color: var(--grey); text-decoration-color: var(--grey); }

.callout-donate {
  background: var(--black);
  color: var(--off-white);
  border-radius: var(--radius);
  padding: 36px;
  margin: 40px 0;
}
.callout-donate h3 { color: var(--yellow); margin: 0 0 14px; font-size: 1.15rem; }
.callout-donate p { color: #d8d8d8; margin: 0 0 18px; font-size: 1rem; }
.callout-donate dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 20px; margin: 0 0 24px; }
.callout-donate dt { color: var(--yellow); font-weight: 700; }
.callout-donate dd { margin: 0; }
.callout-donate .tag-hint {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
}

.gallery-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 44px 0;
}
.gallery-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.gallery-2 .tall { aspect-ratio: 3/4; }
.gallery-2 .wide { aspect-ratio: 4/3; }

/* single inline image within article body — keeps the source's own proportions */
.post-inline-image {
  margin: 44px 0;
}
.post-inline-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.post-inline-image figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--grey);
  text-align: center;
}

/* Video */
.video-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.video-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.video-thumb::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--black);
  background: rgba(253,255,19,0.92);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin: auto;
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}
.video-thumb a { display: block; }

/* Blog / article listing grid (Informationen hub, future blog index) */
.post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #ece9dd;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,0.1); }

.post-card .post-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.post-card .post-card-image img { width: 100%; height: 100%; object-fit: cover; }

.post-card .post-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.post-card .post-card-tag {
  color: #a89f00;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.post-card h3 { margin: 0 0 10px; font-size: 1.15rem; font-weight: 800; line-height: 1.35; }
.post-card p { margin: 0 0 16px; color: var(--grey); font-size: 0.94rem; flex: 1; }
.post-card .post-card-link { font-weight: 700; font-size: 0.9rem; color: var(--near-black); }
.post-card:hover .post-card-link { color: #a89f00; }

/* Spenden */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}

.support-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  border: 2px solid var(--black);
}
.support-card h3 { margin: 0 0 10px; }
.support-card p { color: var(--grey); font-size: 0.92rem; margin: 0 0 18px; }
.support-card img { margin: 0 auto 16px; max-width: 220px; }

.bank-box {
  background: var(--black);
  color: var(--off-white);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
}
.bank-box dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 20px; margin: 0; }
.bank-box dt { color: var(--yellow); font-weight: 700; }
.bank-box dd { margin: 0; }

/* Footer */
footer.site {
  background: var(--black);
  color: #cfcfcf;
  padding: 60px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 40px; }
.footer-brand span { color: var(--off-white); font-weight: 800; font-size: 1.05rem; }

footer.site h4 {
  color: var(--yellow);
  margin: 0 0 14px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

footer.site p, footer.site a { text-decoration: none; font-size: 0.95rem; }
footer.site a:hover { color: var(--yellow); }
footer.site p a { display: block; margin-bottom: 8px; }

.social-row { display: flex; gap: 14px; margin-top: 6px; }
.social-row a {
  width: 42px; height: 42px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); font-weight: 700; font-size: 0.85rem;
}
.social-row a:hover { background: var(--yellow); color: var(--black); }

.footer-bottom {
  border-top: 1px solid var(--grey-line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: #888;
}
.footer-bottom a { color: #888; text-decoration: underline; }

@media (max-width: 900px) {
  .mission, .story, .video-block { grid-template-columns: 1fr; }
  .story-photo { order: -1; }
  .init-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .bank-box { grid-template-columns: 1fr; text-align: center; }
  .bank-box dl { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-2 { grid-template-columns: 1fr; }
  .callout-donate dl { grid-template-columns: auto 1fr; }
  .post-list { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--grey-line);
  }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: inline-block; }
}
