/* ============================================
   praxisglanz.de MASTER TEMPLATE
   Universelle styles.css für One-Pager + Mehrseitig

   ANPASSEN PRO PRAXIS:
   1. Body-Class für Schrift-Set wählen: font-set-01 bis font-set-06
   2. Farben in :root anpassen (--primary, --accent, --background)
   3. Logo-Datei austauschen (logo.png)

   STRUKTUR:
   - 3-Farben-Variablen-System (anpassbar pro Praxis)
   - 6 Schrift-Sets als CSS-Sets (umschaltbar via body-class)
   - Mobile First Architektur
   - Sektions-Stile (Hero A/B/C, alle Inhalts-Sektionen, Footer)
   ============================================ */


/* ============================================
   1. FARB-SYSTEM (3 Wunschfarben pro Praxis)
   ============================================ */
:root {
  /* HAUPTFARBEN — pro Praxis anpassen */
  --primary: #2BA8B8;          /* Hauptfarbe (Buttons, Akzente) */
  --accent: #C9B380;            /* Akzentfarbe (Highlights, Linien) */
  --background: #FAF7F2;        /* Ruhige Hintergrundfarbe */

  /* AUTOMATISCH ABGELEITET — aus Hauptfarben generiert */
  --primary-dark: color-mix(in srgb, var(--primary) 80%, black);
  --primary-light: color-mix(in srgb, var(--primary) 20%, var(--background));
  --primary-deep: color-mix(in srgb, var(--primary) 60%, black);

  --accent-light: color-mix(in srgb, var(--accent) 50%, white);
  --accent-dark: color-mix(in srgb, var(--accent) 70%, black);

  --background-warm: color-mix(in srgb, var(--background) 95%, var(--accent));
  --background-deep: color-mix(in srgb, var(--background) 85%, var(--accent));

  /* TEXT- & LINIEN-FARBEN */
  --ink: #1A1A1A;
  --ink-soft: #555555;
  --ink-muted: #888888;
  --line: #D9D2C5;
  --line-soft: #E8E2D5;

  /* LAYOUT */
  --gutter: 24px;
  --max-width: 1440px;

  /* ANIMATION */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-editorial: cubic-bezier(0.7, 0, 0.3, 1);
}


/* ============================================
   2. SCHRIFT-SETS (6 Varianten)
   Body-Class umschalten: font-set-01 bis font-set-06
   ============================================ */

/* SET 01 — Editorial-Premium (Default) */
body.font-set-01 {
  --font-display: 'Newsreader', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --display-weight: 400;
  --display-italic: italic;
  --body-weight: 400;
}

/* SET 02 — Modern-Klar */
body.font-set-02 {
  --font-display: 'Inter Tight', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --display-weight: 600;
  --display-italic: normal;
  --body-weight: 400;
}

/* SET 03 — Warm-Familiär */
body.font-set-03 {
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Nunito', -apple-system, sans-serif;
  --display-weight: 500;
  --display-italic: italic;
  --body-weight: 400;
}

/* SET 04 — Premium-Edel */
body.font-set-04 {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, sans-serif;
  --display-weight: 400;
  --display-italic: italic;
  --body-weight: 400;
}

/* SET 05 — Modern-Lebendig */
body.font-set-05 {
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --display-weight: 500;
  --display-italic: italic;
  --body-weight: 400;
}

/* SET 06 — Sachlich-Stark */
body.font-set-06 {
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --display-weight: 400;
  --display-italic: italic;
  --body-weight: 400;
}


/* ============================================
   3. RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-display);
  font-weight: var(--body-weight);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle paper-grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.6 0 0 0 0 0.55 0 0 0 0 0.45 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--ink);
}

p {
  font-family: var(--font-display);
  font-weight: var(--body-weight);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

em {
  font-style: italic;
  color: var(--primary-deep);
}

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


/* ============================================
   4. EYEBROW (Manrope Caps - Stimme 2)
   ============================================ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}


/* ============================================
   5. CONTAINER
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .container { padding: 0 48px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 64px; }
}


/* ============================================
   6. NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: color-mix(in srgb, var(--background) 90%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: padding 0.3s var(--ease-out);
}

.nav.scrolled {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
  transition: height 0.3s var(--ease-out);
}

.nav.scrolled .nav-logo img {
  height: 32px;
}

.nav-links {
  display: none;
  gap: 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  position: relative;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease-out);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  display: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  background: var(--primary);
  color: white;
  border-radius: 0;
  transition: background 0.2s var(--ease-out);
}

.nav-cta:hover {
  background: var(--primary-dark);
}

@media (min-width: 768px) {
  .nav-cta { display: inline-block; }
}

/* Mobile menu toggle */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 768px) {
  .nav-burger { display: none; }
}

.nav-burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s var(--ease-out);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--background);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 32px;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease-out);
}

.nav-mobile.active {
  transform: translateY(0);
}


/* ============================================
   7. HERO — VARIANTE A: EDITORIAL-ASIDE
   Ohne Bild, mit Manifest-Quote
   ============================================ */
.hero-a {
  position: relative;
  min-height: 100vh;
  padding: 100px 0 80px;
  display: flex;
  align-items: center;
}

.hero-a-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-a-grid {
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
  }
}

.hero-a-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-a h1 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(40px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero-a h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-a-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, var(--ink), var(--accent), transparent);
  margin: 24px 0 20px;
}

.hero-a-subline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-a-cta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 4px;
  display: inline-block;
  align-self: flex-start;
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.hero-a-cta:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-a-aside {
  background: var(--background-warm);
  padding: 48px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-a-aside-marker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 32px;
  display: block;
}

.hero-a-quote {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.35;
  color: var(--ink);
  position: relative;
  padding: 0 0 0 28px;
  border-left: 2px solid var(--accent);
}

.hero-a-quote::before {
  content: '"';
  position: absolute;
  top: -36px;
  left: 12px;
  font-size: 96px;
  color: var(--accent);
  line-height: 1;
  font-family: var(--font-display);
  opacity: 0.5;
}


/* ============================================
   8. HERO — VARIANTE B: BILD-HERO
   Mit Praxisfoto rechts (50/50)
   ============================================ */
.hero-b {
  position: relative;
  min-height: 100vh;
  padding: 100px 0 80px;
  display: flex;
  align-items: center;
}

.hero-b-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-b-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.hero-b-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-b h1 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(40px, 7vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero-b h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero-b-subline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-b-cta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 4px;
  display: inline-block;
  align-self: flex-start;
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.hero-b-cta:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-b-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--background-deep);
}

.hero-b-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============================================
   9. HERO — VARIANTE C: VOLLFLÄCHIG + OVERLAY
   Großformatiges Bild mit Text-Overlay
   ============================================ */
.hero-c {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--primary) 90%, black) 0%,
      color-mix(in srgb, var(--primary) 60%, black) 60%,
      color-mix(in srgb, var(--primary) 40%, black) 100%);
  overflow: hidden;
}

.hero-c::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, color-mix(in srgb, var(--accent) 25%, transparent) 0%, transparent 50%);
}

/* Wenn Bild vorhanden — nutze als Hintergrund */
.hero-c.with-image {
  background: var(--ink);
}

.hero-c-bgimage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-c-bgimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-c-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: white;
}

.hero-c .eyebrow {
  color: var(--accent);
}

.hero-c .eyebrow::before {
  background: var(--accent);
}

.hero-c h1 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(44px, 9vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: white;
}

.hero-c h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-c-subline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 2vw, 22px);
  opacity: 0.85;
  line-height: 1.5;
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-c-cta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: white;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 4px;
  display: inline-block;
  transition: border-color 0.2s var(--ease-out);
}

.hero-c-cta:hover {
  border-color: white;
}


/* ============================================
   10. SECTION (alle Inhalts-Sektionen)
   Gemeinsame Stile für alle Sektionen
   ============================================ */
.section {
  padding: 80px 0;
  position: relative;
}

@media (min-width: 768px) {
  .section { padding: 120px 0; }
}

.section-header {
  margin-bottom: 48px;
}

.section h2 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section h2 em {
  font-style: italic;
  color: var(--primary);
}

.section-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 640px;
}


/* ============================================
   11. SECTION — ALTERNATING BACKGROUNDS
   Wechselnde Hintergründe für visuelle Rhythmus
   ============================================ */
.section-warm {
  background: var(--background-warm);
}

.section-deep {
  background: var(--background-deep);
}

.section-primary {
  background: var(--primary);
  color: white;
}

.section-primary h2,
.section-primary p,
.section-primary .section-lead {
  color: white;
}


/* ============================================
   12. PAGE-HEADER (für Mehrseitig)
   Kompakter Hero-Ersatz auf Unterseiten
   ============================================ */
.page-header {
  padding: 140px 0 60px;
  background: var(--background-warm);
  position: relative;
}

.page-header h1 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.page-header h1 em {
  font-style: italic;
  color: var(--primary);
}

.page-header-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 640px;
}


/* ============================================
   13. BUTTONS / CTAs
   ============================================ */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease-out);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-ghost {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 4px;
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}


/* ============================================
   14. FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: white;
  padding: 64px 0 32px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  margin-bottom: 12px;
  color: white;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  font-family: var(--font-body);
  font-size: 14px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-col a {
  transition: color 0.2s var(--ease-out);
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom a:hover {
  color: var(--accent);
}


/* ============================================
   15. UTILITY: REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   16. PRINT STYLES (basic)
   ============================================ */
@media print {
  body::before { display: none; }
  .nav, .footer { display: none; }
}


/* ============================================
   17. SECTION — ÜBER DIE PRAXIS
   ============================================ */
.section-ueber {
  position: relative;
}

.ueber-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .ueber-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.ueber-text p {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.ueber-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4em;
  line-height: 0.85;
  float: left;
  margin: 8px 12px 0 -2px;
  color: var(--primary);
  font-weight: var(--display-weight);
}

.ueber-werte {
  background: var(--background-warm);
  padding: 36px 32px;
  position: relative;
}

.ueber-werte-marker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 24px;
  display: block;
}

.ueber-werte-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ueber-werte-list li {
  position: relative;
  padding: 16px 0 16px 36px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.5;
}

.ueber-werte-list li:last-child {
  border-bottom: none;
}

.ueber-werte-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.ueber-werte-list li strong {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 4px;
}


/* ============================================
   18. SECTION — TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--background-warm);
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--background-warm) 0%, var(--background-deep) 100%);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 15px;
  position: relative;
}

.team-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed var(--accent);
  opacity: 0.4;
}

.team-name {
  font-family: var(--font-display);
  font-style: var(--display-italic);
  font-weight: var(--display-weight);
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.1;
  margin-bottom: 6px;
}

.team-role {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.team-vita {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}


/* ============================================
   19. SECTION — LEISTUNGEN
   ============================================ */
.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 48px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 768px) {
  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .leistungen-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.leistung-card {
  background: var(--background);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s var(--ease-out);
}

.leistung-card:hover {
  background: var(--background-warm);
}

.leistung-nummer {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent-dark);
  margin-bottom: 12px;
  display: block;
}

.leistung-name {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.leistung-beschreibung {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}


/* ============================================
   20. SECTION — SCHWERPUNKTE
   Editorial-Style mit Nummern
   ============================================ */
.schwerpunkte-list {
  margin-top: 48px;
}

.schwerpunkt-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) {
  .schwerpunkt-item {
    grid-template-columns: 80px 1fr 1fr;
    gap: 48px;
    padding: 48px 0;
  }
}

.schwerpunkt-nummer {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--accent);
}

.schwerpunkt-content h3 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.schwerpunkt-content p {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.schwerpunkt-meta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-top: 16px;
  display: block;
}

@media (min-width: 768px) {
  .schwerpunkt-meta {
    margin-top: 0;
    align-self: start;
    padding-top: 8px;
  }
}


/* ============================================
   21. SECTION — ANFAHRT
   ============================================ */
.anfahrt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .anfahrt-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
  }
}

.anfahrt-map {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--background-warm);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.anfahrt-map iframe,
.anfahrt-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.anfahrt-map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--background-warm) 0%, var(--background-deep) 100%);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-muted);
  position: relative;
}

.anfahrt-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px dashed var(--accent);
  opacity: 0.4;
}

.anfahrt-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.anfahrt-block h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.anfahrt-block p {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}


/* ============================================
   22. SECTION — FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 48px 24px 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.4;
  transition: color 0.2s var(--ease-out);
}

.faq-item summary:hover {
  color: var(--primary);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  transition: transform 0.3s var(--ease-out);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 0 28px;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 720px;
}


/* ============================================
   23. SECTION — KONTAKT + SPRECHZEITEN
   ============================================ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .kontakt-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.kontakt-block h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.kontakt-block p {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.6;
}

.kontakt-block a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease-out);
}

.kontakt-block a:hover {
  border-color: var(--accent);
}

.sprechzeiten-table {
  width: 100%;
  border-collapse: collapse;
}

.sprechzeiten-table tr {
  border-bottom: 1px solid var(--line);
}

.sprechzeiten-table tr:last-child {
  border-bottom: none;
}

.sprechzeiten-table td {
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 16px;
  vertical-align: top;
}

.sprechzeiten-table td:first-child {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-right: 24px;
  width: 30%;
}

.sprechzeiten-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--background-warm);
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}


/* ============================================
   24. SECTION — IGEL / SELBSTZAHLERLEISTUNGEN
   ============================================ */
.igel-list {
  margin-top: 48px;
}

.igel-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) {
  .igel-item {
    grid-template-columns: 1fr 1fr 140px;
    gap: 40px;
    align-items: start;
  }
}

.igel-name {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
}

.igel-beschreibung {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.igel-preis {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--primary);
  text-align: left;
}

@media (min-width: 768px) {
  .igel-preis {
    text-align: right;
  }
}

.igel-hinweis {
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--background-warm);
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}


/* ============================================
   25. SECTION — AUSZEICHNUNGEN / MITGLIEDSCHAFTEN
   ============================================ */
.auszeichnungen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .auszeichnungen-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .auszeichnungen-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.auszeichnung-card {
  background: var(--background-warm);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  transition: border-color 0.3s var(--ease-out);
}

.auszeichnung-card:hover {
  border-color: var(--accent);
}

.auszeichnung-icon {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}

.auszeichnung-name {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 16px;
  line-height: 1.3;
  color: var(--ink);
}

.auszeichnung-jahr {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
}


/* ============================================
   26. SECTION — GALERIE / PRAXISRÄUME
   ============================================ */
.galerie-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .galerie-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.galerie-item {
  position: relative;
  overflow: hidden;
  background: var(--background-warm);
  aspect-ratio: 4/3;
}

.galerie-item:nth-child(1),
.galerie-item:nth-child(4) {
  aspect-ratio: 4/5;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.galerie-item:hover img {
  transform: scale(1.04);
}

.galerie-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--background-warm) 0%, var(--background-deep) 100%);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 13px;
  position: relative;
}

.galerie-placeholder::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed var(--accent);
  opacity: 0.4;
}

.galerie-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  color: white;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.galerie-item:hover .galerie-caption {
  opacity: 1;
}


/* ============================================
   27. SECTION — PATIENTENSTIMMEN
   ============================================ */
.stimmen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .stimmen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stimme-card {
  padding: 36px 32px;
  background: var(--background-warm);
  border-left: 3px solid var(--accent);
  position: relative;
}

.stimme-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--display-weight);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
}

.stimme-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--accent);
  line-height: 0.5;
  margin-right: 6px;
  vertical-align: -16px;
  opacity: 0.6;
}

.stimme-author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
}

.stimme-name {
  font-weight: 600;
  color: var(--ink);
}

.stimme-meta {
  color: var(--ink-muted);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.stimme-rating {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent-dark);
  font-size: 14px;
  letter-spacing: 0.1em;
}


/* ============================================
   28. SECTION — NEWS / AKTUELLES (Add-on)
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  display: flex;
  flex-direction: column;
}

.news-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--background-warm);
  margin-bottom: 16px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--background-warm) 0%, var(--background-deep) 100%);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 12px;
  position: relative;
}

.news-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed var(--accent);
  opacity: 0.4;
}

.news-meta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.news-title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.25;
  margin-bottom: 12px;
}

.news-excerpt {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.news-link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.news-link:hover {
  color: var(--primary);
  border-color: var(--primary);
}


/* ============================================
   29. SECTION — ONLINE-TERMIN (Add-on)
   ============================================ */
.termin-block {
  margin-top: 48px;
  padding: 56px 40px;
  background: var(--primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.termin-block::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.15;
}

.termin-block::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.1;
}

.termin-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.termin-block h3 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
  margin-bottom: 16px;
  color: white;
}

.termin-block h3 em {
  font-style: italic;
  color: var(--accent-light);
}

.termin-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.5;
  margin-bottom: 32px;
  opacity: 0.9;
}

.termin-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 36px;
  background: white;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease-out);
}

.termin-cta:hover {
  background: var(--accent-light);
}


/* ============================================
   30. SECTION — KARRIERE
   ============================================ */
.karriere-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .karriere-block {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.karriere-text p {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.karriere-stellen {
  background: var(--background-warm);
  padding: 36px 32px;
}

.karriere-stellen h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 24px;
}

.stelle-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.stelle-item:last-child {
  border-bottom: none;
}

.stelle-name {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.stelle-meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.stelle-link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--primary);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}


/* ============================================
   31. SECTION — MANIFEST / PRAXIS-PHILOSOPHIE
   Großes Editorial-Statement
   ============================================ */
.manifest {
  padding: 120px 0;
  position: relative;
}

.manifest-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.manifest-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 32px;
  display: block;
}

.manifest-statement {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--display-weight);
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 48px;
}

.manifest-statement em {
  font-style: italic;
  color: var(--primary);
}

.manifest-divider {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 48px auto 32px;
}

.manifest-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}


/* ============================================
   32. LEGAL-PAGES (Impressum, Datenschutz)
   ============================================ */
.legal {
  padding: 40px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal h2 {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.legal h2:first-of-type {
  margin-top: 16px;
}

.legal h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 32px 0 12px;
}

.legal p {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 14px;
}

.legal a {
  color: var(--primary);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ease-out);
}

.legal a:hover {
  border-color: var(--primary);
}

.legal ul, .legal ol {
  margin: 12px 0 18px 24px;
  padding-left: 0;
}

.legal li {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 8px;
}

.legal-info-block {
  background: var(--background-warm);
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  margin: 24px 0;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.6;
}

.legal-info-block strong {
  font-weight: 600;
}

.legal-meta {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
