/* =========================================================
   Praxis Daniela Eltges – Styles
   Farben: #e2947b Terrakotta · #2c2e73 Marineblau
   Sekundär: warme Sand-/Taupe-Töne als Hintergründe
   ========================================================= */

/* ---------- Local Webfonts (DSGVO-konform, ohne Google CDN) ---------- */
/* Schriftdateien liegen im Unterordner /fonts/, bezogen über
   https://gwfh.mranftl.com/fonts (SIL Open Font License). */

/* Nunito Sans */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Nunito Sans'),
       url('fonts/nunito-sans-v19-latin_latin-ext-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Nunito Sans Italic'),
       url('fonts/nunito-sans-v19-latin_latin-ext-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Nunito Sans SemiBold'),
       url('fonts/nunito-sans-v19-latin_latin-ext-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: local('Nunito Sans SemiBold Italic'),
       url('fonts/nunito-sans-v19-latin_latin-ext-600italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Nunito Sans Bold'),
       url('fonts/nunito-sans-v19-latin_latin-ext-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: local('Nunito Sans Bold Italic'),
       url('fonts/nunito-sans-v19-latin_latin-ext-700italic.woff2') format('woff2');
}
:root {
  --color-terracotta: #e2947b;
  --color-terracotta-dark: #c87a62;
  --color-blue: #2c2e73;
  --color-blue-dark: #1f2156;
  /* Warme, neutrale Taupe-Töne (sehr dezent, kein Rosa) */
  --color-rose: #ddd3c5;          /* warmes Taupe-Beige, sehr ausgewaschen */
  --color-rose-light: #f1ece4;    /* sehr helles warmes Off-White (für Akzente) */
  --color-cream: #faf6f3;
  --color-white: #ffffff;
  /* Reine Hintergründe – maximal weiß, minimale Wärme */
  --color-page-bg: #ffffff;       /* Hauptseiten-Hintergrund (Body) */
  --color-section-alt: #fbfaf7;   /* alternierende Sektionen (fast weiß, kaum wärmer) */
  --color-text: #1f2240;
  --color-text-muted: #5b5e7e;
  --color-border: #ece3e0;

  --font-heading: 'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;

  --shadow-soft: 0 10px 40px rgba(44, 46, 115, 0.08);
  --shadow-card: 0 4px 24px rgba(44, 46, 115, 0.06);
  --radius: 14px;
  --radius-lg: 22px;
  --max-width: 1180px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-page-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-terracotta); }

/* ---------- Headings ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-blue);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .6em;
  letter-spacing: -0.4px;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.8px; line-height: 1.1; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; letter-spacing: -0.5px; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); font-weight: 600; letter-spacing: -0.2px; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: 0; }

p { margin: 0 0 1em; }
strong { color: var(--color-blue); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 100px 0;
}
.section-sm { padding: 60px 0; }
.section-rose { background: var(--color-section-alt); }
.section-blue { background: var(--color-blue); color: #f4f4ff; }
.section-blue h1, .section-blue h2, .section-blue h3 { color: #ffffff; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 243, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  position: relative;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  color: var(--color-blue);
  font-size: 1.25rem;
  letter-spacing: .5px;
}
.nav-brand img { height: 54px; width: auto; }
.nav-brand-text { line-height: 1.1; }
.nav-brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}
.nav-list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-list a:not(.nav-phone):not(.nav-cta) {
  font-size: .95rem;
  font-weight: 600;
  color: var(--color-blue);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-list a:not(.nav-phone):not(.nav-cta).active,
.nav-list a:not(.nav-phone):not(.nav-cta):hover { color: var(--color-terracotta); }
.nav-list a.active::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--color-terracotta);
  border-radius: 2px;
}
.nav-cta {
  background: var(--color-terracotta);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 999px;
  font-weight: 700 !important;
  transition: background .2s ease, transform .2s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--color-terracotta-dark); color: #fff !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
  padding: 0;
  color: var(--color-blue);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 112px;
  background:
    radial-gradient(circle at 85% 15%, var(--color-rose) 0%, transparent 35%),
    radial-gradient(circle at 10% 85%, rgba(221, 211, 197, 0.3) 0%, transparent 45%),
    #ffffff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.hero-text {
  position: relative;
  z-index: 3;
}
.hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 12px;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em {
  font-style: normal;
  color: var(--color-terracotta);
}
.hero-lead {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
/* Logo-Wasserzeichen-Kreise – analog zur Visitenkarte: blass, übergroß, hinter dem Logo */
.hero-watermark {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.hero-wm-terracotta {
  /* Großer, sehr blasser Terrakotta-Kreis (gefüllt) – bleedet links aus dem Bild */
  width: 90%;
  aspect-ratio: 1;
  background: rgba(226, 148, 123, 0.10);
  top: -18%;
  left: -28%;
}
.hero-wm-blue {
  /* Marineblauer Konturkreis (nur Linie) – zentral, dezent */
  width: 72%;
  aspect-ratio: 1;
  border: 1.5px solid rgba(44, 46, 115, 0.22);
  top: 16%;
  left: 14%;
}
.hero-wm-rose {
  /* Sanft rosafarbener Kreis (gefüllt) – klein, unten rechts */
  width: 42%;
  aspect-ratio: 1;
  background: rgba(241, 215, 218, 0.25);
  bottom: 6%;
  right: 4%;
}
.hero-visual .hero-logo {
  position: relative;
  z-index: 2;
  max-width: 380px;
  filter: drop-shadow(0 12px 30px rgba(44,46,115,.15));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  text-align: center;
}
.btn-primary {
  background: var(--color-terracotta);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-terracotta-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(226,148,123,.4);
}
.btn-outline {
  border-color: var(--color-blue);
  color: var(--color-blue);
  background: transparent;
}
.btn-outline:hover {
  background: var(--color-blue);
  color: #fff;
}
.btn-light {
  background: #fff;
  color: var(--color-blue);
}
.btn-light:hover { background: var(--color-rose-light); color: var(--color-blue); }

/* ---------- Cards ---------- */
.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-title .eyebrow {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 12px;
}
.section-title p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-top: 10px;
}

.grid {
  display: grid;
  gap: 26px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-rose-light);
  color: var(--color-terracotta);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: var(--font-heading);
}
.card h3 { margin-bottom: 10px; color: var(--color-blue); }
.card p { color: var(--color-text-muted); margin: 0; }

/* ---------- Feature list / two-column blocks ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--color-rose);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.split-image::before {
  content: "";
  position: absolute;
  width: 70%; height: 70%;
  background: var(--color-terracotta);
  opacity: .4;
  border-radius: 50%;
  top: -20%; right: -10%;
}
.split-image::after {
  content: "";
  position: absolute;
  width: 50%; height: 50%;
  background: var(--color-blue);
  opacity: .15;
  border-radius: 50%;
  bottom: -10%; left: -5%;
}
.split-image img {
  position: relative; z-index: 2;
  max-width: 60%;
}

ul.checklist {
  list-style: none; padding: 0; margin: 24px 0;
}
ul.checklist li {
  position: relative;
  padding: 8px 0 8px 38px;
  color: var(--color-text);
}
ul.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 22px; height: 22px;
  background: var(--color-rose);
  border-radius: 50%;
}
ul.checklist li::after {
  content: "";
  position: absolute;
  left: 7px; top: 22px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--color-terracotta);
  border-bottom: 2px solid var(--color-terracotta);
  transform: rotate(-45deg);
}

/* ---------- Schwerpunkte ---------- */
.focus-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  border-top: 2px solid var(--color-terracotta);
  transition: transform .25s ease;
}
.focus-card:nth-child(2) { border-top-color: var(--color-blue); }
.focus-card:nth-child(3) { border-top-color: var(--color-terracotta-dark); }
.focus-card:nth-child(4) { border-top-color: var(--color-blue-dark); }
.focus-card:hover { transform: translateY(-4px); }

.focus-card .topic-eyebrow {
  display: block;
  margin-bottom: 12px;
}
.focus-card h3 {
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--color-blue);
  margin-bottom: 18px;
}
.focus-card .focus-istatements {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  border-top: 1px solid var(--color-border);
}
.focus-card .focus-istatements li {
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.5;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}
.focus-card > p {
  color: var(--color-text-muted);
  font-size: .95rem;
  margin: 0;
  line-height: 1.55;
}

/* ---------- Quote ---------- */
.quote {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.quote blockquote {
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--color-blue);
  margin: 0;
  line-height: 1.45;
}
.quote .attrib {
  display: block;
  margin-top: 22px;
  font-size: .9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  font-weight: 700;
}

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}
.step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px 30px;
  position: relative;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-terracotta);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.step h4 { color: var(--color-blue); margin-bottom: 6px; }
.step p { color: var(--color-text-muted); font-size: .95rem; margin: 0; }

/* ---------- Praxis Standorte ---------- */
.location-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.location-card .location-image {
  height: 220px;
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-terracotta) 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.location-card .location-image::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.25), transparent 50%);
}
.location-card .location-image span {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  z-index: 2;
  position: relative;
  text-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.location-card .location-body { padding: 30px 30px 34px; }
.location-card h3 { color: var(--color-blue); margin-bottom: 8px; }
.location-card address {
  font-style: normal;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.location-card .location-tag {
  display: inline-block;
  background: var(--color-rose-light);
  color: var(--color-blue);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.contact-info h3 { color: var(--color-blue); }
.contact-info .info-item {
  display: flex; gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-info .info-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--color-rose-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-terracotta);
  font-weight: 700;
  font-size: 1.1rem;
}
.contact-info .info-item p { margin: 0; color: var(--color-text-muted); }
.contact-info .info-item p strong { display: block; color: var(--color-blue); margin-bottom: 4px; }

form.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  color: var(--color-blue);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-cream);
  transition: border-color .2s ease, background .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-terracotta);
  background: #fff;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-checkbox {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .9rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}
.form-checkbox input { margin-top: 4px; }

/* ---------- Page header (subpages) ---------- */
.page-header {
  padding: 70px 0 60px;
  background:
    radial-gradient(circle at 90% 0%, var(--color-rose) 0%, transparent 35%),
    var(--color-cream);
  text-align: center;
}
.page-header h1 { margin-bottom: 12px; }
.page-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  background: var(--color-terracotta);
  opacity: .2;
  border-radius: 50%;
  top: -180px; right: -120px;
}
.cta-strip::after {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  background: var(--color-rose);
  opacity: .15;
  border-radius: 50%;
  bottom: -130px; left: -80px;
}
.cta-strip h2 { color: #fff; margin-bottom: 14px; }
.cta-strip p { color: #d8d9ef; max-width: 600px; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-strip .btn-primary { background: var(--color-terracotta); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-blue-dark);
  color: #c8c9e2;
  padding: 70px 0 28px;
}
.site-footer a { color: #c8c9e2; }
.site-footer a:hover { color: var(--color-terracotta); }
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 64px;
  margin-bottom: 50px;
  text-align: center;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; font-size: .95rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: .85rem;
  color: #8889a8;
  gap: 16px;
}

/* ---------- Misc ---------- */
.lead {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 720px;
}
.prose p { margin-bottom: 1.2em; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose .hero-eyebrow + h2 { margin-top: 0; }
.prose > .hero-eyebrow:first-child + h2 { margin-top: 0; }
.prose ul { padding-left: 1.4em; }
.prose ul li { margin-bottom: 8px; }

.notice {
  background: var(--color-rose-light);
  border-left: 2px solid var(--color-terracotta);
  padding: 20px 24px;
  border-radius: 8px;
  margin: 28px 0;
  color: var(--color-blue);
}

/* ---------- Crisis strip (top of every page) ---------- */
.crisis-strip {
  background: #f9f5ee;
  border-bottom: 1px solid #e8ddcb;
  font-size: .9rem;
  color: var(--color-blue);
}
.crisis-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 24px;
  flex-wrap: wrap;
  text-align: center;
}
.crisis-strip svg { color: var(--color-terracotta); flex-shrink: 0; }
.crisis-strip a {
  color: var(--color-terracotta-dark);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}
.crisis-strip a:hover { color: var(--color-blue); }

/* ---------- Header phone (always visible) ---------- */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: .95rem;
  padding: 8px 22px;
  border-radius: 999px;
  border: 2px solid var(--color-blue);
  transition: all .2s ease;
  white-space: nowrap;
}
.nav-phone:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #fff;
}
.nav-phone svg { color: var(--color-terracotta); flex-shrink: 0; transition: color .2s ease; }
.nav-phone:hover svg { color: #fff; }

/* ---------- Reassurance / patient-centered blocks ---------- */
.reassure-block {
  background: linear-gradient(135deg, var(--color-rose-light) 0%, var(--color-cream) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 50px;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}
.reassure-block::before {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  background: var(--color-rose);
  border-radius: 50%;
  top: -100px; right: -60px;
  opacity: .5;
}
.reassure-block > * { position: relative; z-index: 2; }
.reassure-block h2 em {
  font-style: italic;
  color: var(--color-terracotta);
}

/* I-statements card */
.istatement {
  background: #fff;
  padding: 22px 26px;
  border-radius: var(--radius);
  border-left: 2px solid var(--color-terracotta);
  margin-bottom: 14px;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--color-blue);
  line-height: 1.5;
}
.istatement:nth-child(2n) { border-left-color: var(--color-blue); }
.istatement:nth-child(3n) { border-left-color: var(--color-rose-light); border-left-width: 2px; }

/* What happens steps – callable */
.callsteps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.callstep {
  background: #fff;
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.callstep .num {
  display: inline-flex;
  width: 32px; height: 32px;
  background: var(--color-terracotta);
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 12px;
}
.callstep h4 { color: var(--color-blue); margin-bottom: 6px; font-size: 1.05rem; }
.callstep p { color: var(--color-text-muted); margin: 0; font-size: .95rem; }

/* Cost callout */
.cost-callout {
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 2px solid var(--color-blue);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin-top: 24px;
}
.cost-callout strong { color: var(--color-blue); display: block; margin-bottom: 6px; }
.cost-callout p { margin: 0; color: var(--color-text-muted); }

/* ---------- Crisis section (full block) ---------- */
.crisis-section {
  background: linear-gradient(180deg, #faf6f0 0%, #ffffff 100%);
  padding: 70px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.crisis-head {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
}
.crisis-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-terracotta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.crisis-head h2 { margin: 0; }
.crisis-head .eyebrow {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 12px;
}
.crisis-lead {
  max-width: 820px;
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.crisis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.crisis-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.crisis-card.emergency {
  background: #fbeaea;
  border-color: #e6b8b8;
}
.crisis-card .label {
  font-size: .75rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-terracotta-dark);
  margin-bottom: 10px;
}
.crisis-card.emergency .label { color: #9a1f1f; }
.crisis-card .numbers a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-blue);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4px;
}
.crisis-card.emergency .numbers a { color: #7a1818; }
.crisis-card .meta {
  font-size: .85rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}
.crisis-foot {
  font-size: .9rem;
  color: var(--color-text-muted);
  max-width: 820px;
}
.crisis-foot strong { color: var(--color-blue); }

/* ---------- Map (click-to-load, DSGVO-friendly) ---------- */
.map-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.map-card-head {
  padding: 24px 28px 20px;
}
.map-card-head .location-tag {
  display: inline-block;
  background: var(--color-rose-light);
  color: var(--color-blue);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.map-card-head h3 { color: var(--color-blue); margin-bottom: 6px; }
.map-card-head address {
  font-style: normal;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.map-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.map-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-blue);
  transition: all .2s ease;
}
.map-links a:hover {
  background: var(--color-rose-light);
  border-color: var(--color-terracotta);
}
.map-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, #faf6f0 0%, #ffffff 100%);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}
.map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(226,148,123,.10) 0%, transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(221,211,197,.55) 0%, transparent 55%);
  pointer-events: none;
}
.map-frame.loaded { cursor: default; }
.map-frame.loaded::before { display: none; }
.map-placeholder {
  text-align: center;
  max-width: 440px;
  padding: 30px;
  position: relative;
  z-index: 2;
}
.map-placeholder svg {
  margin-bottom: 14px;
  color: var(--color-terracotta);
}
.map-placeholder p {
  font-size: .9rem;
  color: var(--color-text-muted);
  margin: 0 0 16px;
  line-height: 1.5;
}
.map-placeholder button {
  background: var(--color-terracotta);
  color: #fff;
  border: 0;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.map-placeholder button:hover {
  background: var(--color-terracotta-dark);
  transform: translateY(-1px);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Mini form */
.mini-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 32px 30px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.mini-form-banner {
  background: var(--color-rose-light);
  border-left: 2px solid var(--color-terracotta);
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 22px;
  font-size: .95rem;
  color: var(--color-blue);
  line-height: 1.5;
}
/* Honeypot – für Menschen unsichtbar, für Bots verlockend */
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Statusmeldung nach dem Absenden */
.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .95rem;
  line-height: 1.5;
}
.form-status.success {
  background: #eaf5ec;
  border: 1px solid #c5e3cb;
  color: #1f5d2c;
}
.form-status.error {
  background: #fbeaea;
  border: 1px solid #e6b8b8;
  color: #7a1818;
}

/* Sende-Button: Lade-Zustand */
.form-submit[aria-busy="true"] {
  opacity: .65;
  cursor: progress;
}

/* =========================================================
   PERSÖNLICHE NOTIZ AM KONTAKTFORMULAR (kleiner Avatar)
   ========================================================= */

.form-personal-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  padding: 18px 22px;
  background: var(--color-rose-light);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.form-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(44, 46, 115, 0.16);
  flex-shrink: 0;
}
.form-greeting {
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--color-blue);
  margin: 0 0 4px;
  line-height: 1.35;
}
.form-signature {
  font-size: .78rem;
  color: var(--color-terracotta-dark);
  margin: 0;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
}

/* =========================================================
   ANLIEGEN – gleichwertiges Grid aus zwölf Karten
   ========================================================= */

.anliegen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.anliegen-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.anliegen-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--color-terracotta);
}
.anliegen-item .anliegen-topic {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  line-height: 1.35;
}
.anliegen-item .anliegen-quote {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-blue);
  line-height: 1.4;
  flex-grow: 1;
}
.anliegen-item .anliegen-goal {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  font-size: .85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Auffangzeile */
.anliegen-fallback {
  max-width: 720px;
  margin: 56px auto 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1rem;
}
.anliegen-fallback a {
  color: var(--color-terracotta);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}
.anliegen-fallback a:hover { color: var(--color-blue); }

/* Responsive */
@media (max-width: 1100px) {
  .anliegen-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .anliegen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .anliegen-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   VITA-TIMELINE (Stationen im Überblick)
   ========================================================= */

.vita-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.vita-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-terracotta) 0%, var(--color-rose) 100%);
  z-index: 0;
}
.vita-timeline li {
  position: relative;
  padding-left: 34px;
  padding-bottom: 22px;
}
.vita-timeline li:last-child { padding-bottom: 0; }
.vita-timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-cream);
  border: 3px solid var(--color-terracotta);
  z-index: 1;
  box-sizing: border-box;
}
.vita-timeline .vita-title {
  display: block;
  font-weight: 700;
  color: var(--color-blue);
  font-size: 1rem;
  margin-bottom: 3px;
  line-height: 1.3;
}
.vita-timeline .vita-detail {
  display: block;
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

/* =========================================================
   STICKY-VARIANTE für lange Über-mich-Spalten
   ========================================================= */

.split-sticky-img {
  align-items: start !important;
}
@media (min-width: 981px) {
  .split-sticky-img .portrait-frame {
    position: sticky;
    top: 130px;
  }
}

/* =========================================================
   PORTRAIT-RAHMEN (Über-mich-Foto)
   ========================================================= */

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
}
/* Sanft versetzter Rosé-Hintergrund */
.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  background: var(--color-rose);
  border-radius: var(--radius-lg);
  z-index: 0;
}
/* Dezenter Terrakotta-Kreis im Hintergrund */
.portrait-frame::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: var(--color-terracotta);
  opacity: .18;
  border-radius: 50%;
  top: -40px;
  left: -40px;
  z-index: 0;
}
.portrait-frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px -10px rgba(44, 46, 115, 0.22);
  display: block;
}

/* =========================================================
   SCROLL-STORYTELLING (Single-Page)
   ========================================================= */

/* Reveal-on-Scroll: Standard-Start-Zustand */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1),
              transform 1s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

/* Reveal-Variante: aus der Seite (für split-Layouts) */
.reveal-left  { transform: translate(-32px, 0); }
.reveal-right { transform: translate( 32px, 0); }
.reveal-left.is-visible, .reveal-right.is-visible { transform: translate(0,0); }

/* Reveal-Variante: Skalierung (für Logo/Bilder) */
.reveal-scale { transform: scale(.94); }
.reveal-scale.is-visible { transform: scale(1); }

/* Großes Vollbild-Statement (Apple-Stil) */
.statement {
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
  position: relative;
}
.statement-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.statement h2 {
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 30px;
}
.statement h2 em {
  font-style: normal;
  color: var(--color-terracotta);
}
.statement p.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--color-text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Sticky Scrollytelling */
.scrolly {
  position: relative;
}
.scrolly-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.scrolly-sticky {
  position: sticky;
  top: 120px;
  align-self: start;
}
.scrolly-sticky h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.scrolly-sticky h2 em {
  font-style: normal;
  color: var(--color-terracotta);
}
.scrolly-sticky p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  max-width: 460px;
}
.scrolly-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.scrolly-step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  position: relative;
}
.scrolly-step .step-num {
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-terracotta);
  line-height: 1;
  margin-bottom: 12px;
}
.scrolly-step h3 {
  color: var(--color-blue);
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.scrolly-step p {
  color: var(--color-text-muted);
  margin: 0;
}

/* Parallax-Container (Hero-Dekokreise) */
.parallax-layer {
  will-change: transform;
}

/* Smooth scroll for anchor links - already in :root via html { scroll-behavior } */
html { scroll-padding-top: 110px; } /* Damit Anker unter Sticky-Header landen */

/* Section anchor (für Anker-Sprung mit Sticky-Header) */
.anchor {
  position: relative;
  scroll-margin-top: 100px;
}

/* Section divider (sanfter Übergang) */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin: 0 auto;
  max-width: 600px;
}

/* Header: kompakt nach Scroll */
.site-header.is-scrolled {
  background: rgba(250, 246, 243, 0.92);
  box-shadow: 0 2px 20px rgba(44,46,115,.05);
}
.site-header.is-scrolled .nav-brand img { height: 44px; transition: height .3s ease; }
.site-header .nav-brand img { transition: height .3s ease; }

/* Schwerpunkte-Großblöcke (Apple-Stil pro Thema) */
.topic-block {
  padding: 100px 0;
  position: relative;
}
.topic-block + .topic-block { border-top: 1px solid var(--color-border); }
.topic-eyebrow {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-terracotta);
  margin-bottom: 18px;
}
.topic-title {
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 40px;
  max-width: 880px;
}
.topic-title em { font-style: normal; color: var(--color-terracotta); }

/* Respektiert reduzierte Bewegung */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .parallax-layer { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-3, .grid-4, .steps, .crisis-grid, .callsteps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { gap: 40px; }
  .hero-visual { order: -1; min-height: 320px; }
  .hero-visual .hero-logo { max-width: 260px; }
  .section { padding: 70px 0; }
  .reassure-block { padding: 36px 28px; }
  .scrolly-grid { grid-template-columns: 1fr; gap: 40px; }
  .scrolly-sticky { position: static; }
  .section { padding: 72px 0; }
  .topic-block { padding: 72px 0; }
  .section-title { margin: 0 auto 48px; }
}

/* Kompakte Navigation für schmalere Desktops (961–1200 px) */
@media (max-width: 1200px) and (min-width: 961px) {
  .nav-list { gap: 18px; }
  .nav-list a { font-size: .9rem; }
  .nav-brand { font-size: 1.1rem; }
  .nav-brand img { height: 46px; }
  .nav-phone { padding: 8px 22px; font-size: .95rem; gap: 11px; }
  .nav-cta { padding: 9px 18px !important; font-size: .9rem; }
}

/* Hamburger-Menü greift ab 960 px */
@media (max-width: 960px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
    padding: 12px 24px 20px;
  }
  .nav-list.open { display: flex; }
  .nav-list li { border-bottom: 1px solid var(--color-border); }
  .nav-list li:last-child,
  .nav-list li:has(.nav-phone),
  .nav-list li:has(+ li .nav-phone) { border-bottom: 0; }
  .nav-list a:not(.nav-phone):not(.nav-cta) { display: block; padding: 14px 0; white-space: nowrap; }
  .nav-list a.active::after { display: none; }
  .nav { min-height: 48px; padding: 8px 0; }
  .nav-toggle {
    display: inline-flex;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-cta { display: inline-block; margin-top: 8px; }
  .nav-phone { padding: 8px 22px; }
  /* Pillen (Telefon &amp; CTA) horizontal mittig im aufgeklappten Menü */
  .nav-list li:has(.nav-phone),
  .nav-list li:has(.nav-cta) {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4, .steps, .form-row, .crisis-grid, .callsteps { grid-template-columns: 1fr; }
  .crisis-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .crisis-strip { font-size: .75rem; }
  .crisis-strip .container { gap: 8px; padding: 6px 16px; }
  .crisis-strip svg { width: 14px; height: 14px; }
  .nav-phone { padding: 8px 22px; }
  /* Karten-Platzhalter auf Mobile höher gestalten, damit der Hinweistext +
     der "Karte laden"-Button beide vollständig sichtbar sind. */
  .map-frame:not(.loaded) {
    aspect-ratio: auto;
    min-height: 360px;
  }
  .map-frame.loaded {
    aspect-ratio: 4 / 3;
  }
  .map-placeholder {
    padding: 24px 20px;
  }
  .map-placeholder svg {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
  }
  .map-placeholder p {
    font-size: .85rem;
    margin-bottom: 14px;
  }
  .scrolly-grid { grid-template-columns: 1fr; gap: 32px; }
  .scrolly-sticky { position: static; }
  .statement { min-height: 50vh; padding: 48px 24px; }
  .topic-block { padding: 48px 0; }
  .section { padding: 48px 0; }
  .section-title { margin: 0 auto 28px; }
  .portrait-frame { max-width: 360px; }
  .portrait-frame::before { inset: 14px -14px -14px 14px; }
  .portrait-frame::after { width: 110px; height: 110px; top: -24px; left: -24px; }
  .footer-grid { gap: 32px; flex-direction: column; align-items: center; }
  form.contact-form { padding: 28px 22px; }
  .section { padding: 60px 0; }
  .hero { padding: 60px 0 70px; }
}

@media (max-width: 480px) {
  .crisis-strip { font-size: .62rem; line-height: 1.35; }
  .crisis-strip .container { gap: 0; padding: 6px 10px; flex-wrap: nowrap; }
  .crisis-strip svg { display: none; }
  .crisis-strip span { text-align: center; }
}

/* Karten-Platzhalter im Landscape-Mode auf Handys:
   Breite reicht, aber die Höhe (~390-430 px) ist mit dem starren 16:9 zu knapp.
   Wir setzen die feste Aspect-Ratio aus und geben dem Platzhalter ausreichend Höhe. */
@media (max-height: 500px) and (orientation: landscape) {
  .map-frame:not(.loaded) {
    aspect-ratio: auto;
    min-height: 320px;
  }
}

/* Karten-Platzhalter im Übergangs-Bereich (2-Spalten, aber noch schmale Karten):
   Direkt oberhalb von 720 px springt das Layout auf nebeneinander um, jede Karte
   ist dann aber nur ~340–500 px breit. Mit 16:9 wird die Höhe zu knapp für den
   Hinweistext samt „Karte laden"-Button. */
@media (min-width: 721px) and (max-width: 1100px) {
  .map-frame:not(.loaded) {
    aspect-ratio: auto;
    min-height: 340px;
  }
}
