:root {
  --bg: #c098b8;
  --bg-alt: #b088b0;
  --paper: #f0e8e0;
  --ink: #5a2f62;
  --muted: #78477a;
  --accent: #884080;
  --accent-soft: #d8b8d4;
  --line: #a0709c;
  --max: 68rem;
  --text: 38rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.05rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-underline-offset: 0.15em; }
a:hover { color: var(--ink); }

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}
.narrow { width: min(var(--text), 100%); }

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}
.logo img { height: 42px; width: auto; }
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: inherit; }
.logo span { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.02em; }

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
}
nav a[aria-current="page"],
nav a:hover { color: var(--accent); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.7rem;
  border: 0;
  border-radius: 999px;
  color: #fff !important;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
  background: linear-gradient(180deg, #94488c, #7a3874);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35),
              0 10px 22px -12px rgba(92, 42, 88, 0.6);
  transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.22s cubic-bezier(0.2, 0.7, 0.3, 1),
              background 0.22s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45),
              0 14px 28px -12px rgba(92, 42, 88, 0.65);
}
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible { outline: 3px solid rgba(136, 64, 128, 0.45); outline-offset: 2px; }

/* Sekundär: helle Pill mit weichem Schatten */
.btn-ghost {
  background: #fff;
  color: var(--accent) !important;
  border: 1px solid #e2cede;
  box-shadow: 0 6px 16px -10px rgba(92, 42, 88, 0.4);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -12px rgba(92, 42, 88, 0.5);
}

/* Kompakter im Header/Navigation */
.site-header .btn {
  min-height: 42px;
  padding: 0.5rem 1.2rem;
  font-size: 0.92rem;
}
.actions { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #e2cede;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font: inherit;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  box-shadow: 0 6px 16px -10px rgba(92, 42, 88, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nav-toggle:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 10px 20px -12px rgba(92, 42, 88, 0.5);
}
.nav-toggle:focus-visible { outline: 3px solid rgba(136, 64, 128, 0.45); outline-offset: 2px; }

.hero-art {
  background: var(--bg);
  border-bottom: none;
}
.hero-frame {
  position: relative;
  width: min(1100px, 100%);
  margin-inline: auto;
}
.hero-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-eyebrow {
  position: absolute;
  top: 11.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--accent);
  font-size: clamp(0.62rem, 2.3vw, 1.45rem);
  white-space: nowrap;
}
.hero-title {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 84%;
  margin: 0;
  color: var(--accent);
  font-weight: 600;
  line-height: 1.1;
  font-size: clamp(1.1rem, 4vw, 2.4rem);
}

.section { padding: 3.2rem 0; }
.section-alt { background: var(--bg-alt); }
h1, h2, h3 {
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0 0 0.8rem; }
h3 { font-size: 1.25rem; margin: 1.4rem 0 0.4rem; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 40rem; }
.meta { color: var(--muted); font-size: 0.95rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.6rem;
}
.card {
  background: var(--paper);
  padding: 1.5rem 1.4rem 1.6rem;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 26px -16px rgba(92, 42, 88, 0.5);
  transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.22s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -16px rgba(92, 42, 88, 0.55);
}
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }

.steps { counter-reset: step; padding: 0; margin: 1.2rem 0 0; list-style: none; }
.steps li {
  position: relative;
  padding: 0 0 1.2rem 2.4rem;
  border-left: 1px solid var(--accent-soft);
  margin-left: 0.7rem;
}
.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -0.75rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.note {
  border-left: 2px solid var(--accent-soft);
  padding: 0.2rem 0 0.2rem 1rem;
  color: var(--muted);
}

/* --- Treatment pages: intro icon, feature grid, callout --- */
.intro-badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px -16px rgba(92, 42, 88, 0.6);
  margin-bottom: 1.1rem;
}
.intro-badge svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.treat { max-width: 54rem; }
.treat > h2 { margin-top: 0; }
.feature-grid {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 2.2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature .ico {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px -14px rgba(92, 42, 88, 0.55);
  transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.feature:hover .ico { transform: translateY(-3px); }
.feature .ico svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature h3 { margin: 0.1rem 0 0.25rem; font-size: 1.1rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.96rem; line-height: 1.45; }
.prose p { max-width: 42rem; }
.callout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--paper);
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  margin: 1.8rem 0;
  box-shadow: 0 10px 26px -16px rgba(92, 42, 88, 0.5);
}
.callout .ico {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: grid;
  place-items: center;
}
.callout .ico svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.callout p { margin: 0; }
.callout--mail { align-items: center; }
.callout--mail p { font-size: 1.15rem; font-weight: 600; }

/* Statement / quote with beige icon badge on the page background (replaces the old left-border notes) */
.statement {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 1.7rem 0;
}
.statement .ico {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px -14px rgba(92, 42, 88, 0.55);
}
.statement .ico svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.statement .ico svg.quote { fill: var(--accent); stroke: none; }
.statement > p { margin: 0; align-self: center; }
.statement .meta { display: block; margin-top: 0.3rem; }

.site-footer {
  background: #5c2a58;
  color: #f0e8e0;
  padding: 2rem 0 1.4rem;
  font-size: 0.92rem;
}
.site-footer a { color: #f3e6ef; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}
.disclaimer { color: #e4c8de; max-width: 40rem; }
.legal { border-top: 1px solid #884080; padding-top: 0.8rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.page-intro { padding: 2.4rem 0 0.4rem; }
.figure { margin: 0; }
.figure img {
  border-radius: 16px;
  box-shadow: 0 14px 32px -18px rgba(92, 42, 88, 0.55);
  transition: transform 0.22s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.22s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.figure img:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -18px rgba(92, 42, 88, 0.6);
}
.figure figcaption { color: var(--muted); font-size: 0.88rem; margin-top: 0.6rem; }
.hours, .prices {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.hours th, .hours td, .prices th, .prices td {
  text-align: left;
  padding: 0.45rem 0.6rem 0.45rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.map {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 14px 32px -18px rgba(92, 42, 88, 0.5);
}
.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  background: var(--paper);
  padding: 0.4rem 0.6rem;
  z-index: 40;
}
.placeholder {
  background: var(--bg-alt);
  border: 1px dashed var(--accent-soft);
  padding: 1rem 1.1rem;
  color: var(--muted);
}

/* Terminbuchung & externe Einbettungen (Einwilligung) */
#termin { scroll-margin-top: 84px; }

.embed-consent {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem;
  max-width: 46rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 16px 34px -22px rgba(92, 42, 88, 0.6);
}
.embed-consent p { margin: 0; color: var(--muted); }
.embed-consent--map {
  max-width: none;
  min-height: 280px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.embed-consent.is-loaded {
  background: none;
  border: 0;
  padding: 0;
  box-shadow: none;
  display: block;
  max-width: none;
  min-height: 0;
  border-radius: 18px;
  overflow: hidden;
}

.consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px -18px rgba(92, 42, 88, 0.55);
}
.consent-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  padding: 1rem 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.consent-inner p {
  margin: 0;
  flex: 1 1 22rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}
.consent-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.consent-actions .btn { min-height: 46px; padding: 0.6rem 1.4rem; }

.consent-reopen {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.consent-reopen:hover { opacity: 0.8; }

@media (max-width: 860px) {
  .logo span { display: none; }
  .nav-toggle { display: inline-flex; }
  nav { display: none; width: 100%; }
  nav.is-open { display: block; }
  .header-inner { flex-wrap: wrap; }
  nav ul { flex-direction: column; align-items: flex-start; padding: 0.4rem 0 0.8rem; }
  .cards, .split, .footer-grid, .feature-grid { grid-template-columns: 1fr; }
}

/* --- Praxis-Galerie + Lightbox --- */
.gallery {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.gallery--side {
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.gallery-item {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px -20px rgba(92, 42, 88, 0.7);
  background: var(--paper);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.05); }
.gallery-item:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 18, 44, 0.92);
  padding: 3vh 1rem;
}
.lightbox[hidden] { display: none; }
.lightbox-figure {
  margin: 0;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.lightbox-figure img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}
.lightbox-figure figcaption {
  color: #f0e8e0;
  font-size: 0.95rem;
  text-align: center;
  max-width: 40rem;
}
.lightbox button {
  position: absolute;
  background: rgba(240, 232, 224, 0.15);
  border: 1px solid rgba(240, 232, 224, 0.35);
  color: #f0e8e0;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.lightbox button:hover { background: rgba(240, 232, 224, 0.3); }
.lightbox-close { top: 1.2rem; right: 1.2rem; }
.lightbox-prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 720px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}
