/* =========================================================
   Nina Weyland — Hypnosepraxis (Version 3)
   Design-System: Farben, Typografie, Layout, Komponenten
   Ergänzung V3: Typografie & Eck-Elemente vom Praxisschild
   ========================================================= */

@import url('../fonts/fonts.css');

:root {
  /* Markenfarben */
  --color-white: #FFFFFF;
  --color-ink: #495565;        /* Text & Navigation */
  --color-ink-strong: #262E38; /* Überschriften */
  --color-blue: #0047FF;       /* Ultramarinblau ~60% */
  --color-blue-deep: #0033BF;
  --color-coral: #FFA59E;      /* Korallenrosa ~30% */
  --color-coral-soft: #FFF1EF;
  --color-yellow: #E7FF3E;     /* Schwefelgelb ~10%, sehr sparsam */

  --color-bg-soft: #F7F8FB;
  --color-border: #E4E7EE;

  /* Typografie */
  --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; /* vom Praxisschild */

  /* Abstände */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  --max-width: 1240px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 2px 14px rgba(38, 46, 56, 0.06);
  --shadow-lift: 0 14px 32px rgba(38, 46, 56, 0.12);
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* Kein overflow-x:hidden auf html/body: das würde in mehreren Browsern
   position:sticky auf dem Header zerstören. Overflow-Schutz stattdessen
   gezielt auf <main> (siehe unten) und die Ursachen selbst behoben
   (min-width:0 auf Grids, Button-Textumbruch, korrektes Mobilmenü). */
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-ink);
  background: var(--color-white);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  color: var(--color-ink-strong);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 var(--space-md);
  letter-spacing: 0.01em;
}

h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5.5vw, 4.1rem);
  letter-spacing: 0.01em;
}
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); font-weight: 600; letter-spacing: 0; margin-bottom: 0.6rem; }

p { margin: 0 0 var(--space-sm); }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: var(--space-md);
}

.lede {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-ink);
  max-width: 46rem;
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-measure {
  max-width: 42rem;
}

.section {
  padding: calc(var(--space-2xl) + 1rem) 0;
}
.section-tight { padding: var(--space-xl) 0; }
.section-soft { background: var(--color-bg-soft); }

.section-head {
  max-width: 46rem;
  margin-bottom: calc(var(--space-lg) + 0.5rem);
}

@media (max-width: 800px) {
  .section { padding: var(--space-xl) 0; }
  .section-tight { padding: var(--space-lg) 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.95rem 1.75rem;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 10px 24px rgba(0, 71, 255, 0.22);
}
.btn-primary:hover { background: var(--color-blue-deep); color: var(--color-white); box-shadow: 0 14px 30px rgba(0, 71, 255, 0.28); }

.btn-secondary {
  background: transparent;
  border-color: var(--color-ink);
  color: var(--color-ink-strong);
}
.btn-secondary:hover { border-color: var(--color-blue); color: var(--color-blue); }

.btn-block { width: 100%; justify-content: center; }

@media (max-width: 480px) {
  /* Sicherheitsnetz: lange Button-Texte umbrechen statt die Seite zu sprengen.
     border-radius wird reduziert, da eine volle Pillenform (100px) bei
     mehrzeiligem Text zu einer unschönen ovalen Blase statt eines
     Buttons wird. */
  .btn {
    white-space: normal;
    text-align: center;
    border-radius: 18px;
    line-height: 1.3;
  }
}

@media (max-width: 640px) {
  .btn-mobile-full { width: 100%; justify-content: center; white-space: normal; text-align: center; border-radius: 18px; line-height: 1.3; }
}

/* Hero-Buttons haben längere Texte (z. B. "Hypnose-Cockpit für Jugendliche und
   junge Erwachsene") und würden zwischen ~480 und ~540px seitlich überlaufen.
   Deshalb hier bis 700px umbrechen lassen (reduzierter Radius wie oben). */
@media (max-width: 700px) {
  .hero-actions .btn {
    white-space: normal;
    text-align: center;
    border-radius: 18px;
    line-height: 1.3;
  }
}

.text-link {
  font-weight: 600;
  color: var(--color-blue);
  text-decoration: none;
  /* Animierter Unterstrich: waechst beim Hover von links nach rechts ein
     (ersetzt den frueheren Doppel-Unterstrich aus border-bottom + a:hover). */
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  padding-bottom: 2px;
  transition: background-size 0.28s ease, color 0.15s ease;
}
.text-link:hover {
  text-decoration: none;
  color: var(--color-blue-deep);
  background-size: 100% 2px;
}

main { display: block; overflow-x: hidden; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--color-border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-coral);
  letter-spacing: 0.02em;
}
.brand:hover { text-decoration: none; }
.brand span { color: var(--color-coral); }

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Abstände über margin statt flex-gap: robust in jedem Browser
   (manche Umgebungen rendern flex-gap nicht zuverlässig). */
.nav-links > li:not(:last-child) { margin-right: 1.3rem; }
.nav-links a {
  color: var(--color-ink);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--color-blue); text-decoration: none; }
.nav-links a.is-active { color: var(--color-blue); }

.nav-cta { display: flex; align-items: center; gap: 1.2rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 1140px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  /* im Mobilmenü (Spalte) vertikaler Abstand statt horizontalem */
  .nav-links > li:not(:last-child) { margin-right: 0; margin-bottom: 1.4rem; }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; }
  .nav-cta .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0 var(--space-2xl);
}
/* Eck-Elemente vom Praxisschild: organische Farbflächen in den Ecken (echte SVG-Blobs) */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
.hero::before {
  top: -80px;
  left: -90px;
  width: 260px;
  height: 260px;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-25 -25 250 250'><path d='M 32.6,167.4 C 28.0,163.8 23.1,158.9 19.9,155.0 C 16.7,151.1 15.0,147.9 13.4,144.1 C 11.9,140.4 11.0,136.6 10.5,132.6 C 10.1,128.7 10.2,124.6 10.7,120.5 C 11.3,116.3 12.3,112.1 13.8,107.7 C 15.4,103.4 17.4,98.9 19.9,94.4 C 22.5,89.8 25.4,85.2 29.1,80.3 C 32.9,75.3 36.5,70.9 42.4,64.6 C 48.3,58.3 58.3,48.3 64.6,42.4 C 70.9,36.5 75.3,32.9 80.3,29.1 C 85.2,25.4 89.8,22.5 94.4,19.9 C 98.9,17.4 103.4,15.4 107.7,13.8 C 112.1,12.3 116.3,11.3 120.5,10.7 C 124.6,10.2 128.7,10.1 132.6,10.5 C 136.6,11.0 140.4,11.9 144.1,13.4 C 147.9,15.0 151.1,16.7 155.0,19.9 C 158.9,23.1 163.8,28.0 167.4,32.6 C 171.0,37.2 174.8,42.8 176.5,47.4 C 178.3,52.0 178.4,56.0 177.9,60.3 C 177.5,64.6 176.0,69.0 173.8,73.1 C 171.5,77.3 168.2,81.5 164.6,85.2 C 161.0,88.9 156.5,92.4 152.2,95.3 C 147.9,98.3 143.0,100.7 138.8,102.7 C 134.7,104.8 130.6,106.1 127.3,107.6 C 123.9,109.1 121.5,109.7 118.9,111.6 C 116.3,113.5 113.5,116.3 111.6,118.9 C 109.7,121.5 109.1,123.9 107.6,127.3 C 106.1,130.6 104.8,134.7 102.7,138.8 C 100.7,143.0 98.3,147.9 95.3,152.2 C 92.4,156.5 88.9,161.0 85.2,164.6 C 81.5,168.2 77.3,171.5 73.1,173.8 C 69.0,176.0 64.6,177.5 60.3,177.9 C 56.0,178.4 52.0,178.3 47.4,176.5 C 42.8,174.8 37.2,171.0 32.6,167.4 Z' fill='%23FFA59E'/></svg>");
}
.hero::after {
  bottom: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-25 -25 250 250'><path d='M 167.0,33.0 C 171.8,36.6 176.9,41.6 180.2,45.5 C 183.5,49.5 185.4,52.8 187.1,56.6 C 188.7,60.4 189.7,64.3 190.3,68.3 C 190.8,72.3 190.8,76.4 190.3,80.6 C 189.8,84.8 188.8,89.1 187.3,93.5 C 185.8,97.9 183.9,102.3 181.4,106.9 C 178.9,111.5 176.0,116.1 172.2,121.1 C 168.5,126.1 164.9,130.5 159.0,136.8 C 153.1,143.2 143.2,153.1 136.8,159.0 C 130.5,164.9 126.1,168.5 121.1,172.2 C 116.1,176.0 111.5,178.9 106.9,181.4 C 102.3,183.9 97.9,185.8 93.5,187.3 C 89.1,188.8 84.8,189.8 80.6,190.3 C 76.4,190.8 72.3,190.8 68.3,190.3 C 64.3,189.7 60.4,188.7 56.6,187.1 C 52.8,185.4 49.5,183.5 45.5,180.2 C 41.6,176.9 36.6,171.8 33.0,167.0 C 29.3,162.3 25.5,156.5 23.7,151.8 C 21.9,147.1 21.8,143.1 22.3,138.7 C 22.8,134.4 24.3,130.0 26.4,125.9 C 28.6,121.7 31.8,117.6 35.3,113.9 C 38.7,110.3 43.1,106.8 47.2,103.9 C 51.4,101.0 56.0,98.7 60.0,96.6 C 64.0,94.5 67.9,93.1 71.2,91.6 C 74.4,90.0 76.9,89.2 79.5,87.2 C 82.2,85.2 85.2,82.2 87.2,79.5 C 89.2,76.9 90.0,74.4 91.6,71.2 C 93.1,67.9 94.5,64.0 96.6,60.0 C 98.7,56.0 101.0,51.4 103.9,47.2 C 106.8,43.1 110.3,38.7 113.9,35.3 C 117.6,31.8 121.7,28.6 125.9,26.4 C 130.0,24.3 134.4,22.8 138.7,22.3 C 143.1,21.8 147.1,21.9 151.8,23.7 C 156.5,25.5 162.3,29.3 167.0,33.0 Z' fill='%230047FF'/></svg>");
}
.hero .container { position: relative; z-index: 1; }

@media (max-width: 700px) {
  .hero::before { width: 140px; height: 140px; top: -50px; left: -50px; }
  .hero::after { width: 200px; height: 200px; bottom: -75px; right: -75px; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: center;
}
.hero-grid.hero-text-only { grid-template-columns: 1fr; }
.hero h1 { margin-bottom: var(--space-md); }
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: var(--space-md);
}
.hero-signature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: var(--space-lg);
  font-size: 0.95rem;
  color: var(--color-ink);
}
.hero-signature strong { color: var(--color-ink-strong); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid .hero-media { order: -1; }
}

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: var(--space-md);
}
.grid > * { min-width: 0; }
.hero-grid > *, .concept-grid > *, .split > *, .steps > *, .contact-cards > *, .footer-grid > *, .gallery > * { min-width: 0; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--color-white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: calc(var(--space-md) + 0.25rem);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-sm);
  color: var(--color-blue);
}

.card p:last-child { margin-bottom: 0; }

.card-statement {
  font-weight: 600;
  color: var(--color-ink-strong);
}

/* Konzeptkarten Kokon/Cockpit */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
@media (max-width: 800px) {
  .concept-grid { grid-template-columns: 1fr; }
}
.concept-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.concept-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.concept-card .photo-placeholder { border-radius: 0; aspect-ratio: 4/3; }
.concept-card-body { padding: var(--space-md) var(--space-md) var(--space-lg); }
.concept-card-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-coral);
}
.concept-card.cockpit .concept-card-kicker { color: var(--color-blue); }

/* ---------- Bild-Platzhalter ---------- */
.photo-placeholder {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #EEF1FF 0%, #FFF3F1 100%);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-end;
  min-height: 220px;
  overflow: hidden;
}
.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(circle at 25% 30%, rgba(0,71,255,0.08), transparent 45%),
                    radial-gradient(circle at 80% 75%, rgba(255,165,158,0.35), transparent 50%);
}
.photo-placeholder-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-ink);
  background: rgba(255,255,255,0.75);
  margin: 0.8rem;
  border-radius: 100px;
}
.photo-placeholder-label svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-blue); }
.photo-placeholder.tall { min-height: 380px; }
.photo-placeholder.short { min-height: 140px; }
.photo-placeholder.square { aspect-ratio: 1/1; min-height: 0; }

/* Echtes Foto statt Platzhalter */
.photo-placeholder.has-photo { background: var(--color-bg-soft); }
.photo-placeholder.has-photo::before { display: none; }
.photo-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ---------- Zwei-Spalten Textabschnitte ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.media-first-mobile .split-media { order: -1; }
}

/* ---------- Ablauf / Schritte ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  counter-reset: step;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  position: relative;
  padding-top: var(--space-md);
  border-top: 3px solid var(--color-blue);
}
.step-number {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-blue);
  margin-bottom: 0.4rem;
}

/* ---------- Preiskarten ---------- */
.price-card {
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: calc(var(--space-md) + 0.25rem);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.price-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.price-card .price-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-blue);
  margin: 0.3rem 0;
}
.price-card .price-duration {
  font-size: 0.95rem;
  color: var(--color-ink);
}

/* ---------- Akkordeon (FAQ) ---------- */
.accordion { border-top: 1px solid var(--color-border); }
.accordion-item { border-bottom: 1px solid var(--color-border); }
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-main);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-ink-strong);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
}
.accordion-trigger:hover { color: var(--color-blue); }
.accordion-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}
.accordion-icon::before, .accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--color-blue);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.accordion-icon::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.accordion-icon::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.accordion-item.is-open .accordion-icon::after { transform: translateX(-50%) scaleY(0); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-panel-inner { padding: 0 0 1.5rem; color: var(--color-ink); max-width: 42rem; }
.accordion-panel-inner p:last-child { margin-bottom: 0; }

/* ---------- Medizinischer / Hinweis-Box ---------- */
.notice {
  font-size: 0.92rem;
  color: var(--color-ink);
  border-left: 3px solid var(--color-coral);
  padding-left: 1rem;
  max-width: 46rem;
}

.info-card {
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  padding: var(--space-md);
}

/* ---------- Kontakt / Abschluss ---------- */
.contact-band {
  background: var(--color-ink-strong);
  color: #EDEFF4;
  border-radius: var(--radius);
  padding: var(--space-xl);
}
.contact-band h2, .contact-band h3 { color: var(--color-white); }
.contact-band a { color: var(--color-yellow); }
/* Primär-Button (Buchung) im Kontakt-Band: weißer Text – nicht das Gelb der
   normalen Links, das durch .contact-band a sonst durchschlägt. */
.contact-band .btn-primary,
.contact-band .btn-primary:hover { color: var(--color-white); }
.contact-band .lede { color: #C6CBDA; }
/* Textlinks auf dem dunklen Kontakt-Band: Hover bleibt gelb (statt des
   Standard-Blau, das auf dem dunkelgrauen Hintergrund schlecht lesbar war).
   Der Hover-Effekt ist damit nur der mitwachsende gelbe Unterstrich. */
.contact-band .text-link:hover { color: var(--color-yellow); }

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
@media (max-width: 640px) { .contact-cards { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) 0 var(--space-lg);
  color: var(--color-ink);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }
}
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-ink-strong);
  margin-bottom: 0.8rem;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { color: var(--color-ink); }
.footer-links a:hover { color: var(--color-blue); }
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #8892A3;
}
.footer-bottom a { color: #8892A3; }
.footer-bottom a:hover { color: var(--color-blue); }

/* ---------- Illustrationen (dezente Strichzeichnungen) ---------- */
.line-illustration { color: var(--color-blue); opacity: 0.9; }
.corner-motif {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack-lg > * + * { margin-top: var(--space-lg); }
.stack-md > * + * { margin-top: var(--space-md); }
.relative { position: relative; }
.eyebrow-divider {
  width: 46px;
  height: 3px;
  background: var(--color-coral);
  border-radius: 2px;
  margin-bottom: var(--space-md);
}

.badge-yellow {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-ink-strong);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.hidden-module { display: none; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .gallery {
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    grid-template-columns: none;
  }
  .gallery .photo-placeholder { scroll-snap-align: start; }
}

.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

/* ---------- Siegel / Gütesiegel-Reihe ---------- */
.seals-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: var(--space-lg);
}
.seal-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  width: 160px;
  text-align: center;
}
.seal-item img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}
.seal-item figcaption {
  font-size: 0.85rem;
  color: var(--color-ink);
  line-height: 1.4;
}

/* ---------- Schmuck-Blobs (wie im Hero) im Kontakt-Band ---------- */
.contact-band.has-decor { position: relative; overflow: hidden; }
.contact-band.has-decor > * { position: relative; z-index: 1; }
.contact-band.has-decor::before,
.contact-band.has-decor::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
.contact-band.has-decor::before {
  top: -40px; left: -45px;
  width: 130px; height: 130px;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-25 -25 250 250'><path d='M 32.6,167.4 C 28.0,163.8 23.1,158.9 19.9,155.0 C 16.7,151.1 15.0,147.9 13.4,144.1 C 11.9,140.4 11.0,136.6 10.5,132.6 C 10.1,128.7 10.2,124.6 10.7,120.5 C 11.3,116.3 12.3,112.1 13.8,107.7 C 15.4,103.4 17.4,98.9 19.9,94.4 C 22.5,89.8 25.4,85.2 29.1,80.3 C 32.9,75.3 36.5,70.9 42.4,64.6 C 48.3,58.3 58.3,48.3 64.6,42.4 C 70.9,36.5 75.3,32.9 80.3,29.1 C 85.2,25.4 89.8,22.5 94.4,19.9 C 98.9,17.4 103.4,15.4 107.7,13.8 C 112.1,12.3 116.3,11.3 120.5,10.7 C 124.6,10.2 128.7,10.1 132.6,10.5 C 136.6,11.0 140.4,11.9 144.1,13.4 C 147.9,15.0 151.1,16.7 155.0,19.9 C 158.9,23.1 163.8,28.0 167.4,32.6 C 171.0,37.2 174.8,42.8 176.5,47.4 C 178.3,52.0 178.4,56.0 177.9,60.3 C 177.5,64.6 176.0,69.0 173.8,73.1 C 171.5,77.3 168.2,81.5 164.6,85.2 C 161.0,88.9 156.5,92.4 152.2,95.3 C 147.9,98.3 143.0,100.7 138.8,102.7 C 134.7,104.8 130.6,106.1 127.3,107.6 C 123.9,109.1 121.5,109.7 118.9,111.6 C 116.3,113.5 113.5,116.3 111.6,118.9 C 109.7,121.5 109.1,123.9 107.6,127.3 C 106.1,130.6 104.8,134.7 102.7,138.8 C 100.7,143.0 98.3,147.9 95.3,152.2 C 92.4,156.5 88.9,161.0 85.2,164.6 C 81.5,168.2 77.3,171.5 73.1,173.8 C 69.0,176.0 64.6,177.5 60.3,177.9 C 56.0,178.4 52.0,178.3 47.4,176.5 C 42.8,174.8 37.2,171.0 32.6,167.4 Z' fill='%23FFA59E'/></svg>");
}
.contact-band.has-decor::after {
  bottom: -60px; right: -60px;
  width: 180px; height: 180px;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='-25 -25 250 250'><path d='M 167.0,33.0 C 171.8,36.6 176.9,41.6 180.2,45.5 C 183.5,49.5 185.4,52.8 187.1,56.6 C 188.7,60.4 189.7,64.3 190.3,68.3 C 190.8,72.3 190.8,76.4 190.3,80.6 C 189.8,84.8 188.8,89.1 187.3,93.5 C 185.8,97.9 183.9,102.3 181.4,106.9 C 178.9,111.5 176.0,116.1 172.2,121.1 C 168.5,126.1 164.9,130.5 159.0,136.8 C 153.1,143.2 143.2,153.1 136.8,159.0 C 130.5,164.9 126.1,168.5 121.1,172.2 C 116.1,176.0 111.5,178.9 106.9,181.4 C 102.3,183.9 97.9,185.8 93.5,187.3 C 89.1,188.8 84.8,189.8 80.6,190.3 C 76.4,190.8 72.3,190.8 68.3,190.3 C 64.3,189.7 60.4,188.7 56.6,187.1 C 52.8,185.4 49.5,183.5 45.5,180.2 C 41.6,176.9 36.6,171.8 33.0,167.0 C 29.3,162.3 25.5,156.5 23.7,151.8 C 21.9,147.1 21.8,143.1 22.3,138.7 C 22.8,134.4 24.3,130.0 26.4,125.9 C 28.6,121.7 31.8,117.6 35.3,113.9 C 38.7,110.3 43.1,106.8 47.2,103.9 C 51.4,101.0 56.0,98.7 60.0,96.6 C 64.0,94.5 67.9,93.1 71.2,91.6 C 74.4,90.0 76.9,89.2 79.5,87.2 C 82.2,85.2 85.2,82.2 87.2,79.5 C 89.2,76.9 90.0,74.4 91.6,71.2 C 93.1,67.9 94.5,64.0 96.6,60.0 C 98.7,56.0 101.0,51.4 103.9,47.2 C 106.8,43.1 110.3,38.7 113.9,35.3 C 117.6,31.8 121.7,28.6 125.9,26.4 C 130.0,24.3 134.4,22.8 138.7,22.3 C 143.1,21.8 147.1,21.9 151.8,23.7 C 156.5,25.5 162.3,29.3 167.0,33.0 Z' fill='%230047FF'/></svg>");
}
@media (max-width: 700px) {
  .contact-band.has-decor::before { width: 90px; height: 90px; top: -28px; left: -30px; }
  .contact-band.has-decor::after { width: 120px; height: 120px; bottom: -40px; right: -40px; }
}
