/*
  Redesign 2026: mobile-first, lokale Schriften, keine externen Dateien.
  Font-Dateien erwartet:
  /assets/fonts/KiteOne-Regular.ttf
  /assets/fonts/SourceSans3-VariableFont_wght.ttf
  /assets/fonts/SourceSans3-Italic-VariableFont_wght.ttf
*/
@font-face {
  font-family: 'Kite One Local';
  src: url('../fonts/KiteOne-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans 3 Local';
  src: url('../fonts/SourceSans3-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans 3 Local';
  src: url('../fonts/SourceSans3-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --font-heading: 'Kite One Local', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Source Sans 3 Local', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;

  --cream: #fff9fb;
  --paper: #ffffff;
  --blush-50: #fff2f8;
  --blush-100: #f5dce9;
  --blush-200: #eec5db;
  --rose: #d86aa6;
  --rose-dark: #b84586;
  --rose-soft: rgba(216, 106, 166, .18);
  --sage: #6f8b69;
  --green: #31583c;
  --green-dark: #1f3d2a;
  --ink: #211b20;
  --muted: #6d5f66;
  --line: rgba(184, 79, 139, .22);

  --shadow-soft: 0 18px 48px rgba(49, 88, 60, .12);
  --shadow-card: 0 16px 42px rgba(184, 79, 139, .13);
  --shadow-deep: 0 30px 80px rgba(31, 61, 42, .22);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(245, 220, 233, .55), transparent 32rem),
    linear-gradient(180deg, var(--cream), #fff 24rem);
  font-size: clamp(16px, 1vw + .2rem, 18px);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 1000;
  background: var(--green-dark);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { left: 8px; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 249, 251, .86);
  border-bottom: 1px solid rgba(216, 106, 166, .22);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--green-dark);
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(216,106,166,.15));
}
.brand-text {
  display: grid;
  line-height: 1.15;
}
.brand-text strong {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  letter-spacing: -.02em;
}
.brand-text small {
  color: var(--rose-dark);
  font-weight: 700;
  font-size: .78rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-size: .94rem;
}
.main-nav a {
  text-decoration: none;
  padding: .58rem .72rem;
  border-radius: 999px;
  color: var(--green-dark);
  font-weight: 700;
}
.main-nav a:hover,
.main-nav a:focus-visible { background: var(--blush-100); outline: none; }
.nav-call { margin-left: .35rem; }
.nav-toggle { display: none; }

h1, h2, h3, summary {
  font-family: var(--font-heading);
  letter-spacing: -.018em;
  color: var(--green-dark);
}
h1 {
  font-size: clamp(3rem, 11vw, 5.7rem);
  line-height: .98;
  margin: .2rem 0 1rem;
}
h2 {
  font-size: clamp(2rem, 5.2vw, 3.35rem);
  line-height: 1.08;
  margin: 0 0 1rem;
}
h3 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
  margin: 0 0 .7rem;
}
p { margin: 0 0 1rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--rose-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .76rem;
  margin-bottom: .7rem;
}
.eyebrow::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
.section-intro { max-width: 64ch; color: var(--muted); font-size: 1.04rem; }
.section-head { max-width: 740px; margin-bottom: clamp(1.4rem, 4vw, 2.6rem); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }

.button,
.nav-call {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .86rem 1.18rem;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover,
.nav-call:hover { transform: translateY(-2px); }
.button-primary,
.nav-call {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(184, 69, 134, .28);
}
.button-secondary {
  background: rgba(255,255,255,.78);
  color: var(--rose-dark) !important;
  border: 1px solid rgba(184, 69, 134, .2);
  box-shadow: 0 10px 22px rgba(49, 88, 60, .08);
}
.button-small { padding: .75rem 1rem; min-height: 42px; font-size: .94rem; }
.button-row { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; justify-content: center; margin-top: 1.25rem; }
.button-row.left { justify-content: flex-start; }

.section-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6.5rem) 0 clamp(3rem, 7vw, 6rem);
}
.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
  pointer-events: none;
  opacity: .7;
}
.hero-orb-one {
  width: 22rem;
  height: 22rem;
  background: var(--blush-100);
  top: -8rem;
  right: -8rem;
}
.hero-orb-two {
  width: 18rem;
  height: 18rem;
  background: rgba(111,139,105,.18);
  bottom: 2rem;
  left: -7rem;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .82fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero-copy { max-width: 680px; }
.hero-lead {
  max-width: 62ch;
  color: #4a4147;
  font-size: clamp(1.03rem, 1.6vw, 1.18rem);
}
.hero-actions { justify-content: flex-start; }
.quick-facts {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  margin-top: 1.55rem;
}
.quick-facts span {
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(49, 88, 60, .12);
  color: var(--green-dark);
  border-radius: 999px;
  padding: .48rem .72rem;
  font-weight: 800;
  font-size: .88rem;
  box-shadow: 0 10px 20px rgba(49,88,60,.06);
}
.hero-visual { position: relative; }
.portrait-card {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-dark);
  color: #fff;
  box-shadow: var(--shadow-deep);
  isolation: isolate;
  transform: rotate(.8deg);
}
.portrait-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(31,61,42,.88));
  z-index: 1;
  pointer-events: none;
}
.portrait-card img { width: 100%; aspect-ratio: 4 / 4.55; object-fit: cover; }
.portrait-card figcaption {
  position: absolute;
  z-index: 2;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  align-items: end;
}
.portrait-card figcaption strong { font-family: var(--font-heading); font-size: 1.4rem; }
.portrait-card figcaption span { font-weight: 800; }
.floating-card {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  padding: .85rem 1rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}
.floating-card span { display: block; color: var(--rose-dark); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.floating-card strong { display: block; color: var(--green-dark); line-height: 1.2; }
.floating-card-left { left: -2rem; bottom: 3.3rem; }
.floating-card-right { right: -1.2rem; top: 2.4rem; }

.service-overview,
.gallery-section,
.testimonials { padding: clamp(3rem, 7vw, 6rem) 0; background: #fff; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.35rem);
}
.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.service-card-image { overflow: hidden; }
.service-card-image img { width: 100%; aspect-ratio: 1.25 / 1; object-fit: cover; transition: transform .35s ease; }
.service-card:hover img { transform: scale(1.045); }
.service-card-body { padding: 1.2rem; }
.service-card p { color: var(--muted); font-size: .96rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .2rem;
  color: var(--rose-dark);
  font-weight: 900;
  text-decoration: none;
}
.text-link::after { content: "→"; transition: transform .18s ease; }
.text-link:hover::after { transform: translateX(4px); }

.about-section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  background:
    linear-gradient(135deg, rgba(245,220,233,.86), rgba(255,242,248,.96)),
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.8), transparent 28rem);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-copy {
  position: sticky;
  top: 108px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-top: 1.4rem;
}
.about-stats div {
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(216,106,166,.22);
  border-radius: 18px;
  padding: .9rem .75rem;
  box-shadow: 0 10px 22px rgba(49,88,60,.06);
}
.about-stats strong { display: block; font-family: var(--font-heading); font-size: 1.55rem; color: var(--rose-dark); line-height: 1; }
.about-stats span { display: block; font-size: .82rem; color: var(--muted); font-weight: 800; margin-top: .25rem; }
.timeline-modern {
  display: grid;
  gap: .9rem;
  position: relative;
}
.timeline-modern::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: .9rem;
  bottom: .9rem;
  width: 2px;
  background: linear-gradient(var(--rose), rgba(216,106,166,.08));
}
.timeline-card {
  position: relative;
  display: grid;
  grid-template-columns: 4.7rem 1fr;
  gap: 1rem;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(216,106,166,.22);
  border-radius: 20px;
  padding: 1rem 1rem 1rem .85rem;
  box-shadow: 0 12px 28px rgba(49,88,60,.08);
}
.timeline-card::before {
  content: "";
  position: absolute;
  left: 1.03rem;
  top: 1.43rem;
  width: .7rem;
  height: .7rem;
  border-radius: 999px;
  background: var(--rose-dark);
  box-shadow: 0 0 0 5px rgba(216,106,166,.18);
}
.timeline-card time {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  color: var(--rose-dark);
  font-size: 1.22rem;
  line-height: 1.1;
  padding-left: 1.65rem;
}
.timeline-card p { margin: 0; color: #493f45; }

.midwife-section,
.vision-section,
.coach-section,
.hypnosis-section,
.faq-section,
.contact-section {
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}
.midwife-section { background: #fff; }
.feature-layout {
  display: grid;
  grid-template-columns: minmax(260px, 350px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.feature-aside {
  position: sticky;
  top: 108px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.86), rgba(255,242,248,.72));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 1.6rem);
  box-shadow: var(--shadow-soft);
}
.accordion-list { display: grid; gap: .85rem; }
.modern-details,
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(49,88,60,.08);
  overflow: hidden;
}
.modern-details summary,
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem 1.1rem;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}
.modern-details summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker { display: none; }
.modern-details summary::after,
.faq-item summary::after {
  content: "+";
  margin-left: auto;
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blush-100);
  color: var(--rose-dark);
  font-family: var(--font-body);
  font-weight: 900;
}
.modern-details[open] summary::after,
.faq-item[open] summary::after { content: "−"; }
.modern-details summary span {
  flex: 0 0 auto;
  width: 2.1rem;
  height: 2.1rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green-dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 900;
}
.details-content { padding: 0 1.2rem 1.15rem 4.05rem; color: var(--muted); }
ul { margin: .75rem 0 1rem 1.2rem; padding: 0; }
.check-list { list-style: none; margin-left: 0; }
.check-list li { position: relative; padding-left: 1.45rem; margin-bottom: .45rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--rose-dark); font-weight: 900; }
.two-columns { columns: 2; column-gap: 2rem; }

.vision-section { background: linear-gradient(180deg, #fff, var(--blush-50)); }
.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
  background: var(--green-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  position: relative;
}
.feature-card::after {
  content: "";
  position: absolute;
  right: -5rem;
  top: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: rgba(216,106,166,.2);
}
.feature-card > * { position: relative; z-index: 1; }
.feature-card h2, .feature-card .eyebrow { color: #fff; }
.feature-card p { color: rgba(255,255,255,.84); }
.contact-note {
  white-space: pre-wrap;
  font-family: inherit;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-left: 4px solid var(--rose);
  padding: 1rem;
  border-radius: 18px;
  color: #fff;
}

.coach-section { background: var(--blush-50); }
.hypnosis-section { background: #fff; }
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(300px, .82fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}
.split-grid.reverse { grid-template-columns: minmax(300px, .82fr) minmax(0, .98fr); }
.split-copy { max-width: 720px; }
.image-stack,
.quote-image { margin: 0; position: relative; }
.image-stack::before,
.quote-image::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--blush-100);
  z-index: 0;
}
.image-stack img,
.quote-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}
.quote-image figcaption {
  position: relative;
  z-index: 2;
  width: min(92%, 420px);
  margin: -2.4rem auto 0;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  color: var(--muted);
  font-style: italic;
  box-shadow: var(--shadow-card);
}
.pill-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.pill-list li {
  border-radius: 999px;
  background: var(--blush-100);
  color: var(--green-dark);
  padding: .45rem .7rem;
  font-weight: 800;
  font-size: .9rem;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
  gap: .75rem;
}
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: var(--blush-100);
  box-shadow: 0 8px 20px rgba(49,88,60,.08);
  border: 1px solid rgba(216,106,166,.18);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 138px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.06); }
.gallery-item-1,
.gallery-item-6 { grid-column: span 2; grid-row: span 2; }
.gallery-item-3,
.gallery-item-5 { grid-column: span 2; }
.gallery-item-1 img,
.gallery-item-6 img { aspect-ratio: 1 / 1; }

.faq-section {
  background:
    linear-gradient(135deg, rgba(245,220,233,.92), rgba(255,242,248,.96));
}
.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 3.2rem);
  align-items: start;
}
.faq-list { display: grid; gap: .8rem; }
.faq-item p { padding: 0 1.15rem 1.15rem; margin: 0; color: var(--muted); }

.contact-section { background: #fff; }
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(310px, .85fr);
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: start;
  background: linear-gradient(135deg, var(--blush-50), #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 4vw, 2rem);
  box-shadow: var(--shadow-soft);
}
.contact-card {
  display: grid;
  gap: .45rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  margin: 1.2rem 0;
  background: rgba(255,255,255,.72);
}
.contact-card a { text-decoration: none; color: var(--green-dark); font-weight: 800; overflow-wrap: anywhere; }
.contact-form {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(216,106,166,.24);
  border-radius: var(--radius);
  padding: clamp(1rem, 3vw, 1.4rem);
  display: grid;
  gap: .9rem;
  box-shadow: var(--shadow-card);
}
.contact-form label { display: grid; gap: .35rem; font-weight: 850; color: var(--green-dark); }
input, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(49, 88, 60, .24);
  border-radius: 14px;
  padding: .82rem .9rem;
  background: #fff;
  color: var(--ink);
}
textarea { resize: vertical; }
input:focus, textarea:focus {
  outline: 4px solid rgba(216,106,166,.22);
  border-color: var(--rose-dark);
}
.checkbox-row {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  font-size: .9rem;
  line-height: 1.45;
  color: var(--ink) !important;
}
.checkbox-row input { width: 20px; min-height: 20px; margin-top: .18rem; }
.form-button { width: 100%; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
blockquote {
  margin: 0;
  background: linear-gradient(180deg, #fff, var(--blush-50));
  border-radius: var(--radius);
  padding: 1.35rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
blockquote p { color: #443b41; }
blockquote cite { color: var(--rose-dark); font-weight: 900; font-style: normal; }

.site-footer {
  background: var(--green-dark);
  color: #fff;
  padding: 1.65rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.3rem;
  align-items: center;
}
.site-footer nav { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: flex-end; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer .brand { color: #fff; }
.site-footer .brand-text small { color: var(--blush-100); }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .main-nav {
    display: none;
    position: absolute;
    inset: 82px 16px auto 16px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .7rem;
    box-shadow: var(--shadow-deep);
    flex-direction: column;
    align-items: stretch;
    gap: .15rem;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .85rem .95rem; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.74);
    color: var(--green-dark);
    border-radius: 999px;
    padding: .58rem .95rem;
    font-weight: 900;
  }
  .hero-grid,
  .about-grid,
  .feature-layout,
  .feature-card,
  .split-grid,
  .split-grid.reverse,
  .faq-grid,
  .contact-shell { grid-template-columns: 1fr; }
  .about-copy,
  .feature-aside { position: static; }
  .hero-copy { max-width: none; }
  .hero-visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .card-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: minmax(190px, .55fr) 1fr; grid-template-rows: none; }
  .service-card-image img { height: 100%; aspect-ratio: auto; }
  .gallery-mosaic { grid-template-columns: repeat(4, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 72px; }
  .container { width: min(100% - 24px, var(--max)); }
  .header-inner { min-height: 70px; }
  .brand img { width: 48px; height: 48px; }
  .brand-text strong { font-size: 1.02rem; }
  .brand-text small { display: none; }
  .main-nav { inset-top: 70px; }
  h1 { font-size: clamp(2.65rem, 16vw, 4.2rem); }
  .section-hero { padding-top: 2rem; }
  .portrait-card { transform: none; border-radius: 28px; }
  .portrait-card img { aspect-ratio: 4 / 4.2; }
  .portrait-card figcaption { display: grid; align-items: start; }
  .floating-card { position: static; margin-top: .75rem; }
  .hero-actions,
  .button-row,
  .button-row.left { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .quick-facts { gap: .45rem; }
  .quick-facts span { font-size: .82rem; padding: .42rem .62rem; }
  .service-card { grid-template-columns: 1fr; }
  .service-card-image img { aspect-ratio: 16 / 10; }
  .about-stats { grid-template-columns: 1fr; }
  .timeline-modern::before { left: 1.05rem; }
  .timeline-card { grid-template-columns: 1fr; gap: .45rem; padding-left: 2.4rem; }
  .timeline-card::before { left: .78rem; }
  .timeline-card time { padding-left: 0; }
  .modern-details summary,
  .faq-item summary { align-items: flex-start; font-size: 1.1rem; }
  .modern-details summary span { width: 1.9rem; height: 1.9rem; }
  .details-content { padding: 0 1rem 1rem; }
  .two-columns { columns: 1; }
  .image-stack::before,
  .quote-image::before { inset: .7rem -.45rem -.55rem .7rem; border-radius: 28px; }
  .image-stack img,
  .quote-image img { border-radius: 28px; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); gap: .55rem; }
  .gallery-item,
  .gallery-item-1,
  .gallery-item-3,
  .gallery-item-5,
  .gallery-item-6 { grid-column: span 1; grid-row: span 1; }
  .gallery-item img { min-height: 135px; }
  .contact-shell { padding: 1rem; border-radius: 28px; }
}

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

.form-status {
  border-radius: 18px;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(198, 66, 145, .22);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 34px rgba(30, 65, 43, .08);
}
.form-status strong {
  display: block;
  margin-bottom: .25rem;
  color: var(--green-dark);
}
.form-status p {
  margin: 0;
}
.form-status.is-success {
  border-color: rgba(52, 120, 85, .25);
  background: rgba(240, 250, 244, .9);
}
.form-status.is-error {
  border-color: rgba(198, 66, 145, .32);
  background: rgba(255, 244, 250, .9);
}

/* Meeting-Anpassungen 2026-06: nur Aufbau/CSS und YAML-gesteuerte Inhalte */
.section-hero .hero-grid {
  grid-template-columns: minmax(0, .98fr) minmax(320px, .82fr);
  gap: clamp(2rem, 6vw, 4.4rem);
}
.section-hero .hero-copy h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.02;
  max-width: 11.5ch;
}
.section-hero .hero-title-line { display: block; }
.section-hero .hero-visual { max-width: 470px; margin-inline: auto; }
.portrait-card.layered-card {
  position: relative;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transform: none;
  isolation: isolate;
}
.portrait-card.layered-card::before {
  content: "";
  position: absolute;
  inset: 1.05rem -1.05rem -1.05rem 1.05rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(245,220,233,.9), rgba(111,139,105,.2));
  z-index: -1;
  box-shadow: 0 30px 80px rgba(31, 61, 42, .14);
}
.portrait-card.layered-card img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  aspect-ratio: 4 / 4.55;
  object-fit: cover;
  border: none;
}
.portrait-card.layered-card::after {
  inset: auto 0 0 0;
  height: 33%;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.portrait-card.layered-card figcaption {
  left: 1.15rem;
  bottom: 1rem;
  right: auto;
}
.portrait-card.layered-card figcaption strong { color: #fff; }

.compact-head { max-width: 520px; }
.service-card { height: 100%; }
.service-card-body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.service-card-body p { flex: 1; }
.text-link {
  width: fit-content;
  margin-top: auto;
  padding: .55rem .72rem;
  border-radius: 999px;
  background: rgba(216, 106, 166, .1);
}
.text-link::after {
  content: "↓";
  font-size: 1em;
  transform: translateY(-1px);
}
.text-link:hover,
.text-link:focus-visible {
  background: var(--rose-dark);
  color: #fff;
  outline: none;
}

.about-grid { grid-template-columns: minmax(260px, .7fr) minmax(0, 1fr); }
.about-stats { display: none !important; }
.timeline-card { align-items: center; }
.timeline-card time { align-self: center; }
.timeline-card::before { top: 50%; transform: translateY(-50%); }
.timeline-modern::before { top: 1.6rem; bottom: 1.6rem; }

.aside-actions {
  display: grid;
  gap: .65rem;
  margin-top: 1rem;
}
.aside-actions .button { width: 100%; }
.modern-details summary,
.faq-item summary {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}
.modern-details summary::after,
.faq-item summary::after {
  margin-left: 0;
  display: grid;
  place-items: center;
  line-height: 1;
  font-size: 1.25rem;
  padding-bottom: .08rem;
}
.details-content { padding-left: 1.2rem; }
.soft-note {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(111, 139, 105, .12);
  border: 1px solid rgba(111, 139, 105, .22);
  color: var(--green-dark);
}
.soft-note strong { display: block; margin-bottom: .25rem; }
.soft-note p { margin-bottom: .45rem; color: #435744; }
.soft-note a { color: var(--green-dark); font-weight: 900; }

.quote-image.no-caption figcaption { display: none; }
.quote-image.no-caption::before { background: rgba(111,139,105,.18); }

.gallery-section { background: #fff; }
.gallery-mosaic {
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: auto;
  align-items: stretch;
}
.gallery-item,
.gallery-item-1,
.gallery-item-3,
.gallery-item-5,
.gallery-item-6 {
  grid-column: auto !important;
  grid-row: auto !important;
  aspect-ratio: 1 / 1;
}
.gallery-item img,
.gallery-item-1 img,
.gallery-item-6 img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}
.gallery-item:nth-child(1) img,
.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img { object-position: center; }
.gallery-item:focus-visible { outline: 4px solid rgba(216,106,166,.32); outline-offset: 3px; }

.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(31, 28, 32, .86);
  display: grid;
  place-items: center;
  padding: 1.2rem;
}
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0,0,0,.4);
  object-fit: contain;
  background: #fff;
}
.lightbox button {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--green-dark);
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.testimonials { background: var(--blush-50); }
.testimonial-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  gap: .8rem;
}
.testimonial-track {
  overflow: hidden;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: var(--radius);
}
.testimonial-slide {
  scroll-snap-align: start;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.carousel-button {
  align-self: center;
  border: 0;
  border-radius: 999px;
  width: 2.8rem;
  height: 2.8rem;
  background: #fff;
  color: var(--rose-dark);
  box-shadow: var(--shadow-soft);
  font-size: 1.9rem;
  font-weight: 900;
  cursor: pointer;
}
.carousel-button:hover,
.carousel-button:focus-visible { background: var(--rose-dark); color: #fff; outline: none; }

.contact-card a {
  border-radius: 12px;
  padding: .3rem .45rem;
  margin-left: -.45rem;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}
.contact-card a:hover,
.contact-card a:focus-visible {
  background: var(--rose-dark);
  color: #fff;
  transform: translateX(3px);
  outline: none;
}
.map-link {
  display: grid;
  gap: .85rem;
  margin-top: 1.1rem;
  text-decoration: none;
  width: min(100%, 460px);
}
.map-link img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.map-link .button { width: fit-content; }
.map-link .button::after {
  content: "↗";
  font-size: .95em;
  transform: translateY(-1px);
}

.site-footer nav a:not([href="impressum"]):not([href="datenschutz"]):not([href$="impressum.php"]):not([href$="datenschutz.php"]) { display: none; }

@media (min-width: 981px) {
  .section-hero .hero-copy h1 { white-space: normal; }
}
@media (max-width: 980px) {
  .section-hero .hero-grid { grid-template-columns: 1fr; }
  .section-hero .hero-copy h1 { max-width: 100%; }
  .gallery-mosaic { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .section-hero .hero-copy h1 { font-size: clamp(2.6rem, 14vw, 4rem); }
  .portrait-card.layered-card::before { inset: .75rem -.45rem -.55rem .75rem; border-radius: 28px; }
  .portrait-card.layered-card img,
  .portrait-card.layered-card::after { border-radius: 28px; }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
  .testimonial-carousel { grid-template-columns: 1fr; }
  .carousel-button { display: none; }
  .modern-details summary,
  .faq-item summary { font-size: 1.08rem; align-items: center; }
}

/* Stimmen – überarbeiteter Karussell-Aufbau */
.testimonials .section-head {
  max-width: none;
  margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
}
.testimonials .section-head h2 {
  max-width: none;
  white-space: nowrap;
}
.testimonial-carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1040px;
  margin-inline: auto;
}
.testimonial-track {
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(57, 35, 47, .08);
}
.testimonial-slide {
  min-height: clamp(230px, 26vw, 360px);
  justify-content: center;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(255,248,252,.94));
}
.testimonial-slide p {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}
.testimonial-slide cite {
  display: grid;
  gap: .18rem;
  margin-top: 1.15rem;
}
.testimonial-slide cite strong {
  color: var(--rose-dark);
  font-size: 1rem;
  font-weight: 950;
}
.testimonial-slide cite span {
  color: var(--green-dark);
  font-size: .95rem;
  font-weight: 800;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}
.testimonial-controls .carousel-button {
  position: static;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 3.1rem;
  height: 3.1rem;
  padding: 0;
  border: 1px solid rgba(216, 106, 166, .28);
  background: rgba(255,255,255,.92);
  color: var(--rose-dark);
  box-shadow: 0 12px 30px rgba(57, 35, 47, .08);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.testimonial-controls .carousel-button:hover,
.testimonial-controls .carousel-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--rose-dark);
  background: var(--rose-dark);
  color: #fff;
}
.testimonial-dots {
  min-height: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .42rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(216, 106, 166, .16);
}
.testimonial-dot {
  width: .48rem;
  height: .48rem;
  border-radius: 999px;
  background: rgba(216, 106, 166, .28);
  transition: width .18s ease, background .18s ease;
}
.testimonial-dot.is-active {
  width: 1.45rem;
  background: var(--rose-dark);
}
@media (max-width: 780px) {
  .testimonials .section-head h2 {
    white-space: normal;
  }
  .testimonial-slide {
    min-height: 310px;
  }
}
@media (max-width: 640px) {
  .testimonial-controls .carousel-button { display: inline-flex !important; }
  .testimonial-dots { gap: .3rem; padding-inline: .55rem; }
  .testimonial-dot { width: .42rem; height: .42rem; }
  .testimonial-dot.is-active { width: 1.1rem; }
}

/* Stimmen – kompakter, mobil wischbar, kein horizontaler Seiten-Overflow */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.testimonials {
  overflow: hidden;
}

.testimonials .container {
  min-width: 0;
}

.testimonials .section-head h2 {
  max-width: 980px;
  white-space: normal;
  text-wrap: balance;
}

.testimonial-carousel {
  width: min(100%, 860px);
  max-width: 100%;
  margin-inline: auto;
  gap: .85rem;
  min-width: 0;
}

.testimonial-track {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}
.testimonial-track::-webkit-scrollbar { display: none; }

.testimonial-slide {
  width: 100%;
  min-width: 0;
  min-height: 0;
  padding: clamp(1.25rem, 3.2vw, 2rem);
  display: flex;
  justify-content: center;
  scroll-snap-align: center;
}

.testimonial-slide p {
  font-size: clamp(.98rem, 1.15vw, 1.08rem);
  line-height: 1.65;
  max-width: 68ch;
}

.testimonial-slide cite {
  margin-top: .95rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(216, 106, 166, .18);
}

.testimonial-slide cite strong {
  color: var(--green-dark);
  font-size: 1.02rem;
}

.testimonial-slide cite span {
  color: var(--rose-dark);
  font-size: .92rem;
  font-weight: 850;
}

.testimonial-controls {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: .4rem;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(216, 106, 166, .16);
  box-shadow: 0 14px 38px rgba(57, 35, 47, .07);
}

.testimonial-controls .carousel-button {
  width: 2.65rem;
  height: 2.65rem;
  border: 0;
  box-shadow: none;
  background: transparent;
  font-size: 1rem;
}

.testimonial-dots {
  min-height: auto;
  border: 0;
  background: transparent;
  padding: .25rem .35rem;
}

@media (max-width: 640px) {
  .testimonials { padding-block: 3.2rem; }
  .testimonial-carousel {
    width: 100%;
  }
  .testimonial-slide {
    padding: 1.15rem;
    border-radius: 22px;
  }
  .testimonial-slide p {
    font-size: .98rem;
    line-height: 1.6;
  }
  .testimonial-controls {
    gap: .35rem;
  }
}

/* Update: ruhigeres Stimmen-Karussell + variable Galerie aus content.yaml */
.gallery-section { background: #fff; }
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(116px, 11vw, 158px);
  grid-auto-flow: dense;
  gap: clamp(.55rem, 1.1vw, .9rem);
  align-items: stretch;
}
.gallery-item,
.gallery-item-1,
.gallery-item-3,
.gallery-item-5,
.gallery-item-6 {
  grid-column: span 2 !important;
  grid-row: span 1 !important;
  aspect-ratio: auto !important;
  min-width: 0;
}
.gallery-item--normal { grid-column: span 2 !important; grid-row: span 1 !important; }
.gallery-item--wide { grid-column: span 3 !important; grid-row: span 1 !important; }
.gallery-item--tall { grid-column: span 2 !important; grid-row: span 2 !important; }
.gallery-item--large { grid-column: span 3 !important; grid-row: span 2 !important; }
.gallery-item img,
.gallery-item-1 img,
.gallery-item-6 img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto !important;
  object-fit: cover;
  object-position: var(--gallery-pos, center center) !important;
  display: block;
}

.testimonial-carousel {
  width: min(100%, 860px);
  max-width: 100%;
  margin-inline: auto;
  overflow: hidden;
  min-width: 0;
  touch-action: pan-y;
}
.testimonial-track {
  display: flex !important;
  grid-auto-flow: initial !important;
  grid-auto-columns: initial !important;
  overflow: visible !important;
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
  transform: translate3d(0, 0, 0);
  transition: transform .42s cubic-bezier(.22, .9, .24, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.testimonial-carousel.is-dragging .testimonial-track {
  cursor: grabbing;
  transition: none;
}
.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: none !important;
}
.testimonial-slide * {
  user-select: text;
}
.testimonial-controls {
  margin-top: .9rem;
}

@media (max-width: 980px) {
  .gallery-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: clamp(112px, 18vw, 150px);
  }
  .gallery-item--normal { grid-column: span 2 !important; }
  .gallery-item--wide { grid-column: span 4 !important; }
  .gallery-item--tall { grid-column: span 2 !important; grid-row: span 2 !important; }
  .gallery-item--large { grid-column: span 4 !important; grid-row: span 2 !important; }
}

@media (max-width: 640px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(112px, 34vw, 148px);
    gap: .55rem;
  }
  .gallery-item--normal { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery-item--wide { grid-column: span 2 !important; grid-row: span 1 !important; }
  .gallery-item--tall { grid-column: span 1 !important; grid-row: span 2 !important; }
  .gallery-item--large { grid-column: span 2 !important; grid-row: span 2 !important; }
  .testimonial-track {
    transition-duration: .34s;
  }
}

/* Final update: ruhigere Galerie, bessere Lightbox, mobile Über-mich-Korrektur */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.gallery-mosaic {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-rows: auto !important;
  grid-auto-flow: row !important;
  gap: clamp(.75rem, 1.4vw, 1.1rem) !important;
  align-items: start !important;
}
.gallery-item,
.gallery-item-1,
.gallery-item-3,
.gallery-item-5,
.gallery-item-6,
.gallery-item--normal,
.gallery-item--wide,
.gallery-item--tall,
.gallery-item--large,
.gallery-item--quer,
.gallery-item--hoch {
  grid-column: auto !important;
  grid-row: auto !important;
  aspect-ratio: auto !important;
  min-width: 0 !important;
  display: block;
  border-radius: 22px;
  overflow: hidden;
}
.gallery-item--quer img {
  aspect-ratio: 4 / 3 !important;
}
.gallery-item--hoch img {
  aspect-ratio: 3 / 4 !important;
}
.gallery-item img,
.gallery-item-1 img,
.gallery-item-6 img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: var(--gallery-pos, center center) !important;
  display: block;
}

body.lightbox-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  touch-action: none;
}
.lightbox {
  overscroll-behavior: contain;
  touch-action: none;
}
.lightbox img {
  transition: transform .22s ease, opacity .18s ease;
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  line-height: 1 !important;
  padding: 0 !important;
  font-family: var(--font-body);
  font-size: 1.55rem !important;
  font-weight: 900;
  box-shadow: 0 16px 45px rgba(31, 28, 32, .18);
}
.lightbox-close {
  font-size: 1.25rem !important;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 1.35rem;
  }
  .about-copy {
    position: static !important;
    max-width: 100%;
  }
  .timeline-modern {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .timeline-card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .gallery-mosaic {
    gap: .65rem !important;
  }
  .gallery-item,
  .gallery-item--quer,
  .gallery-item--hoch {
    border-radius: 18px;
  }
  .lightbox {
    padding: .8rem;
  }
  .lightbox img {
    max-width: 94vw;
    max-height: 78vh;
    border-radius: 18px;
  }
  .lightbox button {
    width: 2.65rem;
    height: 2.65rem;
    font-size: 1.3rem !important;
  }
  .lightbox-close {
    top: .75rem;
    right: .75rem;
  }
  .lightbox-prev {
    left: .55rem;
  }
  .lightbox-next {
    right: .55rem;
  }
}

/* Fix: Galerie wieder dichter als Masonry + Lightbox-Pfeile ohne Seitensprung */
.gallery-mosaic {
  display: block !important;
  columns: 3 260px !important;
  column-gap: clamp(.7rem, 1.2vw, 1rem) !important;
}
.gallery-item,
.gallery-item--quer,
.gallery-item--hoch,
.gallery-item-1,
.gallery-item-3,
.gallery-item-5,
.gallery-item-6 {
  display: block !important;
  width: 100% !important;
  margin: 0 0 clamp(.7rem, 1.2vw, 1rem) !important;
  break-inside: avoid !important;
  -webkit-column-break-inside: avoid !important;
  grid-column: auto !important;
  grid-row: auto !important;
}
.gallery-item--quer img,
.gallery-item img {
  aspect-ratio: 4 / 3 !important;
}
.gallery-item--hoch img {
  aspect-ratio: 3 / 4 !important;
}
.gallery-item img,
.gallery-item-1 img,
.gallery-item-6 img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: var(--gallery-pos, center center) !important;
}
.lightbox button {
  appearance: none;
  border: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.lightbox-nav,
.lightbox-close {
  z-index: 5;
}
@media (max-width: 760px) {
  .gallery-mosaic {
    columns: 2 150px !important;
    column-gap: .6rem !important;
  }
  .gallery-item,
  .gallery-item--quer,
  .gallery-item--hoch {
    margin-bottom: .6rem !important;
  }
}

/* Anpassung 2026-06: Mobile Reihenfolge Hypnose + Body-Font Empfehlung
   Überschriften bleiben Kite One. Fließtext nutzt weiterhin eine ruhige Systemschrift.
   Wenn später Roboto lokal eingebunden wird, kann --font-body oben einfach auf 'Roboto Local' gesetzt werden. */
@media (max-width: 980px) {
  .hypnosis-section .split-copy {
    order: 1;
  }

  .hypnosis-section .quote-image {
    order: 2;
  }
}

/* Update: weichere Stimmen-Karte + dezente wiederkehrende Kreis-Elemente */
.service-overview,
.about-section,
.midwife-section,
.gallery-section,
.testimonials,
.faq-section,
.contact-section {
  position: relative;
  overflow: hidden;
}

/* Sehr dezente Orbs als Wiedererkennungsmerkmal aus dem Hero, aber sparsam */
.service-overview::before,
.service-overview::after,
.about-section::before,
.gallery-section::before,
.gallery-section::after,
.midwife-section::before,
.testimonials::before,
.faq-section::before,
.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(1px);
  opacity: .42;
}

.service-overview::before {
  width: clamp(7rem, 12vw, 10rem);
  height: clamp(7rem, 12vw, 10rem);
  left: max(-2.5rem, -3vw);
  top: clamp(1.5rem, 4vw, 3rem);
  background: radial-gradient(circle, rgba(255, 255, 255, .78), rgba(216, 106, 166, .09) 56%, transparent 74%);
}

.service-overview::after {
  width: clamp(10rem, 16vw, 15rem);
  height: clamp(10rem, 16vw, 15rem);
  right: max(-4rem, -4vw);
  bottom: clamp(2rem, 6vw, 4rem);
  background: radial-gradient(circle, rgba(111, 139, 105, .16), rgba(111, 139, 105, .04) 62%, transparent 76%);
}

.about-section::before {
  width: clamp(9rem, 18vw, 16rem);
  height: clamp(9rem, 18vw, 16rem);
  right: max(-4rem, -5vw);
  top: clamp(1.5rem, 5vw, 4rem);
  background: radial-gradient(circle, rgba(216, 106, 166, .24), rgba(216, 106, 166, .06) 58%, transparent 72%);
}

.gallery-section::before {
  width: clamp(7rem, 14vw, 12rem);
  height: clamp(7rem, 14vw, 12rem);
  left: max(-3rem, -4vw);
  top: clamp(2rem, 6vw, 5rem);
  background: radial-gradient(circle, rgba(111, 139, 105, .18), rgba(111, 139, 105, .055) 62%, transparent 74%);
}

.gallery-section::after {
  width: clamp(5rem, 10vw, 8rem);
  height: clamp(5rem, 10vw, 8rem);
  right: 4%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(255, 255, 255, .82), rgba(216, 106, 166, .1) 54%, transparent 74%);
}

.midwife-section::before {
  width: clamp(6.5rem, 12vw, 9rem);
  height: clamp(6.5rem, 12vw, 9rem);
  left: max(-2rem, -3vw);
  bottom: clamp(2rem, 7vw, 5rem);
  background: radial-gradient(circle, rgba(111, 139, 105, .16), rgba(111, 139, 105, .04) 60%, transparent 76%);
}

.testimonials::before {
  width: clamp(10rem, 18vw, 16rem);
  height: clamp(10rem, 18vw, 16rem);
  right: max(-4rem, -4vw);
  bottom: clamp(1rem, 5vw, 4rem);
  background: radial-gradient(circle, rgba(255, 255, 255, .66), rgba(216, 106, 166, .12) 55%, transparent 74%);
}

.faq-section::before {
  width: clamp(6rem, 11vw, 10rem);
  height: clamp(6rem, 11vw, 10rem);
  right: 7%;
  top: 3rem;
  background: radial-gradient(circle, rgba(111, 139, 105, .16), rgba(111, 139, 105, .045) 62%, transparent 75%);
}

.contact-section::before {
  width: clamp(8rem, 14vw, 12rem);
  height: clamp(8rem, 14vw, 12rem);
  left: max(-2.5rem, -4vw);
  top: clamp(1rem, 5vw, 4rem);
  background: radial-gradient(circle, rgba(216, 106, 166, .18), rgba(216, 106, 166, .05) 58%, transparent 75%);
}

.contact-section::after {
  width: clamp(5rem, 9vw, 7rem);
  height: clamp(5rem, 9vw, 7rem);
  right: 5%;
  bottom: clamp(2rem, 6vw, 4rem);
  background: radial-gradient(circle, rgba(111, 139, 105, .14), rgba(111, 139, 105, .035) 62%, transparent 76%);
}

.service-overview > .container,
.about-section > .container,
.midwife-section > .container,
.gallery-section > .container,
.testimonials > .container,
.faq-section > .container,
.contact-section > .container {
  position: relative;
  z-index: 1;
}

/* Stimmen: Schatten weicher, nicht mehr als harte Säulen links/rechts */
.testimonials {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .72), transparent 26rem),
    radial-gradient(circle at 88% 76%, rgba(216, 106, 166, .10), transparent 18rem),
    var(--blush-50);
}

.testimonial-carousel {
  filter: drop-shadow(0 18px 34px rgba(49, 88, 60, .055));
}

.testimonial-track {
  box-shadow: none !important;
  border-radius: 28px;
}

.testimonial-slide {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(255, 250, 253, .955)) !important;
  border: 1px solid rgba(216, 106, 166, .18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 18px 48px rgba(49, 88, 60, .06),
    0 28px 70px rgba(184, 69, 134, .055) !important;
}

.testimonial-controls {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .95) inset,
    0 12px 24px rgba(49, 88, 60, .045),
    0 20px 42px rgba(184, 69, 134, .055) !important;
}

@media (max-width: 640px) {
  .about-section::before,
  .gallery-section::before,
  .testimonials::before,
  .faq-section::before {
    opacity: .28;
  }

  .testimonial-carousel {
    filter: drop-shadow(0 12px 22px rgba(49, 88, 60, .045));
  }

  .testimonial-slide {
    box-shadow:
      0 1px 0 rgba(255, 255, 255, .9) inset,
      0 14px 28px rgba(49, 88, 60, .045) !important;
  }
}

/* Update: klare Link-Icons + Lightbox-Scroll-Fix */
.button.link-down::after {
  content: "↓";
  font-size: .95em;
  line-height: 1;
  transform: translateY(-1px);
}
.button.link-external::after,
.aside-actions a[target="_blank"]::after {
  content: "↗";
  font-size: .95em;
  line-height: 1;
  transform: translateY(-1px);
}
html.lightbox-scroll-restore {
  scroll-behavior: auto !important;
}

/* Fix: Sticky feature aside must not be affected by reveal transform. */
.feature-aside.reveal,
.feature-aside.reveal.is-visible {
  transform: none;
}


/* Fix: Hebamme-Seitenkarte wieder sticky machen. Sticky bricht, wenn ein Elternbereich overflow:hidden hat. */
.midwife-section {
  overflow: visible !important;
}
@media (min-width: 981px) {
  .feature-layout {
    align-items: start;
  }
  .feature-aside {
    position: sticky !important;
    top: calc(var(--header-height, 82px) + 26px);
    align-self: start;
    z-index: 2;
  }
}

/* Fix: leere YAML-Felder nicht als sichtbarer Abstand über Coach/Hypnose erscheinen lassen. */
.coach-section .split-copy .eyebrow:empty,
.hypnosis-section .split-copy .eyebrow:empty {
  display: none;
}


/* Update: externe Inline-Links, stabileres Sticky und weichere Stimmen-Kachel */
.soft-note a.link-external-inline::after,
.soft-note a[target="_blank"]::after {
  content: " ↗";
  font-weight: 900;
  font-size: .95em;
}

@media (min-width: 981px) {
  .midwife-section,
  .midwife-section .container,
  .midwife-section .feature-layout {
    overflow: visible !important;
    transform: none !important;
    contain: none !important;
  }
  .midwife-section .feature-layout {
    align-items: start;
  }
  .midwife-section .feature-aside,
  .midwife-section .feature-aside.reveal,
  .midwife-section .feature-aside.reveal.is-visible {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 104px !important;
    align-self: start !important;
    height: fit-content;
    z-index: 5;
    transform: none !important;
  }
}

/* Stimmen: kein harter/eckiger Schlagschatten, stattdessen weiche farbige Kachel im Hintergrund */
.testimonials .testimonial-carousel {
  position: relative;
  filter: none !important;
  isolation: isolate;
}
.testimonials .testimonial-carousel::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 2.1rem -1.65rem -1.25rem 1.35rem;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(245, 220, 233, .86), rgba(255, 242, 248, .58));
  border: 1px solid rgba(216, 106, 166, .16);
  box-shadow: none;
  pointer-events: none;
}
.testimonials .testimonial-track,
.testimonials .testimonial-slide,
.testimonials .testimonial-controls {
  box-shadow: none !important;
}
.testimonials .testimonial-slide {
  border: 1px solid rgba(216, 106, 166, .20);
  background: rgba(255, 255, 255, .94) !important;
}
.testimonials .testimonial-controls {
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(216, 106, 166, .16);
}
@media (max-width: 640px) {
  .testimonials .testimonial-carousel::before {
    inset: 1.35rem -.55rem -.75rem .55rem;
    border-radius: 26px;
  }
}

/* Stimmen: neuer Versuch mit mehreren Karten nebeneinander statt großer Einzelkarte */
.testimonials {
  overflow: hidden;
}

.testimonials .testimonial-carousel {
  --testimonial-gap: 1.05rem;
  width: min(1120px, 100%);
  margin: clamp(1.5rem, 4vw, 2.6rem) auto 0;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, .9), transparent 20rem),
    linear-gradient(135deg, rgba(245, 220, 233, .72), rgba(255, 247, 251, .58));
  border: 1px solid rgba(216, 106, 166, .16);
  box-shadow: none !important;
  filter: none !important;
  isolation: isolate;
}

.testimonials .testimonial-carousel::before,
.testimonials .testimonial-carousel::after {
  display: none !important;
  content: none !important;
}

.testimonials .testimonial-track {
  display: flex !important;
  gap: var(--testimonial-gap) !important;
  align-items: stretch;
  overflow: visible !important;
  border-radius: 24px;
  transition: transform .46s cubic-bezier(.22, .8, .28, 1);
  will-change: transform;
  touch-action: pan-y;
  box-shadow: none !important;
}

.testimonials .testimonial-carousel.is-dragging .testimonial-track {
  cursor: grabbing;
  transition: none !important;
}

.testimonials .testimonial-slide {
  flex: 0 0 calc((100% - (var(--testimonial-gap) * 2)) / 3) !important;
  min-width: 0;
  min-height: 0 !important;
  height: auto;
  margin: 0 !important;
  padding: clamp(1.25rem, 2.3vw, 1.75rem) !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  background: rgba(255, 255, 255, .92) !important;
  border: 1px solid rgba(216, 106, 166, .18);
  box-shadow: none !important;
}

.testimonials .testimonial-slide p {
  margin: 0;
  font-size: clamp(.98rem, 1.05vw, 1.06rem);
  line-height: 1.62;
}

.testimonials .testimonial-slide cite {
  margin-top: 1.15rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(216, 106, 166, .18);
}

.testimonials .testimonial-controls {
  position: static !important;
  width: fit-content;
  margin: 1.05rem auto 0 !important;
  transform: none !important;
  box-shadow: none !important;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(216, 106, 166, .16);
}

@media (max-width: 980px) {
  .testimonials .testimonial-carousel {
    --testimonial-gap: .95rem;
  }
  .testimonials .testimonial-slide {
    flex-basis: calc((100% - var(--testimonial-gap)) / 2) !important;
  }
}

@media (max-width: 640px) {
  .testimonials .section-head h2 {
    line-height: 1.12;
  }
  .testimonials .testimonial-carousel {
    --testimonial-gap: .85rem;
    padding: .78rem;
    border-radius: 26px;
  }
  .testimonials .testimonial-slide {
    flex-basis: 100% !important;
    padding: 1.1rem !important;
    border-radius: 20px;
  }
  .testimonials .testimonial-controls {
    margin-top: .8rem !important;
  }
}

/* Stimmen: kompakter 1-/2-Karten-Slider ohne große Leerflächen */
.testimonials {
  overflow: hidden;
}

.testimonials .testimonial-carousel {
  --testimonial-gap: clamp(1rem, 2vw, 1.45rem);
  width: min(1040px, 100%) !important;
  margin: clamp(1.35rem, 3.4vw, 2.35rem) auto 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  overflow: hidden !important;
  border-radius: 0 !important;
}

.testimonials .testimonial-carousel::before,
.testimonials .testimonial-carousel::after {
  display: none !important;
  content: none !important;
}

.testimonials .testimonial-track {
  display: flex !important;
  gap: var(--testimonial-gap) !important;
  align-items: center !important;
  overflow: visible !important;
  padding: .35rem .2rem .15rem !important;
  border-radius: 0 !important;
  transition: transform .46s cubic-bezier(.22, .8, .28, 1);
  will-change: transform;
  touch-action: pan-y;
  box-shadow: none !important;
}

.testimonials .testimonial-carousel.is-dragging .testimonial-track {
  cursor: grabbing;
  transition: none !important;
}

.testimonials .testimonial-slide {
  flex: 0 0 calc((100% - var(--testimonial-gap)) / 2) !important;
  min-width: 0;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: clamp(1.35rem, 2.4vw, 2rem) !important;
  display: block !important;
  border-radius: 26px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 250, 253, .88)) !important;
  border: 1px solid rgba(216, 106, 166, .18) !important;
  box-shadow: 0 20px 56px rgba(80, 42, 62, .075) !important;
}

.testimonials .testimonial-slide:nth-child(even) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(246, 252, 248, .86)) !important;
}

.testimonials .testimonial-slide p {
  margin: 0 !important;
  max-width: 62ch;
  font-size: clamp(1rem, 1.08vw, 1.08rem) !important;
  line-height: 1.66 !important;
}

.testimonials .testimonial-slide cite {
  display: block !important;
  margin-top: 1.15rem !important;
  padding-top: .95rem !important;
  border-top: 1px solid rgba(216, 106, 166, .18) !important;
}

.testimonials .testimonial-controls {
  position: static !important;
  width: fit-content !important;
  margin: clamp(1rem, 2vw, 1.35rem) auto 0 !important;
  transform: none !important;
  background: rgba(255, 255, 255, .9) !important;
  border: 1px solid rgba(216, 106, 166, .16) !important;
  box-shadow: 0 12px 34px rgba(80, 42, 62, .075) !important;
}

@media (max-width: 760px) {
  .testimonials .testimonial-carousel {
    --testimonial-gap: .9rem;
    width: min(620px, 100%) !important;
  }

  .testimonials .testimonial-track {
    padding-inline: .1rem !important;
  }

  .testimonials .testimonial-slide {
    flex-basis: 100% !important;
    padding: 1.2rem !important;
    border-radius: 22px !important;
  }

  .testimonials .testimonial-slide p {
    font-size: 1rem !important;
    line-height: 1.62 !important;
  }
}

/* Kontakt finalisieren: kompaktere Visitenkarte, breiteres Layout, Platzhalterkarte */
.contact-section {
  background: #fff;
}

.contact-section .contact-shell {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .9fr) !important;
  gap: clamp(1.4rem, 4vw, 3.2rem) !important;
  align-items: start;
  padding: clamp(1.35rem, 3.4vw, 2.2rem) !important;
}

.contact-copy > .eyebrow:empty {
  display: none;
}

.contact-copy h2 {
  margin-bottom: .8rem;
}

.contact-intro {
  max-width: 64ch;
}

.contact-intro p {
  margin-block: 0 1rem;
}

.contact-card-modern {
  display: grid !important;
  grid-template-columns: minmax(160px, .45fr) minmax(0, 1fr);
  align-items: center;
  gap: .85rem 1.1rem !important;
  padding: .9rem 1rem !important;
  margin: .95rem 0 1rem !important;
  border-radius: 22px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,247,251,.78)) !important;
}

.contact-card-head {
  display: grid;
  gap: .15rem;
}

.contact-card-kicker {
  color: var(--rose-dark);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-card-modern strong {
  color: var(--green-dark);
  font-size: 1.05rem;
}

.contact-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: flex-end;
}

.contact-card-modern a {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  padding: .55rem .7rem !important;
  margin: 0 !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(216,106,166,.16);
  line-height: 1.15;
}

.contact-location {
  max-width: 60ch;
  margin: .8rem 0 .95rem;
  color: var(--ink);
}

.contact-location p {
  margin-block: 0 .35rem;
}

.map-link-placeholder {
  width: min(100%, 600px) !important;
  gap: .75rem !important;
}

.map-link-placeholder img {
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--blush-50);
}

.map-link-placeholder .button {
  width: fit-content;
}

.contact-form {
  gap: .78rem !important;
  padding: clamp(1rem, 2.5vw, 1.25rem) !important;
}

.contact-form label {
  gap: .28rem !important;
}

.contact-form input,
.contact-form textarea {
  min-height: 46px;
}

.contact-form textarea {
  min-height: 170px;
}

@media (min-width: 981px) {
  .contact-form label:nth-of-type(1),
  .contact-form label:nth-of-type(2) {
    width: calc(50% - .45rem);
    display: inline-grid;
  }
  .contact-form label:nth-of-type(1) {
    margin-right: .78rem;
  }
}

@media (max-width: 980px) {
  .contact-section .contact-shell {
    grid-template-columns: 1fr !important;
  }
  .contact-card-modern {
    grid-template-columns: 1fr;
  }
  .contact-card-actions {
    justify-content: flex-start;
  }
  .map-link-placeholder {
    width: 100% !important;
  }
}

@media (max-width: 560px) {
  .contact-card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .contact-card-modern a {
    width: 100%;
    justify-content: center;
  }
}


/* Kontaktformular Feinschliff */
.contact-form label {
  font-weight: 760 !important;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  font-weight: 400;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 230px !important;
}

.contact-form label:nth-of-type(1),
.contact-form label:nth-of-type(2) {
  width: 100% !important;
  display: grid !important;
  margin-right: 0 !important;
}

.checkbox-row-copy {
  align-items: center !important;
}

.checkbox-row-copy input {
  margin-top: 0 !important;
}

/* Kontaktformular: Datenschutz-Hinweis statt Pflicht-Checkbox und klare Feldfehler */
.form-privacy-note {
  margin: .1rem 0 .25rem;
  font-size: .92rem;
  line-height: 1.5;
  color: rgba(26, 39, 35, .78);
}
.form-privacy-note a {
  color: var(--green-dark);
  font-weight: 800;
  text-underline-offset: .18em;
}
.contact-form label.has-error input,
.contact-form label.has-error textarea {
  border-color: var(--rose-dark);
  box-shadow: 0 0 0 4px rgba(216, 106, 166, .16);
}
.contact-form label.has-error {
  color: var(--rose-dark);
}

.contact-form .form-button:disabled {
  opacity: .72;
  cursor: wait;
}

@media (max-width: 820px) {
  .service-overview::after,
  .gallery-section::after,
  .contact-section::after { display: none; }
}


/* Update: sichtbarer, aber dezenter eingesetzte Kreisflächen */
.service-overview,
.about-section,
.midwife-section,
.gallery-section,
.testimonials,
.faq-section,
.contact-section {
  isolation: isolate;
}

.service-overview::before,
.service-overview::after,
.about-section::before,
.about-section::after,
.midwife-section::before,
.midwife-section::after,
.gallery-section::before,
.gallery-section::after,
.testimonials::before,
.testimonials::after,
.faq-section::before,
.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(.5px);
}

/* Begleitung: links rosa, rechts grün */
.service-overview::before {
  width: clamp(10rem, 17vw, 16rem);
  height: clamp(10rem, 17vw, 16rem);
  left: max(-5rem, -5vw);
  top: clamp(1rem, 4vw, 3rem);
  opacity: .46;
  background: radial-gradient(circle, rgba(216,106,166,.22) 0%, rgba(216,106,166,.12) 46%, transparent 72%);
}

.service-overview::after {
  width: clamp(7rem, 11vw, 10rem);
  height: clamp(7rem, 11vw, 10rem);
  right: max(-3rem, -3vw);
  bottom: 10%;
  opacity: .42;
  background: radial-gradient(circle, rgba(111,139,105,.22) 0%, rgba(111,139,105,.11) 48%, transparent 74%);
}

/* Über mich: größerer, weicher rosa Akzent rechts */
.about-section::before {
  width: clamp(12rem, 22vw, 20rem);
  height: clamp(12rem, 22vw, 20rem);
  right: max(-6rem, -6vw);
  top: 8%;
  opacity: .38;
  background: radial-gradient(circle, rgba(216,106,166,.24) 0%, rgba(216,106,166,.1) 52%, transparent 76%);
}

.about-section::after {
  width: clamp(6rem, 10vw, 9rem);
  height: clamp(6rem, 10vw, 9rem);
  left: max(-2rem, -2vw);
  bottom: 10%;
  opacity: .34;
  background: radial-gradient(circle, rgba(111,139,105,.2) 0%, rgba(111,139,105,.09) 52%, transparent 74%);
}

/* Hebamme: dezenter grüner Kreis links unten + rosa rechts */
.midwife-section::before {
  width: clamp(9rem, 15vw, 14rem);
  height: clamp(9rem, 15vw, 14rem);
  left: max(-4rem, -4vw);
  bottom: 12%;
  opacity: .36;
  background: radial-gradient(circle, rgba(111,139,105,.24) 0%, rgba(111,139,105,.09) 50%, transparent 75%);
}

.midwife-section::after {
  width: clamp(6rem, 10vw, 8rem);
  height: clamp(6rem, 10vw, 8rem);
  right: 6%;
  top: 7%;
  opacity: .30;
  background: radial-gradient(circle, rgba(216,106,166,.18) 0%, rgba(216,106,166,.07) 52%, transparent 76%);
}

/* Praxis/Galerie: sichtbarer links, kleiner rechts */
.gallery-section::before {
  width: clamp(10rem, 16vw, 15rem);
  height: clamp(10rem, 16vw, 15rem);
  left: max(-5rem, -5vw);
  top: 14%;
  opacity: .40;
  background: radial-gradient(circle, rgba(111,139,105,.22) 0%, rgba(111,139,105,.09) 50%, transparent 75%);
}

.gallery-section::after {
  width: clamp(7rem, 11vw, 10rem);
  height: clamp(7rem, 11vw, 10rem);
  right: max(-3rem, -3vw);
  bottom: 8%;
  opacity: .36;
  background: radial-gradient(circle, rgba(216,106,166,.22) 0%, rgba(216,106,166,.08) 52%, transparent 75%);
}

/* Stimmen: statt Schatten zusätzlich sanfte Hintergrundkreise */
.testimonials::before {
  width: clamp(11rem, 18vw, 17rem);
  height: clamp(11rem, 18vw, 17rem);
  left: max(-4rem, -4vw);
  top: 18%;
  opacity: .32;
  background: radial-gradient(circle, rgba(255,255,255,.86) 0%, rgba(216,106,166,.10) 54%, transparent 75%);
}

.testimonials::after {
  width: clamp(7rem, 12vw, 11rem);
  height: clamp(7rem, 12vw, 11rem);
  right: 8%;
  bottom: 8%;
  opacity: .32;
  background: radial-gradient(circle, rgba(111,139,105,.18) 0%, rgba(111,139,105,.07) 54%, transparent 76%);
}

/* FAQ/Kontakt nochmal ganz leicht */
.faq-section::before {
  width: clamp(7rem, 12vw, 11rem);
  height: clamp(7rem, 12vw, 11rem);
  right: max(-2rem, -2vw);
  top: 10%;
  opacity: .34;
  background: radial-gradient(circle, rgba(216,106,166,.18) 0%, rgba(216,106,166,.07) 52%, transparent 75%);
}

.contact-section::before {
  width: clamp(11rem, 18vw, 16rem);
  height: clamp(11rem, 18vw, 16rem);
  left: max(-5rem, -5vw);
  top: 8%;
  opacity: .38;
  background: radial-gradient(circle, rgba(216,106,166,.20) 0%, rgba(216,106,166,.08) 52%, transparent 76%);
}

.contact-section::after {
  width: clamp(7rem, 11vw, 10rem);
  height: clamp(7rem, 11vw, 10rem);
  right: max(-3rem, -3vw);
  bottom: 12%;
  opacity: .34;
  background: radial-gradient(circle, rgba(111,139,105,.20) 0%, rgba(111,139,105,.08) 52%, transparent 76%);
}

.service-overview > .container,
.about-section > .container,
.midwife-section > .container,
.gallery-section > .container,
.testimonials > .container,
.faq-section > .container,
.contact-section > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 820px) {
  .service-overview::after,
  .about-section::after,
  .midwife-section::after,
  .gallery-section::after,
  .testimonials::after,
  .contact-section::after {
    display: none;
  }

  .service-overview::before,
  .about-section::before,
  .midwife-section::before,
  .gallery-section::before,
  .testimonials::before,
  .faq-section::before,
  .contact-section::before {
    opacity: .24;
  }
}


/* Final-Fix: Hero-Bild nur mit zweiter Kachel, ohne zusätzlichen harten Bild-Schatten */
.portrait-card.layered-card::before {
  box-shadow: none !important;
  transform: translate3d(0, 0, 0);
}
.portrait-card.layered-card img {
  box-shadow: none !important;
}

/* Final-Fix: Hebamme-Seitenkarte wirklich sticky innerhalb des gesamten Hebamme-Bereichs */
.midwife-section,
.midwife-section > .container,
.midwife-section .feature-layout {
  overflow: visible !important;
  transform: none !important;
  contain: none !important;
}
@media (min-width: 981px) {
  .midwife-section .feature-layout {
    align-items: start !important;
  }
  .midwife-section .feature-aside {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: calc(var(--header-height, 82px) + 1.25rem) !important;
    align-self: start !important;
    height: fit-content;
    z-index: 6;
    transform: none !important;
    will-change: auto !important;
  }
}

/* Final-Fix: Kontaktkarte mobil sauber untereinander mit eigenen Inline-SVG-Icons */
.contact-card-actions a {
  min-width: 0;
}
.contact-icon {
  width: 2.15rem;
  height: 2.15rem;
  min-width: 2.15rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: var(--rose-dark);
  background: rgba(216, 106, 166, .12);
  border: 1px solid rgba(216, 106, 166, .14);
}
.contact-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
  fill: currentColor;
}
@media (max-width: 560px) {
  .contact-card-modern {
    padding: .95rem !important;
  }
  .contact-card-actions {
    gap: .55rem !important;
  }
  .contact-card-modern a {
    justify-content: flex-start !important;
    text-align: left;
    padding: .62rem .72rem !important;
  }
  .contact-card-modern a > span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

/* Final-Fix: Datenschutz-Hinweis nicht doppelt und kompakter */
.form-privacy-note {
  font-size: .94rem;
  line-height: 1.5;
}

/* Final-Fix: zusätzliche, sichtbare Kreisflächen als dezente Seitenakzente */
.service-overview,
.about-section,
.midwife-section,
.gallery-section,
.testimonials,
.faq-section,
.contact-section {
  isolation: isolate;
}
.service-overview::before,
.service-overview::after,
.about-section::before,
.about-section::after,
.midwife-section::before,
.midwife-section::after,
.gallery-section::before,
.gallery-section::after,
.testimonials::before,
.testimonials::after,
.faq-section::before,
.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(.35px);
}
.service-overview::before {
  width: clamp(13rem, 20vw, 19rem) !important;
  height: clamp(13rem, 20vw, 19rem) !important;
  left: max(-7rem, -6vw) !important;
  top: 1.2rem !important;
  opacity: .45 !important;
  background: radial-gradient(circle, rgba(216,106,166,.20), rgba(216,106,166,.08) 52%, transparent 74%) !important;
}
.service-overview::after {
  width: clamp(8rem, 12vw, 11rem) !important;
  height: clamp(8rem, 12vw, 11rem) !important;
  right: max(-4rem, -4vw) !important;
  bottom: 12% !important;
  opacity: .44 !important;
  background: radial-gradient(circle, rgba(111,139,105,.22), rgba(111,139,105,.08) 52%, transparent 76%) !important;
}
.about-section::before {
  width: clamp(15rem, 25vw, 23rem) !important;
  height: clamp(15rem, 25vw, 23rem) !important;
  right: max(-8rem, -7vw) !important;
  top: 7% !important;
  opacity: .40 !important;
}
.about-section::after {
  width: clamp(7rem, 11vw, 10rem) !important;
  height: clamp(7rem, 11vw, 10rem) !important;
  left: max(-3rem, -3vw) !important;
  bottom: 8% !important;
  opacity: .36 !important;
  background: radial-gradient(circle, rgba(111,139,105,.22), rgba(111,139,105,.08) 52%, transparent 76%) !important;
}
.midwife-section::before {
  width: clamp(10rem, 16vw, 15rem) !important;
  height: clamp(10rem, 16vw, 15rem) !important;
  left: max(-5rem, -5vw) !important;
  bottom: 10% !important;
  opacity: .38 !important;
}
.midwife-section::after {
  width: clamp(7rem, 11vw, 10rem) !important;
  height: clamp(7rem, 11vw, 10rem) !important;
  right: max(-3rem, -3vw) !important;
  top: 9% !important;
  opacity: .34 !important;
}
.gallery-section::before {
  width: clamp(12rem, 18vw, 17rem) !important;
  height: clamp(12rem, 18vw, 17rem) !important;
  left: max(-6rem, -6vw) !important;
  top: 12% !important;
  opacity: .40 !important;
}
.gallery-section::after {
  width: clamp(8rem, 12vw, 11rem) !important;
  height: clamp(8rem, 12vw, 11rem) !important;
  right: max(-3rem, -3vw) !important;
  bottom: 8% !important;
  opacity: .36 !important;
}
.testimonials::before {
  width: clamp(12rem, 18vw, 17rem) !important;
  height: clamp(12rem, 18vw, 17rem) !important;
  left: max(-5rem, -5vw) !important;
  top: 12% !important;
  opacity: .34 !important;
}
.testimonials::after {
  width: clamp(8rem, 12vw, 11rem) !important;
  height: clamp(8rem, 12vw, 11rem) !important;
  right: 5% !important;
  bottom: 8% !important;
  opacity: .34 !important;
}
.faq-section::before {
  width: clamp(8rem, 12vw, 11rem) !important;
  height: clamp(8rem, 12vw, 11rem) !important;
  right: max(-3rem, -3vw) !important;
  top: 10% !important;
  opacity: .35 !important;
}
.contact-section::before {
  width: clamp(13rem, 20vw, 18rem) !important;
  height: clamp(13rem, 20vw, 18rem) !important;
  left: max(-6rem, -6vw) !important;
  top: 7% !important;
  opacity: .40 !important;
}
.contact-section::after {
  width: clamp(8rem, 12vw, 11rem) !important;
  height: clamp(8rem, 12vw, 11rem) !important;
  right: max(-4rem, -4vw) !important;
  bottom: 12% !important;
  opacity: .36 !important;
}
.service-overview > .container,
.about-section > .container,
.midwife-section > .container,
.gallery-section > .container,
.testimonials > .container,
.faq-section > .container,
.contact-section > .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 820px) {
  .service-overview::after,
  .about-section::after,
  .midwife-section::after,
  .gallery-section::after,
  .testimonials::after,
  .contact-section::after {
    display: none !important;
  }
  .service-overview::before,
  .about-section::before,
  .midwife-section::before,
  .gallery-section::before,
  .testimonials::before,
  .faq-section::before,
  .contact-section::before {
    opacity: .25 !important;
  }
}


/* Finaler Funktions-/Designcheck 2026: Sticky, Orbs, Kontakt, Route, Mobile-Details */

/* Hero: nur Bild + zweite Kachel, kein doppelter harter Schatten */
.portrait-card.layered-card::before {
  box-shadow: none !important;
}
.portrait-card.layered-card img {
  box-shadow: none !important;
}

/* Hebamme: CSS-Sticky + JS-Fallback-Klassen */
.midwife-section,
.midwife-section > .container,
.midwife-section .feature-layout {
  overflow: visible !important;
  transform: none !important;
  contain: none !important;
}
.midwife-section .feature-layout {
  position: relative;
}
.midwife-section .feature-aside {
  transform: none !important;
  will-change: auto !important;
}
@media (min-width: 981px) {
  .midwife-section .feature-aside {
    position: sticky !important;
    top: calc(var(--header-height, 82px) + 1.25rem) !important;
    align-self: start !important;
    height: fit-content;
    z-index: 8;
  }
  .midwife-section .feature-aside.is-fixed {
    position: fixed !important;
    z-index: 60;
  }
  .midwife-section .feature-aside.is-at-end {
    position: absolute !important;
    top: auto !important;
    bottom: 0;
    z-index: 8;
  }
}

/* Mobile Details: weniger Layoutanker-Springen */
@media (max-width: 980px) {
  .midwife-section,
  .midwife-section .accordion-list,
  .midwife-section .modern-details {
    overflow-anchor: none;
  }
}

/* Kontaktkarte: moderne lokale SVG-Icons mit Hover */
.contact-card-actions a {
  min-width: 0;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.contact-icon {
  width: 2.15rem;
  height: 2.15rem;
  min-width: 2.15rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: var(--rose-dark);
  background: rgba(216, 106, 166, .12);
  border: 1px solid rgba(216, 106, 166, .16);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.contact-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
  fill: currentColor;
}
.contact-card-actions a:hover,
.contact-card-actions a:focus-visible {
  color: var(--green-dark);
  background: rgba(255,255,255,.96);
  border-color: rgba(216, 106, 166, .28);
  box-shadow: 0 12px 28px rgba(49, 88, 60, .10);
  transform: translateY(-1px);
}
.contact-card-actions a:hover .contact-icon,
.contact-card-actions a:focus-visible .contact-icon {
  color: #fff;
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: scale(1.03);
}

/* Kleine einheitliche Button-Icons für interne Kontakt-/Telefon-Buttons */
.button[href^="tel:"]::before,
.button[href^="mailto:"]::before {
  width: 1.72rem;
  height: 1.72rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,.22);
  color: currentColor;
  font-weight: 900;
  line-height: 1;
}
.button[href^="tel:"]::before { content: "☎"; }
.button[href^="mailto:"]::before { content: "✉"; }
.button-secondary[href^="tel:"]::before,
.button-secondary[href^="mailto:"]::before {
  background: rgba(216,106,166,.11);
}

/* Kontakt mobil: Telefon und Mail sauber untereinander */
@media (max-width: 560px) {
  .contact-card-modern {
    padding: .95rem !important;
  }
  .contact-card-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: .55rem !important;
  }
  .contact-card-modern a {
    width: 100%;
    justify-content: flex-start !important;
    text-align: left;
    padding: .62rem .72rem !important;
  }
  .contact-card-modern a > span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

/* Route planen: Button als sauberer Overlay-Pill auf dem Bild, nicht unten angehängt */
.map-link-placeholder {
  position: relative !important;
  display: block !important;
  width: min(100%, 640px) !important;
  border-radius: 26px !important;
  overflow: hidden !important;
  border: 1px solid rgba(216,106,166,.16);
  box-shadow: 0 18px 46px rgba(49, 88, 60, .10);
}
.map-link-placeholder img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .28s ease, filter .28s ease;
}
.map-link-placeholder .button {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: auto !important;
  max-width: calc(100% - 2rem);
  box-shadow: 0 14px 34px rgba(184, 69, 134, .22);
}
.map-link-placeholder:hover img,
.map-link-placeholder:focus-visible img {
  transform: scale(1.025);
  filter: saturate(1.04);
}

/* Kontaktformular: Nachricht größer, damit rechts weniger leer wirkt */
@media (min-width: 981px) {
  .contact-form textarea {
    min-height: 260px !important;
  }
}
@media (max-width: 980px) {
  .contact-form textarea {
    min-height: 210px !important;
  }
}

/* Datenschutz-Hinweis nicht doppelt, klar lesbar */
.form-privacy-note {
  font-size: .94rem;
  line-height: 1.5;
}

/* Sichtbare Kreisflächen als Auflockerung: etwas stärker, aber weiterhin weich */
.service-overview,
.about-section,
.midwife-section,
.gallery-section,
.testimonials,
.faq-section,
.contact-section {
  isolation: isolate;
}
.service-overview::before,
.service-overview::after,
.about-section::before,
.about-section::after,
.midwife-section::before,
.midwife-section::after,
.gallery-section::before,
.gallery-section::after,
.testimonials::before,
.testimonials::after,
.faq-section::before,
.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(.2px);
}
.service-overview::before {
  width: clamp(15rem, 22vw, 21rem) !important;
  height: clamp(15rem, 22vw, 21rem) !important;
  left: max(-7rem, -6vw) !important;
  top: 2rem !important;
  opacity: .58 !important;
  background: radial-gradient(circle, rgba(216,106,166,.22), rgba(216,106,166,.11) 54%, transparent 76%) !important;
}
.service-overview::after {
  width: clamp(9rem, 14vw, 13rem) !important;
  height: clamp(9rem, 14vw, 13rem) !important;
  right: max(-4rem, -4vw) !important;
  bottom: 12% !important;
  opacity: .52 !important;
  background: radial-gradient(circle, rgba(111,139,105,.24), rgba(111,139,105,.10) 54%, transparent 76%) !important;
}
.about-section::before {
  width: clamp(16rem, 26vw, 24rem) !important;
  height: clamp(16rem, 26vw, 24rem) !important;
  right: max(-8rem, -7vw) !important;
  top: 7% !important;
  opacity: .50 !important;
  background: radial-gradient(circle, rgba(216,106,166,.24), rgba(216,106,166,.10) 54%, transparent 76%) !important;
}
.about-section::after {
  width: clamp(8rem, 12vw, 11rem) !important;
  height: clamp(8rem, 12vw, 11rem) !important;
  left: max(-3rem, -3vw) !important;
  bottom: 8% !important;
  opacity: .46 !important;
  background: radial-gradient(circle, rgba(111,139,105,.24), rgba(111,139,105,.10) 54%, transparent 76%) !important;
}
.midwife-section::before {
  width: clamp(12rem, 18vw, 17rem) !important;
  height: clamp(12rem, 18vw, 17rem) !important;
  left: max(-6rem, -5vw) !important;
  bottom: 10% !important;
  opacity: .48 !important;
  background: radial-gradient(circle, rgba(111,139,105,.22), rgba(111,139,105,.09) 54%, transparent 76%) !important;
}
.midwife-section::after {
  width: clamp(8rem, 13vw, 12rem) !important;
  height: clamp(8rem, 13vw, 12rem) !important;
  right: max(-4rem, -4vw) !important;
  top: 9% !important;
  opacity: .46 !important;
  background: radial-gradient(circle, rgba(216,106,166,.20), rgba(216,106,166,.08) 54%, transparent 76%) !important;
}
.gallery-section::before {
  width: clamp(14rem, 22vw, 20rem) !important;
  height: clamp(14rem, 22vw, 20rem) !important;
  left: max(-7rem, -6vw) !important;
  top: 10% !important;
  opacity: .50 !important;
  background: radial-gradient(circle, rgba(111,139,105,.22), rgba(111,139,105,.09) 54%, transparent 76%) !important;
}
.gallery-section::after {
  width: clamp(8rem, 13vw, 12rem) !important;
  height: clamp(8rem, 13vw, 12rem) !important;
  right: max(-4rem, -4vw) !important;
  bottom: 8% !important;
  opacity: .46 !important;
  background: radial-gradient(circle, rgba(216,106,166,.22), rgba(216,106,166,.08) 54%, transparent 76%) !important;
}
.testimonials::before {
  width: clamp(13rem, 20vw, 18rem) !important;
  height: clamp(13rem, 20vw, 18rem) !important;
  left: max(-6rem, -5vw) !important;
  top: 12% !important;
  opacity: .46 !important;
  background: radial-gradient(circle, rgba(255,255,255,.90), rgba(216,106,166,.13) 54%, transparent 76%) !important;
}
.testimonials::after {
  width: clamp(9rem, 14vw, 13rem) !important;
  height: clamp(9rem, 14vw, 13rem) !important;
  right: 5% !important;
  bottom: 8% !important;
  opacity: .44 !important;
  background: radial-gradient(circle, rgba(111,139,105,.20), rgba(111,139,105,.08) 54%, transparent 76%) !important;
}
.faq-section::before {
  width: clamp(9rem, 14vw, 13rem) !important;
  height: clamp(9rem, 14vw, 13rem) !important;
  right: max(-4rem, -4vw) !important;
  top: 10% !important;
  opacity: .44 !important;
  background: radial-gradient(circle, rgba(216,106,166,.20), rgba(216,106,166,.08) 54%, transparent 76%) !important;
}
.contact-section::before {
  width: clamp(15rem, 22vw, 21rem) !important;
  height: clamp(15rem, 22vw, 21rem) !important;
  left: max(-7rem, -6vw) !important;
  top: 7% !important;
  opacity: .50 !important;
  background: radial-gradient(circle, rgba(216,106,166,.22), rgba(216,106,166,.09) 54%, transparent 76%) !important;
}
.contact-section::after {
  width: clamp(9rem, 14vw, 13rem) !important;
  height: clamp(9rem, 14vw, 13rem) !important;
  right: max(-4rem, -4vw) !important;
  bottom: 12% !important;
  opacity: .46 !important;
  background: radial-gradient(circle, rgba(111,139,105,.22), rgba(111,139,105,.09) 54%, transparent 76%) !important;
}
.service-overview > .container,
.about-section > .container,
.midwife-section > .container,
.gallery-section > .container,
.testimonials > .container,
.faq-section > .container,
.contact-section > .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 820px) {
  .service-overview::after,
  .about-section::after,
  .midwife-section::after,
  .gallery-section::after,
  .testimonials::after,
  .contact-section::after {
    display: none !important;
  }
  .service-overview::before,
  .about-section::before,
  .midwife-section::before,
  .gallery-section::before,
  .testimonials::before,
  .faq-section::before,
  .contact-section::before {
    opacity: .30 !important;
  }
}


/* Final polish: Hebamme sticky ohne Layoutsprung */
@media (min-width: 981px) {
  .midwife-section .feature-layout {
    grid-template-columns: minmax(260px, 350px) minmax(0, 1fr) !important;
    align-items: start !important;
    position: relative !important;
  }

  .midwife-section .feature-aside {
    grid-column: 1 !important;
  }

  .midwife-section .accordion-list {
    grid-column: 2 !important;
    min-width: 0;
  }

  .midwife-section .feature-aside.is-fixed {
    position: fixed !important;
    z-index: 60;
  }

  .midwife-section .feature-aside.is-at-end {
    position: absolute !important;
    top: auto !important;
    bottom: 0;
    left: 0 !important;
    z-index: 8;
  }
}

@media (max-width: 980px) {
  .midwife-section .feature-aside,
  .midwife-section .accordion-list {
    grid-column: auto !important;
  }
}

/* Final polish: sichtbare Kreisflächen über die gesamte Seite, nicht nur im Hero */
.service-overview,
.about-section,
.midwife-section,
.coach-section,
.hypnosis-section,
.gallery-section,
.testimonials,
.faq-section,
.contact-section {
  position: relative !important;
  isolation: isolate;
}

.service-overview::before,
.service-overview::after,
.about-section::before,
.about-section::after,
.midwife-section::before,
.midwife-section::after,
.coach-section::before,
.coach-section::after,
.hypnosis-section::before,
.hypnosis-section::after,
.gallery-section::before,
.gallery-section::after,
.testimonials::before,
.testimonials::after,
.faq-section::before,
.faq-section::after,
.contact-section::before,
.contact-section::after {
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  pointer-events: none !important;
  border-radius: 999px !important;
  filter: blur(.2px) !important;
}

.service-overview::before {
  width: clamp(15rem, 24vw, 24rem) !important;
  height: clamp(15rem, 24vw, 24rem) !important;
  left: max(-7rem, -6vw) !important;
  top: 2rem !important;
  opacity: .62 !important;
  background: radial-gradient(circle, rgba(216,106,166,.26), rgba(216,106,166,.11) 54%, transparent 76%) !important;
}
.service-overview::after {
  width: clamp(9rem, 14vw, 14rem) !important;
  height: clamp(9rem, 14vw, 14rem) !important;
  right: max(-4rem, -4vw) !important;
  bottom: 14% !important;
  opacity: .56 !important;
  background: radial-gradient(circle, rgba(111,139,105,.26), rgba(111,139,105,.10) 54%, transparent 76%) !important;
}
.about-section::before {
  width: clamp(17rem, 28vw, 27rem) !important;
  height: clamp(17rem, 28vw, 27rem) !important;
  right: max(-9rem, -8vw) !important;
  top: 6% !important;
  opacity: .55 !important;
  background: radial-gradient(circle, rgba(216,106,166,.25), rgba(216,106,166,.10) 55%, transparent 76%) !important;
}
.about-section::after {
  width: clamp(8rem, 13vw, 13rem) !important;
  height: clamp(8rem, 13vw, 13rem) !important;
  left: max(-3rem, -3vw) !important;
  bottom: 8% !important;
  opacity: .50 !important;
  background: radial-gradient(circle, rgba(111,139,105,.25), rgba(111,139,105,.10) 54%, transparent 76%) !important;
}
.midwife-section::before {
  width: clamp(13rem, 20vw, 20rem) !important;
  height: clamp(13rem, 20vw, 20rem) !important;
  left: max(-7rem, -6vw) !important;
  bottom: 11% !important;
  opacity: .52 !important;
  background: radial-gradient(circle, rgba(111,139,105,.24), rgba(111,139,105,.10) 54%, transparent 76%) !important;
}
.midwife-section::after {
  width: clamp(9rem, 14vw, 14rem) !important;
  height: clamp(9rem, 14vw, 14rem) !important;
  right: max(-4rem, -4vw) !important;
  top: 9% !important;
  opacity: .50 !important;
  background: radial-gradient(circle, rgba(216,106,166,.22), rgba(216,106,166,.09) 54%, transparent 76%) !important;
}
.coach-section::before {
  width: clamp(11rem, 17vw, 17rem) !important;
  height: clamp(11rem, 17vw, 17rem) !important;
  left: max(-5rem, -5vw) !important;
  top: 12% !important;
  opacity: .50 !important;
  background: radial-gradient(circle, rgba(216,106,166,.20), rgba(216,106,166,.08) 55%, transparent 76%) !important;
}
.coach-section::after {
  width: clamp(8rem, 12vw, 12rem) !important;
  height: clamp(8rem, 12vw, 12rem) !important;
  right: 6% !important;
  bottom: 8% !important;
  opacity: .45 !important;
  background: radial-gradient(circle, rgba(111,139,105,.22), rgba(111,139,105,.08) 54%, transparent 76%) !important;
}
.hypnosis-section::before {
  width: clamp(10rem, 16vw, 16rem) !important;
  height: clamp(10rem, 16vw, 16rem) !important;
  right: max(-4rem, -4vw) !important;
  top: 10% !important;
  opacity: .48 !important;
  background: radial-gradient(circle, rgba(216,106,166,.22), rgba(216,106,166,.08) 54%, transparent 76%) !important;
}
.hypnosis-section::after {
  width: clamp(7rem, 11vw, 11rem) !important;
  height: clamp(7rem, 11vw, 11rem) !important;
  left: 7% !important;
  bottom: 12% !important;
  opacity: .44 !important;
  background: radial-gradient(circle, rgba(111,139,105,.20), rgba(111,139,105,.08) 54%, transparent 76%) !important;
}
.gallery-section::before {
  width: clamp(15rem, 24vw, 23rem) !important;
  height: clamp(15rem, 24vw, 23rem) !important;
  left: max(-8rem, -7vw) !important;
  top: 9% !important;
  opacity: .56 !important;
  background: radial-gradient(circle, rgba(111,139,105,.22), rgba(111,139,105,.09) 54%, transparent 76%) !important;
}
.gallery-section::after {
  width: clamp(9rem, 14vw, 14rem) !important;
  height: clamp(9rem, 14vw, 14rem) !important;
  right: max(-4rem, -4vw) !important;
  bottom: 8% !important;
  opacity: .50 !important;
  background: radial-gradient(circle, rgba(216,106,166,.24), rgba(216,106,166,.09) 54%, transparent 76%) !important;
}
.testimonials::before {
  width: clamp(13rem, 20vw, 20rem) !important;
  height: clamp(13rem, 20vw, 20rem) !important;
  left: max(-6rem, -5vw) !important;
  top: 12% !important;
  opacity: .50 !important;
  background: radial-gradient(circle, rgba(255,255,255,.92), rgba(216,106,166,.15) 54%, transparent 76%) !important;
}
.testimonials::after {
  width: clamp(9rem, 14vw, 14rem) !important;
  height: clamp(9rem, 14vw, 14rem) !important;
  right: 5% !important;
  bottom: 8% !important;
  opacity: .46 !important;
  background: radial-gradient(circle, rgba(111,139,105,.22), rgba(111,139,105,.08) 54%, transparent 76%) !important;
}
.faq-section::before {
  width: clamp(10rem, 16vw, 16rem) !important;
  height: clamp(10rem, 16vw, 16rem) !important;
  right: max(-4rem, -4vw) !important;
  top: 9% !important;
  opacity: .50 !important;
  background: radial-gradient(circle, rgba(216,106,166,.22), rgba(216,106,166,.08) 54%, transparent 76%) !important;
}
.faq-section::after {
  width: clamp(7rem, 11vw, 11rem) !important;
  height: clamp(7rem, 11vw, 11rem) !important;
  left: 4% !important;
  bottom: 10% !important;
  opacity: .42 !important;
  background: radial-gradient(circle, rgba(111,139,105,.20), rgba(111,139,105,.08) 54%, transparent 76%) !important;
}
.contact-section::before {
  width: clamp(15rem, 24vw, 23rem) !important;
  height: clamp(15rem, 24vw, 23rem) !important;
  left: max(-8rem, -7vw) !important;
  top: 7% !important;
  opacity: .56 !important;
  background: radial-gradient(circle, rgba(216,106,166,.24), rgba(216,106,166,.09) 54%, transparent 76%) !important;
}
.contact-section::after {
  width: clamp(9rem, 14vw, 14rem) !important;
  height: clamp(9rem, 14vw, 14rem) !important;
  right: max(-4rem, -4vw) !important;
  bottom: 12% !important;
  opacity: .48 !important;
  background: radial-gradient(circle, rgba(111,139,105,.24), rgba(111,139,105,.09) 54%, transparent 76%) !important;
}

.service-overview > .container,
.about-section > .container,
.midwife-section > .container,
.coach-section > .container,
.hypnosis-section > .container,
.gallery-section > .container,
.testimonials > .container,
.faq-section > .container,
.contact-section > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 820px) {
  .service-overview::after,
  .about-section::after,
  .midwife-section::after,
  .coach-section::after,
  .hypnosis-section::after,
  .gallery-section::after,
  .testimonials::after,
  .faq-section::after,
  .contact-section::after {
    display: none !important;
  }

  .service-overview::before,
  .about-section::before,
  .midwife-section::before,
  .coach-section::before,
  .hypnosis-section::before,
  .gallery-section::before,
  .testimonials::before,
  .faq-section::before,
  .contact-section::before {
    opacity: .34 !important;
  }
}

/* Einheitliches Telefon-Icon: gleiche Form wie in der Kontaktkarte */
.button[href^="tel:"]::before,
.nav-call[href^="tel:"]::before {
  content: "" !important;
  width: 1.06rem !important;
  height: 1.06rem !important;
  min-width: 1.06rem !important;
  display: inline-block !important;
  background: currentColor !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8c1.5 3 3.6 5.1 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2v3.5c0 .7-.5 1.2-1.2 1.2C10.7 21.9 2.1 13.3 2.1 3.4c0-.7.5-1.2 1.2-1.2h3.5c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.7.6 4 .1.4 0 .9-.3 1.2l-1.7 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.6 10.8c1.5 3 3.6 5.1 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2v3.5c0 .7-.5 1.2-1.2 1.2C10.7 21.9 2.1 13.3 2.1 3.4c0-.7.5-1.2 1.2-1.2h3.5c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.7.6 4 .1.4 0 .9-.3 1.2l-1.7 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat !important;
  border-radius: 0 !important;
}

/* Kontakt-Hover stabil: Icon bleibt sichtbar */
.contact-card-actions a:hover .contact-icon,
.contact-card-actions a:focus-visible .contact-icon {
  background: var(--rose-dark) !important;
  border-color: var(--rose-dark) !important;
  color: #fff !important;
}

.contact-card-actions a:hover .contact-icon svg,
.contact-card-actions a:focus-visible .contact-icon svg {
  fill: #fff !important;
}

/* Route planen bleibt als sauberer Bild-Overlay-Button */
.map-link-placeholder {
  position: relative !important;
  display: block !important;
  border-radius: 26px !important;
  overflow: hidden !important;
}

.map-link-placeholder .button {
  position: absolute !important;
  left: 1rem !important;
  bottom: 1rem !important;
  width: auto !important;
  max-width: calc(100% - 2rem) !important;
}

/* Nachricht-Feld etwas höher für stimmigeres Kontakt-Gesamtbild */
@media (min-width: 981px) {
  .contact-form textarea {
    min-height: 300px !important;
  }
}


/* Bildqualitäts-Fix: keine Zoom-/Schwebeeffekte bei den drei Leistungskacheln */
.service-card,
.service-card:hover {
  transform: none !important;
  box-shadow: var(--shadow-soft) !important;
}

.service-card-image img,
.service-card:hover .service-card-image img,
.service-card:focus-within .service-card-image img {
  transform: translateZ(0) !important;
  filter: none !important;
  transition: none !important;
}

/* JPG-Skalierung im Browser sauber und dauerhaft rendern */
.portrait-card.layered-card img,
.service-card-image img,
.image-stack img,
.quote-image img {
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Hero: kein nachträgliches Umskalieren durch falsche HTML-Abmessungen */
.portrait-card.layered-card img {
  width: 100% !important;
  max-width: 100%;
  transform: translateZ(0) !important;
  filter: none !important;
  transition: none !important;
}

/* Die großen Coach-/Hypnose-Bilder bleiben ebenfalls ohne künstliche Schärfeänderung */
.image-stack img,
.quote-image img {
  transform: translateZ(0);
  filter: none;
}


/* Finaler Bildqualitäts-Fix:
   keine GPU-/Zoom-Transformationen auf Hero, Leistungskacheln oder Galerie */
.hero-visual,
.hero-visual.reveal,
.hero-visual.reveal.is-visible,
.service-card,
.service-card.reveal,
.service-card.reveal.is-visible,
.gallery-item,
.gallery-item.reveal,
.gallery-item.reveal.is-visible {
  transform: none !important;
  transition-property: opacity, box-shadow, border-color, background-color !important;
  will-change: auto !important;
}

.hero-visual,
.service-card,
.gallery-item {
  opacity: 1 !important;
}

/* Browser darf die Bilder normal skalieren – kein künstliches Nachschärfen */
.portrait-card.layered-card img,
.service-card-image img,
.gallery-item img,
.image-stack img,
.quote-image img {
  image-rendering: auto !important;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  transform: none !important;
  filter: none !important;
  will-change: auto !important;
}

/* Hero dauerhaft ohne Animations-/Compositing-Effekt */
.portrait-card.layered-card,
.portrait-card.layered-card img {
  transform: none !important;
  transition: none !important;
}

.portrait-card.layered-card img {
  width: 100% !important;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Drei Leistungskacheln: keinerlei Bildzoom oder Schwebeeffekt */
.service-card,
.service-card:hover,
.service-card:focus-within {
  transform: none !important;
}

.service-card-image img,
.service-card:hover .service-card-image img,
.service-card:focus-within .service-card-image img {
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

/* Galerie:
   Thumbnail nur als Platzhalter-Hintergrund,
   sichtbar gerendert wird immer das große JPG. */
.gallery-item {
  background-image: var(--gallery-thumb);
  background-size: cover;
  background-position: var(--gallery-pos, center center);
  background-repeat: no-repeat;
}

.gallery-item img,
.gallery-item:hover img,
.gallery-item:focus-visible img {
  display: block;
  width: 100% !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  will-change: auto !important;
}

/* Auch die Galerie-Kachel selbst bewegt sich beim Hover nicht. */
.gallery-item,
.gallery-item:hover,
.gallery-item:focus-visible {
  transform: none !important;
}

/* Nur ein dezenter Rahmen statt Bild-Zoom. */
.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: rgba(216, 106, 166, .34);
  box-shadow: 0 10px 24px rgba(49, 88, 60, .10);
}


/* Portrait-Fix:
   Die alte portrait-card-Regel hat das 1920x1920-Bild in ein hohes Kartenformat gezwungen.
   Das Hero-Portrait bleibt jetzt quadratisch und wird ohne Transform-/Rendering-Tricks gerendert. */
.section-hero .hero-visual {
  max-width: min(470px, 92vw) !important;
}

.portrait-card,
.portrait-card.layered-card {
  margin: 0 !important;
  position: relative !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  isolation: isolate;
  aspect-ratio: 1 / 1 !important;
}

.portrait-card.layered-card::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(245,220,233,.92), rgba(111,139,105,.22));
  z-index: -1;
  box-shadow: none !important;
  transform: none !important;
}

.portrait-card img,
.portrait-card.layered-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: none !important;
  transform: none !important;
  transition: none !important;
  filter: none !important;
  will-change: auto !important;
  image-rendering: auto !important;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

.portrait-card::after,
.portrait-card.layered-card::after {
  inset: auto 0 0 0 !important;
  height: 34% !important;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important;
  background: linear-gradient(180deg, transparent, rgba(31,61,42,.82)) !important;
  transform: none !important;
}

.portrait-card figcaption,
.portrait-card.layered-card figcaption {
  left: 1.15rem !important;
  right: 1.15rem !important;
  bottom: 1rem !important;
}

/* Mobile bleibt ebenfalls quadratisch, nur mit etwas kleinerer zweiter Kachel. */
@media (max-width: 640px) {
  .section-hero .hero-visual {
    max-width: min(430px, 92vw) !important;
  }

  .portrait-card.layered-card::before {
    inset: .75rem -.45rem -.55rem .75rem !important;
    border-radius: 28px !important;
  }

  .portrait-card,
  .portrait-card.layered-card,
  .portrait-card img,
  .portrait-card.layered-card img,
  .portrait-card::after,
  .portrait-card.layered-card::after {
    border-radius: 28px !important;
  }

  .portrait-card::after,
  .portrait-card.layered-card::after {
    border-radius: 0 0 28px 28px !important;
  }
}


/* Bildformat-Cleanup:
   Inhaltsbilder werden nicht mehr in fremde Seitenverhältnisse gezwungen.
   Galerie-Kacheln behalten ihr Layout, aber ohne Bildverformung oder Hover-Zoom. */

/* 3er-Leistungskacheln: Bild im natürlichen Format, kein 5:4-/16:10-Zwang */
.service-card-image {
  overflow: hidden !important;
  background: rgba(255, 247, 251, .75);
}

.service-card-image img,
.service-card:hover .service-card-image img,
.service-card:focus-within .service-card-image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

/* Coach- und Hypnose-Bilder: natürliches Format statt 4:3-Zwang */
.image-stack img,
.quote-image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  filter: none !important;
}

/* Deko-Kachel dahinter bleibt, richtet sich aber am Bild aus */
.image-stack,
.quote-image {
  display: block;
}

/* Galerie: Layout darf croppen, aber niemals verformen oder nachzoomen */
.gallery-item img,
.gallery-item:hover img,
.gallery-item:focus-visible img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: var(--gallery-pos, center center) !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

/* Galerie-Layout weiterhin kontrolliert:
   quer = 4:3, hoch = 3:4. Das ist Zuschnitt per cover, kein Quetschen. */
.gallery-item--quer img,
.gallery-item img {
  aspect-ratio: 4 / 3 !important;
}

.gallery-item--hoch img {
  aspect-ratio: 3 / 4 !important;
}

/* Kleine Displays: Kachelbilder bleiben ebenfalls unverformt */
@media (max-width: 980px) {
  .service-card-image img,
  .image-stack img,
  .quote-image img {
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
  }
}


/* Final: Galerie-Formate natürlich anzeigen + Header-Hover/Shrink */
.gallery-section .gallery-mosaic {
  display: block !important;
  columns: 3 260px !important;
  column-gap: clamp(.75rem, 1.25vw, 1rem) !important;
}

.gallery-section .gallery-item,
.gallery-section .gallery-item--quer,
.gallery-section .gallery-item--hoch,
.gallery-section .gallery-item--normal,
.gallery-section .gallery-item--wide,
.gallery-section .gallery-item--tall,
.gallery-section .gallery-item--large {
  display: block !important;
  width: 100% !important;
  margin: 0 0 clamp(.75rem, 1.25vw, 1rem) !important;
  break-inside: avoid !important;
  -webkit-column-break-inside: avoid !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  background: rgba(255, 247, 251, .72);
  transform: none !important;
}

.gallery-section .gallery-item img,
.gallery-section .gallery-item--quer img,
.gallery-section .gallery-item--hoch img,
.gallery-section .gallery-item:hover img,
.gallery-section .gallery-item:focus-visible img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: var(--gallery-pos, center center) !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  will-change: auto !important;
}

.gallery-section .gallery-item:hover,
.gallery-section .gallery-item:focus-visible {
  transform: none !important;
  border-color: rgba(216, 106, 166, .30);
  box-shadow: 0 10px 24px rgba(49, 88, 60, .10);
}

@media (max-width: 760px) {
  .gallery-section .gallery-mosaic {
    columns: 2 150px !important;
    column-gap: .65rem !important;
  }

  .gallery-section .gallery-item {
    margin-bottom: .65rem !important;
    border-radius: 18px !important;
  }
}

/* Header ist sticky und wird beim Scrollen bewusst kompakter. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  transition:
    background .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
}

.header-inner {
  transition: min-height .24s ease, padding .24s ease;
}

.brand img {
  transition: width .24s ease, height .24s ease, filter .24s ease;
}

.brand-text small {
  transition: opacity .2s ease, max-height .24s ease, transform .24s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 251, .94);
  border-bottom-color: rgba(216, 106, 166, .26);
  box-shadow: 0 12px 30px rgba(49, 88, 60, .08);
}

.site-header.is-scrolled .header-inner {
  min-height: 64px;
}

.site-header.is-scrolled .brand img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 5px 10px rgba(216,106,166,.12));
}

.site-header.is-scrolled .brand-text small {
  opacity: 0;
  max-height: 0;
  transform: translateY(-2px);
  overflow: hidden;
}

/* Header-Anruf: Hover nicht mehr hell, sondern kontrastreich. */
.main-nav .nav-call,
.main-nav .nav-call:visited {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark)) !important;
  color: #fff !important;
}

.main-nav .nav-call:hover,
.main-nav .nav-call:focus-visible {
  background: linear-gradient(135deg, var(--rose-dark), #8f2f65) !important;
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(184, 69, 134, .30);
  outline: none;
}

.main-nav .nav-call::before {
  background: currentColor !important;
}


/* Kontakt speichern: gleicher Button-Look wie Telefon/Mail */
.contact-card-actions .contact-save-link {
  font-weight: 900;
}

/* Smarte Galerie: eigene Spalten, per JS nach kürzester Spalte verteilt */
.gallery-mosaic.is-balanced {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(.75rem, 1.25vw, 1rem) !important;
  columns: initial !important;
  column-gap: initial !important;
  align-items: start !important;
}

.gallery-mosaic.is-balanced .gallery-column {
  display: grid;
  gap: clamp(.75rem, 1.25vw, 1rem);
  align-content: start;
  min-width: 0;
}

.gallery-mosaic.is-balanced .gallery-item,
.gallery-mosaic.is-balanced .gallery-item--quer,
.gallery-mosaic.is-balanced .gallery-item--hoch {
  width: 100% !important;
  margin: 0 !important;
  break-inside: auto !important;
  -webkit-column-break-inside: auto !important;
}

.gallery-mosaic.is-balanced .gallery-item img,
.gallery-mosaic.is-balanced .gallery-item--quer img,
.gallery-mosaic.is-balanced .gallery-item--hoch img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

@media (max-width: 1080px) {
  .gallery-mosaic.is-balanced {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .gallery-mosaic.is-balanced {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: .65rem !important;
  }

  .gallery-mosaic.is-balanced .gallery-column {
    gap: .65rem;
  }
}


/* Kontaktkarte: Kontakt speichern links unter Direkter Kontakt */
.contact-card-modern {
  grid-template-columns: minmax(230px, .62fr) minmax(280px, 1fr) !important;
  align-items: start !important;
}

.contact-card-head {
  align-self: start;
}

.contact-card-head .contact-save-link {
  margin-top: .8rem !important;
  width: fit-content;
}

.contact-card-actions {
  align-self: start;
}

.contact-card-actions .contact-save-link {
  display: none !important;
}

@media (max-width: 980px) {
  .contact-card-modern {
    grid-template-columns: 1fr !important;
  }

  .contact-card-head .contact-save-link {
    width: 100%;
    margin-top: .75rem !important;
  }

  .contact-card-actions {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .contact-card-head .contact-save-link {
    justify-content: flex-start !important;
  }
}


/* Final-Fix Kontaktkarte + robuster Sticky Header */

/* Header wirklich über allem und immer mitlaufend */
:root {
  --header-offset: 82px;
}

body {
  padding-top: var(--header-offset);
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999 !important;
  transform: translateZ(0);
}

main section,
section[id] {
  scroll-margin-top: calc(var(--header-offset) + 1rem);
}

.site-header.is-scrolled {
  z-index: 9999 !important;
}

@media (max-width: 980px) {
  :root {
    --header-offset: 70px;
  }
}

/* Kontaktkarte: Name präsenter, Kontakt speichern ohne Zeilenumbruch */
.contact-card-modern {
  grid-template-columns: minmax(270px, .55fr) minmax(0, 1fr) !important;
  gap: .85rem 1.4rem !important;
}

.contact-card-head {
  gap: .28rem !important;
}

.contact-card-head > strong,
.contact-card-modern .contact-card-head > strong {
  font-size: clamp(1.18rem, 1.6vw, 1.32rem) !important;
  line-height: 1.15;
  font-weight: 950;
}

.contact-card-head .contact-save-link {
  width: max-content !important;
  min-width: max-content !important;
  white-space: nowrap !important;
  margin-top: .7rem !important;
}

.contact-card-head .contact-save-link span:last-child,
.contact-card-actions a span:last-child {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .contact-card-modern {
    grid-template-columns: 1fr !important;
  }

  .contact-card-head .contact-save-link {
    width: fit-content !important;
    min-width: 0 !important;
  }
}

@media (max-width: 560px) {
  .contact-card-head > strong,
  .contact-card-modern .contact-card-head > strong {
    font-size: 1.18rem !important;
  }

  .contact-card-head .contact-save-link {
    width: 100% !important;
    min-width: 0 !important;
  }
}


/* Anfahrtsskizze: großes Bild normal, kleines Bild beim Hover */
.map-link-placeholder {
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  background: var(--blush-50);
}

.map-link-placeholder .map-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: opacity .28s ease, transform .28s ease, filter .28s ease;
}

.map-link-placeholder .map-image-main {
  position: relative;
  z-index: 1;
}

.map-link-placeholder .map-image-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 100%;
  opacity: 0;
}

.map-link-placeholder:hover .map-image-main,
.map-link-placeholder:focus-visible .map-image-main {
  opacity: 0;
}

.map-link-placeholder:hover .map-image-hover,
.map-link-placeholder:focus-visible .map-image-hover {
  opacity: 1;
}

.map-link-placeholder .button {
  z-index: 3;
}


/* Final-Fix: Header wirklich sticky/fixed + Map-Hover ohne doppelte Bilder */

/* Header robust oben halten */
:root {
  --header-offset: 82px;
}

html {
  scroll-padding-top: calc(var(--header-offset) + 1rem);
}

body {
  padding-top: var(--header-offset) !important;
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 2147483000 !important;
  background: rgba(255, 249, 251, .92) !important;
  border-bottom: 1px solid rgba(216, 106, 166, .22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translate3d(0, 0, 0);
  transition: background .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.site-header .header-inner {
  transition: min-height .24s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 251, .97) !important;
  box-shadow: 0 14px 34px rgba(49, 88, 60, .10);
  border-bottom-color: rgba(216, 106, 166, .30);
}

.site-header.is-scrolled .header-inner {
  min-height: 64px !important;
}

.site-header.is-scrolled .brand img {
  width: 44px !important;
  height: 44px !important;
}

.site-header.is-scrolled .brand-text small {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}

@media (max-width: 980px) {
  :root {
    --header-offset: 70px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 60px !important;
  }
}

/* Anfahrtsskizze: ein Element, kein Stacken von zwei Bildern */
.map-link-placeholder {
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 26px !important;
  background: var(--blush-50) !important;
  min-height: 0 !important;
}

.map-link-placeholder > img,
.map-link-placeholder .map-image,
.map-link-placeholder .map-image-main,
.map-link-placeholder .map-image-hover {
  display: none !important;
}

.map-link-placeholder .map-preview {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 3 / 2 !important;
  background-image: var(--map-main) !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  transition: background-image .01s linear, filter .24s ease;
}

.map-link-placeholder:hover .map-preview,
.map-link-placeholder:focus-visible .map-preview {
  background-image: var(--map-hover) !important;
  filter: saturate(1.03);
}

.map-link-placeholder .button {
  position: absolute !important;
  left: 1rem !important;
  bottom: 1rem !important;
  z-index: 3 !important;
  width: auto !important;
  max-width: calc(100% - 2rem) !important;
}


/* Final-Fix: Kontakt speichern entfernt + Map wieder als echte Bilder */
.contact-card-modern {
  grid-template-columns: minmax(170px, .42fr) minmax(0, 1fr) !important;
  gap: .85rem 1.15rem !important;
}

.contact-card-head .contact-save-link,
.contact-card-actions .contact-save-link {
  display: none !important;
}

.contact-card-actions {
  min-width: 0 !important;
  justify-content: flex-end;
}

.contact-card-actions a {
  max-width: 100% !important;
}

.contact-card-actions a span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .contact-card-modern {
    grid-template-columns: 1fr !important;
  }

  .contact-card-actions {
    justify-content: flex-start;
  }
}

/* Map: echte img-Elemente, großes Bild normal, kleines Bild auf Hover */
.map-link-placeholder {
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
  border-radius: 26px !important;
  background: var(--blush-50) !important;
  min-height: 0 !important;
}

.map-link-placeholder .map-preview {
  display: none !important;
}

.map-link-placeholder > img.map-image,
.map-link-placeholder .map-image,
.map-link-placeholder .map-image-main,
.map-link-placeholder .map-image-hover {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 3 / 2 !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 0 !important;
  transition: opacity .26s ease, filter .24s ease !important;
}

.map-link-placeholder .map-image-main {
  position: relative !important;
  z-index: 1 !important;
  opacity: 1 !important;
}

.map-link-placeholder .map-image-hover {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  height: 100% !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.map-link-placeholder:hover .map-image-main,
.map-link-placeholder:focus-visible .map-image-main {
  opacity: 0 !important;
}

.map-link-placeholder:hover .map-image-hover,
.map-link-placeholder:focus-visible .map-image-hover {
  opacity: 1 !important;
}

.map-link-placeholder .button {
  position: absolute !important;
  left: 1rem !important;
  bottom: 1rem !important;
  z-index: 4 !important;
  width: auto !important;
  max-width: calc(100% - 2rem) !important;
}

/* Header nochmal absichern */
body {
  padding-top: var(--header-offset, 82px) !important;
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 2147483000 !important;
}

@media (max-width: 980px) {
  body {
    padding-top: var(--header-offset, 70px) !important;
  }
}


/* Final-Fix Galerie: Abstände zurück, kein rosa Rahmen */
.gallery-section .gallery-mosaic,
.gallery-section .gallery-mosaic.is-balanced {
  gap: clamp(1rem, 1.45vw, 1.3rem) !important;
  column-gap: clamp(1rem, 1.45vw, 1.3rem) !important;
}

.gallery-section .gallery-mosaic.is-balanced .gallery-column {
  gap: clamp(1rem, 1.45vw, 1.3rem) !important;
}

.gallery-section .gallery-item,
.gallery-section .gallery-item--quer,
.gallery-section .gallery-item--hoch,
.gallery-section .gallery-mosaic.is-balanced .gallery-item {
  margin: 0 0 clamp(1rem, 1.45vw, 1.3rem) !important;
  border: 0 !important;
  outline: 0;
  border-radius: 22px !important;
  background: transparent !important;
  box-shadow: 0 14px 34px rgba(49, 88, 60, .08) !important;
}

.gallery-section .gallery-mosaic.is-balanced .gallery-item {
  margin: 0 !important;
}

.gallery-section .gallery-item img,
.gallery-section .gallery-item:hover img,
.gallery-section .gallery-item:focus-visible img {
  border: 0 !important;
  outline: 0 !important;
  transform: none !important;
  filter: none !important;
}

.gallery-section .gallery-item:hover,
.gallery-section .gallery-item:focus-visible {
  border: 0 !important;
  outline: none !important;
  box-shadow: 0 16px 38px rgba(49, 88, 60, .11) !important;
  transform: none !important;
}

.gallery-section .gallery-item:focus-visible {
  outline: 3px solid rgba(216, 106, 166, .22) !important;
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .gallery-section .gallery-mosaic,
  .gallery-section .gallery-mosaic.is-balanced,
  .gallery-section .gallery-mosaic.is-balanced .gallery-column {
    gap: .8rem !important;
    column-gap: .8rem !important;
  }

  .gallery-section .gallery-item,
  .gallery-section .gallery-item--quer,
  .gallery-section .gallery-item--hoch {
    margin-bottom: .8rem !important;
    border-radius: 18px !important;
  }
}


/* Final-Fix Stimmen: alle Kacheln mit exakt gleicher Hintergrundfarbe */
.testimonials .testimonial-slide,
.testimonials .testimonial-slide:nth-child(even),
.testimonials .testimonial-slide:nth-child(odd) {
  background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 250, 253, .88)) !important;
  border: 1px solid rgba(216, 106, 166, .18) !important;
  box-shadow: 0 20px 56px rgba(80, 42, 62, .075) !important;
}


/* Final-Fix Stimmen: harte Carousel-Kanten weich ausblenden */
.testimonials .testimonial-carousel {
  position: relative !important;
  overflow: hidden !important;
  padding: clamp(.35rem, 1vw, .55rem) clamp(1.1rem, 3vw, 2.2rem) clamp(1.1rem, 2.5vw, 1.8rem) !important;
  width: min(1120px, 100%) !important;
  isolation: isolate;
}

.testimonials .testimonial-track {
  padding: .25rem 0 .75rem !important;
}

.testimonials .testimonial-carousel::before,
.testimonials .testimonial-carousel::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  top: 0;
  bottom: 3.8rem;
  width: clamp(1.3rem, 4vw, 3.4rem);
  z-index: 4;
  pointer-events: none;
}

.testimonials .testimonial-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--blush-50) 0%, rgba(255, 244, 250, .78) 38%, rgba(255, 244, 250, 0) 100%);
}

.testimonials .testimonial-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--blush-50) 0%, rgba(255, 244, 250, .78) 38%, rgba(255, 244, 250, 0) 100%);
}

.testimonials .testimonial-controls {
  position: relative;
  z-index: 5;
}

@media (max-width: 760px) {
  .testimonials .testimonial-carousel {
    padding-inline: .65rem !important;
  }

  .testimonials .testimonial-carousel::before,
  .testimonials .testimonial-carousel::after {
    width: 1.4rem;
  }
}


/* Final-Fix Stimmen: Fade ohne sichtbaren Rahmen */
.testimonials .testimonial-carousel::before,
.testimonials .testimonial-carousel::after {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Der weiche Rand kommt direkt auf die Track-Fläche, nicht als sichtbare Kachel. */
.testimonials .testimonial-track {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 clamp(1.4rem, 4vw, 3.2rem), #000 calc(100% - clamp(1.4rem, 4vw, 3.2rem)), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 clamp(1.4rem, 4vw, 3.2rem), #000 calc(100% - clamp(1.4rem, 4vw, 3.2rem)), transparent 100%);
}

/* Die Overlays bleiben nur als unsichtbare Fade-Fläche ohne eigene Kontur. */
.testimonials .testimonial-carousel::before {
  left: 0 !important;
  right: auto !important;
  background: linear-gradient(90deg, var(--blush-50), rgba(255, 244, 250, 0)) !important;
}

.testimonials .testimonial-carousel::after {
  right: 0 !important;
  left: auto !important;
  background: linear-gradient(270deg, var(--blush-50), rgba(255, 244, 250, 0)) !important;
}


/* Final-Fix Stimmen: kein Ausfaden, keine seitlichen Overlays, stabiler 1-/2-Karten-Slider */
.testimonials .testimonial-carousel {
  --testimonial-gap: clamp(1rem, 2vw, 1.45rem);
  width: min(1040px, 100%) !important;
  margin: clamp(1.35rem, 3.4vw, 2.35rem) auto 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  isolation: auto !important;
}

.testimonials .testimonial-carousel::before,
.testimonials .testimonial-carousel::after {
  display: none !important;
  content: none !important;
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.testimonials .testimonial-track {
  display: flex !important;
  gap: var(--testimonial-gap) !important;
  align-items: center !important;
  overflow: visible !important;
  padding: .35rem .2rem 1rem !important;
  border-radius: 0 !important;
  transition: transform .46s cubic-bezier(.22, .8, .28, 1);
  will-change: transform;
  touch-action: pan-y;
  box-shadow: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.testimonials .testimonial-slide,
.testimonials .testimonial-slide:nth-child(even),
.testimonials .testimonial-slide:nth-child(odd) {
  flex: 0 0 calc((100% - var(--testimonial-gap)) / 2) !important;
  min-width: 0;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: clamp(1.35rem, 2.4vw, 2rem) !important;
  display: block !important;
  border-radius: 26px !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 250, 253, .88)) !important;
  border: 1px solid rgba(216, 106, 166, .18) !important;
  box-shadow: 0 20px 56px rgba(80, 42, 62, .075) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.testimonials .testimonial-controls {
  position: relative !important;
  z-index: 2 !important;
  margin-top: .85rem !important;
}

@media (max-width: 760px) {
  .testimonials .testimonial-carousel {
    width: 100% !important;
  }

  .testimonials .testimonial-slide,
  .testimonials .testimonial-slide:nth-child(even),
  .testimonials .testimonial-slide:nth-child(odd) {
    flex-basis: 100% !important;
  }
}


/* Mobile Map: auf Handy direkt die kleine/nah herangezoomte Karte anzeigen */
@media (hover: none), (max-width: 760px) {
  .map-link-placeholder .map-image-main {
    opacity: 0 !important;
  }

  .map-link-placeholder .map-image-hover {
    opacity: 1 !important;
  }
}
