/* =========================================================
   Emmäuschen e.V. — Stylesheet
   Ein Stylesheet für die gesamte Website.
   Farben & Abstände zentral als Custom Properties.
   Zum Ändern einer Farbe: einfach unten im :root Bereich anpassen.
   ========================================================= */

/* ---------- Fonts (lokal, DSGVO-freundlich) ---------- */
/* Die Font-Dateien liegen unter /fonts/. Wenn ihr die Fonts austauschen wollt,
   ersetzt die Dateien und passt hier den Namen an. */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/Fraunces.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("../fonts/Nunito.woff2") format("woff2");
}

/* Fallback: System-Fonts, falls Dateien fehlen — die Seite bleibt trotzdem schön. */

/* ---------- Design-Tokens ---------- */
:root {
  /* Farben — Pastell */
  --c-rose: #F5B5C0;
  --c-rose-strong: #F4A0A0;
  --c-mint: #B8DDD1;
  --c-mint-strong: #7DB894;
  --c-sky: #C5DDF0;
  --c-sky-strong: #7BA8CE;
  --c-vanilla: #FCE8B8;
  --c-vanilla-strong: #E5B850;

  --c-bg: #FEFAF3;
  --c-bg-soft: #FDF3E7;
  --c-text: #4A3A34;
  --c-text-soft: #7A6862;
  --c-white: #ffffff;

  /* CTA */
  --c-cta: #C85555;        /* satteres Koralle f\u00fcr wei\u00dfe Schrift, WCAG-AA-tauglich */
  --c-cta-hover: #A03D3D;  /* dunkler beim Hover */

  /* Abstände */
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;

  /* Radien */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  /* Schatten (weich) */
  --shadow-sm: 0 2px 8px rgba(74, 58, 52, .06);
  --shadow-md: 0 8px 24px rgba(74, 58, 52, .08);
  --shadow-lg: 0 20px 60px rgba(74, 58, 52, .12);

  /* Container */
  --w-narrow: 720px;
  --w-content: 1080px;
  --w-wide: 1240px;

  /* Fonts */
  --f-heading: "Fraunces", "Georgia", "Times New Roman", serif;
  --f-body: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* ---------- Reset & Basics ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-cta); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-cta-hover); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--f-heading);
  font-weight: 500;
  line-height: 1.15;
  color: var(--c-text);
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { margin: 0 0 var(--space-3); }

::selection { background: var(--c-vanilla); color: var(--c-text); }

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 var(--space-4);
}
.container-narrow { max-width: var(--w-narrow); }
.container-wide { max-width: var(--w-wide); }

section { padding: var(--space-7) 0; }
.section-tight { padding: var(--space-6) 0; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(254, 250, 243, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid rgba(74, 58, 52, .06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  max-width: var(--w-wide);
  margin: 0 auto;
  gap: var(--space-4);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--c-text);
  font-family: var(--f-heading);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--c-text); }
.brand-mark { width: 40px; height: 40px; flex: 0 0 40px; }
.brand-sub {
  display: block;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--c-text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: -3px;
}

.nav-links {
  display: flex;
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--c-text);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.4rem 0.2rem;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-rose-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] {
  color: #B04949; /* dunkleres Koralle f\u00fcr WCAG-AA-Kontrast auf Creme (4.7:1) */
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: .5rem;
  color: var(--c-text);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-bg);
    flex-direction: column;
    gap: 0;
    padding: var(--space-3) var(--space-4) var(--space-4);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(74, 58, 52, .06); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a { display: block; padding: .9rem 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 1rem;
  border: 0;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--c-cta);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--c-cta-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border: 2px solid var(--c-rose);
}
.btn-ghost:hover {
  background: var(--c-rose);
  color: var(--c-text);
  transform: translateY(-2px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: var(--space-8) 0 var(--space-7);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 15% 20%, rgba(245, 181, 192, .35), transparent 70%),
    radial-gradient(600px 400px at 85% 60%, rgba(184, 221, 209, .45), transparent 70%),
    radial-gradient(500px 300px at 50% 90%, rgba(252, 232, 184, .35), transparent 70%);
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--c-vanilla);
  color: var(--c-text);
  padding: .4rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-3);
}
.hero h1 {
  margin-bottom: var(--space-3);
}
.hero h1 em {
  font-style: italic;
  color: var(--c-cta-hover);
  font-family: var(--f-heading);
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--c-text-soft);
  max-width: 540px;
  margin-bottom: var(--space-5);
}
.hero-cta { display: flex; gap: var(--space-3); flex-wrap: wrap; }

.hero-img {
  position: relative;
}
.hero-img img {
  border-radius: 48% 52% 44% 56% / 52% 44% 56% 48%;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}
.hero-blob-1 {
  width: 120px; height: 120px;
  background: var(--c-mint);
  top: -20px; left: -30px;
}
.hero-blob-2 {
  width: 90px; height: 90px;
  background: var(--c-sky);
  bottom: 20px; right: -20px;
}

@media (max-width: 820px) {
  .hero { padding: var(--space-6) 0; }
  .hero .container { grid-template-columns: 1fr; gap: var(--space-5); }
  .hero-img { max-width: 420px; margin: 0 auto; }
}

/* ---------- Page Header (interne Seiten) ---------- */
.page-header {
  padding: var(--space-7) 0 var(--space-5);
  text-align: center;
  position: relative;
  background:
    radial-gradient(500px 300px at 20% 30%, rgba(245, 181, 192, .3), transparent 70%),
    radial-gradient(500px 300px at 80% 70%, rgba(184, 221, 209, .35), transparent 70%);
}
.page-header .eyebrow {
  display: inline-block;
  background: var(--c-white);
  color: var(--c-text-soft);
  padding: .35rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  box-shadow: var(--shadow-sm);
}
.page-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--c-text-soft);
  font-size: 1.1rem;
}

/* ---------- Feature Cards (3 Spalten) ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.feature-card {
  background: var(--c-white);
  padding: var(--space-5);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(74, 58, 52, .04);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  border-radius: 20px;
  font-size: 1.8rem;
  margin-bottom: var(--space-3);
}
.feature-card:nth-child(1) .feature-emoji { background: var(--c-rose); }
.feature-card:nth-child(2) .feature-emoji { background: var(--c-mint); }
.feature-card:nth-child(3) .feature-emoji { background: var(--c-sky); }
.feature-card h3 { margin-bottom: var(--space-2); }
.feature-card p { color: var(--c-text-soft); margin: 0; }

@media (max-width: 820px) {
  .features { grid-template-columns: 1fr; }
}

/* ---------- Split (Text + Bild nebeneinander) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.split-reverse .split-text { order: 2; }
.split-img img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: var(--space-5); }
  .split-reverse .split-text { order: initial; }
}

/* ---------- Info-Karte (Öffnungszeiten etc.) ---------- */
.info-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: center;
  border: 1px solid rgba(74, 58, 52, .04);
  max-width: 640px;
  margin: 0 auto;
}
.info-card-icon {
  width: 72px; height: 72px;
  border-radius: 24px;
  background: var(--c-vanilla);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}
.info-card h3 { margin: 0 0 .3rem; }
.info-card p { margin: 0; color: var(--c-text-soft); }

/* ---------- Konzept-Karten (8 Bereiche) ---------- */
.konzept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-4);
}
.konzept-card {
  background: var(--c-white);
  padding: var(--space-5);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74, 58, 52, .05);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.konzept-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.konzept-card::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}
.konzept-card > * { position: relative; z-index: 1; }
.konzept-card:nth-child(1)::before { background: var(--c-mint); }
.konzept-card:nth-child(2)::before { background: var(--c-rose); }
.konzept-card:nth-child(3)::before { background: var(--c-vanilla); }
.konzept-card:nth-child(4)::before { background: var(--c-sky); }
.konzept-card:nth-child(5)::before { background: var(--c-mint); }
.konzept-card:nth-child(6)::before { background: var(--c-rose); }
.konzept-card:nth-child(7)::before { background: var(--c-mint); }
.konzept-card:nth-child(8)::before { background: var(--c-vanilla); }

.konzept-icon {
  width: 60px; height: 60px;
  margin-bottom: var(--space-3);
  display: block;
}
.konzept-card h3 { margin-bottom: var(--space-2); }
.konzept-card p {
  color: var(--c-text-soft);
  margin: 0;
  font-size: 0.98rem;
}

/* ---------- Team-Karten ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  max-width: 780px;
  margin: 0 auto;
}
.team-card {
  background: var(--c-white);
  padding: var(--space-4);
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease;
}
.team-card:hover { transform: translateY(-4px); }
.team-photo {
  width: 180px; height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;   /* Gesicht im sichtbaren Kreis behalten */
  margin: 0 auto var(--space-3);
  border: 6px solid var(--c-rose);
  aspect-ratio: 1/1;
  background: #FADDDF;           /* falls Ladefehler: passender Rosa-Ton */
}
.team-card:nth-child(2) .team-photo { border-color: var(--c-mint); }
.team-role {
  display: inline-block;
  background: var(--c-vanilla);
  color: var(--c-text);
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.team-card p { color: var(--c-text-soft); margin: 0; }

/* ---------- Steps (Anmeldung: 3 Schritte) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  counter-reset: step;
}
.step {
  background: var(--c-white);
  padding: var(--space-5);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid rgba(74, 58, 52, .05);
}
.step-number {
  position: absolute;
  top: -20px; left: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-cta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-heading);
  font-weight: 600;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.step:nth-child(2) .step-number { background: var(--c-mint-strong); }
.step:nth-child(3) .step-number { background: var(--c-sky-strong); }
.step h3 { margin: var(--space-2) 0 var(--space-2); }
.step p { color: var(--c-text-soft); margin: 0; font-size: 0.97rem; }
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Kontakt-Grid ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
.contact-card {
  background: var(--c-white);
  padding: var(--space-5);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(74, 58, 52, .05);
}
.contact-card h3 { margin-bottom: var(--space-3); }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(74, 58, 52, .06);
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list strong { min-width: 90px; color: var(--c-text); }
.map-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  border: 1px solid rgba(74, 58, 52, .05);
}
.map-wrapper iframe {
  width: 100%; height: 100%; border: 0;
}

/* Statische Standort-Vorschau (datenschutzfreundlich, keine externen Requests) */
.map-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--c-text);
  background:
    radial-gradient(circle at 30% 20%, rgba(197, 221, 240, .5), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(184, 221, 209, .5), transparent 55%),
    var(--c-bg);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.map-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 58, 52, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 58, 52, .06) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 0;
}
.map-preview:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--c-text);
}
.map-preview-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-4);
}
@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA-Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--c-rose) 0%, var(--c-vanilla) 100%);
  padding: var(--space-7) 0;
  text-align: center;
  border-radius: var(--r-xl);
  margin: var(--space-6) var(--space-4);
  position: relative;
  overflow: hidden;
}
.cta-section::before, .cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
}
.cta-section::before {
  width: 200px; height: 200px;
  background: var(--c-mint);
  top: -80px; left: -60px;
}
.cta-section::after {
  width: 260px; height: 260px;
  background: var(--c-sky);
  bottom: -100px; right: -80px;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { color: var(--c-text); }
.cta-section p {
  max-width: 540px;
  margin: 0 auto var(--space-4);
  color: var(--c-text);
  font-size: 1.1rem;
}
@media (max-width: 820px) {
  .cta-section { margin: var(--space-5) var(--space-3); padding: var(--space-6) var(--space-3); }
}

/* ---------- Quote / Zitat ---------- */
.quote {
  background: var(--c-white);
  padding: var(--space-6);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.quote::before {
  content: "„";
  position: absolute;
  top: -20px; left: 30px;
  font-family: var(--f-heading);
  font-size: 5rem;
  color: var(--c-rose);
  line-height: 1;
}
.quote p {
  font-family: var(--f-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--c-text);
  margin: 0;
  line-height: 1.4;
}

/* ---------- Prose (lange Text-Seiten wie Impressum) ---------- */
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose h2 { margin-top: var(--space-5); }
.prose h3 { margin-top: var(--space-4); }
.prose p { color: var(--c-text); }
.prose strong { color: var(--c-text); font-weight: 700; }

/* ---------- Section-Trenner (weiche Welle) ---------- */
.wave {
  display: block;
  width: 100%;
  height: 60px;
  margin: 0;
}
.section-bg-soft { background: var(--c-bg-soft); }

/* ---------- Badges / kleine Info-Pills ---------- */
.badge {
  display: inline-block;
  background: var(--c-mint);
  color: var(--c-text);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-text);
  color: #EFE6DE;
  padding: var(--space-6) 0 var(--space-4);
  margin-top: var(--space-7);
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-5);
}
.site-footer h4 {
  color: #fff;
  font-family: var(--f-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
  font-weight: 700;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a {
  color: #EFE6DE;
  opacity: 0.8;
  transition: opacity .18s ease;
}
.site-footer a:hover { opacity: 1; color: var(--c-rose); }
.site-footer p { margin: 0 0 0.5rem; opacity: 0.75; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.footer-brand-mark { width: 44px; height: 44px; }
.footer-brand-text {
  font-family: var(--f-heading);
  font-size: 1.3rem;
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: var(--space-5);
  padding-top: var(--space-3);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}
@media (max-width: 820px) {
  .site-footer .container { grid-template-columns: 1fr; }
}

/* ============================================================
   FREIE-PLÄTZE-BANNER (Startseite)
   Verspielter, animierter Hinweis unter der Navigation.
   Zum Deaktivieren: einfach das gesamte <a class="places-banner">-Element
   in index.html auskommentieren oder löschen.
   ============================================================ */
.places-banner {
  position: relative;
  display: block;
  padding: 0.9rem 1rem;
  background: linear-gradient(
    100deg,
    var(--c-vanilla) 0%,
    var(--c-rose) 45%,
    var(--c-mint) 100%
  );
  background-size: 200% 100%;
  color: var(--c-text);
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
  animation: banner-gradient 8s ease-in-out infinite;
  border-bottom: 1px solid rgba(74, 58, 52, .06);
}
.places-banner:hover {
  color: var(--c-text);
  text-decoration: none;
}
.places-banner-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: var(--w-wide);
  font-size: 0.98rem;
}
.places-banner-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-cta-hover);
  box-shadow: 0 0 0 0 var(--c-cta-hover);
  animation: banner-pulse 2s ease-out infinite;
  flex-shrink: 0;
}
.places-banner-emoji {
  display: inline-block;
  font-size: 1.15rem;
  animation: banner-bounce 2.4s ease-in-out infinite;
  transform-origin: bottom center;
}
.places-banner-emoji:nth-child(1) { animation-delay: 0s; }
.places-banner-emoji:nth-child(3) { animation-delay: 0.4s; }
.places-banner-arrow {
  display: inline-block;
  margin-left: 0.25rem;
  transition: transform .25s ease;
}
.places-banner:hover .places-banner-arrow {
  transform: translateX(4px);
}
.places-banner-underline {
  position: relative;
  display: inline-block;
  color: var(--c-cta-hover);
  font-weight: 800;
}
.places-banner-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 8px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 8' preserveAspectRatio='none'><path d='M0 5 Q10 1 20 5 T40 5 T60 5 T80 5' stroke='%23A03D3D' stroke-width='2' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
}

/* Funkeln-Overlay: kleine funkelnde Sterne (SVG-Hintergrund), die dezent aufblitzen */
.places-banner-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.places-banner-sparkles span {
  position: absolute;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2 L14 10 L22 12 L14 14 L12 22 L10 14 L2 12 L10 10 Z' fill='%23ffffff' opacity='0.95'/></svg>") center/contain no-repeat;
  opacity: 0;
  animation: banner-sparkle 4s ease-in-out infinite;
}
.places-banner-sparkles span:nth-child(1) { top: 20%; left: 8%;  animation-delay: 0s; }
.places-banner-sparkles span:nth-child(2) { top: 62%; left: 18%; animation-delay: 1.3s; width: 10px; height: 10px; }
.places-banner-sparkles span:nth-child(3) { top: 15%; left: 82%; animation-delay: 2.4s; }
.places-banner-sparkles span:nth-child(4) { top: 70%; left: 92%; animation-delay: 3.5s; width: 10px; height: 10px; }
.places-banner-sparkles span:nth-child(5) { top: 40%; left: 46%; animation-delay: 0.9s; width: 9px;  height: 9px;  }

@keyframes banner-gradient {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes banner-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(200, 85, 85, 0.6); transform: scale(1); }
  70%  { box-shadow: 0 0 0 12px rgba(200, 85, 85, 0); transform: scale(1.15); }
  100% { box-shadow: 0 0 0 0 rgba(200, 85, 85, 0); transform: scale(1); }
}
@keyframes banner-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-6px) rotate(-6deg); }
  50%      { transform: translateY(0) rotate(0deg); }
  75%      { transform: translateY(-3px) rotate(4deg); }
}
@keyframes banner-sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50%      { opacity: 0.85; transform: scale(1) rotate(180deg); }
}

@media (max-width: 640px) {
  .places-banner { padding: 0.7rem 0.75rem; }
  .places-banner-inner { font-size: 0.88rem; gap: 0.4rem; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.small { font-size: 0.9rem; }
.muted { color: var(--c-text-soft); }

/* Focus states für Barrierefreiheit */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--c-sky-strong);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
