:root{
  --bg:#fbf6f1;               /* warmes Creme */
  --rose:#ead1dc;             /* helles Rosé */
  --text:#3a2a33;
  --muted:#6f5a65;

  --brand:#8a3d6b;            /* violett */
  --gold:#f2b34b;             /* gold */

  --card:#ffffff;
  --line:#e4cfdc;

  --shadow: 0 10px 30px rgba(58,42,51,.08);
  --shadow2: 0 18px 45px rgba(58,42,51,.14);

  --radius: 16px;
  --nav-h: 64px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
  line-height:1.55;
}
.container{width:min(1100px, 92vw); margin:0 auto}

h2{font-size:1.9rem; margin:0 0 12px}
h3{margin:14px 0 10px; color:var(--brand)}
.lead{font-size:1.1rem; color:var(--muted)}
.emph{font-weight:850; color:var(--brand)}
.small{font-size:.92rem; color:var(--muted)}
.center{text-align:center}
.list{padding-left:18px}
.list li{margin:8px 0}

/* ---------- PDF Typografie / Zeilenumbrüche ---------- */
.pdf-h2{
  max-width: 34ch;
  margin: 0 auto 10px;
  line-height: 1.18;
  letter-spacing: .01em;
}
.pdf-prose{
  max-width: 70ch;
}
.pdf-prose p{
  margin: 0 0 16px;
  line-height: 1.85;
  color: var(--muted);
  font-size: 1.05rem;
}
.pdf-prose p:last-child{ margin-bottom: 0; }
.pdf-prose .emph{ color: var(--brand); }
.pdf-prose ul.list{ margin: 10px 0 16px; }
.pdf-prose ul.list ul.list{ margin: 8px 0 0 18px; }

.pdf-prose--contact p{
  color: var(--text);
  line-height: 1.75;
}

@media (max-width: 900px){
  .pdf-prose{ max-width: 100%; }
  .pdf-h2{ max-width: 24ch; }
}

.section{padding:72px 0}
.section--rose{
  background: var(--rose);
  border-top:1px solid rgba(255,255,255,.55);
  border-bottom:1px solid rgba(255,255,255,.55);
}
.section--creme{
  background: var(--bg);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section--start{
  background:#f6e2c7; /* warmes beige aus dem PDF */
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.section-title{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

/* ---------- HERO ---------- */
.hero{
  background-size:cover;
  background-position:center;
  position:relative;
  background-color:#2b1b25;
}
.hero__overlay{
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.12));
  min-height:inherit;
  display:flex;
  align-items:center;
}
.hero__content{
  position:relative;
  width:100%;
  min-height:inherit;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Startseite: nur Logo */
.hero--home{ min-height: 60vh; }
.hero--logo-only .hero__content{ justify-content:center; }
.hero-center-logo{
  max-width: 440px;
  width: 82%;
  padding: 44px 0; /* verhindert Abschneiden */
  pointer-events:none;
  opacity:.95;
}
.hero-center-logo img{
  width:100%;
  height:auto;
  display:block;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.35));
}

/* Über mich: Header mit Text (zentriert) */
.hero--page{ min-height: 32vh; }
.hero-brand--center{
  text-align:center;
  margin: 0 auto;
  color:#fff;
}
.hero-brand__kicker{
  letter-spacing:.14em;
  font-weight:750;
  font-size: 1.0rem;
}
.hero-brand__name{
  font-size:2rem;
  font-weight:850;
  margin-top:6px;
}

/* Unterseiten schlank */
.hero--slim{ min-height: 150px; }

/* ---------- NAV ---------- */
.nav{
  position:sticky;
  top:0;
  z-index:50;
  height: var(--nav-h);
  display:flex;
  align-items:center;
  background: var(--brand);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  gap:12px;
}
.nav__brand{
  color:#fff;
  text-decoration:none;
  font-size:1.35rem;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
}
.nav__toggle{display:none}
.nav__menu{
  list-style:none;
  display:flex;
  gap:0;
  margin:0;
  padding:0;
}
.nav__menu a{
  color:#fff;
  text-decoration:none;
  padding: 16px 22px;
  font-weight:750;
  display:inline-block;
}
.nav__menu a:hover{background: rgba(255,255,255,.12)}
.is-active{background: rgba(255,255,255,.14)}

/* ---------- Layout Grids ---------- */
.content-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:28px;
  align-items:start;
}
.aside-stack{
  display:grid;
  gap:14px;
  justify-items:end; /* rechtsbündig wie PDF */
}
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:28px;
  align-items:start;
}
@media (max-width:900px){
  .content-grid, .grid-2{grid-template-columns:1fr}
  .aside-stack{justify-items:center}
}

/* ---------- Startseite Quote Layout ---------- */
.start-grid{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:34px;
  align-items:center;
}
.start-badge{max-width:340px; margin:0 auto;}
.start-quote{
  color: var(--muted);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.9;
}
.start-quote p{ margin: 0 0 14px; }
@media (max-width:900px){
  .start-grid{grid-template-columns:1fr}
  .start-quote{font-size:1.2rem; line-height:1.75}
}

/* ---------- Cards / Pricing ---------- */
.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card__body{padding:18px}
.pricing .card h3{margin-top:0}

/* ---------- Callout ---------- */
.callout{
  margin-top:16px;
  display:flex;
  gap:12px;
  align-items:flex-start;
  background: rgba(255,255,255,.55);
  border:1px solid rgba(255,255,255,.7);
  border-radius:14px;
  padding:12px;
}
.callout__bar{
  width:4px;
  border-radius:99px;
  background: var(--gold);
  min-height:44px;
}
.callout__text{margin:0; color:var(--muted)}

/* ---------- Form ---------- */
.form{display:grid; gap:12px}
label{display:grid; gap:6px; font-weight:650}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid #d8c2cf;
  outline:none;
  font: inherit;
  background:#fffaf7;
}
input:focus, textarea:focus{border-color: var(--brand)}
.checkbox{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight:520;
}
.checkbox input{width:auto; margin-top:3px}
.btn{
  border:0;
  background: linear-gradient(90deg, var(--brand), #6c2b52);
  color:#fff;
  padding:12px 14px;
  border-radius: 14px;
  font-weight:850;
  cursor:pointer;
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
}
.btn:hover{filter: brightness(1.05)}
.alert{
  padding:10px 12px;
  border-radius: 12px;
  margin-bottom:12px;
  border:1px solid var(--line);
}
.alert.success{background:#eef9f0}
.alert.error{background:#fdeeee}
.contact a{color:var(--brand); text-decoration:none; font-weight:650}
.contact a:hover{text-decoration:underline}

/* ---------- Rounded images + hover ---------- */
.round-img{
  display:block;
  border-radius:999px;
  width:100%;
  height:auto;
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}
.round-img:hover{
  transform: scale(1.03) rotate(-.25deg);
  box-shadow: var(--shadow2);
  filter: saturate(1.03) contrast(1.02);
}
.badge{
  width:64px;
  height:64px;
  flex:0 0 64px;
  object-fit:contain;
  box-shadow:none;
}
.badge:hover{
  transform: scale(1.06);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.feature{max-width:340px}
.about-big{max-width:380px}

/* ---------- Legal box ---------- */
.legal{
  background: rgba(255,255,255,.55);
  border:1px solid rgba(255,255,255,.7);
  border-radius:14px;
  padding:14px;
}

/* ---------- Footer ---------- */
.footer{
  background:#2b1b25;
  color:#ddd;
  padding:26px 0;
}
.footer a{color:#fff; text-decoration:none}
.footer a:hover{text-decoration:underline}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer__brand{font-weight:850; margin-bottom:6px}


/* =========================
   SEITENSPEZIFISCHE BILDGRÖSSEN (PDF-nah)
========================= */

/* Startseite */
.start-badge{ max-width:300px; }

/* Osteopathie */
.page-osteopathie .feature{ max-width:260px; }
.page-osteopathie .aside-stack{ gap:18px; }

/* Physiotherapie */
.page-physiotherapie .feature{ max-width:280px; }

/* Über mich */
.page-ueber-mich .about-big{ max-width:420px; }
.page-ueber-mich .feature{ max-width:240px; }

/* Angebot */
.page-angebot .about-big{ max-width:320px; }

/* Kontakt */
.page-kontakt .about-big{ max-width:300px; }



/* =========================
   GLOBAL: EINHEITLICHER HEADER (alle Seiten gleich)
========================= */
.hero--fixed{
  min-height: 340px;
  background-position: center;
}
.hero__content--center{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 340px;
}
@media (max-width: 900px){
  .hero--fixed{ min-height: 280px; }
  .hero__content--center{ min-height: 280px; }
}
.hero-center-logo{
  max-width: 420px;
  width: 78%;
  padding: 24px 0;
  opacity: .95;
}
.hero-center-logo img{
  width: 100%;
  height: auto;
  display:block;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.35));
}

/* Alte hero-Modi neutralisieren (falls noch vorhanden) */
.hero--home, .hero--logo-only, .hero--page, .hero--slim{ min-height: unset !important; }


/* =========================
   NAV BRAND ICON (aus AI -> SVG)
========================= */
.nav__brand--icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width: 54px;
  height: 44px;
  padding: 6px 8px;
}
.nav__brand--icon img{
  height: 22px;          /* passend zur Menuschrift */
  width: auto;
  display:block;
}
@media (max-width:760px){
  .nav__brand--icon img{ height: 20px; }
}
