/* =========================
   LOCAL FONTS (DSGVO SAFE)
   ========================= */

/* Montserrat */
@font-face{
  font-family:"Montserrat";
  src:url("../fonts/montserrat-v31-latin-regular.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Montserrat";
  src:url("../fonts/montserrat-v31-latin-500.woff2") format("woff2");
  font-weight:500;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Montserrat";
  src:url("../fonts/montserrat-v31-latin-600.woff2") format("woff2");
  font-weight:600;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Montserrat";
  src:url("../fonts/montserrat-v31-latin-700.woff2") format("woff2");
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

/* Playfair Display */
@font-face{
  font-family:"Playfair Display";
  src:url("../fonts/playfair-display-v40-latin-regular.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Playfair Display";
  src:url("../fonts/playfair-display-v40-latin-500.woff2") format("woff2");
  font-weight:500;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Playfair Display";
  src:url("../fonts/playfair-display-v40-latin-600.woff2") format("woff2");
  font-weight:600;
  font-style:normal;
  font-display:swap;
}

/* Great Vibes */
@font-face{
  font-family:"Great Vibes";
  src:url("../fonts/great-vibes-v21-latin-regular.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

:root{
  /* palette sampled from mockup */
  --bg-top:#ffffe6;   /* sehr helles Gelb */
  --bg-mid:#ffffc2;   /* warmes Hellgelb */
  --bg-bot:#ffff99;   /* Zielgelb */

--primary:#c1123a;     /* kirschrot */
--primary-2:#9e0e30;   /* dunkler für Verlauf */
--card-red:#c1123a;    /* rote Karten -> kirschrot */
--card-red-2:#9e0e30;
  --card-orange:#f09a2f;
  --card-orange-2:#e27f2c;

  --headline:#c06d66;       /* dusty coral */
  --text:#6f6b68;
  --muted:#8d8783;

  --white: rgba(255,255,255,.78);
  --glass: rgba(255,255,255,.62);

  --shadow: 0 18px 48px rgba(45, 26, 20, .14);
  --shadow-soft: 0 10px 26px rgba(45, 26, 20, .10);
  --radius:18px;
  --radius-lg:22px;

  --max: 1040px;            /* matches mockup content width */
}

*{box-sizing:border-box}
html,body{min-height:100%} 

body{
  margin:0;
  color:var(--text);
  font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

background:
  /* oben: dezent (nur leicht spürbar) */
  radial-gradient(900px 520px at 0% 0%, rgba(255,255,153,.03), rgba(255,255,153,0) 60%),
  radial-gradient(900px 520px at 100% 0%, rgba(255,255,153,.04), rgba(255,255,153,0) 60%),

  /* unten: stärker (Haupt-Glow, aber ruhiger) */
  radial-gradient(1100px 760px at 0% 100%, rgba(255,255,153,.10), rgba(255,255,153,0) 72%),
  radial-gradient(1100px 760px at 100% 100%, rgba(255,255,153,.12), rgba(255,255,153,0) 72%),

  /* Basisverlauf */
  linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 55%, var(--bg-bot) 100%);
}

/* ✅ Top-Overlay: Header+Nav integrieren (oben intensiver, nach unten weich → kein Bruch zum Hero) */
body::before{
  content:"";
  position: fixed;
  top:0; left:0; right:0;
  height: 240px;
  pointer-events:none;
  z-index: 19999;

  background: linear-gradient(
    180deg,
    rgba(255,215,120,.38) 0%,   /* ✨ ganz oben kräftiger, warm */
    rgba(255,235,170,.26) 22%,
    rgba(255,255,194,.14) 55%,
    rgba(255,255,230,0) 100%
  );
}




a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

/* verhindert horizontales „Rauslaufen“ auf Mobile (lange Wörter/Slashes) */
html, body{ overflow-x:hidden; }
p, li, blockquote{
  overflow-wrap:anywhere;
  word-break:break-word;
}

/* ❌ Navigation & Dropdown dürfen KEINE Wort-Zerstückelung haben */
.menu a,
.dropdown a{
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}


/* Überschriften: kein „Mitte-im-Wort“-Umbruch */
h1, h2, h3, h4{
  overflow-wrap: normal;
  word-break: normal;

  /* ❗ NIE Silbentrennung in Überschriften */
  hyphens: none;
  -webkit-hyphens: none;

  text-wrap: balance;
}



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

.site{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

/* Header */
.header{
  position: relative;
  z-index: 20000;
  padding:34px 0 8px;
  background: transparent;
  backdrop-filter: none;
}

.header__row{
  display:flex;
  align-items:flex-end;
  justify-content:center;
}
.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0px;
}

.brand__mark{
  width:130px;
  height:130px;
  object-fit:contain;

  border-radius:0;
  opacity:1;

  /* kein Schatten mehr */
  filter:
    saturate(.94)
    contrast(.98);

  mix-blend-mode:normal;

  /* minimal höher, ruhiger */
  transform: translateY(0);
}




.brand__stack{
  text-align:center;
}
.brand__name{
  font-family: "Playfair Display", serif;
  font-size: 46px;
  color:#A30B66;
  letter-spacing: .3px;
}

.brand__pretitle{
  font-family: "Playfair Display", serif;
  font-size: 18px;              /* bewusst kleiner */
  font-weight: 500;
  color: #A30B66;               /* exakt gleiche Farbe */
  letter-spacing: .14em;        /* editoriales Gefühl */
  text-transform: uppercase;   /* ruhig, sachlich */
  margin-bottom: 6px;
  opacity: .85;                /* minimal zurückgenommen */
}


.brand__role{
  margin:8px 0 0;
  font-size:18px;
  color: rgba(111,107,104,.58);
  letter-spacing:.12em;
}

/* phone pill near logo */
.brand__phone{
  position:absolute;
  right:calc((100vw - min(var(--max), calc(100% - 64px))) / 2);
  top:38px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.70);
  box-shadow: 0 10px 25px rgba(45, 26, 20, .10);
  backdrop-filter: blur(10px);

  /* 🔴 verhindert blauen Mobile-Rahmen */
  outline: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
}

/* Icon zentral per CSS – robust (kein Mask/SVG nötig) */
.brand__phone::before{
  content:"☎";
  display:inline-block;
  font-size:16px;
  line-height:1;
  opacity:.72;
  transform: translateY(1px); /* optisch mittig */
}

/* falls im HTML ein SVG drin ist (wie auf index), nicht doppelt anzeigen */
.brand__phone svg{ display:none; }

.brand__phone span{
  font-weight:600;
  color:rgba(111,107,104,.78);
  letter-spacing:.02em;
}

/* Nav */
.nav{
  position: relative;
  z-index: 20001;
  padding: 20px 0 14px;
  background: transparent;
  backdrop-filter: none;
}
.nav__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.menu{
  list-style:none;
  display:flex;
  align-items:center;
  gap:34px;
  padding:0;
  margin:0;
  color:rgba(111,107,104,.78);
  font-size:16px;
}
.menu a{
  padding:14px 0;
  display:inline-flex;
  align-items:center;
  gap:8px;
  position:relative;
}
/* Active underline – nur Top-Level */
.menu > li > a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-10px;        /* bleibt wie bisher für Hauptnavigation */
  height:2px;
  background:var(--primary);
  border-radius:10px;
  opacity:.65;
}

/* Active underline – Dropdown: näher am aktuellen Punkt */
.dropdown a{ position:relative; }

.dropdown a.active::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:4px;          /* <- HIER sitzt der Strich höher */
  height:2px;
  background:var(--primary);
  border-radius:10px;
  opacity:.65;
}


/* Dropdown (hover-gap safe + premium motion) */
.menu__item{ position:relative; }

.menu__caret{
  width:9px; height:9px;
  border-right:2px solid rgba(111,107,104,.55);
  border-bottom:2px solid rgba(111,107,104,.55);
  transform: rotate(45deg) translateY(-1px);
  border-radius:1px;
}

/* wichtig: dichter an den Menüpunkt + nicht mehr display:none */
.dropdown{
  position:absolute;

  /* ✅ Desktop: unter dem Menüpunkt zentrieren (verhindert schmale „Kollisionen“) */
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  top: calc(100% - 8px);      /* <- schließt die Lücke */

  /* ✅ Desktop: schmal & passend */
  width: max-content;
  min-width: 220px;
  max-width: 320px;



  background:rgba(255,255,255,.97);
  border:1px solid rgba(216, 71, 18, .10);
  border-radius:18px;
  box-shadow: var(--shadow-soft);
  padding:10px;

  backdrop-filter: blur(10px);

  z-index: 30000;

  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform: translateY(10px);
  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility 0s linear .18s;
}

/* hover-bridge gegen hover-gap */
.dropdown::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top:-14px;
  height:14px;
}

/* offen bei hover + tastatur (focus) */
.menu__item:hover .dropdown,
.menu__item:focus-within .dropdown,
.menu__item.open .dropdown{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform: translateX(-50%) translateY(0);

  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility 0s;
}

.dropdown a{
  display:block;
  padding:10px 12px;
  border-radius:14px;

  /* ✅ Link darf nie breiter als Dropdown sein */
  width:100%;
  max-width:100%;
  box-sizing:border-box;

  /* ✅ verhindert Überstand nach rechts, ohne Text "zu killen" */
  overflow: clip;                 /* moderner als hidden (kein Scroll/kein "bleed") */
  text-overflow: clip;

  /* ✅ Zeilenumbruch korrekt */
  white-space: normal !important;
  overflow-wrap: anywhere !important;   /* darf umbrechen, statt rauszulaufen */
  word-break: normal !important;
  hyphens: auto !important;
}




.dropdown a:hover{
  background: rgba(216, 71, 18, .16);
}

/* optional: aktive Zeile */
.dropdown a.active{
  background: rgba(216, 71, 18, .06);
}


/* CTA button (Online Sprechstunde) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:none;
  border-radius:6px;       /* mockup looks squarer */
  padding:12px 18px;
  cursor:pointer;
  font-weight:600;
  letter-spacing:.01em;
  box-shadow: 0 12px 24px rgba(216, 71, 18, .20);
}
.btn--primary{
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  color:#fff;
}
.btn--primary:hover{filter:brightness(.98)}
.btn--sm{padding:10px 16px; font-size:14px; border-radius:6px}
.btn--ghost{
  background: rgba(255,255,255,.70);
  color: rgba(111,107,104,.84);
  box-shadow: 0 12px 24px rgba(45, 26, 20, .10);
}
.btn--ghost:hover{background: rgba(255,255,255,.82)}

/* subtle divider under nav (like mockup) */
.divider{
  height:1px;
  background: rgba(216, 71, 18, .18);
}

/* Hero */
.hero{
  padding: 22px 0 18px;
}
.hero__panel{
  background: rgba(255,255,240,.85);
  border: 1px solid rgba(216, 71, 18, .08);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 44px 54px;
  display:grid;
  grid-template-columns: 1.10fr .90fr;
  align-items:center;
  gap:28px;
  position:relative;
  overflow:hidden;
  isolation: auto;   /* WICHTIG: erlaubt Blend-Modi korrekt */
}

.hero__panel::after{
  content:"";
  position:absolute;
  inset:0;                         /* <- volle Fläche statt 55% Ecke */

  background-image:
    url("../img/hero-texture1.png"),
    url("../img/hero-texture2.png"),
    url("../img/hero-texture3.png"),
    url("../img/hero-texture.png");
  background-repeat: no-repeat;
  background-size: 420px 420px;    /* <- Größe des Musters in jeder Ecke */
  background-position:
    0% 0%,                         /* oben links */
    100% 0%,                       /* oben rechts */
    0% 100%,                       /* unten links */
    100% 100%;                     /* unten rechts */

  opacity: .53;                    /* <- Intensität (Hauptregler) */
  mix-blend-mode: multiply;        /* <- wirkt “eingewoben”, nicht “aufgeklebt” */
  filter: blur(.2px);              /* <- weicher, optional */
  z-index: 1;
  pointer-events:none;

  /* weiches Ausblenden zur Mitte (damit’s nicht “busy” wird) */
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 0 52%, rgba(0,0,0,1) 78%);
  mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 0 52%, rgba(0,0,0,1) 78%);
}





.hero__copy{position:relative; z-index:2}

.hero__title{
  margin:0;
  font-family:"Playfair Display", serif;
  color: #A30B66;
  font-size:54px;
  line-height:1.03;
  font-weight:500;

  /* ❗ Keine Silbentrennung / keine unnötigen Trennstriche – auf allen Seiten */
  hyphens: none;
  -webkit-hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}


.hero__subtitle{
  margin:14px 0 22px;
  color: rgba(111,107,104,.66);
  font-size:16px;
}
.hero__media{
  position:relative;
  z-index:3;
  display:flex;
  justify-content:flex-end;
}
.portrait{
  width:360px;
  height:360px;
  border-radius:50%;
  overflow:hidden;
  box-shadow: 0 18px 40px rgba(45, 26, 20, .18);
  border: 12px solid rgba(255,255,255,.58);
  background: rgba(255,255,255,.70);
}
.portrait img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: 55% 32%;
}

/* Section titles */
.section{
  padding: 22px 0 8px;
}
.section__title{
  margin:0;
  text-align:center;
  font-family:"Playfair Display", serif;
  font-weight:500;
  color: #A30B66;
  font-size:34px;
  position:relative;
}
.section__title::before,
.section__title::after{
  content:"";
  display:inline-block;
  width:170px;
  height:1px;
  background: rgba(216, 71, 18, .10);
  vertical-align:middle;
  margin:0 18px;
  transform: translateY(-2px);
}

/* Cards */
.cards{
  margin-top:22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:26px;
  align-items:stretch;
}
.card{
  background: rgba(255,255,240,.85);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(216, 71, 18, .08);
  padding: 28px 24px 24px;
  min-height:220px;
}
.card--accent{
  background: linear-gradient(180deg, var(--card-red), var(--card-red-2));
  color:#fff;
  border:none;
}
.card--warm{
  background: linear-gradient(180deg, var(--card-orange), var(--card-orange-2));
  color:#fff;
  border:none;
}
.card--light{
  color: rgba(111,107,104,.86);
  background: rgba(255,255,240,.85);
}
.card__icon{
  width:92px;
  height:92px;
  border-radius:50%;
  background: rgba(255,255,255,.40);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
  box-shadow: 0 10px 22px rgba(45, 26, 20, .12);
}
.card--light .card__icon{
  background: rgba(216, 71, 18, .08);
}
.card__icon svg{width:48px;height:48px}
.card__title{
  margin:0 0 10px;
  text-align:center;
  font-weight:700;
  font-size:18px;
}
/* Card-Titel auf hellen Cards (nicht rot/orange) in Headline-Lila */
.card:not(.card--accent):not(.card--warm) .card__title{
  color:#A30B66;
}

.card__text{
  margin:0;
  text-align:center;
  font-size:13px;
  line-height:1.55;
  opacity:.92;
}
.center-actions{
  display:flex;
  justify-content:center;
  margin-top:18px;
}


/* Testimonials */
.testimonials{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:26px;
}
.quote{
  background: rgba(255,255,240,.85);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(216, 71, 18, .08);
  padding: 18px 18px 16px;
  min-height:150px;
}
.stars{
  color: rgba(240,154,47,.90);
  letter-spacing:2px;
  font-size:14px;
  margin-bottom:10px;
}
.quote__title{
  margin:0 0 8px;
  color: #A30B66;
  font-family:"Playfair Display", serif;
  font-size:22px;
  font-weight:500;
}
.quote__text{
  margin:0;
  font-size:13px;
  line-height:1.55;
  color: rgba(111,107,104,.82);
}

/* Inner page content */
.page{
  padding: 10px 0 20px;
}

/* =====================================================
   Dringender Hinweis – Kinder-Seite
   ===================================================== */

.urgent-callout{
  margin: 0 0 18px;
  padding: 16px 18px;
  border-radius: 18px;

  background: linear-gradient(
    180deg,
    rgba(193,18,58,.10),
    rgba(193,18,58,.06)
  );
  border: 1px solid rgba(193,18,58,.28);

  text-align: center;
  box-shadow: 0 10px 22px rgba(45,26,20,.08);
}

.urgent-callout strong{
  display:block;
  font-weight:700;
  color: var(--primary);
  margin-bottom: 6px;
}

.urgent-callout a{
  display:inline-block;
  padding: 10px 16px;
  border-radius: 999px;

  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  color:#fff;
  font-weight:700;
  letter-spacing:.02em;

  box-shadow: 0 10px 22px rgba(193,18,58,.28);
}

.urgent-callout a:hover{
  filter: brightness(1.05);
}




.page__box{
  background: rgba(255,255,240,.85);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(216, 71, 18, .08);
  padding: 26px 26px 18px;
}


/* CI-Linien wie bei .section__title (aber responsive kürzer) */


/* Linien neben H2: robust bei Zeilenumbrüchen */










/* kleinere Screens */
@media (max-width: 720px){

  /* Dorn & generell: Editorial-Figuren dürfen auf Mobile NICHT schmal bleiben */
  .tcm-figure,
  .tcm-figure--right,
  .tcm-figure--small{
    float: none !important;          /* kill float */
    width: 100% !important;          /* überschreibt min(220px,32%) etc. */
    max-width: 100% !important;
    margin: 12px 0 16px !important;
  }

  /* optional: verhindert “Text klebt daneben”, falls irgendwo noch float greift */
  .tcm-block::after{
    content:"";
    display:block;
    clear: both;
  }



}


.page__box p{margin:0 0 14px; line-height:1.75; color: rgba(111,107,104,.82)}

/* =====================================================
   Akupunktur – Editorial Artikel-Layout (CD-konform)
   ===================================================== */

.tcm-article{
  margin-top: 8px;
}

.tcm-block{
  position: relative;
}

.tcm-article h3,
.page__box > h2 + h3{
  margin: 18px 0 10px;
  font-family:"Playfair Display", serif;
  font-weight:500;
  font-size: 26px;
  color: #A30B66;
  text-align:left;
}


.tcm-divider{
  height:1px;
  background: rgba(216, 71, 18, .10);
  margin: 18px 0;
}

.tcm-figure{
  margin: 10px auto 14px;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(216,71,18,.08);
  background: rgba(255,255,240,.85);

  /* ✅ Shrink-wrap + sauber zentriert (auch wenn Eltern Grid/Block ist) */
  display: table;
  width: fit-content;
  max-width: 100%;
}

/* ✅ Überschreibt problematische Inline-Styles wie style="width:100%;" */
.tcm-figure[style*="width:100%"],
.tcm-figure[style*="width: 100%"]{
  width: fit-content !important;
  max-width: 100% !important;
}

.tcm-figure img{
  /* ✅ nie hochskalieren (sonst pixelig) */
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;

  /* ✅ verhindert riesige „Karten-Leerflächen“ bei Portraits */
  max-height: 420px;
  object-fit: contain;

  background: transparent;
}

.tcm-figure figcaption{
  padding: 10px 12px 12px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(111,107,104,.70);
}

/* Bild rechts – wie im Beispiel-Screenshot */
.tcm-figure--right{
  float: right;
  width: min(240px, 34%);
  margin: 6px 0 12px 18px;
  border-radius: 18px;
}

/* Ohrakupunktur – kleiner, ruhiger, echter Lesefluss */
.tcm-figure--ear{
  width: min(240px, 32%);
  margin: 4px 0 10px 18px;
}


/* Clear float within blocks */
.tcm-block::after{
  content:"";
  display:block;
  clear:both;
}

/* Mobile: Bilder unter den Text */
@media (max-width: 720px){
  .tcm-figure--right{
    float:none;
    width:100%;
    margin: 10px 0 14px;
  }
}
.page__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}

/* =====================================================
   Ueber mich – strukturierter Content + Portrait (CD-konform)
   ===================================================== */

.about__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items:start;
}

.about__copy h3{
  margin: 18px 0 10px;
  font-family:"Playfair Display", serif;
  font-weight:500;
  font-size: 26px;
  color: #A30B66;
  text-align:left;
}

.about-quote{
  margin: 8px auto 26px;
  padding: 22px 30px;

  max-width: 600px;

  border-radius: 22px;
  background:
    radial-gradient(700px 260px at 12% 30%, rgba(255,255,153,.10), rgba(255,255,153,0) 62%),
    radial-gradient(700px 260px at 88% 70%, rgba(255,255,153,.08), rgba(255,255,153,0) 62%),
    rgba(255,255,210,.62);
  border: 1px solid rgba(216,71,18,.10);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.about-quote::before{
  content:"„";
  position:absolute;
  left:18px;
  top:10px;
  font-family:"Playfair Display", serif;
  font-size: 84px;
  line-height:1;
  color: rgba(192,109,102,.16);
  pointer-events:none;
}



.about-quote__text{
  margin: 0;                  /* wichtig: nicht schieben */
  font-family:"Playfair Display", serif;
  font-size: 24px;
  line-height: 1.45;
  color: rgba(111,107,104,.86);

  text-align: center;         /* Text wirklich mittig */
}




.about-quote__by{
  margin-top: 12px;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  color:#A30B66;
  text-align: right;
  display: block;
}


.bio-list{
  margin: 0 0 6px;
  padding-left: 18px;
  color: rgba(111,107,104,.82);
  line-height: 1.85;
}

.bio-list li{ margin: 0 0 6px; }

.about__photo{
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(216,71,18,.10);
  background: rgba(255,255,255,.55);
}

.about__photo img{
  width: 100%;
  height: auto;
  display:block;
  object-fit: cover;
}

@media (max-width: 980px){
  .about__grid{ grid-template-columns: 1fr; }
  .about__photo{ max-width: 520px; }
}

/* Form */
form{display:grid; gap:12px}
.field{display:grid; gap:7px}
label{
  font-size:13px;
  color: rgba(111,107,104,.78);
  font-weight:600;
}
input, textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(216, 71, 18, .14);
  background: rgba(255,255,255,.82);
  outline:none;
  font: inherit;
  color: rgba(80,78,76,.92);
  box-shadow: 0 10px 22px rgba(45, 26, 20, .06);
}
input:focus, textarea:focus{border-color: rgba(216, 71, 18, .30)}
textarea{min-height:140px; resize:vertical}
.help{font-size:12px; color: rgba(111,107,104,.70)}
.checkbox{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding-top:6px;
}
.checkbox input{width:18px;height:18px; margin-top:2px}
.checkbox label{font-weight:600}
.form-actions{
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:6px;
}

/* Footer */
.footer{
  margin-top:auto;
  padding: 22px 0 30px;
}
.footer__contact{
  text-align:center;
  color: rgba(111,107,104,.80);
  font-size:14px;
  line-height:1.9;
}
.footer__icons{
  margin: 14px 0 10px;
  display:flex;
  justify-content:center;
  gap:14px;
}
.iconbtn{
  width:34px;height:34px;
  border-radius:50%;
  border: 2px solid rgba(216, 71, 18, .50);
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 22px rgba(45, 26, 20, .08);
}
.iconbtn svg{width:16px;height:16px; opacity:.82}
.footer__links{
  display:flex;
  justify-content:flex-end;
  gap:22px;
  margin-top:10px;
  color: rgba(111,107,104,.78);
  font-size:14px;
}
.footer__links a:hover{color: rgba(216, 71, 18, .85)}
.footer__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* Responsive */
@media (max-width: 980px){
  .brand__phone{
    position:static;
    margin-top:12px;
  }
  .nav__row{flex-direction:column; align-items:stretch}
  .menu{justify-content:center; flex-wrap:wrap; gap:18px}
  .hero__panel{grid-template-columns: 1fr; padding:34px 28px}
  .hero__media{justify-content:flex-start}
  .portrait{width:300px;height:300px}
  .section__title::before,.section__title::after{width:90px}
  .cards, .testimonials{grid-template-columns: 1fr}
  .footer__row{flex-direction:column; align-items:center}
  .footer__links{justify-content:center}
  .page__grid{grid-template-columns: 1fr}
  .about__grid{grid-template-columns: 1fr}
}

@media (max-width: 720px){
  .container{width:min(var(--max), calc(100% - 32px))}

  /* Header insgesamt etwas kompakter */
  .header{ padding: 20px 0 6px; }

  /* Header-Row stapeln: erst Brand, dann Telefon */
  .header__row{
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  /* Brand: Blume näher an den Namen */
  .brand{
    justify-content: center;
    max-width: 100%;
    gap: 8px;                 /* ✅ näher dran */
  }

  .brand__mark{
    width: clamp(92px, 22vw, 118px);
    height: clamp(92px, 22vw, 118px);
    transform: translateX(10px);  /* ✅ optisch Richtung Name schieben */
  }

  /* ✅ NEU: Pretitle auf Mobile kompakter */
  .brand__pretitle{
    font-size: 14px;
    letter-spacing: .12em;
    margin-bottom: 4px;
  }

  .brand__name{
    font-size: clamp(34px, 8.2vw, 44px); /* 🔽 kleiner statt Umbruch */
    line-height: 1.05;
    letter-spacing: .15px;

    white-space: nowrap;   /* ❗ verhindert Umbruch */
  }


  .brand__role{
    margin-top: 8px;          /* etwas weniger Luft */
  }

  /* Telefon: unter Brand, zentriert */
  .brand__phone{
    position: static;
    right: auto;
    top: auto;
    margin: 0 auto;
    max-width: fit-content;
  }

  /* Nav: weniger Höhe + schöner Wrap-Abstand */
  .nav{ padding: 10px 0 10px; }

  .menu{
    justify-content: center;
    gap: 10px 22px;          /* ✅ row-gap 10px, column-gap 22px */
  }

  /* ✅ FIX: Section-Titel auf Mobile ohne Seitenlinien (verhindert „Einrück“-Look beim Umbruch) */
  .section__title::before,
  .section__title::after{
    display:none;
  }

.hero__title{
  font-size: clamp(32px, 8.2vw, 42px);
  line-height: 1.08;

  /* ❗ niemals Silbentrennung */
  hyphens: none;
  -webkit-hyphens: none;

  /* ✅ darf umbrechen, damit NICHTS über den Boxrand läuft */
  overflow-wrap: anywhere;
  word-break: break-word;

  text-wrap: normal;
}

/* ✅ Dropdown auf Mobile: an die NAV ankern (nicht an den einzelnen Menüpunkt) */
.menu__item{ position: static !important; }   /* wichtig: verhindert Links/Rechts-Drift */
.nav{ position: relative; }                  /* Bezugspunkt für absolute Dropdowns */

.nav .dropdown{
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) translateY(10px) !important;

  /* ✅ Mobile: bleibt im Viewport */
  width: max-content !important;
  min-width: 220px !important;
  max-width: calc(100vw - 32px) !important;

  box-sizing: border-box;
}

.menu__item:hover .dropdown,
.menu__item:focus-within .dropdown,
.menu__item.open .dropdown{
  transform: translateX(-50%) translateY(0) !important;
}


/* ✅ Dropdown auf Mobile: kein komischer Wortbruch (z.B. Praxis) */
.dropdown a{
  white-space: normal !important;
  overflow-wrap: break-word !important; /* bricht nur wenn wirklich nötig */
  word-break: normal !important;
  hyphens: none !important;             /* verhindert Pra-xis */
}



 }




/* Behandlungen: Text auf farbigen Cards weiss (erzwingen) */
.page__box .card.card--accent,
.page__box .card.card--warm{
  color:#fff !important;
}

/* sicherstellen, dass Titel & Text nicht separat dunkle Farben bekommen */
.page__box .card.card--accent .card__title,
.page__box .card.card--warm .card__title,
.page__box .card.card--accent .card__text,
.page__box .card.card--warm .card__text{
  color:#fff !important;
}

/* rechte/helle Karte: Text bleibt dunkel, Titel darf lila sein */
.page__box .card.card--light,
.page__box .card.card--light .card__text{
  color: var(--text) !important;
}

/* Helle Cards: Titel lila – auch innerhalb .page__box */
.page__box .card.card--light .card__title{
  color:#A30B66 !important;
}




/* =====================================================
   CD CONTENT – redaktioneller Textbereich
   zwischen Hero und Schwerpunkte
   ===================================================== */

.cd-content{
  padding: 12px 0 18px;   /* Abstand bleibt */
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}



.cd-content .container{
  max-width: var(--max);
}


.cd-content h1,
.cd-content h2,
.cd-content h3{
  font-family: "Playfair Display", serif;
  font-weight: 500;
color: #A30B66;
  margin: 0 0 14px;
  text-align: center;
}

.cd-content h2{
  font-size: 34px;
}

.cd-content p{
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: rgba(111,107,104,.82);
  margin: 0 0 14px;
}

.cd-content .cd-signature{
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: #A30B66;
  text-align: right;
  margin-top: 8px;
  letter-spacing: .2px;
}



/* zusätzliche abgerundete Box nur um den Inhalt */
.cd-content .cd-box{
  padding: 22px 24px 20px;
  border-radius: 22px;
  background: rgba(255,255,240,.85);
  border: 1px solid rgba(216,71,18,.10);
  box-shadow: var(--shadow-soft);
}


/* Praxis Galerie: gleich große Kacheln */
.praxis-gallery{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}

.praxis-gallery__item{
  display:block;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(216,71,18,.08);
  background: rgba(255,255,255,.55);
  aspect-ratio: 4 / 3;           /* <- alle gleich groß */
}

.praxis-gallery__item img{
  width:100%;
  height:100%;
  object-fit: cover;             /* <- sauberer Zuschnitt */
  display:block;
  transform: scale(1);
  transition: transform .25s ease, filter .25s ease;
}

.praxis-gallery__item:hover img{
  transform: scale(1.03);
}

/* Mobile */
@media (max-width: 720px){
  .praxis-gallery{ grid-template-columns: 1fr; }
}



/* Alternierende Content-Sections (Praxis) */
.alt-sections{
  margin-top: 14px;
  display:grid;
  gap: 18px;
}

.alt{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items:center;

  padding: 18px 18px;
  border-radius: 22px;
  background: rgba(255,255,240,.85);
  border: 1px solid rgba(216,71,18,.10);
  box-shadow: var(--shadow-soft);
}

.alt--b{
  grid-template-columns: .75fr 1.25fr;
}

.alt--b .alt__text{ order: 2; }
.alt--b .alt__media{ order: 1; }

.cd-content .alt__title{
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 26px;
  color: #A30B66;
  text-align: left;
}

.alt__p{
  margin: 0 0 10px;
  line-height: 1.85;
  color: rgba(111,107,104,.84);
  max-width: 740px;
}

.alt__note{
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(111,107,104,.68);
}

.alt__phones{
  margin: 10px 0 0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  font-weight: 700;
  color: rgba(111,107,104,.78);
}

.alt__phones a{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(216,71,18,.12);
  box-shadow: 0 10px 22px rgba(45,26,20,.06);
}

.alt__phones a:hover{
  background: rgba(216,71,18,.08);
}

.alt__media{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 10px;
}

.alt__icon{
  width: 96px;
  height: 96px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;

  background: radial-gradient(circle at 30% 30%, rgba(240,154,47,.18), rgba(255,255,255,0) 60%),
              rgba(255,255,255,.70);
  border: 1px solid rgba(216,71,18,.12);
  box-shadow: 0 14px 28px rgba(45,26,20,.10);
  color: rgba(216,71,18,.72);
}

.alt__icon svg{
  width: 44px;
  height: 44px;
}

.alt__label{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(111,107,104,.56);
  text-align:center;
}

/* Mobile: alles untereinander, Icon oben */
@media (max-width: 720px){
  .alt, .alt--b{
    grid-template-columns: 1fr;
  }
  .alt--b .alt__text{ order: 1; }
  .alt--b .alt__media{ order: 0; }
}


/* =====================================================
   Behandlungen – feste Farbreihenfolge je Zeile
   1 = rot | 2 = orange | 3 = hell
   (überschreibt manuelle card--* Klassen zuverlässig)
   ===================================================== */

/* 1. Karte jeder Reihe → ROT */
.cards > .card:nth-child(3n + 1){
  background: linear-gradient(180deg, var(--card-red), var(--card-red-2)) !important;
  color: #fff !important;
  border: none !important;
}

/* 2. Karte jeder Reihe → ORANGE */
.cards > .card:nth-child(3n + 2){
  background: linear-gradient(180deg, var(--card-orange), var(--card-orange-2)) !important;
  color: #fff !important;
  border: none !important;
}

/* 3. Karte jeder Reihe → HELL */
.cards > .card:nth-child(3n){
  background: rgba(255,255,240,.85) !important;
  color: var(--text) !important;
}


/* Text/Details absichern */
.cards > .card:nth-child(3n + 1) .card__title,
.cards > .card:nth-child(3n + 1) .card__text,
.cards > .card:nth-child(3n + 2) .card__title,
.cards > .card:nth-child(3n + 2) .card__text{
  color:#fff !important;
}

/* Buttons auf farbigen Karten */
.cards > .card:nth-child(3n + 1) .btn,
.cards > .card:nth-child(3n + 2) .btn{
  background: rgba(255,255,255,.18) !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  color:#fff !important;
}


/* =========================================
   H2 in Content-Panels: Linien + Wrap-stabil
   ========================================= */
.page__box h2{
  margin: 0 auto 14px;
  width: fit-content;
  max-width: 100%;
  text-align: center;

  font-family:"Playfair Display", serif;
  font-weight:500;
  color: #A30B66;
  font-size:34px;

  position: relative;
  padding-left: clamp(44px, 10vw, 110px);
  padding-right: clamp(44px, 10vw, 110px);
}

.page__box h2::before,
.page__box h2::after{
  content:"";
  position:absolute;
  top: 0.72em;
  width: clamp(24px, 7vw, 70px);
  height:1px;
  background: rgba(216, 71, 18, .10);
}

.page__box h2::before{ left: 0; }
.page__box h2::after{ right: 0; }

@media (max-width: 720px){
  .page__box h2{
    font-size:30px;
    padding-left: 0;
    padding-right: 0;
    width: 100%;

    /* ✅ verhindert Überlaufen langer Begriffe */
    hyphens: none;
    -webkit-hyphens: none;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .page__box h2::before,
  .page__box h2::after{
    display:none;
  }
}




.reviews-disclaimer {
  max-width: 720px;
  margin: 1.6rem auto 0;
  text-align: center;
}

.reviews-disclaimer p {
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(0,0,0,0.55);
  line-height: 1.55;
  margin: 0;
}
