/* ============================================
   Dr. Claudia Zojer – Psychotherapeutin Innsbruck
   Stylesheet v1.0
   ============================================ */

/* --- Schriftarten (DSGVO-konform: lokal einbinden) ---
 * Für optimale DSGVO-Konformität sollten die Schriftarten lokal gespeichert sein.
 * Schritt 1: Schriftdateien herunterladen von https://gwfh.mranftl.com/fonts
 *            (Playfair Display + Lato als woff2-Dateien)
 * Schritt 2: In Ordner /fonts/ ablegen
 * Schritt 3: @font-face Deklarationen einkommentieren
 *
 * @font-face {
 *   font-family: 'Playfair Display';
 *   src: url('../fonts/playfair-display-v37-latin-regular.woff2') format('woff2');
 *   font-weight: 400; font-style: normal; font-display: swap;
 * }
 * @font-face {
 *   font-family: 'Playfair Display';
 *   src: url('../fonts/playfair-display-v37-latin-700.woff2') format('woff2');
 *   font-weight: 700; font-style: normal; font-display: swap;
 * }
 * @font-face {
 *   font-family: 'Playfair Display';
 *   src: url('../fonts/playfair-display-v37-latin-italic.woff2') format('woff2');
 *   font-weight: 400; font-style: italic; font-display: swap;
 * }
 * @font-face {
 *   font-family: 'Lato';
 *   src: url('../fonts/lato-v24-latin-300.woff2') format('woff2');
 *   font-weight: 300; font-style: normal; font-display: swap;
 * }
 * @font-face {
 *   font-family: 'Lato';
 *   src: url('../fonts/lato-v24-latin-regular.woff2') format('woff2');
 *   font-weight: 400; font-style: normal; font-display: swap;
 * }
 * @font-face {
 *   font-family: 'Lato';
 *   src: url('../fonts/lato-v24-latin-600.woff2') format('woff2');
 *   font-weight: 600; font-style: normal; font-display: swap;
 * }
 * @font-face {
 *   font-family: 'Lato';
 *   src: url('../fonts/lato-v24-latin-700.woff2') format('woff2');
 *   font-weight: 700; font-style: normal; font-display: swap;
 * }
 */

/* --- Variablen & Reset --- */
:root {
  --gruen-dunkel: #3a5c52;
  --gruen-mittel: #4f7a6d;
  --gruen-hell: #7aad9e;
  --gold: #c4935a;
  --gold-hell: #d9b485;
  --creme: #f7f4ef;
  --creme-dunkel: #ede8e0;
  --weiss: #ffffff;
  --text-dunkel: #2d3033;
  --text-mittel: #5a5f65;
  --text-hell: #8a9099;
  --rand: #e0dbd2;
  --schatten: rgba(45, 48, 51, 0.08);
  --schatten-stark: rgba(45, 48, 51, 0.18);
  --schrift-serif: 'Playfair Display', Georgia, serif;
  --schrift-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --radius: 8px;
  --radius-gross: 16px;
  --uebergang: 0.3s ease;
  --nav-hoehe: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: calc(var(--nav-hoehe) + 12px); /* Versatz für fixed Navigation */
}

body {
  font-family: var(--schrift-sans);
  color: var(--text-dunkel);
  background-color: var(--weiss);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-hoehe); /* Ausgleich für fixed Navigation */
  /* overflow-x via Wrapper statt body – verhindert sticky-Bugs */
}

/* Horizontalen Scroll verhindern ohne sticky/fixed zu brechen */
.nav ~ * { overflow-x: clip; }

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

a {
  color: var(--gruen-dunkel);
  text-decoration: none;
  transition: color var(--uebergang);
}
a:hover { color: var(--gold); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

ul { list-style: none; }

/* --- Typografie --- */
h1, h2, h3, h4 {
  font-family: var(--schrift-serif);
  color: var(--text-dunkel);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--text-mittel); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-mittel);
}

/* --- Layout --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}
.section--creme { background-color: var(--creme); }
.section--dunkel { background-color: var(--gruen-dunkel); color: var(--weiss); }
.section--dunkel h2,
.section--dunkel h3 { color: var(--weiss); }
.section--dunkel p { color: rgba(255,255,255,0.85); }

.section-titel {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-titel h2 { margin-bottom: 1rem; }
.section-titel .untertitel {
  font-size: 1.05rem;
  color: var(--text-hell);
  max-width: 600px;
  margin: 0 auto;
}
.section-titel::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--weiss);
  box-shadow: 0 2px 16px var(--schatten);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--schrift-serif);
  font-size: 1.1rem;
  color: var(--text-dunkel);
  font-weight: 700;
  line-height: 1.25;
}
.nav-logo span {
  display: block;
  font-family: var(--schrift-sans);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-hell);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  color: var(--text-mittel);
  font-weight: 400;
  transition: background var(--uebergang), color var(--uebergang);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.aktiv {
  background: var(--creme);
  color: var(--gruen-dunkel);
}
.nav-links .nav-cta {
  background: var(--gruen-dunkel);
  color: var(--weiss) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  margin-left: 0.5rem;
}
.nav-links .nav-cta:hover {
  background: var(--gruen-mittel);
  color: var(--weiss) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
  background: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dunkel);
  border-radius: 2px;
  transition: var(--uebergang);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2a4a41 0%, #3a5c52 50%, #4f7a6d 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../Bilder/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 3rem 2rem;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-hell);
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--weiss);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-hell);
}
.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-info {
  margin-top: 3.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
}
.hero-info-item svg { flex-shrink: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--uebergang);
  border: 2px solid transparent;
  text-decoration: none;
  font-family: var(--schrift-sans);
}
.btn-primary {
  background: var(--gold);
  color: var(--weiss);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hell);
  border-color: var(--gold-hell);
  color: var(--weiss);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,147,90,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--weiss);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--weiss);
  color: var(--weiss);
}
.btn-gruen {
  background: var(--gruen-dunkel);
  color: var(--weiss);
  border-color: var(--gruen-dunkel);
}
.btn-gruen:hover {
  background: var(--gruen-mittel);
  border-color: var(--gruen-mittel);
  color: var(--weiss);
  transform: translateY(-2px);
}
.btn-outline-gruen {
  background: transparent;
  color: var(--gruen-dunkel);
  border-color: var(--gruen-dunkel);
}
.btn-outline-gruen:hover {
  background: var(--gruen-dunkel);
  color: var(--weiss);
}

/* --- Kacheln / Karten --- */
.kacheln {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.kachel {
  background: var(--weiss);
  border-radius: var(--radius-gross);
  padding: 2rem;
  border: 1px solid var(--rand);
  transition: box-shadow var(--uebergang), transform var(--uebergang);
}
.kachel:hover {
  box-shadow: 0 8px 32px var(--schatten);
  transform: translateY(-4px);
}
.kachel-icon {
  width: 52px;
  height: 52px;
  background: var(--creme);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gruen-dunkel);
}
.kachel h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.kachel p {
  font-size: 0.9rem;
  line-height: 1.65;
}

/* --- Karte (einfachere Variante) --- */
.karte {
  background: var(--weiss);
  border-radius: var(--radius-gross);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--schatten);
}
.karte-body { padding: 2rem; }

/* --- 2-Spalten Layout --- */
.zwei-spalten {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.zwei-spalten.umgekehrt .col-bild { order: -1; }

@media (max-width: 768px) {
  .zwei-spalten {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .zwei-spalten.umgekehrt .col-bild { order: 0; }
}

.col-bild img {
  border-radius: var(--radius-gross);
  width: 100%;
  object-fit: cover;
  max-height: 500px;
}
.col-text h2 { margin-bottom: 1.25rem; }
.col-text p { margin-bottom: 1rem; }
.col-text .btn { margin-top: 1.25rem; }

/* --- Zitat/Blockquote --- */
.zitat {
  padding: 2.5rem;
  background: var(--creme);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-gross) var(--radius-gross) 0;
  margin: 2rem 0;
}
.zitat p {
  font-family: var(--schrift-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dunkel);
  line-height: 1.7;
}
.zitat cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-hell);
  font-style: normal;
}

/* --- Liste mit Haken --- */
.liste-haken li {
  padding: 0.4rem 0 0.4rem 2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-mittel);
}
.liste-haken li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gruen-mittel);
  font-weight: 700;
}

/* Helle Liste auf dunklem Hintergrund */
.section--dunkel .liste-haken li {
  color: var(--weiss);
}
.section--dunkel .liste-haken li::before {
  color: var(--gold-hell);
}

/* --- Badge/Pill --- */
.badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge-gruen { background: var(--creme); color: var(--gruen-dunkel); }
.badge-gold { background: #f9f0e5; color: var(--gold); }

/* --- Prozess-Schritte --- */
.schritte {
  counter-reset: schritt;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.schritt {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.schritt-nr {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gruen-dunkel);
  color: var(--weiss);
  font-family: var(--schrift-serif);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schritt-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }

/* --- Accordion / FAQ --- */
.akkordeon { border-top: 1px solid var(--rand); }
.akkordeon-item { border-bottom: 1px solid var(--rand); }
.akkordeon-kopf {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--schrift-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dunkel);
  gap: 1rem;
  transition: color var(--uebergang);
  -webkit-tap-highlight-color: transparent; /* iOS touch feedback */
  min-height: 44px; /* WCAG 2.5.5 Touch Target */
}
.akkordeon-kopf:hover { color: var(--gruen-dunkel); }
.akkordeon-pfeil {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--uebergang), background var(--uebergang);
}
.akkordeon-item.offen .akkordeon-pfeil {
  transform: rotate(180deg);
  background: var(--gruen-dunkel);
  color: var(--weiss);
}
.akkordeon-inhalt {
  display: none;
  padding: 0 0 1.25rem;
}
.akkordeon-inhalt p {
  font-size: 0.95rem;
  color: var(--text-mittel);
}
.akkordeon-item.offen .akkordeon-inhalt { display: block; }

/* --- Kontaktformular --- */
.formular {
  background: var(--weiss);
  border-radius: var(--radius-gross);
  padding: 2.5rem;
  box-shadow: 0 4px 28px var(--schatten);
  border: 1px solid var(--rand);
}
.formular-gruppe {
  margin-bottom: 1.5rem;
}
.formular label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dunkel);
  margin-bottom: 0.5rem;
}
.formular label .pflicht { color: var(--gold); margin-left: 2px; }
.formular input,
.formular select,
.formular textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--rand);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--schrift-sans);
  color: var(--text-dunkel);
  background: var(--weiss);
  transition: border-color var(--uebergang), box-shadow var(--uebergang);
}
.formular input:focus,
.formular select:focus,
.formular textarea:focus {
  outline: none;
  border-color: var(--gruen-mittel);
  box-shadow: 0 0 0 3px rgba(79,122,109,0.15);
}
.formular textarea { resize: vertical; min-height: 130px; }
.formular .captcha-box {
  background: var(--creme);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.captcha-frage { font-weight: 600; color: var(--text-dunkel); font-size: 0.95rem; }
.captcha-antwort {
  width: 80px !important;
  text-align: center;
  font-size: 1.1rem;
  padding: 0.6rem 0.75rem !important;
}
.formular-hinweis {
  font-size: 0.8rem;
  color: var(--text-hell);
  margin-top: 0.4rem;
}
.datenschutz-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.datenschutz-check input { width: auto; margin-top: 3px; }
.datenschutz-check label { font-size: 0.875rem; font-weight: 400; }
.formular-meldung {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  display: none;
}
.formular-meldung.erfolg {
  background: #e8f5f2;
  color: #2a6b5e;
  border: 1px solid #7aad9e;
}
.formular-meldung.fehler {
  background: #fdecea;
  color: #8b2222;
  border: 1px solid #f4a8a8;
}

/* --- Kontaktinfos --- */
.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.kontakt-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.kontakt-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--creme);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gruen-dunkel);
}
.kontakt-item-text h4 { font-size: 0.875rem; color: var(--text-hell); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.3rem; font-family: var(--schrift-sans); font-weight: 600; }
.kontakt-item-text p { margin: 0; font-size: 0.95rem; color: var(--text-dunkel); }
.kontakt-item-text a { color: var(--gruen-dunkel); }

/* --- Karte/Map Platzhalter --- */
.karte-platzhalter {
  width: 100%;
  height: 300px;
  background: var(--creme);
  border-radius: var(--radius-gross);
  overflow: hidden;
  border: 1px solid var(--rand);
}
.karte-platzhalter iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.karte-aktivieren {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 2rem;
  background: var(--creme);
  color: var(--gruen-dunkel);
  font: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}
.karte-aktivieren strong { font-family: var(--schrift-serif); font-size: 1.2rem; }
.karte-aktivieren span { max-width: 30rem; color: var(--text-mittel); font-size: 0.85rem; }
.karte-aktivieren:hover strong,
.karte-aktivieren:focus-visible strong { color: var(--gold); }

/* --- Hinweis-Box --- */
.hinweis {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #e8f5f2;
  border-radius: var(--radius);
  border-left: 4px solid var(--gruen-mittel);
}
.hinweis-icon { flex-shrink: 0; color: var(--gruen-dunkel); margin-top: 2px; }
.hinweis p { margin: 0; font-size: 0.9rem; color: var(--gruen-dunkel); }

.warnung {
  background: #f9f0e5;
  border-left-color: var(--gold);
}
.warnung p { color: #8b5e2a; }
.warnung .hinweis-icon { color: var(--gold); }

/* --- Kosten Tabelle/Karten --- */
.kosten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.kosten-karte {
  background: var(--weiss);
  border: 1px solid var(--rand);
  border-radius: var(--radius-gross);
  padding: 2rem;
  text-align: center;
}
.kosten-karte h3 { font-size: 1rem; color: var(--text-hell); font-family: var(--schrift-sans); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.kosten-preis { font-family: var(--schrift-serif); font-size: 2rem; color: var(--gruen-dunkel); margin-bottom: 0.5rem; }
.kosten-preis small { font-size: 0.9rem; color: var(--text-hell); font-family: var(--schrift-sans); }
.kosten-karte p { font-size: 0.875rem; color: var(--text-hell); margin: 0; }

/* --- Themen-Kacheln --- */
.themen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.thema-kachel {
  background: var(--weiss);
  border: 1px solid var(--rand);
  border-radius: var(--radius-gross);
  padding: 2rem;
  transition: box-shadow var(--uebergang), transform var(--uebergang);
}
.thema-kachel:hover {
  box-shadow: 0 8px 28px var(--schatten);
  transform: translateY(-3px);
}
.thema-kachel-kopf {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.thema-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--creme);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gruen-dunkel);
  flex-shrink: 0;
}
.thema-kachel h3 { font-size: 1.1rem; }
.thema-kachel .merkmale { margin: 1rem 0; }
.thema-kachel .merkmal {
  font-size: 0.85rem;
  color: var(--text-hell);
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.3rem;
}
.thema-kachel .merkmal::before {
  content: '·';
  position: absolute;
  left: 0.4rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.1;
}

/* --- Über mich --- */
.vita-liste {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.vita-item {
  display: flex;
  gap: 1.25rem;
  padding: 1rem;
  background: var(--creme);
  border-radius: var(--radius);
}
.vita-jahr {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gruen-dunkel);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 0.1rem;
  min-width: 80px;
}
.vita-beschreibung { font-size: 0.9rem; color: var(--text-mittel); }

/* --- Seitenheader --- */
.seiten-header {
  background: linear-gradient(135deg, #2a4a41 0%, #3a5c52 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.seiten-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../Bilder/natur-wald.jpg') center/cover no-repeat;
  opacity: 0.1;
}
.seiten-header h1 { color: var(--weiss); position: relative; z-index: 1; }
.seiten-header p { color: rgba(255,255,255,0.8); position: relative; z-index: 1; max-width: 580px; margin: 1rem auto 0; font-size: 1.05rem; }
.breadcrumb {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold-hell); }
.breadcrumb span { color: rgba(255,255,255,0.4); margin: 0 0.5rem; }

/* --- Footer --- */
.footer {
  background: #1e2e29;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: var(--schrift-serif);
  font-size: 1.2rem;
  color: var(--weiss);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.footer-logo span { display: block; font-family: var(--schrift-sans); font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.25rem; }
.footer-beschreibung { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin: 0.75rem 0 1.25rem; }
.footer h4 { color: var(--weiss); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; font-family: var(--schrift-sans); font-weight: 600; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color var(--uebergang); }
.footer-links a:hover { color: var(--gold-hell); }
.footer-kontakt p { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 0.4rem; }
.footer-kontakt a { color: rgba(255,255,255,0.6); }
.footer-kontakt a:hover { color: var(--gold-hell); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }
.footer-notice {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* --- Highlights / Stats --- */
.highlights {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.highlight {
  text-align: center;
}
.highlight-zahl {
  font-family: var(--schrift-serif);
  font-size: 2.5rem;
  color: var(--gruen-dunkel);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.highlight-label {
  font-size: 0.875rem;
  color: var(--text-hell);
}

/* --- Responsiv --- */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* nav bleibt sticky – position: sticky ist auch ein Positionierungskontext für das Dropdown */
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--weiss); padding: 1rem; box-shadow: 0 8px 24px var(--schatten); gap: 0.25rem; z-index: 999; }
  .nav-links.offen { display: flex; }
  .nav-links .nav-cta { margin-left: 0; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  .section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }
  .nav-inner { padding: 0.875rem 1.25rem; } /* Kompaktere Nav auf kleinen Screens */
  .nav-links a { padding: 0.75rem 1rem; } /* Größere Touch-Targets */
  .hero { min-height: 85vh; }
  .hero-content { padding: 2rem 1.25rem; }
  .formular { padding: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .zwei-spalten { gap: 1.5rem; }
  .seiten-header { padding: 3.5rem 0 3rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .highlights { gap: 1.5rem; justify-content: center; }
  .kacheln { grid-template-columns: 1fr; } /* Einzelspalte auf sehr kleinen Screens */
  .kosten-grid { grid-template-columns: 1fr 1fr; } /* 2 Spalten bleiben auf 640px */
  .themen-grid { grid-template-columns: 1fr; }
  .hero-info { gap: 1rem; }
  .btn { padding: 0.875rem 1.5rem; font-size: 0.9rem; }
}

@media (max-width: 400px) {
  .kosten-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
}

/* --- Nützliches --- */
.text-center { text-align: center; }
.text-gruen { color: var(--gruen-dunkel); }
.text-gold { color: var(--gold); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.versteckt { display: none; }

/* --- Animations --- */
@keyframes einblenden {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animiert { animation: einblenden 0.6s ease forwards; }

/* Smooth scroll indicator */
.scroll-pfeil {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: huepfen 2s infinite;
  cursor: pointer;
}
@keyframes huepfen {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
