/* ============================================================
   PRAXIS LEBENSLINIEN — Design System
   Skandinavisch-ruhig · Wellness · Premium
   ============================================================ */

:root {
  /* Brand palette */
  --green: #3F5E52;
  --green-deep: #2E463C;
  --green-deepest: #25382F;
  --sage: #A8B8A5;
  --sage-soft: #C4D0C0;
  --bg: #F7F5F2;
  --bg-warm: #F1ECE4;
  --surface: #FFFFFF;
  --sand: #D8CBB8;
  --gold: #C8A27A;
  --ink: #2E2E2E;
  --ink-soft: #5C5C57;
  --ink-faint: #8A897F;
  --line: #E7E2D9;

  /* Themeable */
  --accent: var(--gold);
  --accent-soft: #EADFCC;
  --radius-s: 14px;
  --radius: 22px;
  --radius-l: 32px;
  --radius-xl: 44px;
  --shadow-s: 0 4px 18px -10px rgba(46, 70, 60, 0.30);
  --shadow: 0 30px 60px -42px rgba(46, 70, 60, 0.40);
  --shadow-l: 0 50px 90px -50px rgba(46, 70, 60, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Mulish", "Segoe UI", system-ui, sans-serif;

  --container: 1180px;
  --reveal-dur: 1.05s;
}

/* Themeable accent options driven by Tweaks */
[data-accent="sand"] { --accent: #C9B79B; --accent-soft: #EADFCC; }
[data-accent="gold"] { --accent: #C8A27A; --accent-soft: #EBD9C2; }
[data-accent="sage"] { --accent: #8FA489; --accent-soft: #D7E0D3; }

[data-radius="subtil"]  { --radius-s: 8px;  --radius: 12px; --radius-l: 18px; --radius-xl: 24px; }
[data-radius="weich"]   { --radius-s: 14px; --radius: 22px; --radius-l: 32px; --radius-xl: 44px; }
[data-radius="sehr"]    { --radius-s: 20px; --radius: 30px; --radius-l: 46px; --radius-xl: 64px; }

[data-font="playfair"] { --font-display: "Playfair Display", Georgia, serif; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 400;
  overflow-x: hidden;
}

::selection { background: var(--sage); color: var(--green-deepest); }

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

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--green);
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.display {
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  line-height: 1.02;
  font-weight: 500;
}
h2.section-title { font-size: clamp(2.1rem, 4.4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.7rem); }

.kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.lead {
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 400;
}
.serif-quote { font-family: var(--font-display); font-style: italic; }

/* ---------- Layout ---------- */
.container { width: min(var(--container), 92vw); margin-inline: auto; }
.narrow { width: min(720px, 92vw); margin-inline: auto; }
section { position: relative; }
.section-pad { padding-block: clamp(80px, 12vw, 168px); }
.stack-sm > * + * { margin-top: 1rem; }
.stack > * + * { margin-top: 1.6rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--green);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.95em 1.7em;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bg);
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  box-shadow: 0 14px 30px -16px rgba(46, 70, 60, 0.55);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -16px rgba(46, 70, 60, 0.6); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn .ar { transition: transform 0.4s var(--ease); }
.btn:hover .ar { transform: translateX(4px); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--green);
  border-color: rgba(63, 94, 82, 0.32);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(63, 94, 82, 0.06); box-shadow: none; }
.btn--light { --btn-bg: var(--bg); --btn-fg: var(--green-deep); }
.btn--on-dark.btn--ghost { --btn-fg: #F4F0E9; border-color: rgba(247, 245, 242, 0.4); }
.btn--on-dark.btn--ghost:hover { background: rgba(247, 245, 242, 0.1); }
.btn--sm { padding: 0.7em 1.3em; font-size: 0.9rem; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; color: var(--green);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
  transition: gap 0.3s var(--ease), color 0.3s;
}
.text-link:hover { gap: 0.85em; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--reveal-dur) var(--ease), transform var(--reveal-dur) var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
[data-anim="off"] .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Soft decorative blobs ---------- */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; pointer-events: none; z-index: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.5s var(--ease);
}
.nav--solid { background: rgba(247, 245, 242, 0.86); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding-block: 12px; }
.nav-brand { display: flex; align-items: center; gap: 15px; z-index: 2; }
.nav-brand [data-logo] { width: 76px; flex: none; }
[data-logo] { display: inline-block; line-height: 0; }
[data-logo] svg, [data-logo] img.ll-logo-img { width: 100%; height: auto; display: block; }
.nav--solid .nav-brand [data-logo] { width: 60px; }
.nav-brand .wm { display: flex; flex-direction: column; line-height: 1; }
.nav-brand .wm b { font-family: var(--font-display); font-weight: 600; font-size: 1.34rem; color: var(--green); letter-spacing: 0.01em; }
.nav-brand .wm span { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-top: 3px; }
.nav--over-dark:not(.nav--solid) .wm b { color: #F4F0E9; }
.nav--over-dark:not(.nav--solid) .wm span { color: rgba(244, 240, 233, 0.7); }
.nav--over-dark:not(.nav--solid) .nav-links a { color: rgba(244, 240, 233, 0.86); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); position: relative; transition: color 0.3s; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0; background: var(--accent); transition: width 0.35s var(--ease); }
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; padding: 0; z-index: 70; }
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--green); margin-inline: auto; border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav--over-dark:not(.nav--solid) .nav-toggle span { background: #F4F0E9; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 65;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 0 8vw;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease);
}
.mobile-menu.open { transform: none; }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; color: var(--green); padding: 10px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }
body.menu-open { overflow: hidden; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; color: #F4F0E9; background: var(--green-deep); }
.hero-bg-grad { position: absolute; inset: 0; background:
  radial-gradient(120% 90% at 78% 12%, rgba(110, 134, 118, 0.55) 0%, transparent 55%),
  radial-gradient(80% 70% at 8% 90%, rgba(37, 56, 47, 0.9) 0%, transparent 60%);
  z-index: 0; }
.hero-inner { position: relative; z-index: 3; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; padding-top: 150px; padding-bottom: clamp(120px, 14vw, 180px); }
.hero h1 { color: #F6F2EB; }
.hero h1 em { font-style: italic; color: var(--sand); }
.hero .lead { color: rgba(244, 240, 233, 0.82); max-width: 30ch; }
.hero .kicker { color: var(--sand); }
.hero .kicker::before { background: var(--sand); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; }
.hero-reassure { display: flex; align-items: center; gap: 10px; margin-top: 30px; font-size: 0.92rem; color: rgba(244, 240, 233, 0.72); }
.hero-reassure .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 4px rgba(168, 184, 165, 0.25); }

/* Hero medallion — logo already is a circular mark, so frame it lightly */
.hero-art { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-medallion { position: relative; width: min(430px, 84%); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; }
.hero-medallion::before, .hero-medallion::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(244, 240, 233, 0.16); }
.hero-medallion::before { inset: -24px; }
.hero-medallion::after { inset: -50px; border-color: rgba(244, 240, 233, 0.09); }
.hero-medallion [data-logo] { width: 100%; filter: drop-shadow(0 32px 54px rgba(37,56,47,0.42)); }
.hero-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(244, 240, 233, 0.12); animation: spin 80s linear infinite; }
[data-anim="off"] .hero-ring, .reduce-motion .hero-ring { animation: none; }
@media (prefers-reduced-motion: reduce) { .hero-ring { animation: none; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* Hero layout variants */
[data-hero="zentriert"] .hero-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
[data-hero="zentriert"] .hero .lead { max-width: 46ch; }
[data-hero="zentriert"] .hero-actions, [data-hero="zentriert"] .hero-reassure { justify-content: center; }
[data-hero="zentriert"] .hero-art { display: none; }
[data-hero="zentriert"] .hero-center-mark { display: flex; }
.hero-center-mark { display: none; justify-content: center; margin-bottom: 8px; }
.hero-center-mark [data-logo] { width: 132px; }
[data-hero="ruhig"] .hero-art { opacity: 0.95; }
[data-hero="ruhig"] .hero-medallion::before, [data-hero="ruhig"] .hero-medallion::after { display: none; }

/* ---------- Hero mood variants (Tweaks) ---------- */
body[data-mood="salbei"] .hero,
body[data-mood="sand"] .hero { color: var(--green-deepest); }
body[data-mood="salbei"] .hero h1,
body[data-mood="sand"] .hero h1 { color: var(--green-deepest); }
body[data-mood="salbei"] .hero h1 em,
body[data-mood="sand"] .hero h1 em { color: var(--green); }
body[data-mood="salbei"] .hero .lead,
body[data-mood="sand"] .hero .lead { color: var(--green-deep); }
body[data-mood="salbei"] .hero .kicker,
body[data-mood="sand"] .hero .kicker { color: var(--green); }
body[data-mood="salbei"] .hero .kicker::before,
body[data-mood="sand"] .hero .kicker::before { background: var(--green); }
body[data-mood="salbei"] .hero-reassure,
body[data-mood="sand"] .hero-reassure { color: var(--green-deep); }
body[data-mood="salbei"] .hero-reassure .dot,
body[data-mood="sand"] .hero-reassure .dot { background: var(--green); box-shadow: 0 0 0 4px rgba(63,94,82,.18); }
body[data-mood="salbei"] .btn--light,
body[data-mood="sand"] .btn--light { --btn-bg: var(--green); --btn-fg: #fff; }
body[data-mood="salbei"] .btn--on-dark.btn--ghost,
body[data-mood="sand"] .btn--on-dark.btn--ghost { --btn-fg: var(--green); border-color: rgba(63,94,82,.34); }
body[data-mood="salbei"] .btn--on-dark.btn--ghost:hover,
body[data-mood="sand"] .btn--on-dark.btn--ghost:hover { background: rgba(63,94,82,.06); }
body[data-mood="salbei"] .hero-medallion::before,
body[data-mood="sand"] .hero-medallion::before { border-color: rgba(63,94,82,.18); }
body[data-mood="salbei"] .hero-medallion::after,
body[data-mood="sand"] .hero-medallion::after { border-color: rgba(63,94,82,.1); }
body[data-mood="salbei"] .hero-ring,
body[data-mood="sand"] .hero-ring { border-color: rgba(63,94,82,.12); }
/* nav over a light hero → dark text */
body[data-mood="salbei"] .nav--over-dark:not(.nav--solid) .wm b,
body[data-mood="sand"] .nav--over-dark:not(.nav--solid) .wm b { color: var(--green); }
body[data-mood="salbei"] .nav--over-dark:not(.nav--solid) .wm span,
body[data-mood="sand"] .nav--over-dark:not(.nav--solid) .wm span { color: var(--ink-faint); }
body[data-mood="salbei"] .nav--over-dark:not(.nav--solid) .nav-links a,
body[data-mood="sand"] .nav--over-dark:not(.nav--solid) .nav-links a { color: var(--ink-soft); }
body[data-mood="salbei"] .nav--over-dark:not(.nav--solid) .nav-toggle span,
body[data-mood="sand"] .nav--over-dark:not(.nav--solid) .nav-toggle span { background: var(--green); }

body[data-mood="salbei"] .hero { background: linear-gradient(158deg, #C9D3C5 0%, #A8B8A5 100%); }
body[data-mood="salbei"] .hero-bg-grad { opacity: .35; background: radial-gradient(120% 90% at 78% 14%, rgba(216,203,184,.7), transparent 55%); }
body[data-mood="sand"]   .hero { background: linear-gradient(158deg, #F3EEE6 0%, #E7DAC6 100%); }
body[data-mood="sand"]   .hero-bg-grad { opacity: .5; background: radial-gradient(120% 90% at 80% 12%, rgba(168,184,165,.5), transparent 55%); }
body[data-mood="salbei"] .wave path,
body[data-mood="sand"] .wave path { fill: var(--bg); }

/* wave dividers between colour bands (auto-inserted by site.js) */
.band-wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%;
  height: clamp(40px, 5.5vw, 76px); z-index: 2; pointer-events: none; line-height: 0; }
.band-wave svg { width: 100%; height: 100%; display: block; }

/* wave divider */
.wave { display: block; width: 100%; height: auto; position: relative; z-index: 2; margin-bottom: -2px; }
.wave.flip { transform: scaleY(-1); }

/* ============================================================
   GENERIC SECTION HEADERS
   ============================================================ */
.sec-head { max-width: 720px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .kicker { margin-bottom: 20px; }
.sec-head .lead { margin-top: 22px; }

/* ============================================================
   ÜBER / INTRO split
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 84px); align-items: center; }
.media-card { position: relative; border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.media-card .img-ph { width: 100%; height: 100%; }
.media-card .frame-tag { position: absolute; left: 18px; bottom: 18px; z-index: 3; background: rgba(247,245,242,0.92); color: var(--green); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 14px; border-radius: 100px; }
.media-frame-deco { position: absolute; border-radius: var(--radius-l); z-index: -1; }

/* Image placeholder — replace the inner <div class="img-ph"> with an <img>
   (e.g. <img src="assets/praxis-raum.jpg" alt="…">) once real photos exist.
   The parent (.media-card / .team-photo / .bio-photo) supplies aspect ratio,
   rounding and shadow, so a swapped-in <img> only needs object-fit:cover. */
.img-ph {
  display: grid; place-items: center; gap: 10px; text-align: center;
  padding: 24px; box-sizing: border-box;
  background:
    radial-gradient(120% 120% at 30% 18%, rgba(255,255,255,0.55), transparent 60%),
    linear-gradient(158deg, var(--sage-soft) 0%, var(--bg-warm) 100%);
  color: var(--green-deep);
}
.img-ph svg { width: 40px; height: 40px; opacity: 0.5; }
.img-ph span { font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em; max-width: 24ch; line-height: 1.4; opacity: 0.85; }
.media-card img, .team-photo img, .bio-photo img { width: 100%; height: 100%; object-fit: cover; }

.stat-row { display: flex; gap: 40px; margin-top: 38px; flex-wrap: wrap; }
.stat b { font-family: var(--font-display); font-size: 2.6rem; color: var(--green); display: block; line-height: 1; }
.stat span { font-size: 0.86rem; color: var(--ink-faint); }

/* ============================================================
   LEISTUNGEN cards
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.s-card {
  background: var(--surface); border-radius: var(--radius-l); padding: 38px 34px;
  box-shadow: var(--shadow); border: 1px solid rgba(231, 226, 217, 0.7);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex; flex-direction: column; min-height: 320px;
}
.s-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); }
.s-card .ico { width: 60px; height: 60px; border-radius: 18px; background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 26px; color: var(--green); }
.s-card .ico svg { width: 30px; height: 30px; }
.s-card h3 { margin-bottom: 12px; }
.s-card p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }
.s-card .tag { margin-top: auto; padding-top: 20px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.s-card.is-soon { background: linear-gradient(180deg, #fff, var(--bg-warm)); }

/* ============================================================
   THEMEN chips
   ============================================================ */
.themen-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(34px, 6vw, 80px); align-items: center; }
.chips { display: flex; flex-wrap: wrap; gap: 14px; }
.chip {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line);
  padding: 16px 24px; border-radius: 100px; font-weight: 600; font-size: 1.02rem; color: var(--green-deep);
  box-shadow: var(--shadow-s);
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s;
}
.chip:hover { transform: translateY(-3px); background: var(--green); color: #F4F0E9; }
.chip .glyph { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.chip:hover .glyph { background: var(--sand); }

/* ============================================================
   ABLAUF steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps::before { content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 1.5px; background: repeating-linear-gradient(90deg, var(--sage) 0 8px, transparent 8px 18px); z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; }
.step .num { width: 68px; height: 68px; border-radius: 50%; background: var(--surface); border: 1.5px solid var(--sage); color: var(--green); font-family: var(--font-display); font-size: 1.7rem; display: grid; place-items: center; margin: 0 auto 22px; box-shadow: var(--shadow-s); }
.step h3 { font-size: 1.25rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

/* ============================================================
   QUOTE band
   ============================================================ */
.quote-band { background: var(--green-deep); color: #F4F0E9; text-align: center; overflow: hidden; }
.quote-band .mark { font-family: var(--font-display); font-size: 6rem; line-height: 0.5; color: var(--sand); opacity: 0.5; }
.quote-band blockquote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.28; margin: 24px auto; max-width: 18ch; color: #F6F2EB; }
.quote-band cite { font-style: normal; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sand); }

/* ============================================================
   TEAM
   ============================================================ */
.team-photo { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-l); aspect-ratio: 16/13; }
.team-photo .img-ph { width: 100%; height: 100%; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 56px; }
.profile { background: var(--surface); border-radius: var(--radius-l); padding: 34px; box-shadow: var(--shadow); border: 1px solid rgba(231,226,217,0.7); }
.profile .pname { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.profile h3 { font-size: 1.6rem; }
.profile .role { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.profile ul { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-wrap: wrap; gap: 9px; }
.profile li { font-size: 0.86rem; background: var(--bg-warm); color: var(--green-deep); padding: 7px 14px; border-radius: 100px; }

/* ============================================================
   PREISE
   ============================================================ */
.price-hero { background: linear-gradient(150deg, var(--green) 0%, var(--green-deep) 100%); color: #F4F0E9; border-radius: var(--radius-xl); padding: clamp(34px, 5vw, 56px); display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; box-shadow: var(--shadow-l); overflow: hidden; position: relative; }
.price-hero .free-num { font-family: var(--font-display); font-size: clamp(3.4rem, 7vw, 5.4rem); line-height: 0.9; color: var(--sand); }
.price-hero p { color: rgba(244,240,233,0.85); }
.price-hero .kicker { color: var(--sand); } .price-hero .kicker::before { background: var(--sand); }

.price-tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
.tier { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-s); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.tier:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tier .yr { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; }
.tier .amt { font-family: var(--font-display); font-size: 3rem; color: var(--green); line-height: 1; margin: 14px 0 6px; }
.tier .amt small { font-size: 1rem; color: var(--ink-faint); }
.tier .note { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }
.tier.full { background: var(--green); color: #F4F0E9; border-color: var(--green); }
.tier.full .yr { color: var(--sand); } .tier.full .amt { color: #F6F2EB; } .tier.full .note { color: rgba(244,240,233,0.8); }
.price-foot { margin-top: 22px; font-size: 0.92rem; color: var(--ink-faint); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: var(--surface); border-radius: var(--radius-l); padding: 36px 32px; box-shadow: var(--shadow); border: 1px solid rgba(231,226,217,0.7); display: flex; flex-direction: column; }
.testi .stars { color: var(--gold); letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 18px; }
.testi p { font-family: var(--font-display); font-style: italic; font-size: 1.32rem; line-height: 1.5; color: var(--green-deep); margin: 0 0 24px; }
.testi .who { margin-top: auto; display: flex; align-items: center; gap: 14px; }
.testi .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--accent-soft); color: var(--green); display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); font-size: 1.2rem; }
.testi .who b { display: block; font-size: 0.96rem; color: var(--ink); }
.testi .who span { font-size: 0.82rem; color: var(--ink-faint); }

/* ============================================================
   BOOKING / TERMIN
   ============================================================ */
.booking { background: var(--surface); border-radius: var(--radius-xl); box-shadow: var(--shadow-l); border: 1px solid rgba(231,226,217,0.7); overflow: hidden; display: grid; grid-template-columns: 0.9fr 1.1fr; }
.booking-aside { background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%); color: #F4F0E9; padding: clamp(34px, 4vw, 52px); position: relative; }
.booking-aside h3 { color: #F6F2EB; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.booking-aside .kicker { color: var(--sand); } .booking-aside .kicker::before { background: var(--sand); }
.booking-aside ul { list-style: none; padding: 0; margin: 30px 0 0; }
.booking-aside li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-top: 1px solid rgba(244,240,233,0.16); font-size: 0.96rem; color: rgba(244,240,233,0.9); }
.booking-aside li:first-child { border-top: none; }
.booking-aside li svg { flex: none; margin-top: 2px; color: var(--sand); }
.booking-main { padding: clamp(30px, 4vw, 48px); }
.booking-step-label { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin: 16px 0 18px; }
.cal-head .mname { font-family: var(--font-display); font-size: 1.5rem; color: var(--green); }
.cal-nav { display: flex; gap: 8px; }
.cal-nav button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg); color: var(--green); cursor: pointer; display: grid; place-items: center; transition: background 0.3s, transform 0.3s; }
.cal-nav button:hover:not(:disabled) { background: var(--sage-soft); }
.cal-nav button:disabled { opacity: 0.35; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-grid .dow { text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); padding-bottom: 8px; }
.cal-day { aspect-ratio: 1; border: none; background: none; border-radius: 12px; font-family: var(--font-body); font-size: 0.96rem; color: var(--ink); cursor: pointer; transition: background 0.25s, color 0.25s, transform 0.25s; position: relative; }
.cal-day.empty { pointer-events: none; }
.cal-day.disabled { color: var(--ink-faint); opacity: 0.4; cursor: default; }
.cal-day.avail:hover { background: var(--sage-soft); transform: scale(1.06); }
.cal-day.avail::after { content: ""; position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.cal-day.selected { background: var(--green); color: #fff; }
.cal-day.selected::after { background: var(--sand); }
.slots { margin-top: 26px; }
.slots h4 { font-family: var(--font-body); font-size: 0.9rem; color: var(--ink-soft); font-weight: 600; margin: 0 0 14px; }
.slot-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 10px; }
.slot { padding: 12px 8px; border: 1.5px solid var(--line); background: var(--bg); border-radius: 12px; font-weight: 600; font-size: 0.92rem; color: var(--green-deep); cursor: pointer; transition: all 0.25s; }
.slot:hover { border-color: var(--sage); background: #fff; }
.slot.selected { background: var(--green); color: #fff; border-color: var(--green); }
.booking-empty { color: var(--ink-faint); font-size: 0.95rem; padding: 18px 0; }
.booking-confirm { margin-top: 26px; padding: 22px 24px; background: var(--accent-soft); border-radius: var(--radius); display: none; align-items: center; gap: 16px; }
.booking-confirm.show { display: flex; }
.booking-confirm .ok { width: 44px; height: 44px; flex: none; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; }
.booking-confirm b { color: var(--green-deep); }
.booking-confirm span { font-size: 0.9rem; color: var(--ink-soft); }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 72px); align-items: start; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-s);
  padding: 14px 16px; transition: border-color 0.3s, box-shadow 0.3s; resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 4px rgba(168,184,165,0.25); }
.form-hint { font-size: 0.82rem; color: var(--ink-faint); margin: -6px 0 14px; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.84rem; line-height: 1.5; color: var(--ink-soft); margin: 0 0 18px; cursor: pointer; }
.consent input { flex: none; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); cursor: pointer; }
.consent a { color: var(--green); border-bottom: 1px solid var(--accent); }
#cfStatus.ok { color: var(--green); }
#cfStatus.err { color: #b3261e; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-info .row { display: flex; gap: 16px; align-items: flex-start; }
.contact-info .row .ico { width: 46px; height: 46px; flex: none; border-radius: 14px; background: var(--accent-soft); color: var(--green); display: grid; place-items: center; }
.contact-info .row b { display: block; color: var(--green-deep); font-size: 1rem; }
.contact-info .row span, .contact-info .row a { color: var(--ink-soft); font-size: 0.96rem; }
.map-card { margin-top: 8px; border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow); position: relative; height: 220px; background: linear-gradient(160deg, #E4E9E1, #D3DCCF); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-deepest); color: rgba(244,240,233,0.78); padding: clamp(60px, 8vw, 90px) 0 40px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand [data-logo] { width: 90px; margin-bottom: 18px; }
.footer-brand b { font-family: var(--font-display); font-size: 1.5rem; color: #F6F2EB; display: block; }
.footer-brand p { max-width: 34ch; font-size: 0.95rem; margin-top: 14px; }
.footer h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sand); font-weight: 700; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 0.96rem; transition: color 0.3s; }
.footer ul a:hover { color: #F6F2EB; }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(244,240,233,0.14); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 0.84rem; color: rgba(244,240,233,0.55); }
.footer-bottom a { color: inherit; border-bottom: 1px solid rgba(244,240,233,0.3); padding-bottom: 1px; transition: color 0.3s, border-color 0.3s; }
.footer-bottom a:hover { color: #F6F2EB; border-color: var(--sand); }

/* ============================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================================ */
.legal { max-width: 760px; }
.legal .lead-intro { font-size: clamp(1.05rem, 1.5vw, 1.22rem); line-height: 1.7; color: var(--ink-soft); margin: 0 0 8px; }
.legal h2 { font-size: clamp(1.25rem, 2.1vw, 1.6rem); margin: 46px 0 14px; }
.legal section + section, .legal .lg-sec { margin: 0; }
.legal p { margin: 0 0 14px; color: var(--ink-soft); }
.legal ul { list-style: none; padding: 0; margin: 4px 0 18px; }
.legal ul li { position: relative; padding-left: 22px; margin-bottom: 9px; color: var(--ink-soft); }
.legal ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.legal a { color: var(--green); border-bottom: 1px solid var(--accent); padding-bottom: 1px; transition: gap 0.3s, color 0.3s; }
.legal a:hover { color: var(--green-deep); }
.legal mark.ph { background: var(--accent-soft); color: var(--green-deep); padding: 1px 7px; border-radius: 6px; font-style: italic; font-size: 0.94em; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.legal-disclaimer { margin-top: 44px; padding: 20px 24px; background: var(--bg-warm); border-left: 3px solid var(--accent); border-radius: 0 12px 12px 0; font-size: 0.92rem; color: var(--ink-soft); }
.legal-disclaimer strong { color: var(--green-deep); }

/* ============================================================
   ÜBER-UNS PAGE
   ============================================================ */
.page-hero { background: var(--green-deep); color: #F4F0E9; padding: 170px 0 clamp(70px,9vw,120px); position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 { color: #F6F2EB; font-size: clamp(2.8rem, 6vw, 4.6rem); }
.page-hero .lead { color: rgba(244,240,233,.84); margin-top: 22px; }
.page-hero .kicker { color: var(--sand); } .page-hero .kicker::before { background: var(--sand); }

.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,6vw,84px); align-items: center; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value { background: var(--surface); border: 1px solid rgba(231,226,217,.7); border-radius: var(--radius-l); padding: 34px 30px; box-shadow: var(--shadow); transition: transform .5s var(--ease); }
.value:hover { transform: translateY(-5px); }
.value .vn { font-family: var(--font-display); font-size: 1.5rem; color: var(--green); margin-bottom: 8px; }
.value .vi { width: 46px; height: 46px; border-radius: 14px; background: var(--accent-soft); color: var(--green); display: grid; place-items: center; margin-bottom: 20px; }
.value p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

.bio { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px,5vw,64px); align-items: center; }
.bio + .bio { margin-top: clamp(50px,7vw,90px); }
.bio.flip .bio-photo { order: 2; }
.bio-photo { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-l); aspect-ratio: 4/5; }
.bio-photo .img-ph { width: 100%; height: 100%; }
.bio .role { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.bio h3 { font-size: clamp(1.9rem,3vw,2.5rem); margin: 10px 0 16px; }
.bio ul.quals { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-wrap: wrap; gap: 9px; }
.bio ul.quals li { font-size: .86rem; background: var(--bg-warm); color: var(--green-deep); padding: 8px 15px; border-radius: 100px; }
.vita { margin-top: 30px; }
.vita h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; margin: 0 0 16px; }
.vita ol { list-style: none; padding: 0; margin: 0; }
.vita li { display: grid; grid-template-columns: 84px 1fr; gap: 18px; padding: 14px 0; border-top: 1px solid var(--line); }
.vita li:first-child { border-top: none; }
.vita .yr { font-family: var(--font-display); font-size: 1.15rem; color: var(--green); font-weight: 600; }
.vita .ev b { display: block; color: var(--ink); font-size: 1rem; }
.vita .ev span { color: var(--ink-faint); font-size: .9rem; }
.vita .ph { color: var(--ink-faint); font-style: italic; }
.vita-note { margin-top: 14px; font-size: .82rem; color: var(--ink-faint); }

/* About: joint photo + two text columns below */
.bios-below { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); margin-top: clamp(40px, 5vw, 62px); }
.bio-text .role { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.bio-text h3 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin: 8px 0 14px; }
.bio-text ul.quals { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-wrap: wrap; gap: 9px; }
.bio-text ul.quals li { font-size: .86rem; background: var(--bg-warm); color: var(--green-deep); padding: 8px 15px; border-radius: 100px; }
.about-photo { aspect-ratio: 16/10; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .cards-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .steps::before { display: none; }
  .price-tiers { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner, .split, .themen-wrap, .price-hero, .booking, .contact-grid, .story, .bio { grid-template-columns: 1fr; }
  .bio.flip .bio-photo { order: -1; }
  .values { grid-template-columns: 1fr 1fr; }
  .bios-below { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 120px; text-align: left; }
  .hero-art { display: none; }
  .hero-center-mark { display: flex; justify-content: flex-start; }
  .split .media-card { order: -1; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .booking-aside { order: -1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cards-grid, .testi-grid, .price-tiers, .values { grid-template-columns: 1fr; }
  .chips { gap: 10px; }
  .stat-row { gap: 26px; }
  .footer-top { grid-template-columns: 1fr; }
}
