
/* ════════════════════════════════════════
   DESIGN TOKENS
   ════════════════════════════════════════ */
:root {
  --charcoal:      #1C2B2D;
  --charcoal-mid:  #3A4A4C;
  --charcoal-pale: #F0F3F3;
  --gold:          #C4A35A;
  --gold-light:    #E0C98A;
  --gold-pale:     rgba(196,163,90,0.08);
  --parchment:     #F5F1EB;
  --parchment-dk:  #EDE8E0;
  --warm-grey:     #8A8278;
  --ink:           #1A1A1A;
  --ink-mid:       #3D3D3D;
  --line:          rgba(28,43,45,0.1);
  --line-gold:     rgba(196,163,90,0.2);
  --white:         #FFFFFF;
  --radius:        2px;
  --t-fast:        0.2s ease;
  --t-mid:         0.35s ease;
  --t-slow:        0.6s ease;
  --max-w:         1080px;
  --pad-x:         clamp(24px, 5vw, 64px);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── LANG TOGGLE ── */
[data-lang="en"] { display: none !important; }
body.lang-de [data-lang="en"] { display: none !important; }
body.lang-en [data-lang="de"] { display: none !important; }
body.lang-en [data-lang="en"] { display: revert !important; }

.lang-pill {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,163,90,0.28);
  border-radius: 24px;
  overflow: hidden;
  gap: 0;
}
.nav-lang-item {
  display: flex;
  align-items: center;
}
.lp-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.45);
  transition: all var(--t-fast);
  line-height: 1;
}
.lp-btn.active {
  background: var(--gold);
  color: var(--white);
  border-radius: 20px;
}
body.lang-en .lp-btn[data-target="en"] { background: var(--gold); color: var(--white); border-radius: 22px; }
body.lang-en .lp-btn[data-target="de"] { background: transparent; color: rgba(255,255,255,0.4); }

/* ── STICKY BOTTOM CTA ── */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--charcoal);
  border-top: 1px solid rgba(196,163,90,0.2);
  padding: 12px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-bar-text strong { color: var(--white); font-weight: 500; }
.sticky-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 24px;
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--t-fast);
}
.sticky-book-btn:hover { background: #A8883A; }

/* ── NAVIGATION ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  padding: 0 var(--pad-x);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s;
}
#nav.scrolled {
  background: rgba(28,43,45,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(196,163,90,0.15);
}

/* Logo mark — faithfully reproduced from SVG */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.logo-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.logo-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.logo-rule {
  width: 100%;
  height: 1px;
  background: rgba(196,163,90,0.4);
  margin: 4px 0;
}
.logo-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  color: var(--white);
  border: 1px solid rgba(196,163,90,0.5);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: all var(--t-fast);
}
.nav-links .nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* ── SECTION SCAFFOLDING ── */
.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

h2.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.3px;
}
h2.section-h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
h2.section-h2--light { color: var(--white); }
h2.section-h2--light em { color: var(--gold-light); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  transition: background var(--t-fast);
}
.btn-primary:hover { background: #A8883A; }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 28px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  transition: all var(--t-fast);
}
.btn-ghost-light:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

/* ── LEGAL DISCLAIMER BOX ── */
.legal-box {
  margin-top: 36px;
  padding: 16px 20px;
  border-left: 2px solid rgba(196,163,90,0.35);
  background: rgba(196,163,90,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.legal-box p {
  font-size: 11.5px;
  color: var(--warm-grey);
  line-height: 1.65;
}
.legal-box strong { color: var(--charcoal-mid); font-weight: 600; }

/* ── SCROLL REVEAL ── */
.sr {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.sr.in { opacity: 1; transform: translateY(0); }
.sr-d1 { transition-delay: 0.1s; }
.sr-d2 { transition-delay: 0.2s; }
.sr-d3 { transition-delay: 0.3s; }

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--charcoal);
  overflow: hidden;
  padding-top: 68px;
}

/* Full-bleed background image with multiply blend */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  mix-blend-mode: multiply;
  opacity: 0.55;
  filter: contrast(1.05) saturate(0.8);
}
/* Left-to-right gradient mask so text is legible */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(28,43,45,0.96) 0%,
    rgba(28,43,45,0.80) 40%,
    rgba(28,43,45,0.30) 70%,
    rgba(28,43,45,0.10) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 72px var(--pad-x) 56px;
  max-width: 620px;
}

/* Trust badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,163,90,0.12);
  border: 1px solid rgba(196,163,90,0.3);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.trust-text {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
}

h1.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 300;
  line-height: 1.03;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
h1.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}

/* Symptom chips */
.symptom-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.chip {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all var(--t-fast);
}
.chip:hover {
  color: var(--white);
  border-color: rgba(196,163,90,0.5);
  background: rgba(196,163,90,0.08);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Stat strip at bottom of hero */
.hero-stats {
  position: relative;
  z-index: 2;
  padding: 28px var(--pad-x);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: clamp(28px,4vw,64px);
  flex-wrap: wrap;
}
.stat { }
.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.35);
  margin-top: 5px;
}

/* ════════════════════════════════════════
   METHODE
   ════════════════════════════════════════ */
#methode {
  padding: 108px 0;
  background: var(--white);
}
.methode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 56px;
}
.methode-imgs {
  position: relative;
}
.methode-img-main {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Accent: moxa package photo as corner detail */
.methode-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 44%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 5px solid var(--white);
  box-shadow: 0 8px 32px rgba(28,43,45,0.15);
}
/* Gold border accent */
.methode-border-accent {
  position: absolute;
  top: 20px;
  left: -14px;
  width: 50%;
  height: 70%;
  border: 1px solid rgba(196,163,90,0.25);
  pointer-events: none;
  z-index: -1;
}
.methode-content { }
.methode-content p {
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-top: 20px;
}
.methode-pillars {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.pillar:first-child { border-top: 1px solid var(--line); }
.pillar-glyph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold);
  opacity: 0.7;
  line-height: 1;
  width: 24px;
  flex-shrink: 0;
  padding-top: 2px;
  font-style: italic;
}
.pillar-body {}
.pillar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3px;
  letter-spacing: 0.2px;
}
.pillar-desc {
  font-size: 13px;
  color: var(--warm-grey);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   BEHANDLUNGEN / BESCHWERDEN
   ════════════════════════════════════════ */
#behandlungen {
  padding: 108px 0;
  background: var(--parchment);
}
.behandlungen-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}
.behandlungen-lead {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-top: 16px;
}
#behandlungen .section-wrap { max-width: 1280px; }
.behandlungen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line-gold);
  background: var(--line-gold);
}
.beh-card {
  background: var(--parchment);
  padding: 28px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background var(--t-fast);
}
.beh-card:hover { background: var(--white); }
.beh-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196,163,90,0.3);
  flex-shrink: 0;
  color: var(--gold);
  font-size: 15px;
}
.beh-body {}
.beh-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 5px;
}
.beh-desc {
  font-size: 12.5px;
  color: var(--warm-grey);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   ÜBER MICH
   ════════════════════════════════════════ */
#ueber {
  padding: 108px 0;
  background: var(--white);
}
.ueber-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 56px;
}
.ueber-photo-wrap { position: relative; }
.ueber-photo {
  width: 100%;
  aspect-ratio: 1/1.1;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(12%) contrast(1.03);
}
.ueber-credential-bar {
  background: var(--charcoal);
  padding: 18px 22px;
}
.ueber-credential-bar p {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.65;
}

.ueber-content {}
.ueber-pullquote {
  margin: 0 0 28px;
  padding: 22px 26px;
  border-left: 2px solid var(--gold);
  background: var(--parchment);
}
.ueber-pullquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  font-weight: 300;
}
.ueber-content p {
  font-size: 15.5px;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-top: 18px;
}
.ueber-credentials {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cred-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cred-row:first-child { border-top: 1px solid var(--line); }
.cred-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}
.cred-text {}
.cred-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
  letter-spacing: 0.2px;
}
.cred-desc {
  font-size: 12.5px;
  color: var(--warm-grey);
  line-height: 1.55;
}

/* ════════════════════════════════════════
   ERFAHRUNGEN — HWG-compliant
   ════════════════════════════════════════ */
#erfahrungen {
  padding: 108px 0;
  background: var(--charcoal);
}
.erfahrungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.ef-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,163,90,0.12);
  padding: 28px 24px;
  transition: border-color var(--t-fast), background var(--t-fast);
  position: relative;
}
.ef-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(196,163,90,0.3);
}
.ef-qmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 10px;
}
.ef-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 20px;
}
.ef-attribution {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.ef-author {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
}
.ef-location {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.3px;
}
.ef-disclaimer {
  margin-top: 36px;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  line-height: 1.65;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════════════════
   STANDORTE
   ════════════════════════════════════════ */
#standorte {
  padding: 108px 0;
  background: var(--white);
}
.standorte-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1px;
  background: var(--line-gold);
  margin-top: 48px;
}
.standort-card {
  background: var(--white);
  padding: 32px 26px;
  transition: background var(--t-fast);
}
.standort-card:hover { background: var(--parchment); }
.standort-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.standort-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196,163,90,0.3);
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.standort-info {
  font-size: 13px;
  color: var(--warm-grey);
  line-height: 1.75;
  margin-bottom: 20px;
}
.standort-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(28,43,45,0.2);
  padding-bottom: 2px;
  transition: all var(--t-fast);
}
.standort-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  gap: 10px;
}

/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */
#faq {
  padding: 108px 0;
  background: var(--parchment);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
details.faq-item {
  border-bottom: 1px solid var(--line);
}
details.faq-item:first-child {
  border-top: 1px solid var(--line);
}
summary.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  user-select: none;
}
summary.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(196,163,90,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 300;
  transition: transform var(--t-fast), background var(--t-fast);
  line-height: 1;
}
details[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.faq-a {
  padding: 4px 0 20px;
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.75;
}
/* FAQ image column */
.faq-img-col {
  position: sticky;
  top: 88px;
}
.faq-img-col img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  display: block;
}
.faq-img-caption {
  margin-top: 16px;
  padding: 16px 18px;
  background: var(--charcoal);
}
.faq-img-caption p {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* ════════════════════════════════════════
   TERMIN / BUCHUNG
   ════════════════════════════════════════ */
#termin {
  padding: 108px 0;
  background: var(--charcoal);
}
.termin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 48px;
}
.termin-left {}
.termin-left p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-top: 18px;
}
.process-steps {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.p-step:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.p-num {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(196,163,90,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 3px;
}
.p-body {}
.p-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.p-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.55;
}
.contact-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.c-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  width: 64px;
  flex-shrink: 0;
}
.c-val {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}
.c-val:hover { color: var(--gold); }
a.c-val { text-decoration: none; }

/* Booking panel */
.booking-panel {
  background: var(--parchment);
  padding: 44px 38px;
}
.booking-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.booking-panel .bp-sub {
  font-size: 13px;
  color: var(--warm-grey);
  line-height: 1.7;
  margin-bottom: 30px;
}
.booking-panel .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 13px;
}
.bp-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}
.bp-divider::before, .bp-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.bp-divider span {
  font-size: 10px;
  color: var(--warm-grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.bp-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bpc {
  display: flex;
  gap: 10px;
  align-items: center;
}
.bpc-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 11px;
}
.bpc-val {
  font-size: 13px;
  color: var(--ink-mid);
  transition: color var(--t-fast);
}
a.bpc-val:hover { color: var(--gold); }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
footer {
  background: #0E1A1C;
  padding: 40px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(196,163,90,0.1);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 10px;
  color: rgba(255,255,255,0.12);
  text-align: right;
  letter-spacing: 0.3px;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  z-index: 410;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
@media (max-width: 960px) {
  .hamburger { display: flex; }
  #nav #mobile-menu {
    display: flex;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: rgba(28,43,45,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1),
                padding 0.35s ease;
    border-bottom: 1px solid rgba(196,163,90,0.15);
  }
  #nav #mobile-menu.open {
    max-height: 480px;
    padding: 12px 0 20px;
  }
  #mobile-menu li {
    list-style: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  #mobile-menu li:last-child { border-bottom: none; }
  #mobile-menu a {
    display: block;
    padding: 14px var(--pad-x);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    transition: color 0.2s, background 0.2s;
  }
  #mobile-menu a:hover, #mobile-menu a:active {
    color: var(--gold);
    background: rgba(196,163,90,0.06);
  }
  #mobile-menu .nav-cta {
    margin: 8px var(--pad-x) 4px;
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--white) !important;
    border: none;
    padding: 14px var(--pad-x);
    border-radius: var(--radius);
  }
  #mobile-menu .nav-cta:hover { background: #A8883A; }
  .nav-lang-item { display: none; }
}
@media (max-width: 960px) {
  /* Nav */
  #nav .nav-links { display: none; }
  .nav-lang-item { display: none; }
  .lang-pill { margin-left: auto; }
  /* Hero */
  #hero { padding-top: 68px; min-height: 100svh; }
  .hero-content { padding: 36px var(--pad-x) 28px; max-width: 100%; }
  .hero-bg img { object-position: center 20%; }
  .hero-stats { gap: 24px; }
  /* Layout grids */
  .methode-grid { grid-template-columns: 1fr; gap: 40px; }
  .methode-img-accent { display: none; }
  .methode-border-accent { display: none; }
  .behandlungen-header { grid-template-columns: 1fr; gap: 16px; }
  .behandlungen-grid { grid-template-columns: 1fr; }
  .ueber-grid { grid-template-columns: 1fr; gap: 28px; }
  .ueber-photo-wrap { max-width: 100%; }
  .erfahrungen-grid { grid-template-columns: 1fr 1fr; }
  .standorte-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-img-col { display: none; }
  .termin-grid { grid-template-columns: 1fr; gap: 36px; }
  /* Booking panel */
  .booking-panel { padding: 28px 20px; }
  /* Footer */
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { text-align: center; }
  .footer-links { justify-content: center; }
  /* Sticky bar */
  .sticky-bar { padding: 10px 16px; gap: 10px; }
  .sticky-bar-text { display: none; }
  .sticky-book-btn { padding: 10px 16px; font-size: 11px; }
  /* Ueber credential bar */
  .ueber-credential-bar { padding: 14px 16px; }
}
@media (max-width: 600px) {
  /* Grids go single column */
  .erfahrungen-grid { grid-template-columns: 1fr; }
  .standorte-grid { grid-template-columns: 1fr; }
  .behandlungen-grid { grid-template-columns: 1fr; }
  /* Typography */
  h1.hero-h1 { font-size: 40px; letter-spacing: -0.5px; }
  .stat-val { font-size: 26px; }
  /* Hero stats: 2×2 grid */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
  }
  /* Hero chips: min 12px on mobile */
  .chip { font-size: 12px; padding: 5px 12px; }
  /* Hero CTAs: stack vertically, full width */
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost-light { text-align: center; justify-content: center; }
  /* Trust badge */
  .trust-badge { flex-wrap: wrap; }
  .trust-text { font-size: 9px; }
  /* Pillar layout */
  .pillar { gap: 12px; }
  /* Erfahrungen card padding */
  .ef-card { padding: 20px 16px; }
  .ef-text { font-size: 14px; }
  /* Standorte card padding */
  .standort-card { padding: 24px 18px; }
  /* Process steps */
  .p-step { gap: 12px; }
  /* Contact list label */
  .c-label { width: 52px; font-size: 8px; }
  /* Legal box */
  .legal-box { padding: 14px 16px; }
  .legal-box p { font-size: 11px; }
  /* Footer */
  .footer-links { flex-direction: column; align-items: center; gap: 12px; }
}

.section-pad {
  padding-top: clamp(56px, 8vw, 108px);
  padding-bottom: clamp(56px, 8vw, 108px);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sr { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}

/* Mobile-only lang pill */
.mobile-lang-pill {
  display: none;
}
@media (max-width: 960px) {
  .mobile-lang-pill {
    display: flex;
    position: fixed;
    top: 16px;
    right: 68px;
    z-index: 600;
    background: rgba(28,43,45,0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(196,163,90,0.28);
    border-radius: 24px;
    overflow: hidden;
    gap: 0;
  }
  .mobile-lang-pill .lp-btn { padding: 6px 12px; font-size: 11px; }
  .hamburger { position: relative; z-index: 610; }
}
@media (max-width: 600px) {
  #nav { padding: 10px 16px !important; }
  .logo-sub { font-size: 10px !important; letter-spacing: 1.2px !important; }
  .logo-name { font-size: 18px !important; }
  .mobile-lang-pill { top: 14px; right: 60px; }
  .mobile-lang-pill .lp-btn, .lp-btn { padding: 5px 10px; font-size: 12px !important; }
  .hero-content { padding: 28px 16px 24px !important; }
  h1.hero-h1 { font-size: 34px !important; line-height: 1.1 !important; }
  .hero-stats { gap: 16px 24px !important; }
  .stat-val { font-size: 22px !important; }
  .stat-label { font-size: 11px !important; letter-spacing: 0.8px !important; }
  .chip { font-size: 13px !important; padding: 6px 13px !important; }
  .eyebrow { font-size: 12px !important; letter-spacing: 1.6px !important; }
  .trust-text { font-size: 11px !important; }
  .sticky-book-btn { font-size: 12px !important; }
  .c-label { font-size: 10px !important; }
  .legal-box p { font-size: 12px !important; }
  section, .section-pad { padding-left: 16px !important; padding-right: 16px !important; }
  h2 { font-size: clamp(26px, 7vw, 34px) !important; line-height: 1.15 !important; }
  .booking-panel { padding: 22px 16px !important; }
  .ueber-credential-bar { flex-wrap: wrap; gap: 10px !important; }
  .sticky-bar { padding: 8px 12px !important; }
}



/* ════════════════════════════════════════
   LEGAL PAGES (Impressum / Datenschutz)
   ════════════════════════════════════════ */
.legal {
  max-width: 860px;
  margin: 0 auto;
  padding: 140px var(--pad-x) 90px;
}
.legal h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  letter-spacing: 0.5px;
  color: var(--ink);
  margin-bottom: 8px;
}
.legal .legal-sub {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}
.legal h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin: 44px 0 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(196,163,90,0.2);
}
.legal h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--ink);
  margin: 26px 0 8px;
}
.legal p, .legal li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-mid);
}
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 20px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--gold); text-decoration: underline; word-break: break-word; }
.legal a:hover { opacity: 0.75; }
.legal .legal-box {
  background: rgba(196,163,90,0.06);
  border-left: 2px solid var(--gold);
  padding: 20px 24px;
  margin: 20px 0 24px;
  border-radius: 4px;
}
.legal .legal-box p:last-child { margin-bottom: 0; }
.legal-back {
  display: inline-block;
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
@media (max-width: 600px) {
  .legal { padding: 110px 16px 70px; }
  .legal p, .legal li { font-size: 14px; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 3000;
  background: #0E1A1C;
  border: 1px solid rgba(196,163,90,0.35);
  border-radius: 8px;
  padding: 20px 24px;
  display: none;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  max-width: 980px;
  margin: 0 auto;
}
.cookie-banner.show { display: flex; }
.cookie-text {
  flex: 1 1 320px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: rgba(255,255,255,0.8);
  transition: all var(--t-fast);
}
.cookie-btn:hover { border-color: var(--gold); color: var(--gold); }
.cookie-btn.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #0E1A1C;
  font-weight: 600;
}
.cookie-btn.primary:hover { background: #A8883A; border-color: #A8883A; color: #0E1A1C; }
@media (max-width: 600px) {
  .cookie-banner { padding: 16px; left: 10px; right: 10px; bottom: 10px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; padding: 12px 10px; }
}
