/* ============================================================
   Tagesmutter Stefanie Thiele-Zobel
   Persönlich · Warm · Kinderfreundlich
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;1,400;1,700&family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* --- Variablen --- */
:root {
  /* Hintergründe & Flächen (Warm, geborgen und weich) */
  --sand:        #F5EBE6; /* Sanfter, warmer Sandton für leichte Abhebungen */
  --cream:       #FDFBF7; /* Haupt-Hintergrund: Ein warmes, gemütliches Cremeweiß statt kaltem Blau */
  --sky:         #A8C3D8; /* Ein ruhiges, dezentes Pastellblau */
  --sky-light:   #EAF2F8; /* Sehr helles, sanftes Wolkenblau */
  
  /* Akzente & Linien (Fröhliches, warmes Sonnen-Apricot statt hartem Terrakotta) */
  --terracotta:  #E88A63; /* Haupt-Akzentfarbe: Ein freundliches, warmes Apricot/Pfirsich */
  --terra-dark:  #C96D47; /* Dunklerer Ton für gut lesbare Links und Hover-Zustände */
  --terra-light: #FDF0E9; /* Extrem helles Apricot für sanfte Hintergründe & Hover */
  --sun:         #F3A953; /* Warmes Sonnengelb für Abwechslung */
  --sun-light:   #FFF4E0; /* Helles, freundliches Lichtgelb */
  
  /* Linien & Rahmen */
  --line:        #EAD9CF; /* Weiche, unaufdringliche Konturlinie (kein stechendes Orange) */
 
  /* Natur-Töne (Perfekt für den Wald-und-Wiesen-Tagesmutter-Vibe) */
  --sage:        #7FA386; /* Beruhigendes Salbeigrün */
  --sage-light:  #EEF5F0; /* Sehr zartes Mint/Salbeigrün */
  
  /* Texte & Kontraste (Exzellente Lesbarkeit, aber weicher als reines Schwarz) */
  --dark:        #2C2523; /* Sehr dunkles, warmes Schokobraun/Anthrazit für den Haupttext */
  --mid:         #574C48; /* Mittleres Warm-Grau für Fließtext */
  --muted:       #8C7E7A; /* Dezenter Text für Labels und Daten */
 
  /* Schriften & Radien (Bleiben unverändert) */
  --font-serif:  'Lora', Georgia, serif;
  --font-sans:   'Nunito', system-ui, sans-serif;
 
  --nav-h:   72px;
  --max-w:   1080px;
  --radius:  16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.78;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--terracotta); text-decoration: none; transition: color .15s; }
a:hover { color: var(--terra-dark); }

/* ============================================================
   DECORATIVE BLOBS
   ============================================================ */
.page-blob {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
}
.blob-1 {
  width: 420px; height: 420px;
  background: var(--terra-light);
  top: -100px; right: -120px;
}
.blob-2 {
  width: 320px; height: 320px;
  background: var(--sage-light);
  bottom: 10%; left: -80px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,251,247,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--line);
  z-index: 500;
  display: flex;
  align-items: center;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  transition: box-shadow .2s;
}
.site-nav.scrolled { box-shadow: 0 4px 20px rgba(240,124,42,.12); }

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.nav-brand-icon {
  width: 38px; height: 38px;
  background: var(--terracotta);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: transform .2s;
}
.nav-brand:hover .nav-brand-icon { transform: rotate(-8deg) scale(1.05); }
.nav-brand .sub {
  display: block;
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Desktop: Links immer sichtbar */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: .15rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 700;
  color: var(--mid);
  padding: .45rem 1rem;
  border-radius: 10px;
  letter-spacing: .01em;
  transition: color .15s, background .15s, transform .15s;
}
.nav-links a:hover  { color: var(--dark); background: var(--sand); transform: translateY(-1px); }
.nav-links a.active { color: var(--terracotta); background: var(--terra-light); }

/* Toggle NUR auf Mobilgeräten */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 6px;
  border: none;
  background: var(--sand);
  border-radius: 10px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2.5px;
  background: var(--dark); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 4.5rem);
  padding-bottom: 3.5rem;
  padding-left:  clamp(1.25rem, 5vw, 3rem);
  padding-right: clamp(1.25rem, 5vw, 3rem);
  max-width: var(--max-w);
  margin: 0 auto;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--terra-light);
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.page-hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.12;
  letter-spacing: -.025em;
  max-width: 700px;
}
.page-hero h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--terracotta);
}

.hero-lead {
  margin-top: 1.1rem;
  font-size: 1.08rem;
  color: var(--mid);
  max-width: 500px;
  font-weight: 500;
}

.hero-rule {
  width: 48px; height: 4px;
  background: var(--terracotta);
  border-radius: 2px;
  margin: 2rem 0;
}

/* ============================================================
   DECO SHAPES
   ============================================================ */
.deco-star {
  display: inline-block;
  animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.deco-bounce {
  display: inline-block;
  animation: bounce-sm 2.5s ease-in-out infinite;
}
@keyframes bounce-sm {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.floating-shapes {
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  pointer-events: none;
  overflow: visible;
  z-index: -1;
}

/* ============================================================
   MAIN
   ============================================================ */
.site-main {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem) 2.5rem; 
  z-index: 1;
}

/* ============================================================
   TYPE
   ============================================================ */
h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 1rem;
}
h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .4rem;
}
p { color: var(--mid); margin-bottom: 1rem; font-weight: 500; }
p:last-child { margin-bottom: 0; }
strong { color: var(--dark); font-weight: 700; }

.eyebrow {
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .65rem;
  display: block;
}

/* ============================================================
   CARD
   ============================================================ */
.card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--terracotta);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ============================================================
   IMAGE PLACEHOLDER
   ============================================================ */
.img-placeholder {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  position: relative;
}
.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.img-caption {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: .5rem;
  text-align: center;
  font-style: italic;
}

/* Photo grid for hero */
.hero-photo {
  position: absolute;
  right: clamp(1rem, 4vw, 2rem);
  top: calc(var(--nav-h) + 2rem);
  width: clamp(200px, 28vw, 320px);
  z-index: 2;
}
.hero-photo-frame {
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  overflow: hidden;
  border: 4px solid var(--terracotta);
  box-shadow: 8px 12px 40px rgba(240,124,42,.25);
  animation: morph 8s ease-in-out infinite;
}
@keyframes morph {
  0%,100% { border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%; }
  33%      { border-radius: 55% 45% 40% 60% / 60% 55% 45% 40%; }
  66%      { border-radius: 45% 55% 60% 40% / 40% 60% 55% 45%; }
}
.hero-photo-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  bottom: -8px; left: -18px;
  background: var(--sun);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  padding: .4rem .85rem;
  border-radius: 999px;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(240,124,42,.3);
  white-space: nowrap;
}

/* ============================================================
   INDEX
   ============================================================ */
.intro-prose p + p { margin-top: .85rem; }

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem;
  margin-top: 1.25rem;
}
.feature-list li {
  padding: .65rem .9rem;
  border-radius: 12px;
  font-size: .93rem;
  font-weight: 600;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--sand);
  transition: background .15s, transform .15s;
}
.feature-list li:hover { background: var(--terra-light); transform: translateX(3px); }
.feature-list li::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.facts-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.fact {
  background: var(--sand);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.75rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.fact:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(240,124,42,.12); }
.fact-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: .35rem;
}
.fact-value {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: .92rem;
  padding: .7rem 1.5rem;
  border-radius: 12px;
  letter-spacing: .01em;
  transition: background .15s, transform .12s, box-shadow .15s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(240,124,42,.3);
}
.btn:hover { background: var(--terra-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(240,124,42,.38); }
.btn.outline {
  background: transparent;
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
  box-shadow: none;
}
.btn.outline:hover { background: var(--terra-light); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(240,124,42,.18); }
.btn.sage {
  background: var(--sage);
  box-shadow: 0 4px 14px rgba(106,145,112,.3);
}
.btn.sage:hover { background: #517d58; }

/* WhatsApp button */
.btn.whatsapp {
  background: #25D366;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn.whatsapp:hover { background: #1ebe5d; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.35); }

/* Instagram button */
.btn.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 14px rgba(220,39,67,.3);
}
.btn.instagram:hover { filter: brightness(1.1); color: #fff; transform: translateY(-2px); }

.btn-row { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ============================================================
   PERSON
   ============================================================ */
.person-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
.person-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.person-card {
  background: linear-gradient(145deg, var(--sand) 0%, var(--terra-light) 100%);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.person-avatar {
  width: 130px; height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.25rem;
  border: 4px solid #fff;
  box-shadow: 0 8px 30px rgba(240,124,42,.2);
}
.person-avatar img { width: 100%; height: 100%; object-fit: cover; }
.person-name {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: .2rem;
}
.person-role { font-size: .82rem; font-weight: 600; color: var(--muted); margin-bottom: 1.25rem; }
.person-meta { list-style: none; border-top: 2px solid var(--line); text-align: left; }
.person-meta li {
  display: flex;
  flex-direction: column;
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
  gap: .1rem;
}
.pm-key { font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); font-weight: 700; }
.pm-val { font-size: .9rem; font-weight: 700; color: var(--dark); }

.tag-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.1rem; justify-content: center; }
.tag {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: .2rem .65rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--mid);
}
.tag.accent { border-color: var(--terracotta); color: var(--terracotta); background: var(--terra-light); }

.prose p + p { margin-top: .9rem; }
.prose h3    { margin-top: 1.5rem; margin-bottom: .5rem; }

.milestone-list { list-style: none; border-top: 2px solid var(--line); margin-top: 1.75rem; }
.milestone-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
  align-items: start;
}
.ml-year {
  font-family: var(--font-sans);
  font-weight: 800;
  color: #fff;
  background: var(--terracotta);
  border-radius: 8px;
  padding: .1rem .5rem;
  text-align: center;
  font-size: .85rem;
  margin-top: .15rem;
}
.ml-desc { color: var(--mid); font-weight: 500; }

/* ============================================================
   TAGESABLAUF
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }

.timeline { padding-left: 1.5rem; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 3px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--terracotta);
  border-radius: 1px;
}

.tl-item {
  position: relative;
  padding: .75rem 0 .75rem 1.35rem;
  border-bottom: 1px dashed var(--line);
  transition: transform .15s;
}
.tl-item:last-child { border-bottom: none; }
.tl-item:hover { transform: translateX(4px); }
.tl-dot {
  position: absolute;
  left: -1.6rem; top: 1.1rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--terracotta);
}
.tl-time {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 800;
  color: var(--terracotta);
  margin-bottom: .15rem;
}
.tl-icon { display: inline-block; margin-right: .3rem; font-size: 1rem; }
.tl-desc { font-size: .95rem; color: var(--mid); font-weight: 600; }

.event-list { list-style: none; }
.event-list li {
  padding: .75rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: .93rem;
  color: var(--mid);
  font-weight: 600;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  transition: transform .15s;
}
.event-list li:last-child { border-bottom: none; }
.event-list li:hover { transform: translateX(4px); }
.event-list li::before { content: '🎉'; flex-shrink: 0; font-size: .95rem; }

/* ============================================================
   FORTBILDUNGEN
   ============================================================ */
.stats-bar {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.stat-box {
  flex: 1;
  min-width: 120px;
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  text-align: center;
  border: 2px solid var(--line);
  transition: transform .2s;
}
.stat-box:hover { transform: translateY(-3px); }
.stat-num {
  font-family: var(--font-sans);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--terracotta);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  margin-top: .25rem;
}

/* Fortbildungen: sofort sichtbar, aber mit Stagger-Animation */
.year-block { margin-bottom: 2.25rem; }
.year-head {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  background: var(--dark);
  border-radius: 8px;
  margin-bottom: .75rem;
  padding: .35rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.ft-list { list-style: none; }
.ft-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: .75rem;
  padding: .6rem .75rem;
  border-radius: 10px;
  align-items: center;
  font-size: .9rem;
  transition: background .15s, transform .2s, opacity .4s ease;
}
.ft-item:hover { background: var(--sand); }
.ft-month {
  font-size: .7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  color: #fff;
  background: var(--terracotta);
  border-radius: 6px;
  padding: .2rem .4rem;
  text-align: center;
}
.ft-name  { color: var(--mid); font-weight: 600; }
.ft-org   {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--sage);
  background: var(--sage-light);
  border-radius: 5px;
  padding: .05rem .45rem;
  margin-left: .35rem;
}

/* Stagger animation for ft-items (triggered via JS class) */
.year-block .ft-item {
  opacity: 0;
  transform: translateX(-10px);
}
.year-block.items-visible .ft-item {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-layout {
  display: grid;
  /* 1fr 1fr sorgt für eine exakte 50/50-Aufteilung der Breite */
  grid-template-columns: 1fr 1fr; 
  gap: 2rem;
  /* stretch zieht beide Kästen automatisch auf die exakt gleiche Höhe des längeren Kastens */
  align-items: stretch; 
}

.contact-items { list-style: none; }
.contact-items li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: .85rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--line);
  align-items: center;
}
.contact-items li:last-child { border-bottom: none; }

.c-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 12px;
  background: var(--terra-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}
.c-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.c-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); margin-bottom: .1rem; font-weight: 700; }
.c-value { font-size: .95rem; color: var(--dark); font-weight: 700; }
.c-value a { color: var(--dark); }
.c-value a:hover { color: var(--terracotta); }

.route-card {
  background: linear-gradient(145deg, var(--sand), var(--sage-light));
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.bus-line {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .5rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: .9rem;
  font-weight: 600;
  color: var(--mid);
}
.bus-line:last-child { border-bottom: none; }
.bus-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: .2rem .6rem;
  border-radius: 8px;
  letter-spacing: .04em;
  white-space: nowrap;
  min-width: 2.75rem;
}
.bus-badge.train { background: var(--sage); }

/* Social contact buttons */
.social-contact-row {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 2px solid var(--line);
  padding: 2rem clamp(1.25rem, 5vw, 3rem);
  /* Von 5rem auf 2rem reduzieren */
  margin-top: 2rem; 
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--sand);
}
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-weight: 600; }
.footer-links a:hover { color: var(--dark); }
.footer-heart { color: var(--terracotta); animation: heartbeat 1.5s ease-in-out infinite; display: inline-block; }
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.25); }
}

.footer-credit {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
  opacity: .7;
}

/* ============================================================
   HIGHLIGHT BANNER
   ============================================================ */
.highlight-banner {
  background: var(--terracotta);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.highlight-banner::after {
  content: '🧡';
  position: absolute;
  right: 2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  opacity: .2;
  pointer-events: none;
}
.highlight-banner h2 { color: #fff; }
.highlight-banner p  { color: rgba(255,255,255,.85); }

/* ============================================================
   ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

.fade-in-children > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
}
.fade-in-children.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: .05s; }
.fade-in-children.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: .12s; }
.fade-in-children.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: .19s; }
.fade-in-children.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: .26s; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-section { margin-bottom: 2.5rem; }
.legal-block { margin-top: 1.25rem; }
.legal-block h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .4rem;
  margin-top: 1.25rem;
}
.legal-block p {
  font-size: .95rem;
  color: var(--mid);
  font-weight: 500;
  margin-bottom: .75rem;
}
.legal-block p:last-child { margin-bottom: 0; }

.legal-list { list-style: none; margin: .75rem 0; }
.legal-list li {
  padding: .45rem .75rem;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-bottom: .25rem;
  background: var(--sand);
}
.legal-list li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  margin-top: .55rem;
}

/* ============================================================
   RESPONSIVE – TABLET
   ============================================================ */
@media (max-width: 768px) {
  .person-layout { grid-template-columns: 1fr; }
  .person-sidebar { position: static; }
  .two-col { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE – MOBILE  (≤ 680 px)
   ============================================================ */
@media (max-width: 680px) {
  .nav-toggle { display: flex; }
 
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(255,251,247,.98);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--line);
    padding: 1rem 1.5rem 1.5rem;
    gap: .25rem;
    box-shadow: 0 8px 24px rgba(240,124,42,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .65rem 1rem; font-size: 1rem; }
 
  .hero-photo { display: none; }
 
  .page-hero { padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 2rem; }
  .card { padding: 1.5rem 1.35rem; }
 
  /* facts-strip: 1 Spalte, mittig, gleichgroß */
  .facts-strip {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .fact {
    padding: 1.25rem 1.5rem;
  }
 
  .stats-bar { gap: .75rem; }
 
  /* Footer: alles zentriert gestapelt */
  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
  }
  .footer-links {
    justify-content: center;
    gap: 1.25rem;
  }
}
 
@media (max-width: 380px) {
  .facts-strip { max-width: 100%; }
}

