/* =========================================================================
   Spaß und Haltung — Vertrauens-Startseite (§30-Phase)
   Statisch, keine externen Requests. CI-Farben aus dem Muster (14.07.2026).
   Prinzip §30: „Zeigen statt versprechen. Vorleisten statt bitten."
   ========================================================================= */

:root {
  /* --- Markenfarben --- */
  --blau:        #0A4BD4;   /* Hauptblau / Freiheit */
  --gelb:        #FFC107;   /* Warmgelb / Fairness (nur Fläche/Akzent) */
  --gelb-text:   #7a5a00;   /* WCAG-sichere Textvariante von Gelb auf Weiß */
  --violett:     #6C3DC7;   /* Vielfalt */
  --gruen:       #2E7D32;   /* Nachhaltigkeit */
  --rot:         #F05A3C;   /* Demokratie */
  --rot-text:    #c8371c;   /* WCAG-sichere Textvariante von Demokratie-Rot */
  --tuerkis:     #067787;   /* Organisation & Betrieb */
  --tuerkis-text:#056070;

  --hellgrund:   #E6F2FF;   /* Hellblauer Grund */
  --dunkeltext:  #08132B;   /* Dunkeltext */

  --weiss:       #ffffff;
  --grau-90:     #1c2333;
  --grau-60:     #55617a;
  --grau-linie:  #e2e8f4;
  --grau-flaeche:#f5f8fd;

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-text: "Source Sans 3", system-ui, sans-serif;

  --maxw: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(8, 19, 43, 0.07);
  --shadow-soft: 0 4px 16px rgba(8, 19, 43, 0.05);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-text);
  color: var(--dunkeltext);
  background: var(--weiss);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display { font-family: var(--font-display); line-height: 1.12; margin: 0; }

a { color: var(--blau); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg { max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--dunkeltext); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 100;
}
.skip:focus { left: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  padding: 13px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--blau); color: #fff; }
.btn--primary:hover { background: #0840b6; box-shadow: var(--shadow-soft); }
.btn--ghost { background: #fff; color: var(--blau); border-color: var(--blau); }
.btn--ghost:hover { background: var(--hellgrund); }
.btn--gelb { background: var(--gelb); color: var(--dunkeltext); }
.btn--gelb:hover { background: #ffcb2e; }
.btn .arrow { font-weight: 700; }

/* --- Header --- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(1.2) blur(6px);
  border-bottom: 1px solid var(--grau-linie);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { flex: 0 0 auto; width: 54px; height: 54px; display: block; object-fit: contain; }
.brand__name { line-height: 1.05; }
.brand__name b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: .02em; color: var(--dunkeltext); }
.brand__name span { display: block; font-size: 12px; color: var(--grau-60); }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a { color: var(--grau-90); font-weight: 600; font-family: var(--font-display); font-size: 15px; }
.main-nav a:hover { color: var(--blau); text-decoration: none; }
.header-cta { margin-left: 8px; }

.nav-toggle { display: none; }

/* --- Hero --- */
.hero { background: linear-gradient(180deg, var(--hellgrund) 0%, #fff 100%); padding: 72px 0 84px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--blau); margin: 0 0 14px; }
.hero h1 { font-size: clamp(38px, 5vw, 60px); font-weight: 800; color: var(--dunkeltext); }
.hero h1 .accent { color: var(--blau); }
.hero__lede { font-size: 20px; color: var(--grau-90); margin: 22px 0 30px; max-width: 34em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero-Visual: abstrakte Markenfarbwelt (kein Fake-Foto) */
.hero__visual { position: relative; aspect-ratio: 953 / 616; align-self: center; }
.hero__visual img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 28px; }
.hero__visual .bildhinweis { position: absolute; right: 12px; bottom: 8px; margin: 0; font-size: 12px; color: rgba(8, 19, 43, 0.6); background: rgba(255, 255, 255, 0.75); padding: 2px 8px; border-radius: 6px; }

/* --- Abschnittsköpfe --- */
.section { padding: 78px 0; }
.section--tint { background: var(--grau-flaeche); }
.section-head { text-align: center; max-width: 44rem; margin: 0 auto 44px; }
.section-head .kicker { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--blau); }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; margin: 8px 0 14px; color: var(--dunkeltext); }
.section-head p { font-size: 18px; color: var(--grau-90); margin: 0; }

/* Fundament: Grundgesetz-Zitat */
.gg-zitat { max-width: 44rem; margin: 0 auto; text-align: center; }
.gg-zitat blockquote { margin: 0; padding: 28px 32px 20px; border-left: 4px solid var(--gelb); background: #fff; border-radius: 12px; box-shadow: 0 6px 24px rgba(8, 19, 43, 0.06); }
.gg-zitat blockquote p { margin: 0; font-size: clamp(19px, 2.2vw, 24px); line-height: 1.5; color: var(--dunkeltext); font-style: italic; }
.gg-zitat figcaption { margin-top: 12px; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; color: var(--gelb-text); font-weight: 700; }
.gg-zitat .gg-basis { margin: 14px 0 0; font-size: 17px; color: var(--grau-90); }

/* --- Werte-Karten --- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card {
  background: #fff; border: 1px solid var(--grau-linie); border-radius: var(--radius);
  padding: 26px 24px 24px; box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--card, var(--blau));
}
.value-card .badge {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: var(--card, var(--blau)); color: #fff; margin-bottom: 16px;
}
.value-card .badge svg { width: 28px; height: 28px; }
.value-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--card-text, var(--card)); margin-bottom: 8px; }
.value-card p { margin: 0; color: var(--grau-90); font-size: 16px; }

/* --- Transparenz (§30-Kern) --- */
.transparency { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.transparency .lead p { font-size: 18px; color: var(--grau-90); }
.honest-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.honest {
  background: #fff; border: 1px solid var(--grau-linie); border-radius: var(--radius); padding: 22px;
}
.honest h4 { font-family: var(--font-display); font-size: 16px; margin: 0 0 12px; display: flex; align-items: center; gap: 8px; }
.honest.is { border-left: 4px solid var(--gruen); }
.honest.not { border-left: 4px solid var(--gelb); }
.honest ul { margin: 0; padding-left: 20px; }
.honest li { margin-bottom: 8px; font-size: 15.5px; color: var(--grau-90); }
.who {
  background: var(--dunkeltext); color: #e8eefc; border-radius: var(--radius); padding: 30px 28px;
}
.who h3 { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-bottom: 12px; }
.who p { color: #c6d2ee; margin: 0 0 12px; }
.who .path { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.who .path span {
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
}
.who .path span.now { background: var(--gelb); color: var(--dunkeltext); border-color: transparent; }

/* --- Vorleisten / erst geben --- */
.give-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.give-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--grau-linie); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); transition: transform .12s ease, box-shadow .12s ease;
}
.give-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); text-decoration: none; }
.ausblick-head { margin-top: 72px; }
.give-card--bald { border: 1px dashed var(--grau-40, #c6cbd4); opacity: 0.92; cursor: default; }
.give-card--bald:hover { transform: none; box-shadow: none; }
.ausblick-claim { text-align: center; font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 3vw, 32px); color: var(--dunkeltext); margin: 40px 0 0; }
.give-card .thumb { aspect-ratio: 16/10; background: var(--hellgrund); display: grid; place-items: center; }
.give-card .thumb svg { width: 64px; height: 64px; opacity: .9; }
.give-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.give-card .tag { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--violett); }
.give-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--dunkeltext); }
.give-card p { margin: 0; color: var(--grau-90); font-size: 15.5px; }
.give-card .go { margin-top: auto; padding-top: 12px; font-family: var(--font-display); font-weight: 700; color: var(--blau); }

/* --- Newsletter --- */
.newsletter { background: var(--blau); color: #fff; border-radius: var(--radius); padding: 44px 40px; text-align: center; }
.newsletter h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px,3vw,34px); color: #fff; margin-bottom: 10px; }
.newsletter p { color: #d7e2fb; margin: 0 auto 22px; max-width: 40rem; }
.newsletter form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.newsletter input {
  font-family: var(--font-text); font-size: 16px; padding: 13px 18px; border-radius: 999px; border: none;
  min-width: 280px; color: var(--dunkeltext);
}
.newsletter .note { font-size: 13.5px; color: #b9caf5; margin-top: 16px; }

/* --- Footer --- */
.site-footer { background: var(--dunkeltext); color: #c6d2ee; padding: 54px 0 30px; margin-top: 6px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand b { font-family: var(--font-display); font-weight: 800; color: #fff; display: block; letter-spacing: .02em; }
.footer-brand span { font-size: 13px; color: #9fb0d6; }
.footer-brand p { font-size: 14.5px; margin: 16px 0 0; max-width: 30em; }
.footer-col h4 { font-family: var(--font-display); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: #fff; margin: 0 0 14px; }
.footer-col a { display: block; color: #c6d2ee; font-size: 15px; margin-bottom: 9px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 13.5px; color: #9fb0d6; }
.footer-values b { color: #fff; }

.preview-flag {
  display: none; /* sichtbar nur unter /preview/ (Script im HTML) */
  background: repeating-linear-gradient(45deg, #08132b, #08132b 12px, #0b1a3a 12px, #0b1a3a 24px);
  color: #ffd257; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: .04em; padding: 8px 12px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .transparency { grid-template-columns: 1fr; }
  .give-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
}
@media (max-width: 560px) {
  .values { grid-template-columns: 1fr; }
  .honest-cols { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .newsletter input { min-width: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
