/* ============================================================
   Deckel-Helden – Stylesheet
   Farben: Teal/Grün (#1d9e75, #085041), Akzent Rot/Koralle
   Schriften: Baloo 2 (Display), Nunito (Body)
   ============================================================ */

:root {
  --teal-50:  #e1f5ee;
  --teal-100: #9fe1cb;
  --teal-200: #5dcaa5;
  --teal-400: #1d9e75;
  --teal-600: #0f6e56;
  --teal-800: #085041;
  --teal-900: #04342c;

  --coral-50:  #faece7;
  --coral-400: #d85a30;
  --coral-600: #993c1d;

  --amber-400: #ba7517;
  --amber-300: #ef9f27;

  --red-400: #e24b4a;

  --green-400: #639922;

  --white: #ffffff;
  --gray-50: #f8faf9;
  --gray-100: #f0f4f2;
  --gray-200: #dde8e3;
  --gray-400: #7a968c;
  --gray-600: #4a6259;
  --gray-800: #243830;
  --gray-900: #111f1b;

  --font-display: 'Baloo 2', 'Comic Sans MS', cursive;
  --font-body:    'Nunito', 'Segoe UI', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-pill: 9999px;

  --shadow-sm:  0 1px 4px rgba(0,60,40,.07);
  --shadow-md:  0 4px 20px rgba(0,60,40,.10);
  --shadow-lg:  0 8px 40px rgba(0,60,40,.13);

  --max-w: 1100px;
  --section-gap: 5rem;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--teal-600); text-decoration: none; }
a:hover { color: var(--teal-400); }
a:focus-visible {
  outline: 3px solid var(--teal-400);
  outline-offset: 3px;
  border-radius: 4px;
}
ul[role="list"] { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; color: var(--gray-900); }

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--teal-800);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: var(--section-gap) 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  transition: transform .15s, box-shadow .15s, background .15s;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:focus-visible {
  outline: 3px solid var(--teal-400);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--teal-400);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(29,158,117,.35);
}
.btn--primary:hover {
  background: var(--teal-600);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,158,117,.4);
}
.btn--outline {
  background: transparent;
  border-color: var(--teal-400);
  color: var(--teal-600);
}
.btn--outline:hover {
  background: var(--teal-50);
  transform: translateY(-2px);
}
.btn--small { padding: .5rem 1.25rem; font-size: .9rem; }
.btn--wide { width: 100%; justify-content: center; }
.btn--instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(131,58,180,.35);
  gap: .65rem;
}
.btn--instagram:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(131,58,180,.4);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
}
.section-tag {
  display: inline-block;
  background: var(--teal-50);
  color: var(--teal-600);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: var(--radius-pill);
  margin-bottom: .75rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: .75rem;
}
.section-lead {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.logo-icon {
  margin-top: 1.8rem;
  width: 6rem; height: 6rem;
}
.logo-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--teal-800);
  line-height: 1.1;
}
.logo-sub {
  display: block;
  font-size: .7rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: .05em;
}
.main-nav ul {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  list-style: none;
}
.main-nav a {
  font-weight: 700;
  font-size: .95rem;
  color: var(--gray-600);
  transition: color .15s;
}
.main-nav a:hover { color: var(--teal-400); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(160deg, #f0faf5 0%, #e4f5ed 50%, #ffffff 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .45;
}
.hero-blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #5dcaa5 0%, transparent 70%);
  top: -100px; right: -50px;
}
.hero-blob--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #9fe1cb 0%, transparent 70%);
  bottom: 0; left: 10%;
}
.hero-blob--3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, var(--amber-300) 0%, transparent 70%);
  top: 40%; right: 30%;
  opacity: .2;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--white);
  border: 1.5px solid var(--teal-200);
  color: var(--teal-600);
  font-size: .85rem;
  font-weight: 700;
  padding: .35rem .9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero-highlight {
  color: var(--teal-400);
  position: relative;
}
.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 4px;
  background: var(--teal-200);
  border-radius: 2px;
  z-index: -1;
}
.hero-lead {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.hero-counter-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--teal-100);
}
.counter-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--teal-600);
  line-height: 1;
}
.counter-label {
  font-size: .9rem;
  color: var(--gray-400);
  margin-top: .25rem;
  font-weight: 600;
}

/* Mascot (CSS Kronkorken) */
.hero-mascot {
  position: relative;
  width: 120px;
  height: 120px;
}
.mascot-cap {
  position: absolute;
  inset: 0;
  background: var(--teal-400);
  border-radius: 50%;
  clip-path: polygon(
    50% 0%, 61% 5%, 72% 2%, 78% 12%, 90% 10%, 93% 22%, 100% 25%,
    98% 37%, 100% 50%, 95% 60%, 100% 72%, 90% 78%, 88% 90%, 75% 92%,
    65% 100%, 50% 96%, 35% 100%, 25% 92%, 12% 90%, 10% 78%, 0% 72%,
    5% 60%, 0% 50%, 2% 37%, 0% 25%, 7% 22%, 10% 10%, 22% 12%, 28% 2%, 39% 5%
  );
}
.mascot-face {
  position: absolute;
  inset: 18px;
  background: var(--teal-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mascot-eye {
  position: absolute;
  width: 10px; height: 12px;
  background: var(--gray-900);
  border-radius: 50%;
  top: 28%;
}
.mascot-eye--l { left: 22%; }
.mascot-eye--r { right: 22%; }
.mascot-cheek {
  position: absolute;
  width: 14px; height: 8px;
  background: rgba(255,100,100,.35);
  border-radius: 50%;
  bottom: 28%;
}
.mascot-cheek--l { left: 12%; }
.mascot-cheek--r { right: 12%; }
.mascot-smile {
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 11px;
  border: 3px solid var(--gray-900);
  border-top: none;
  border-radius: 0 0 22px 22px;
}
.mascot-caps {
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}
.mc {
  width: 20px; height: 12px;
  border-radius: 50% 50% 0 0;
}
.mc--r { background: var(--red-400); }
.mc--g { background: var(--green-400); }
.mc--b { background: #378add; }
.mc--y { background: var(--amber-300); }

.hero-scroll {
  text-align: center;
  padding-top: 2rem;
  color: var(--teal-400);
  font-size: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--teal-800);
  padding: 2.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
  padding: .5rem;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--teal-100);
  line-height: 1;
}
.stat-number--euro::before { content: '€ '; }
.stat-label {
  display: block;
  font-size: .85rem;
  color: var(--teal-200);
  margin-top: .3rem;
  font-weight: 600;
}

/* ===== MISSION ===== */
.mission { background: var(--gray-50); }
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.mission-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform .2s, box-shadow .2s;
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.mission-card--highlight {
  background: linear-gradient(135deg, var(--teal-800) 0%, var(--teal-600) 100%);
  border-color: var(--teal-600);
  color: var(--teal-100);
}
.mission-card--highlight h3 { color: var(--white); }
.mission-card--highlight p { color: var(--teal-100); }
.mission-card--highlight strong { color: var(--white); }
.mission-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.mission-card h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}
.mission-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--teal-100);
  font-weight: 700;
  border-bottom: 1px solid var(--teal-400);
  padding-bottom: 1px;
}
.mission-link:hover { color: var(--white); border-color: var(--white); }

.partner-banner {
  background: var(--white);
  border: 2px solid var(--teal-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.partner-banner-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.partner-heart {
  font-size: 2.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.partner-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--teal-800);
  margin-bottom: .4rem;
}
.partner-desc { color: var(--gray-600); }

/* ===== MAP ===== */
.map-section { background: var(--white); }
.map-controls {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}
.map-search-input {
  flex: 1;
  min-width: 200px;
  padding: .65rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-pill);
  font-size: 1rem;
  transition: border-color .15s, box-shadow .15s;
  background: var(--white);
}
.map-search-input:focus {
  outline: none;
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(29,158,117,.15);
}
.map-container {
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.map-list {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.map-list-loading { color: var(--gray-400); font-style: italic; text-align: center; padding: 2rem; grid-column: 1/-1; }
.sammelstelle-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: border-color .15s, box-shadow .15s;
  cursor: pointer;
}
.sammelstelle-card:hover {
  border-color: var(--teal-400);
  box-shadow: var(--shadow-sm);
}
.sammelstelle-card:focus {
  outline: 3px solid var(--teal-400);
  outline-offset: 2px;
}
.sammelstelle-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .3rem;
}
.sammelstelle-address {
  font-size: .9rem;
  color: var(--gray-600);
}
.sammelstelle-hours {
  font-size: .85rem;
  color: var(--teal-600);
  margin-top: .5rem;
  font-weight: 600;
}

/* ===== LEAFLET CUSTOM ===== */
.leaflet-popup-content-wrapper {
  border-radius: var(--radius-md) !important;
  font-family: var(--font-body) !important;
  box-shadow: var(--shadow-md) !important;
}
.leaflet-popup-content { margin: 12px 16px !important; }
.leaflet-popup-tip-container { margin-top: -1px; }
.map-popup-name {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--teal-800);
  font-size: 1rem;
  margin-bottom: .25rem;
}
.map-popup-address { font-size: .875rem; color: var(--gray-600); }
.map-popup-hours { font-size: .8rem; color: var(--teal-600); margin-top: .4rem; font-weight: 600; }

/* ===== MITMACHEN ===== */
.mitmachen { background: var(--teal-50); }
.mitmachen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.mitmachen-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  border: 1.5px solid var(--gray-200);
  transition: transform .2s, box-shadow .2s;
}
.mitmachen-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.mitmachen-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--teal-100);
  line-height: 1;
  margin-bottom: .5rem;
}
.mitmachen-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.mitmachen-card p { color: var(--gray-600); }

/* ===== REGISTER FORM ===== */
.register-form-wrapper {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}
.register-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.register-form-wrapper > p {
  color: var(--gray-600);
  margin-bottom: 1.75rem;
}

/* ===== STEPS ===== */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== FORMS ===== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.form-group--small { flex: 0 0 140px; }
.form-group label {
  font-weight: 700;
  font-size: .9rem;
  color: var(--gray-800);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .65rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color .15s, box-shadow .15s;
  background: var(--white);
  color: var(--gray-900);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(29,158,117,.15);
}
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: var(--red-400);
  box-shadow: 0 0 0 3px rgba(226,75,74,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: .65rem;
  margin-top: .5rem;
}
.form-group--checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--teal-400);
  cursor: pointer;
}
.form-group--checkbox label {
  font-size: .9rem;
  font-weight: 400;
  color: var(--gray-600);
}
.form-status {
  min-height: 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  padding: .5rem 0;
}
.form-status.success { color: var(--teal-600); }
.form-status.error { color: var(--red-400); }

/* ===== NEWS ===== */
.news-section { background: var(--gray-50); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  transition: transform .2s, box-shadow .2s;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.news-card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card-body { padding: 1.25rem; }
.news-date {
  display: block;
  font-size: .8rem;
  color: var(--gray-400);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .4rem;
}
.news-card-body h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.news-card-body p { color: var(--gray-600); font-size: .9rem; margin-bottom: .75rem; }
.news-link { font-weight: 700; color: var(--teal-600); font-size: .9rem; }
.news-link:hover { color: var(--teal-400); }
.instagram-cta { text-align: center; }

/* ===== KONTAKT ===== */
.kontakt-section { background: var(--white); }
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.kontakt-info .section-tag { margin-bottom: .5rem; }
.kontakt-info h2 { font-size: 2rem; margin-bottom: 1rem; }
.kontakt-info > p { color: var(--gray-600); margin-bottom: 1.5rem; }
.kontakt-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.kontakt-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .95rem;
}
.kontakt-list a { font-weight: 700; color: var(--teal-600); }
.kontakt-list a:hover { color: var(--teal-400); }
.contact-form {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 3.5rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-title { color: var(--white); }
.footer-brand .logo-sub { color: var(--gray-400); }
.footer-brand > p { font-size: .9rem; line-height: 1.6; max-width: 280px; }
.site-footer nav h3 {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem;
}
.site-footer nav ul {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  list-style: none;
}
.site-footer nav a {
  color: var(--gray-400);
  font-size: .9rem;
  transition: color .15s;
}
.site-footer nav a:hover { color: var(--teal-200); }
.footer-partner h3 {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem;
}
.loewenherz-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: .75rem 1.25rem;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.3;
  transition: background .15s;
}
.loewenherz-badge:hover { background: rgba(255,255,255,.1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.25rem;
  text-align: center;
  font-size: .85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .kontakt-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .main-nav { display: none; }
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--white);
    z-index: 99;
    padding: 2rem;
    gap: .5rem;
    border-top: 1px solid var(--gray-200);
  }
  .main-nav.is-open ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav.is-open a {
    display: block;
    padding: .85rem 0;
    font-size: 1.25rem;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-900);
  }
  .nav-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .stat-number { font-size: 1.75rem; }
  .register-form-wrapper { padding: 1.5rem; }
  .contact-form { padding: 1.5rem; }
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--gray-200);
}
.legal-section {
  margin-bottom: 3rem;
}
.legal-section:last-child {
  margin-bottom: 0;
}
.legal-section h2 {
  font-size: 1.5rem;
  color: var(--teal-800);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--teal-200);
}
.legal-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.legal-card h3 {
  font-size: 1.1rem;
  color: var(--teal-600);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.legal-card h3:first-child {
  margin-top: 0;
}
.legal-card p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--gray-700);
}
.legal-card p:last-child {
  margin-bottom: 0;
}
.legal-card ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.legal-card li {
  margin-bottom: 0.5rem;
  color: var(--gray-700);
  line-height: 1.6;
}
.legal-card strong {
  color: var(--gray-900);
  font-weight: 700;
}
.legal-card a {
  color: var(--teal-600);
  text-decoration: underline;
  font-weight: 600;
}
.legal-card a:hover {
  color: var(--teal-400);
  text-decoration: none;
}

/* Legal page specific adjustments */
@media (max-width: 768px) {
  .legal-content {
    padding: 1.5rem;
  }
  .legal-section h2 {
    font-size: 1.3rem;
  }
  .legal-card {
    padding: 1.25rem;
  }
}

/* ===== ANIMATION HELPERS ===== */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .fade-in.is-visible {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
