/* =========================================================
   KEREN HAYESOD – STARTSEITE VORSCHAU v3 (modern)
   CI-Farben uebernommen von keren-hayesod.de
   Modernisierung:
   - groessere Typo-Skalen
   - Fraunces als Display-Serif fuer Schlagzeilen (edel)
   - Lato fuer UI
   - softere Schatten / groessere Radien
   - Monats-Spende-Toggle
   - schwebende Stat-Karten
   - asymmetrische Sections
   ========================================================= */

:root {
  --blue-900: #0b2044;
  --blue-800: #15325c;
  --blue-700: #1a3e72;
  --blue-500: #1b81c4;
  --blue-400: #34b7ea;
  --blue-50:  #f4f7fb;
  --ink-900:  #0f172a;
  --ink-700:  #334155;
  --ink-500:  #64748b;
  --ink-300:  #cbd5e1;
  --ink-100:  #e7ecf3;
  --red:      #b20000;
  --red-dark: #8a0000;
  --gold:     #d7a94a;
  --white:    #ffffff;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08);
  --shadow-md: 0 10px 30px rgba(15,23,42,0.10);
  --shadow-lg: 0 25px 60px rgba(15,23,42,0.18);
  --shadow-blue: 0 18px 40px rgba(27,129,196,0.22);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-900);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--blue-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--red); }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  color: var(--blue-800);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 18px; }
h3 { font-size: 22px; margin-bottom: 10px; font-weight: 700; }

p { color: var(--ink-700); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 120px 0;
}

.section--tight { padding: 90px 0; }

.section--alt {
  background-color: var(--blue-50);
}

.section--dark {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 55%, var(--blue-500) 140%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p { color: #dbe4f2; }

/* ---------- Eyebrow / Tags ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: var(--blue-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background-color: var(--red);
  display: inline-block;
}

.eyebrow--light {
  color: var(--blue-400);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 30px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.3px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  min-height: 52px;
  line-height: 1.1;
}

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

.btn--primary {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 12px 24px rgba(178,0,0,0.28);
}
.btn--primary:hover {
  background-color: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(178,0,0,0.35);
}

.btn--blue {
  background-color: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
  box-shadow: var(--shadow-blue);
}
.btn--blue:hover {
  background-color: var(--blue-700);
  border-color: var(--blue-700);
  color: var(--white);
}

.btn--ghost {
  background-color: transparent;
  color: var(--blue-800);
  border-color: var(--ink-100);
}
.btn--ghost:hover {
  background-color: var(--blue-800);
  color: var(--white);
  border-color: var(--blue-800);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline-white:hover {
  background-color: var(--white);
  color: var(--blue-800);
}

.btn--block { width: 100%; }

.btn__note {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-top: 6px;
  opacity: 0.9;
  letter-spacing: 0.2px;
}

/* ---------- Topbar ---------- */
.topbar {
  background-color: var(--blue-900);
  color: var(--white);
  font-size: 13px;
  padding: 10px 0;
  letter-spacing: 0.3px;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar__left { display: flex; gap: 22px; opacity: 0.9; }
.topbar__right { opacity: 0.85; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  background-color: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(21,50,92,0.08);
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.logo img { height: 58px; width: auto; display: block; }

.nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  margin-right: 16px;
}

.nav a {
  color: var(--blue-800);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--red);
  transition: width 0.25s ease;
}
.nav a:hover { color: var(--red); }
.nav a:hover::after { width: 100%; }

.header__cta {
  padding: 12px 22px;
  font-size: 13px;
  min-height: 44px;
  text-transform: uppercase;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 140px;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('https://keren-hayesod.de/wp-content/uploads/2023/01/cropped-cropped-view-of-smiling-jewish-boy-holding-flag-of-2022-12-16-20-17-00-utc-scaled-1.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(11,32,68,0.92) 0%, rgba(21,50,92,0.72) 55%, rgba(27,129,196,0.35) 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #ffffff;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}

.hero__eyebrow .dot {
  width: 8px;
  height: 8px;
  background-color: var(--blue-400);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(52,183,234,0.25);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #ffffff 0%, #9ed1f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  font-size: 20px;
  line-height: 1.65;
  color: #dbe4f2;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #cdd7e6;
  font-size: 14px;
}

.hero__avatars {
  display: flex;
}

.hero__avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--blue-800);
  background-size: cover;
  background-position: center;
  margin-left: -10px;
}
.hero__avatars span:first-child { margin-left: 0; }

.hero__stars {
  color: var(--gold);
  letter-spacing: 2px;
}

/* Spendenbox */
.donation-box {
  background-color: var(--white);
  color: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.donation-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--red) 0%, var(--blue-500) 100%);
}

.donation-box__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.donation-box h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.donation-box__badge {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #fef3f3;
  color: var(--red);
  padding: 6px 10px;
  border-radius: 999px;
}

.donation-box__lead {
  font-size: 15px;
  color: var(--ink-500);
  margin-bottom: 18px;
}

/* Toggle */
.toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--blue-50);
  padding: 5px;
  border-radius: 999px;
  margin-bottom: 20px;
  position: relative;
}

.toggle button {
  background: transparent;
  border: none;
  padding: 12px 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  color: var(--ink-500);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

.toggle button.is-active {
  color: var(--white);
}

.toggle__pill {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(50% - 5px);
  height: calc(100% - 10px);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: 999px;
  transition: transform 0.3s cubic-bezier(.4,.0,.2,1);
  box-shadow: 0 6px 14px rgba(27,129,196,0.35);
}
.toggle.is-right .toggle__pill { transform: translateX(100%); }

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.donation-amounts button {
  background-color: var(--white);
  border: 2px solid var(--ink-100);
  color: var(--blue-800);
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  padding: 14px 4px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.donation-amounts button:hover {
  border-color: var(--blue-500);
  color: var(--blue-500);
}
.donation-amounts button.is-active {
  background-color: var(--blue-700);
  color: var(--white);
  border-color: var(--blue-700);
  box-shadow: var(--shadow-blue);
}

.donation-box__custom {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--ink-100);
  border-radius: var(--radius-sm);
  font-size: 16px;
  margin-bottom: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.donation-box__custom:focus {
  outline: none;
  border-color: var(--blue-500);
}

.donation-box__note {
  font-size: 12px;
  color: var(--ink-500);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.2px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.payment-icons span {
  background-color: var(--blue-50);
  color: var(--blue-800);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* ---------- Trust-Leiste (Scroll) ---------- */
.trust-bar {
  background: var(--white);
  padding: 36px 0;
  border-bottom: 1px solid var(--ink-100);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 4px;
}

.trust-item__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue-50), #ffffff);
  border: 1px solid var(--ink-100);
  color: var(--blue-500);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item__icon svg { width: 22px; height: 22px; }

.trust-item__label {
  font-size: 14px;
  font-weight: 900;
  color: var(--blue-800);
  line-height: 1.35;
  letter-spacing: 0.2px;
}

/* ---------- Section Heading ---------- */
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 72px;
}

.section-head p {
  font-size: 19px;
  color: var(--ink-500);
  margin-top: 12px;
}

.section-head--left {
  text-align: left;
  margin: 0 0 56px;
  max-width: 620px;
}

/* ---------- Impact (asymmetric) ---------- */
.impact {
  position: relative;
}

.impact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.impact__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  box-shadow: var(--shadow-lg);
}

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

.impact__stat {
  position: absolute;
  left: -40px;
  bottom: 60px;
  background-color: var(--white);
  color: var(--ink-900);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}

.impact__stat-num {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--blue-700);
  line-height: 1;
}

.impact__stat-label {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.4;
}

.impact__stat--top {
  top: 40px;
  bottom: auto;
  left: auto;
  right: -30px;
  max-width: 240px;
}

.impact__numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.impact__number-card {
  padding: 28px 0;
  border-top: 2px solid rgba(255,255,255,0.22);
}

.impact__number-value {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.impact__number-value span {
  color: var(--blue-400);
}

.impact__number-label {
  font-size: 15px;
  color: #c8d4e6;
  line-height: 1.5;
}

/* ---------- Projekte ---------- */
.projects-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
  flex-wrap: wrap;
}

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

.project-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(.4,.0,.2,1), box-shadow 0.35s ease;
  border: 1px solid var(--ink-100);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-card__image {
  height: 230px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s ease;
}

.project-card:hover .project-card__image {
  transform: scale(1.04);
}

.project-card__imagewrap {
  overflow: hidden;
  position: relative;
}

.project-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(255,255,255,0.95);
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.project-card__badge--blue {
  color: var(--blue-700);
}

.project-card__body {
  padding: 26px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-card__body h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
}

.project-card__body p {
  color: var(--ink-500);
  font-size: 15px;
  margin-bottom: 22px;
  flex: 1;
  line-height: 1.6;
}

.project-card__cta {
  align-self: flex-start;
  color: var(--blue-700);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease, color 0.25s ease;
}
.project-card__cta::after { content: "→"; transition: transform 0.25s ease; }
.project-card:hover .project-card__cta { color: var(--red); gap: 14px; }

/* ---------- Warum jetzt ---------- */
.urgency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.urgency-item {
  padding: 36px 30px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.urgency-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-400);
}

.urgency-item__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
}
.urgency-item__icon svg { width: 26px; height: 26px; }

.urgency-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.urgency-item p { color: var(--ink-500); font-size: 15px; }

/* ---------- So hilft Ihre Spende ---------- */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amount-card {
  background-color: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.amount-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,129,196,0.00), rgba(27,129,196,0.07));
  opacity: 0;
  transition: opacity 0.3s;
}

.amount-card:hover {
  border-color: var(--blue-500);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.amount-card:hover::after { opacity: 1; }

.amount-card__value {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--blue-700);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.amount-card__desc {
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.55;
  min-height: 66px;
  position: relative;
  z-index: 1;
}

.amount-card__cta {
  margin-top: auto;
  color: var(--blue-700);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.amount-card--featured {
  background: linear-gradient(160deg, var(--blue-700), var(--blue-500));
  border-color: var(--blue-700);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.amount-card--featured .amount-card__value,
.amount-card--featured .amount-card__cta { color: var(--white); }
.amount-card--featured .amount-card__desc { color: rgba(255,255,255,0.88); }

/* ---------- Stimmen / Geschichten ---------- */
.stories-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}

.story-main {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  padding: 40px;
  background:
    linear-gradient(180deg, rgba(11,32,68,0.05) 0%, rgba(11,32,68,0.85) 100%),
    url('https://keren-hayesod.de/wp-content/uploads/2023/01/bigstock-Care-Of-Senior-Woman-At-Home-S-468329415-scaled.jpg') center/cover no-repeat;
}

.story-main__content { max-width: 480px; }

.story-main__quote {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 22px;
  color: var(--white);
}

.story-main__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.story-main__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
}

.story-main__name {
  font-weight: 900;
  color: var(--white);
  font-size: 16px;
}
.story-main__role { font-size: 13px; color: #dbe4f2; }

.story-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--ink-100);
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}

.story-card:hover { box-shadow: var(--shadow-md); }

.story-card__quote {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-900);
  margin-bottom: 18px;
  flex: 1;
}

.story-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--blue-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
}

.story-card__name { font-weight: 900; color: var(--blue-800); font-size: 15px; }
.story-card__role { font-size: 13px; color: var(--ink-500); }

/* ---------- Vertrauen ---------- */
.trust-seals {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.trust-seal {
  padding: 28px 20px;
  background-color: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 900;
  color: var(--blue-800);
  font-size: 14px;
  line-height: 1.4;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-seal:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.trust-seal__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-50), #ffffff);
  color: var(--blue-500);
}
.trust-seal__icon svg { width: 22px; height: 22px; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 22px 26px;
  font-weight: 900;
  font-size: 17px;
  color: var(--blue-800);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Fraunces', serif;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background-color: var(--blue-50);
  color: var(--blue-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background-color 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231b81c4' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--blue-500);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
}

.faq-item__answer {
  padding: 0 26px 26px;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.75;
}

/* ---------- Abschluss-CTA ---------- */
.final-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  padding: 120px 0;
  text-align: center;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('https://keren-hayesod.de/wp-content/uploads/2023/02/cropped-bigstock-Back-View-Little-Child-Running-453896579-scaled-1.jpg') center/cover no-repeat;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(11,32,68,0.94) 0%, rgba(21,50,92,0.86) 50%, rgba(27,129,196,0.72) 100%);
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 60px);
  max-width: 760px;
  margin: 0 auto 20px;
}

.final-cta p {
  font-size: 20px;
  color: #dbe4f2;
  max-width: 640px;
  margin: 0 auto 36px;
}

.final-cta .btn { font-size: 17px; padding: 22px 44px; }

.final-cta__note {
  margin-top: 26px;
  font-size: 14px;
  color: #c8d4e6;
  letter-spacing: 0.3px;
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--blue-900);
  color: #bfc9d6;
  padding: 80px 0 26px;
  font-size: 15px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer__logo img {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer p { color: #bfc9d6; font-size: 14px; line-height: 1.7; }

.footer h4 {
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 900;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: #bfc9d6; font-size: 14px; }
.footer a:hover { color: var(--blue-400); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  text-align: center;
  font-size: 13px;
  color: #8b98a8;
}

/* ---------- Sticky Mobile CTA ---------- */
.mobile-cta { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .impact__grid { grid-template-columns: 1fr; gap: 60px; }
  .stories-grid { grid-template-columns: 1fr; }
  .story-main { min-height: 420px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section--tight { padding: 60px 0; }

  .topbar { display: none; }
  .nav { display: none; }
  .header__inner { padding: 12px 0; }
  .logo img { height: 46px; }

  .hero { padding: 80px 0 100px; }
  .hero__lead { font-size: 17px; }

  .trust-bar__grid { grid-template-columns: 1fr 1fr; }
  .urgency-grid, .projects-grid { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: 1fr 1fr; }
  .trust-seals { grid-template-columns: 1fr 1fr; }
  .impact__numbers { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .impact__stat { left: 16px; max-width: 240px; }
  .impact__stat--top { right: 16px; left: auto; }

  .donation-amounts { grid-template-columns: 1fr 1fr; }

  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 12px 16px;
    box-shadow: 0 -8px 20px rgba(0,0,0,0.12);
    z-index: 90;
    gap: 10px;
  }
  .mobile-cta .btn { flex: 1; padding: 14px; font-size: 15px; min-height: 48px; }
  body { padding-bottom: 80px; }
}
/* =========================================================
   KH 16.06.2026 — Flatsome Theme-Header/Footer auf der
   Redesign-Startseite ausblenden (eigener Header/Footer steckt
   im Seiteninhalt). Ziel: NUR Flatsome-Varianten, NICHT der
   Design-Header <header class="header"> (ohne header-full-width).
   ========================================================= */
header.header-full-width,
header.header.has-sticky,
.header-wrapper,
#header.stuck,
.absolute-footer,
.flatsome-page-title,
#main > .page-title { display: none !important; }

/* =========================================================
   FIX 16.06.2026 — .toggle kollidiert mit Flatsome-.toggle.
   Layout des Einmalig/Monatlich-Umschalters erzwingen.
   ========================================================= */
.donation-box .toggle{display:grid!important;grid-template-columns:1fr 1fr!important;width:100%!important;align-items:stretch}
.donation-box .toggle > button{width:100%!important;white-space:nowrap;display:block}
.donation-box .toggle__pill{width:calc(50% - 5px)!important;left:5px!important}
.donation-box .toggle.is-right .toggle__pill{transform:translateX(100%)!important}

/* FIX 16.06.2026 — Toggle-Pille/Text vertikal exakt mittig */
.donation-box .toggle > button{display:flex;align-items:center;justify-content:center;padding:14px 10px;line-height:1.1}
.donation-box .toggle__pill{top:5px!important;bottom:5px!important;height:auto!important}

/* FIX 16.06.2026 — Impact-Stat-Pillen vollständig im Bild (kein Abschneiden) */
.impact__stat{left:20px!important;right:auto;bottom:24px!important;max-width:min(280px,72%)}
.impact__stat--top{top:20px!important;right:20px!important;left:auto!important;bottom:auto!important;max-width:min(240px,64%)}
/* echtes Spendenformular im Hero-Kartenkopf etwas Luft */
.donation-box.kh-donate{padding-bottom:8px}
.donation-box.kh-donate .donation-box__head{margin-bottom:6px}

/* 16.06.2026 — Spenden-Widget Toggle namespaced (kh-dtoggle) → keine Flatsome-Kollision */
.donation-box .kh-dtoggle{display:grid;grid-template-columns:1fr 1fr;background-color:var(--blue-50);padding:5px;border-radius:999px;margin-bottom:20px;position:relative}
.donation-box .kh-dtoggle button{background:transparent;border:none;padding:14px 10px;font-family:inherit;font-size:14px;font-weight:900;color:var(--ink-500);border-radius:999px;cursor:pointer;transition:color .25s;letter-spacing:.3px;position:relative;z-index:1;display:flex;align-items:center;justify-content:center;line-height:1.1}
.donation-box .kh-dtoggle button.is-active{color:var(--white)}
.donation-box .kh-dtoggle__pill{position:absolute;top:5px;bottom:5px;left:5px;width:calc(50% - 5px);background:linear-gradient(135deg,var(--blue-700),var(--blue-500));border-radius:999px;transition:transform .3s cubic-bezier(.4,0,.2,1);box-shadow:0 6px 14px rgba(27,129,196,.35);z-index:0}
.donation-box .kh-dtoggle.is-right .kh-dtoggle__pill{transform:translateX(100%)}

/* 16.06.2026 — Hero als Flatsome [section] (kh-s-hero) */
.kh-s-hero{background:linear-gradient(rgba(11,32,68,.86),rgba(13,38,72,.92)),url('https://keren-hayesod.de/wp-content/uploads/2023/01/cropped-cropped-view-of-smiling-jewish-boy-holding-flag-of-2022-12-16-20-17-00-utc-scaled-1.jpg') center/cover no-repeat!important}
.hb-redesign .kh-s-hero, .kh-s-hero{color:#fff}
.kh-s-hero.section .section-content{max-width:1240px;margin:0 auto}
.kh-s-hero .hero__bg{display:none}
.kh-s-hero h1, .kh-s-hero .hero__lead{color:#fff}
.kh-s-hero .donation-box{margin-left:auto}
@media(max-width:849px){.kh-s-hero .donation-box{margin:30px auto 0}}

/* 16.06.2026 — Anker-Offset wg. Sticky-Header */
.kh-anchor{display:block;position:relative;top:-96px;visibility:hidden;height:0}

/* 16.06.2026 — mehr Abstände (Nutzerwunsch) */
.section--dark{padding:150px 0!important}
.impact__grid{gap:96px!important}
.impact__media{margin:18px 0}
.project-card__image, .impact__media{margin-top:8px}


/* 16.06.2026 — Sektions-Abstände wiederherstellen (Flatsome padding="0px" Inline-Override schlagen) */
.section{padding-top:74px!important;padding-bottom:74px!important}
.section--tight{padding-top:60px!important;padding-bottom:60px!important}
.trust-bar{padding-top:42px!important;padding-bottom:42px!important}

.section.kh-footer{padding-top:60px!important;padding-bottom:32px!important}
.section.kh-foot-bottom{padding-top:18px!important;padding-bottom:18px!important}

/* 16.06.2026 — Startseite Mobile: Widget zentriert, kein Ueberlauf */
.payment-icons{flex-wrap:wrap}
@media(max-width:768px){
  .donation-box{max-width:100%;box-sizing:border-box;margin-left:auto;margin-right:auto}
  .donation-box__head{flex-wrap:wrap}
  .donation-box__badge{align-self:flex-start}
  .donation-box *{max-width:100%}
}
