/*
 * Place To go e.V. – Stylesheet
 *
 * Fonts:
 *  – General Sans (body):   Lokal unter /assets/fonts/GeneralSans-Variable.*
 *  – Enjoyable (display):   Lokal unter /assets/fonts/enjoyable.*
 *    Fallback: generisches cursive.
 */

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Variable.woff2') format('woff2'),
       url('../fonts/GeneralSans-Variable.woff') format('woff');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-VariableItalic.woff2') format('woff2'),
       url('../fonts/GeneralSans-VariableItalic.woff') format('woff');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Enjoyable';
  src: url('../fonts/enjoyable.woff2') format('woff2'),
       url('../fonts/enjoyable.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}

/* ─── VARIABLES ─────────────────────────────────────────── */

:root {
  --green:        #9EC043;
  --green-rgb: 158, 192, 67;
  --green-light:  #F4F8EC;
  --dark:         #353535;
  --white:        #FFFFFF;

  --font-primary: 'Enjoyable', cursive;
  --font-body:    'General Sans', system-ui, sans-serif;

  --max-w: 1296px;
  --px:    clamp(24px, 5vw, 72px);
  --section-py: clamp(60px, 7vw, 100px);
}

/* ─── RESET & BASE ──────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  background: var(--white);
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─── LAYOUT ────────────────────────────────────────────── */

.inner {
  max-width: var(--max-w);
  margin-inline: auto;
  width: 100%;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────── */

.overline {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1;
}

.font-enjoyable{
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 0.95;
}

/* ─── HEADINGS ─────────────────────────────────────────── */

h1, .h1 {
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1;
  color: var(--dark);
}

h2, .h2 {
  font-size: clamp(32px, 8vw, 64px);
  line-height: 1.05;
  color: var(--dark);
  margin-top: 0.5rem;
}

h3, .h3 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  color: var(--dark);
}

h4, .h4 {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.3;
  color: var(--dark);
}

h5, .h5 {
  font-size: 16px;
  line-height: 1.4;
  color: var(--dark);
}

h6, .h6 {
  font-size: 14px;
  line-height: 1.4;
  color: var(--dark);
}

/* ─── BUTTONS ───────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.15s, background 0.15s;
  white-space: nowrap;
}

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

/* Weiß gefüllt – auf grünem Hintergrund */
.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* Ghost weiß – auf grünem Hintergrund */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }

/* Grün gefüllt – auf weißem / hellgrünem Hintergrund */
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover { opacity: 0.88; }

/* Grün Outline – auf weißem / hellgrünem Hintergrund */
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover { background: rgba(158, 192, 67, 0.08); }

/* ─── IMAGE PLACEHOLDER ─────────────────────────────────── */

.img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.img-placeholder span {
  font-size: 13px;
  font-weight: 500;
}

.img-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

/* ─── NAVIGATION ────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  padding-block: 24px;
  padding-inline: var(--px);
}

.nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: all 150ms ease;
}

.nav-logo:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a:not(.btn) {
  font-size: 15px;
  color: var(--white);
  opacity: 0.9;
  transition: opacity 0.15s;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
  padding: 10px 22px;
}

/* ─── HERO ──────────────────────────────────────────────── */

.hero {
  background: var(--green);
  padding-top: clamp(48px, 5.5vw, 80px);
  padding-bottom: clamp(60px, 7vw, 100px);
  padding-inline: var(--px);
  overflow-x: clip;
}

.hero .inner {
  /* display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.hero-content {
  flex: 0 1 680px;
}

.hero-headline {
  font-size: clamp(44px, 5.5vw, 80px);
  color: var(--white);
  margin-bottom: 28px;
}

.hero-text {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/*
 * Hero Visual – Haus-Clip-Path
 *
 * Technik: inline SVG <clipPath id="house-clip" clipPathUnits="objectBoundingBox">
 * Die Hauspfade aus dem Logo werden via Transform auf [0,1]×[0,1] normiert:
 *   Bounding Box: x∈[-0.2, 45.5]  →  W = 45.7
 *                 y∈[0,   50.5]   →  H = 50.5
 *   SVG-Transform: scale(0.021882, 0.019802) translate(0.2, 0)
 *   Container aspect-ratio: 457/505 (= 45.7/50.5)
 */

.hero-visual_wrapper {
  position: relative;
}

.hero-visual {
  position: absolute;
  /* flex: 0 0 clamp(300px, 38vw, 500px); */
  /* Exaktes Seitenverhältnis der Haus-Bounding-Box aus dem Logo */
  /* aspect-ratio: 457 / 505; */
  aspect-ratio: 1019 / 877;
  align-self: flex-start;
  margin-top: -40px;
  left: 0;
  /* Dekorative Formen dürfen über den Rand hinausragen */
  overflow: visible;
  width: 55vw;
}

/* Alle Haus-Ebenen: absolut, füllen den Container, mit Clip-Path */
.hero-house-deco,
.hero-house-main {
  position: absolute;
  inset: 0;
  /* clip-path: url(#house-clip); */
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1019 877'><path d='M297.59 875.831C177.302 866.661 189.093 843.123 176.919 787.641C162.448 721.001 147.977 523.833 147.977 523.833C63.1396 528.954 -2.01947 514.739 0.0478547 478.974C6.0967 377.027 458.612 20.8263 458.612 20.8263C487.401 -1.87089 508.84 0.0396688 508.84 0.0396688H509.223C509.223 0.0396688 530.739 -1.87089 559.451 20.8263C559.451 20.8263 614.657 62.4761 693.139 130.568L885.17 303.892C960.59 377.486 1015.79 442.291 1018.02 478.974C1020.16 514.739 954.924 528.954 870.163 523.833C870.163 523.833 855.768 721.001 841.221 787.641C828.663 845.11 841.833 868.265 707.074 876.748L297.513 875.831H297.59Z' fill='black'/></svg>");
          mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1019 877'><path d='M297.59 875.831C177.302 866.661 189.093 843.123 176.919 787.641C162.448 721.001 147.977 523.833 147.977 523.833C63.1396 528.954 -2.01947 514.739 0.0478547 478.974C6.0967 377.027 458.612 20.8263 458.612 20.8263C487.401 -1.87089 508.84 0.0396688 508.84 0.0396688H509.223C509.223 0.0396688 530.739 -1.87089 559.451 20.8263C559.451 20.8263 614.657 62.4761 693.139 130.568L885.17 303.892C960.59 377.486 1015.79 442.291 1018.02 478.974C1020.16 514.739 954.924 528.954 870.163 523.833C870.163 523.833 855.768 721.001 841.221 787.641C828.663 845.11 841.833 868.265 707.074 876.748L297.513 875.831H297.5九Z' fill='black'/></svg>");
  
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transform-origin: center center;
  aspect-ratio: 1019 / 877;
  width: 55vw;
  max-width: 800px;
}

/* Dekoratives Haus A – hellgrün (#dae7b6), leicht links rotiert */
.hero-house-deco--a {
  background: #dae7b6;
  transform: rotate(-4deg) translate(-5%, 4%) scale(1.07);
  z-index: 1;
}

/* Dekoratives Haus B – weiß semi-transparent, rechts rotiert */
.hero-house-deco--b {
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(7.7deg) translate(5%, -3%) scale(1.05);
  z-index: 2;
}

/* Hauptbild-Ebene */
.hero-house-main {
  z-index: 3;
  overflow: hidden; /* Bild wird innerhalb des Clips abgeschnitten */
}

/* Bild füllt die maskierte Fläche vollständig:
   position:absolute + inset:0 überschreibt "height:auto" aus dem Reset zuverlässig */
.hero-house-main > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Platzhalter wenn kein Bild hochgeladen */
.hero-house-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.hero-house-placeholder .img-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

/* ─── TILTED IMAGE (wiederverwendbar) ──────────────────── */

.img-tilted {
  position: relative;
}

.img-tilted--right {
  transform: rotate(2deg);
}

.img-tilted--left {
  transform: rotate(-2deg);
}

.img-tilted::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--green-light);
  background: rgba(var(--green-rgb), 0.12);
  z-index: -1;
  border-radius: 20px;
}

.img-tilted--right::after {
  transform: rotate(-4deg);
}

.img-tilted--left::after {
  transform: rotate(4deg);
}

/* ─── ABOUT ─────────────────────────────────────────────── */

.about {
  background: var(--white);
  padding-block: var(--section-py);
  padding-inline: var(--px);
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.about .inner {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.about-image {
  flex: 0 0 clamp(260px, 36vw, 520px);
  aspect-ratio: 52 / 42;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about .img-placeholder {
  color: var(--green);
}

.about .img-circle {
  background: rgba(158, 192, 67, 0.35);
}

.about-content {
  flex: 1;
}

.about-headline {
  font-size: clamp(36px, 4vw, 60px);
  color: var(--dark);
  margin-top: 10px;
  margin-bottom: 20px;
}

.about-text {
  font-size: 17px;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 32px;
}

.about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── PROJECTS ──────────────────────────────────────────── */

.projects {
  background: var(--green-light);
  padding-block: var(--section-py);
  padding-inline: var(--px);
}

.projects-header {
  margin-bottom: 48px;
}

.projects-headline {
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--dark);
  margin-top: 10px;
  margin-bottom: 20px;
}

.projects-intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--dark);
  max-width: 600px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.project-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
}

.project-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
}

.project-icon svg {
  width: 22px;
  height: 22px;
}

.project-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
}

.project-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(53, 53, 53, 0.7);
}

.projects-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── IMPACT ────────────────────────────────────────────── */

.impact {
  background: var(--white);
  padding-block: var(--section-py);
  padding-inline: var(--px);
}

.impact .inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(40px, 6vw, 80px);
}

.impact-stats {
  flex: 1;
}

.impact-headline {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--dark);
  margin-top: 10px;
  margin-bottom: 48px;
}

.stats-row {
  display: flex;
}

.stat {
  flex: 1;
  padding-inline: 24px;
  border-right: 1px solid #E0E0E0;
}

.stat:first-child {
  padding-left: 0;
}

.stat:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: clamp(40px, 4vw, 56px);
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
}

.stat p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(53, 53, 53, 0.65);
}

/* Transparenz-Karte */
.transparency-card {
  flex: 0 0 clamp(280px, 33vw, 480px);
  background: var(--green-light);
  border-radius: 20px;
  padding: 40px;
}

.transparency-card h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
  line-height: 1.3;
}

.transparency-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.transparency-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--dark);
}

.check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.check-icon svg {
  width: 11px;
  height: 11px;
}

.transparency-divider {
  height: 1px;
  background: rgba(53, 53, 53, 0.15);
  margin-bottom: 24px;
}

.transparency-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.transparency-link {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(53, 53, 53, 0.25);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  transition: border-color 0.15s, color 0.15s;
}

.transparency-link:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ─── SUPPORT ───────────────────────────────────────────── */

.support {
  background: var(--green);
  padding-block: var(--section-py);
  padding-inline: var(--px);
}

.support .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 80px);
}

.support-content {
  flex: 0 1 619px;
}

.support-headline {
  font-size: clamp(44px, 5vw, 72px);
  color: var(--white);
  margin-bottom: 24px;
}

.support-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}

.support-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.support-cards {
  flex: 0 0 clamp(280px, 41vw, 597px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 28px 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.support-card .overline {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.support-card-headline {
  font-size: clamp(24px, 2.5vw, 34px);
  color: var(--white);
}

/* ─── UNSER TEAM – UNTERSEITE ───────────────────────────── */

.team-section {
  padding-block: clamp(60px, 7vw, 96px);
  padding-inline: var(--px);
  background: var(--white);
}

.team-section--dark {
  background: var(--dark);
}

.team-section-header {
  margin-bottom: 52px;
}

.team-section-headline {
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--dark);
  margin-top: 10px;
  margin-bottom: 20px;
}

.team-section-intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
}

.team-section-intro p {
  font-size: 17px;
  line-height: 1.65;
  color: #555555;
}

/* Team Grid – Bild-Kacheln */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  align-items: start;
}

/* Jede mittlere Karte nach unten versetzt → entspanntes Versatz-Muster */
.team-card:nth-child(3n+2) {
  /* margin-top: 48px; */
  /* transform: translateY(4rem); */
}

/* Karte: Bild füllt alles, 3:4 Seitenverhältnis */
.team-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  cursor: default;
}

/* Vollflächiges Bild / Placeholder */
.team-card-photo {
  position: absolute;
  inset: 0;
  background: #C8DFA0;
  transition: all 650ms ease;
}

.team-card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-card:hover .team-card-photo,
.team-card.is-active .team-card-photo {
  transform: scale(1.02) rotate(0.5deg);
  filter: blur(4px);
}

.team-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
}

.team-card-placeholder svg {
  width: 52px;
  height: 52px;
}

/* Footer: Gradient + Name + Rolle — immer sichtbar */
.team-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 20px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 3;
  transition: background 0.3s ease;
}

.team-card:hover .team-card-footer,
.team-card.is-active .team-card-footer {
  background: transparent;
}

.team-card-name {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 2.5rem, 3rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 4px;
}

.team-card-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1;
  display: block;
}

/* Hover-Overlay: dunkle Fläche mit Beschreibungstext */
.team-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  background: rgba(var(--green-rgb), 0.8);
  padding: 24px 20px 120px;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  overflow: hidden;
}

.team-card:hover .team-card-overlay,
.team-card.is-active .team-card-overlay {
  opacity: 1;
}

.team-card-desc {
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  max-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 12;
}

.team-card-desc p + p {
  margin-top: 8px;
}

/* Farben auf dunklem Hintergrund (Togo-Sektion) */
.team-section--dark .team-section-headline {
  color: var(--white);
}

.team-section--dark .team-section-intro p {
  color: rgba(255, 255, 255, 0.7);
}

.team-section--dark .team-card-photo {
  background: rgba(255, 255, 255, 0.08);
}

/* Team-Seite: zentrierter Hero mit weichem Übergang */
.page-header--team {
  text-align: center;
  padding-bottom: clamp(96px, 12vw, 160px);
  border-radius: 0 0 56px 56px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.page-header--team .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* RADS Callout */
.rads-callout {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 52px;
}

.rads-callout-logo {
  flex-shrink: 0;
  font-family: var(--font-primary);
  font-size: 52px;
  line-height: 1;
  color: var(--green);
  padding-top: 2px;
}

.rads-callout-content h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.rads-callout-content p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
}

/* ─── PROJEKTE – UNTERSEITE ─────────────────────────────── */

/* Page-Header-Buttons (Ergänzung für Seiten mit Buttons im Header) */
.page-header-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

/* Projekt-Sektionen */
.projekt-section {
  padding-block: clamp(60px, 7vw, 96px);
  padding-inline: var(--px);
  background: var(--white);
  border-bottom: 1px solid #E8EDE0;
}

.projekt-section .inner {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.projekt-section--alt .inner {
  flex-direction: row-reverse;
}

.projekt-section--tinted {
  background: #F9FBF5;
}

.projekt-section:last-of-type {
  border-bottom: none;
}

.projekt-text-col {
  flex: 0 0 clamp(300px, 48vw, 696px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.projekt-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1;
}

.projekt-headline {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
  color: var(--dark);
}

.projekt-image {
  flex: 0 0 clamp(240px, 31vw, 448px);
  /* height: clamp(200px, 23vw, 336px); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.projekt-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.projekt-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.projekt-image-placeholder .project-icon {
  margin-bottom: 0;
}

.projekt-image-label {
  font-size: 14px;
  color: var(--green);
  opacity: 0.7;
}

/* ─── UNSERE WERTE – UNTERSEITE ─────────────────────────── */

/* Button-Varianten für hellen Hintergrund (dark) */
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { opacity: 0.88; }

.btn-dark-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-dark-outline:hover { background: rgba(53, 53, 53, 0.06); }

/* Page Header (grüner Seitenkopf für Unterseiten) */
.page-header {
  background: var(--green);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(60px, 7vw, 100px);
  padding-inline: var(--px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
}

.page-header .overline {
  color: rgba(255, 255, 255, 0.9);
}

.page-header-headline {
  font-size: clamp(56px, 7vw, 96px);
  color: var(--white);
  line-height: 1;
  margin-top: 1.5rem;
}

.page-header-text {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  max-width: 560px;
}

/* Werte-Liste */
/* ─── Vision & Mission ──────────────────────────────────── */

.vision-mission {
  padding-inline: var(--px);
  padding-block: clamp(40px, 5vw, 60px) clamp(60px, 7vw, 80px);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
}

.vision-mission-block .overline {
  margin-bottom: 16px;
}

.vision-mission-text {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
}

/* ─── Werte-Grid ───────────────────────────────────────── */

/* ─── Bilder-Divider ───────────────────────────────────── */

.vision-divider {
  padding-block: clamp(32px, 4vw, 48px) 0;
  position: relative;
  z-index: 1;
}

.vision-divider .inner {
  max-width: 65vw;
}

.vision-divider-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: start;
}

.vision-divider-img {
  border-radius: 16px;
  overflow: hidden;
}

.vision-divider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vision-divider-img--1 {
  aspect-ratio: 3 / 2;
}

.vision-divider-img--2 {
  aspect-ratio: 4 / 3;
  margin-top: clamp(120px, 15vw, 200px);
}

.vision-divider-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-light) 0%, #dae7b6 100%);
}

.werte-grid-section {
  background: var(--white);
  padding-inline: var(--px);
  padding-block: clamp(48px, 6vw, 80px);
}

.werte-grid-headline {
  color: var(--dark);
  margin-bottom: clamp(32px, 4vw, 48px);
  text-align: center;
}

.werte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wert-card {
  background: var(--green-light);
  border-radius: 16px;
  padding: clamp(24px, 2.5vw, 32px);
}

.wert-card-title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 8px;
}

.wert-card-text {
  font-size: 15px;
  line-height: 1.65;
  color: #555555;
}

/* Newsletter-Störer */
.newsletter-stoerer {
  padding: 0 24px clamp(48px, 6vw, 80px);
}

.newsletter-stoerer-inner {
  max-width: 50rem;
  margin: 0 auto;
  background: var(--green);
  color: var(--white);
  border-radius: 20px;
  padding: clamp(36px, 5vw, 60px) clamp(28px, 4vw, 56px);
  text-align: center;
}

.newsletter-stoerer-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}

.newsletter-stoerer-text {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
  margin-bottom: 28px;
  opacity: 0.92;
}

.newsletter-stoerer .btn-white {
  background: var(--white);
  color: var(--green);
  border: none;
}

.newsletter-stoerer .btn-white:hover {
  background: #f0f0f0;
}

/* CTA-Bereich */
.werte-cta {
  background: var(--green-light);
  padding-block: clamp(60px, 7vw, 80px);
  padding-inline: var(--px);
}

.werte-cta .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 80px);
}

.werte-cta-content {
  flex: 0 1 620px;
}

.werte-cta-headline {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.92;
  color: var(--dark);
  margin-bottom: 20px;
}

.werte-cta-text {
  font-size: 17px;
  line-height: 1.65;
  color: #555555;
  margin-bottom: 36px;
}

.werte-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.werte-facts {
  flex: 0 0 420px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.werte-fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: #555555;
}

.werte-fact-dot {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.werte-fact-dot::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5.5L4 8.5L11 1.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ─── FAQ – UNTERSEITE ─────────────────────────────────── */

.faq-section {
  background: var(--white);
  padding-block: var(--section-py);
  padding-inline: var(--px);
}

.faq-kategorie {
  margin-bottom: clamp(48px, 5vw, 72px);
}

.faq-kategorie:last-child {
  margin-bottom: 0;
}

.faq-kategorie-titel {
  font-family: var(--font-primary);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
  color: var(--green);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--green);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #E8EDE0;
}

.faq-item-content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.faq-frage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  transition: color 0.15s;
}

.faq-frage:hover {
  color: var(--green);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: transform 0.25s ease;
}

.faq-icon svg {
  width: 18px;
  height: 18px;
}

.faq-item.is-open > .faq-frage .faq-icon {
  transform: rotate(45deg);
}

.faq-antwort {}

.faq-antwort-inner {
  padding-bottom: 24px;
  max-width: 720px;
}

.faq-antwort-inner p {
  font-size: 16px;
  line-height: 1.65;
  color: #555555;
}

.faq-antwort-inner p + p {
  margin-top: 12px;
}

.faq-antwort-inner a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-antwort a:hover {
  text-decoration: none;
}

/* ─── UNTERSTÜTZE UNS – UNTERSEITE ─────────────────────── */

/* Intro 3er-Grid: Text + 2 Bilder */
.spenden-intro-grid {
  background: var(--white);
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(16px, 2vw, 24px);
  padding-inline: var(--px);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: start;
}

.intro-grid-text {
  padding-top: clamp(12px, 2vw, 32px);
  padding-right: clamp(8px, 1.5vw, 20px);
}

.intro-grid-text p {
  font-size: 17px;
  line-height: 1.65;
  color: #555555;
}

.intro-grid-text strong {
  font-weight: 700;
  color: var(--dark);
}

.intro-grid-img {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--green-light);
}

.intro-grid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-grid-img--2 {
  margin-top: clamp(-32px, -4vw, -56px);
}

.intro-grid-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-light) 0%, #dae7b6 100%);
}

/* Spenden-Sektion */
.spenden-section {
  background: var(--white);
  padding-block: var(--section-py);
  padding-inline: var(--px);
}

.spenden-intro {
  margin-bottom: 48px;
}

.spenden-headline {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--dark);
  margin-top: 10px;
  margin-bottom: 16px;
}

.spenden-text {
  font-size: 17px;
  line-height: 1.65;
  color: #555555;
  max-width: 640px;
}

.spenden-text p { margin: 0; }

.spenden-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.spenden-card {
  background: var(--green-light);
  border-radius: 20px;
  padding: 36px;
}

.spenden-card-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 24px;
}

.spenden-card-icon svg {
  width: 24px;
  height: 24px;
}

.spenden-card h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.bank-details p {
  font-size: 15px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 12px;
}

.bank-details p:last-child {
  margin-bottom: 0;
}

.bank-details strong {
  font-weight: 700;
  color: var(--dark);
}

.spenden-card-text {
  font-size: 15px;
  line-height: 1.65;
  color: #555555;
  margin-bottom: 20px;
}

.spenden-card-text p { margin: 0; }

.spenden-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.paypal-form {
  display: inline-flex;
  margin: 0;
  padding: 0;
}

.placeholder-text {
  font-size: 15px;
  color: rgba(53, 53, 53, 0.45);
  font-style: italic;
}

.btn-placeholder {
  opacity: 0.5;
  cursor: default;
}

.spenden-outro {
  font-size: 17px;
  line-height: 1.65;
  color: #555555;
  max-width: 720px;
}

.spenden-outro p { margin: 0; }

/* Wirkung – 3er-Grid: Spendenbeispiele mit Bildern */
.spenden-wirkung {
  background: var(--green);
  padding-block: var(--section-py);
  padding-inline: var(--px);
}

.wirkung-header {
  margin-bottom: 48px;
}

.beispiele-overline {
  color: rgba(255, 255, 255, 0.7);
}

.beispiele-headline {
  color: var(--white);
  margin-top: 10px;
}

.beispiele-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
}

.beispiel-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
}

.beispiel-card:nth-child(2) {
  margin-top: clamp(24px, 4vw, 48px);
}

.beispiel-card:nth-child(3) {
  margin-top: clamp(8px, 1.5vw, 16px);
}

.beispiel-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.beispiel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.beispiel-image-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.06);
}

.beispiel-body {
  padding: 24px 28px 28px;
}

.beispiel-betrag {
  display: block;
  font-size: clamp(32px, 3vw, 44px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.beispiel-card p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

/* Spendenbescheinigungen */
.bescheinigung-section {
  background: var(--white);
  padding-block: var(--section-py);
  padding-inline: var(--px);
}

.bescheinigung-layout {
  display: flex;
  gap: clamp(48px, 6vw, 96px);
  align-items: flex-start;
}

.bescheinigung-content {
  flex: 1;
}

.bescheinigung-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.bescheinigung-text p {
  font-size: 17px;
  line-height: 1.65;
  color: #555555;
}

.bescheinigung-content > .btn {
  margin-bottom: 32px;
}

.bescheinigung-outro {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bescheinigung-outro p {
  font-size: 17px;
  line-height: 1.65;
  color: #555555;
}

/* Bescheinigung Deko-Aside */
.bescheinigung-aside {
  flex: 0 0 clamp(240px, 28vw, 340px);
  position: sticky;
  top: 120px;
}

.bescheinigung-deco {
  background: var(--green-light);
  border-radius: 20px;
  padding: 36px;
}

.bescheinigung-deco-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 28px;
}

.bescheinigung-deco-icon svg {
  width: 28px;
  height: 28px;
}

.bescheinigung-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bescheinigung-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--dark);
  font-weight: 500;
}

.check-dot {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-dot::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: no-repeat center / contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5.5L4 8.5L11 1.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Mitglied werden */
.mitglied-section {
  background: var(--green);
  padding-block: var(--section-py);
  padding-inline: var(--px);
}

.mitglied-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.mitglied-overline {
  color: rgba(255, 255, 255, 0.7);
}

.mitglied-headline {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--white);
  margin-top: 10px;
  margin-bottom: 16px;
}

.mitglied-text p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}

.mitglied-content {
  padding-top: clamp(8px, 1.5vw, 20px);
}

/* Kontaktformular */
.kontakt-form-wrapper {
  min-height: 0;
}

.kontakt-form {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kontakt-form[hidden] {
  display: none;
}

.kontakt-form-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.form-group label span {
  color: var(--green);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--green-light);
  border: 1.5px solid #D8E4C4;
  border-radius: 10px;
  padding: 12px 16px;
  transition: border-color 0.15s;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(53, 53, 53, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23353535' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.kontakt-form .btn {
  align-self: flex-start;
}

.kontakt-form .btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* Form Feedback */
.form-feedback {
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: 10px;
}

.form-feedback--error {
  background: #FEF2F2;
  color: #B91C1C;
  border: 1px solid #FECACA;
}

/* Success State */
.form-success {
  background: var(--white);
  border-radius: 20px;
  padding: clamp(40px, 4vw, 60px);
  text-align: center;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin: 0 auto 20px;
}

.form-success-icon svg {
  width: 28px;
  height: 28px;
}

.form-success p {
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  margin-top: 8px;
}

/* ─── KONTAKT-SEITE ────────────────────────────────────── */

.kontakt-page {
  padding-bottom: var(--section-py);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

.kontakt-info-card {
  background: var(--green-light);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: clamp(8px, 1.5vw, 20px);
}

.kontakt-info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.kontakt-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  border-radius: 12px;
  color: var(--green);
}

.kontakt-info-icon svg {
  width: 22px;
  height: 22px;
}

.kontakt-info-block h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.kontakt-info-block address,
.kontakt-info-block p {
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
}

.kontakt-info-block a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.kontakt-info-block a:hover {
  text-decoration: none;
}

.email-obfuscated a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.email-obfuscated a:hover {
  text-decoration: none;
}

/* ─── SIMPLE TEXT (Impressum, Datenschutz etc.) ─────────── */

.simple-text {
  padding-top: 160px;
  padding-bottom: 80px;
}

.simple-text h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

.simple-text-content {
  max-width: 780px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

.simple-text-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.simple-text-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.simple-text-content p {
  margin-bottom: 1rem;
}

.simple-text-content ul,
.simple-text-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.simple-text-content a {
  color: var(--green);
  text-decoration: underline;
}

/* ─── FOOTER ────────────────────────────────────────────── */

.footer {
  background: var(--dark);
  padding-top: 56px;
  padding-bottom: 40px;
  padding-inline: var(--px);
  color: rgba(255, 255, 255, 0.45);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 40px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: clamp(32px, 4vw, 60px);
}

.footer-nav-col {
  max-width: 320px;
}

.footer-nav-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
}

.footer-nav-col a:hover {
  color: var(--white);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 28px;
  border: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── Footer Newsletter (Brevo) ─────────────────────────── */

.footer-newsletter.sib-form {
  padding: 0;
}

.footer-newsletter .sib-form-message-panel {
  display: none;
  font-size: 14px;
  text-align: left;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 12px;
}

.footer-newsletter #error-message {
  color: #B91C1C;
  background: #FEF2F2;
  border: 1px solid #FECACA;
}

.footer-newsletter #success-message {
  color: #085229;
  background: #e7faf0;
  border: 1px solid #13ce66;
}

.footer-newsletter .sib-notification__icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

.footer-newsletter #sib-container {
  background: transparent;
  border: none;
  padding: 0;
  text-align: left;
  max-width: none;
  border-radius: 0;
}

.footer-newsletter #sib-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-newsletter .sib-form-block {
  padding: 0;
}

.footer-newsletter .sib-text-form-block,
.footer-newsletter .sib-text-form-block p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.footer-newsletter .entry__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  display: block;
}

.footer-newsletter .entry__field input {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 10px 14px;
  width: 100%;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  box-sizing: border-box;
}

.footer-newsletter .entry__field input::placeholder {
  color: rgba(53, 53, 53, 0.4);
}

.footer-newsletter .entry__field input:focus {
  border-color: var(--green);
  background: var(--white);
}

.footer-newsletter .entry__error {
  font-size: 12px;
  color: #B91C1C;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 6px;
  padding: 6px 10px;
  margin-top: 6px;
  display: none;
}

.footer-newsletter .entry__specification {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
  display: block;
}

.footer-newsletter .sib-form__declaration {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-newsletter .declaration-block-icon {
  flex-shrink: 0;
}

.footer-newsletter .declaration-block-icon .svgIcon-sphere {
  width: 40px;
  height: 40px;
}

.footer-newsletter .sib-declaration-text,
.footer-newsletter .sib-declaration-text p {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-newsletter .sib-declaration-text a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
}

.footer-newsletter .sib-declaration-text a:hover {
  color: var(--white);
}

.footer-newsletter .sib-form-block__button {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  border: none;
  border-radius: 100px;
  padding: 10px 24px;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-newsletter .sib-form-block__button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.footer-newsletter .sib-form-block__button .sib-hide-loader-icon {
  display: none;
}

.footer-newsletter .input--hidden {
  position: absolute;
  left: -9999px;
}

.footer input[type=checkbox] {
  margin-right: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════
   BURGER BUTTON (immer vorhanden, auf Desktop versteckt)
   ══════════════════════════════════════════════════════════ */

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin: -6px;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – 768 px (Tablet / Mobile)
   ══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {

}

@media (max-width: 768px) {

  /* ─── Navigation ────────────────────────────────────────── */

  .nav-burger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--green);
    padding: 4px var(--px) 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-links li:last-child {
    border-bottom: none;
    padding-top: 16px;
  }

  .nav-links a:not(.btn) {
    display: block;
    padding: 14px 0;
    opacity: 1;
  }

  .nav-links .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 24px;
  }

  /* ─── Hero ──────────────────────────────────────────────── */

  .hero .inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual_wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1019 / 877;
    margin-inline: auto;
    margin-bottom: -15vw;
  }

  .hero-visual {
    position: absolute;
    width: 100%;
    left: 0;
    margin-top: 0;
  }

  .hero-house-deco,
  .hero-house-main {
    width: 100%;
  }

  /* ─── Über uns ──────────────────────────────────────────── */

  .about {
    padding-top: calc(15vw + clamp(32px, 6vw, 56px));
    padding-bottom: clamp(48px, 10vw, 80px);
  }

  .about .inner {
    flex-direction: column-reverse;
  }

  .about-image {
    flex: none;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  /* ─── Projekte ──────────────────────────────────────────── */

  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* ─── Impact ────────────────────────────────────────────── */

  .impact .inner {
    flex-direction: column;
  }

  .transparency-card {
    flex: none;
    width: 100%;
  }

  .stats-row {
    flex-direction: column;
    gap: 0;
  }

  .stat {
    border-right: none;
    padding-inline: 0;
    padding-block: 24px;
    border-bottom: 1px solid #E0E0E0;
  }

  .stat:first-child {
    padding-top: 0;
  }

  .stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* ─── Unterstützen ──────────────────────────────────────── */

  .support .inner {
    flex-direction: column;
  }

  .support-content {
    flex: none;
    width: 100%;
  }

  .support-cards {
    flex: none;
    width: 100%;
  }

  /* ─── Unser Team: 2 Spalten, kein Stagger ──────────────── */

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card:nth-child(3n+2) {
    margin-top: 0;
  }

  .page-header--team {
    border-radius: 0 0 32px 32px;
  }

  .rads-callout {
    flex-direction: column;
    gap: 12px;
    padding: 28px;
  }

  /* ─── Projekte ──────────────────────────────────────────── */

  .projekt-section .inner,
  .projekt-section--alt .inner {
    flex-direction: column;
  }

  .projekt-text-col {
    flex: none;
    width: 100%;
  }

  .projekt-image {
    flex: none;
    width: 100%;
    height: clamp(200px, 100vw, 320px);
  }

  /* ─── Vision & Mission / Werte ──────────────────────────── */

  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vision-divider .inner {
    max-width: 90vw;
  }

  .vision-divider-img--2 {
    margin-top: 60px;
  }

  .werte-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .werte-cta .inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .werte-cta-content {
    flex: none;
    width: 100%;
  }

  .werte-facts {
    flex: none;
    width: 100%;
  }

  /* ─── Unterstütze uns ─────────────────────────────────── */

  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-grid-text {
    grid-column: 1 / -1;
    padding-right: 0;
    padding-top: 0;
    margin-bottom: 8px;
  }

  .intro-grid-img--2 {
    margin-top: 0;
  }

  .spenden-grid {
    grid-template-columns: 1fr;
  }

  .beispiele-grid {
    grid-template-columns: 1fr 1fr;
  }

  .beispiel-card:nth-child(2) {
    margin-top: 0;
  }

  .beispiel-card:nth-child(3) {
    margin-top: 0;
  }

  .bescheinigung-layout {
    flex-direction: column;
  }

  .bescheinigung-aside {
    flex: none;
    width: 100%;
    position: static;
  }

  .mitglied-grid {
    grid-template-columns: 1fr;
  }

  /* ─── Kontakt ──────────────────────────────────────────── */

  .kontakt-grid {
    grid-template-columns: 1fr;
  }

  /* ─── Footer ────────────────────────────────────────────── */

  .footer-top {
    flex-direction: column;
    gap: 36px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 32px 40px;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE – 560 px (Mobil)
   ══════════════════════════════════════════════════════════ */

@media (max-width: 560px) {

  /* ─── Unser Team: 1 Spalte ──────────────────────────────── */

  .team-grid {
    grid-template-columns: 1fr;
  }

  /* ─── Werte: 1 Spalte auf Mobil ─────────────────────────── */

  .werte-grid {
    grid-template-columns: 1fr;
  }

  .vision-divider .inner {
    max-width: 100vw;
  }

  .vision-divider-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 12px;
  }

  .vision-divider-img--1 {
    aspect-ratio: 3 / 4;
  }

  .vision-divider-img--2 {
    aspect-ratio: 3 / 4;
    margin-top: 48px;
  }

  /* ─── Projekte: 1 Spalte ────────────────────────────────── */

  .projects-grid {
    grid-template-columns: 1fr;
  }

  /* ─── Unterstütze uns ──────────────────────────────────── */

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid-img--1 {
    display: none;
  }

  .beispiele-grid {
    grid-template-columns: 1fr;
  }

  .beispiel-image {
    aspect-ratio: 4 / 3;
  }

  /* ─── Footer: Spalten untereinander ────────────────────── */

  .footer-nav {
    flex-direction: column;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
