/* ============================================================
   Sophie Roland-Zahri — Coaching · Supervision · Beratung
   Stylesheet
   ============================================================ */

/* BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

/* Bild-Grundregeln — die Attribute width/height reservieren nur den Platz
   (verhindert Layoutsprünge); die tatsächliche Größe bestimmt das Stylesheet. */
img, svg, video { max-width: 100%; }
img:where([width][height]) { height: auto; }
body { font-family: var(--font-sans); background: var(--rose-bg-1); color: var(--c-white); overflow-x: hidden; }

/* ============================================================
   CURSOR
   Die Regeln mit cursor:none unten greifen erst, wenn app.js den
   eigenen Cursor erfolgreich initialisiert und die Klasse
   custom-cursor-ready auf <html> gesetzt hat. Ohne JS (oder falls
   die Initialisierung fehlschlägt) bleibt überall der native
   Systemcursor sichtbar.
   ============================================================ */
html:not(.custom-cursor-ready) * { cursor: auto !important; }
.cur {
  position: fixed; width: 8px; height: 8px; background: var(--c-gold);
  border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate3d(-50%, -50%, 0); mix-blend-mode: difference;
  transition: opacity 0.2s; opacity: 0;
  will-change: transform, opacity;
}
.cur-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(var(--gold-rgb),0.4); border-radius: 50%;
  pointer-events: none; z-index: 9998; transform: translate3d(-50%, -50%, 0);
  transition: width 0.22s, height 0.22s, border-color 0.22s, opacity 0.2s;
  opacity: 0;
  will-change: transform, width, height, border-color, opacity;
}
.cur-ring.big { width: 56px; height: 56px; border-color: var(--c-gold-text); }
.cur.show,
.cur-ring.show { opacity: 1; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 0 56px; height: 66px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.on {
  background: var(--overlay-dark);
  -webkit-backdrop-filter: blur(22px); backdrop-filter: blur(22px);
  border-color: rgba(var(--white-rgb),0.86);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
  color: var(--c-cream); letter-spacing: 0.2px; line-height: 1;
  cursor: none; text-decoration: none;
  min-height: 44px;
}
.nav-brand-logo {
  height: 38px; width: auto; object-fit: contain;
  background: var(--c-white);
  border-radius: var(--radius-xs);
  padding: 4px 8px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}
.nav-logo-txt { display: block; }
.nav-logo small {
  display: block; font-family: var(--font-sans); font-size: 9px;
  letter-spacing: 3.2px; text-transform: uppercase;
  color: var(--c-gold-text); font-weight: 300; margin-top: 3px;
}
.nav-menu { display: flex; align-items: center; gap: 32px; flex: 1; justify-content: flex-end; }
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 12px; color: rgba(var(--white-rgb),0.88); text-decoration: none;
  font-weight: 400; letter-spacing: 0.3px; transition: color 0.2s; cursor: none;
  display: inline-flex; align-items: center; min-height: 44px;
}
.nav-links a:hover { color: var(--c-cream); }
.nav-links-legal { display: none; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-cert { display: flex; align-items: center; gap: 7px; opacity: 0.7; transition: opacity 0.2s; }
.nav-cert:hover { opacity: 1; }
.nav-cert img { height: 28px; width: auto; object-fit: contain; background: var(--c-white); padding: 3px 6px; border-radius: var(--radius-xs); }
.nav-cta {
  background: transparent; color: var(--c-gold-text);
  border: 1px solid rgba(var(--gold-rgb),0.55); padding: 9px 22px;
  font-size: 11px; font-family: var(--font-sans); font-weight: 500;
  letter-spacing: 1.2px; text-transform: uppercase; transition: all 0.25s; cursor: none;
  min-height: 44px;
}
.nav-cta:hover { background: rgba(var(--gold-rgb),0.14); border-color: var(--c-gold-text); }

/* Mobile hamburger toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  z-index: 620;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--c-cream); border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  pointer-events: none;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   STICKY CTA
   ============================================================ */
.scta {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--c-ink); border-radius: var(--radius-pill); padding: 13px 28px;
  display: flex; align-items: center; gap: 18px; z-index: 400;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s;
  opacity: 0; white-space: nowrap; box-shadow: var(--shadow-xl);
}
.scta.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.scta-txt { font-size: 13px; color: var(--c-white); font-weight: 400; }
.scta-btn {
  background: var(--c-white); color: var(--c-ink); border: none;
  padding: 8px 18px; border-radius: var(--radius-pill); font-size: 12px;
  font-family: var(--font-sans); font-weight: 600; cursor: none; transition: all 0.2s;
}
.scta-btn:hover { background: var(--c-cream-hi); transform: scale(1.03); }
.scta-ph { font-size: 11px; color: rgba(var(--white-rgb),0.92); font-family: var(--font-mono); letter-spacing: 0.5px; display: inline-flex; align-items: center; min-height: 44px; }

.rfix-contact {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 390;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: opacity .28s ease, transform .28s ease;
}

body.in-kontakt .rfix-contact {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(26px);
}

.rfix-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(var(--gold-rgb),0.58);
  background: rgba(var(--ink-rgb),0.82);
  color: var(--c-white);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.3px;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(0,0,0,0.26);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.25s;
  cursor: none;
}

.rfix-btn:hover {
  transform: translateX(-4px);
  border-color: var(--c-gold-text);
}

.rfix-btn-phone {
  background: rgba(var(--gold-rgb),0.16);
}

.rfix-btn-wa {
  background: var(--c-ink);
  color: var(--c-white);
  border-color: rgba(var(--white-rgb),0.86);
}

.rfix-btn-form {
  background: rgba(var(--ink-rgb),0.86);
  animation: ctaGlow 4.8s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--gold-rgb),0); }
  50% { box-shadow: 0 0 0 6px rgba(var(--gold-rgb),0.08), 0 14px 32px rgba(var(--gold-rgb),0.18); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 55% 45%;
  position: relative; overflow: hidden; background: var(--rose-bg-1);
  --parallax-x: 0px;
  --parallax-y: 0px;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1; opacity: 0.6;
}
.hero-orb {
  position: absolute; top: -10%; right: 30%; width: 70vw; height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,0.16) 0%, rgba(var(--gold-rgb),0.08) 45%, transparent 68%);
  pointer-events: none; z-index: 1;
}
.hero-orb2 {
  position: absolute; bottom: -20%; left: -5%; width: 45vw; height: 45vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
}

/* Hero Left */
.hero-left {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 120px 56px 48px; position: relative; z-index: 3;
  min-width: 0;
}

.hero-heading {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 0;
}

/* Cert Badge Hero */
.hero-cert { display: flex; align-items: center; gap: 14px; margin-bottom: 40px; animation: fadeUp 1s 0.05s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.cert-logo { height: 40px; width: auto; object-fit: contain; background: var(--c-white); padding: 4px 8px; border-radius: var(--radius-xs); opacity: 0.75; transition: opacity 0.3s; }
.cert-logo:hover { opacity: 1; }
.cert-divider { width: 1px; height: 28px; background: rgba(var(--white-rgb),0.12); }
.cert-text { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(var(--white-rgb),0.86); font-weight: 300; line-height: 1.6; }
.cert-text { color: rgba(var(--ink-rgb),0.9); font-weight: 500; }

.hero-kicker {
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(var(--white-rgb),0.86);
  margin: 0 0 14px; position: relative; z-index: 1;
  animation: up 1.2s 0.05s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-h1 {
  font-family: var(--font-serif); font-size: clamp(46px, 9.5vw, 124px);
  line-height: 0.87; font-weight: 300; letter-spacing: -3px; color: var(--c-cream);
  position: relative; z-index: 1; animation: up 1.2s 0.1s cubic-bezier(0.16,1,0.3,1) both;
  margin: 0;
}
.hero-h1 em { font-style: italic; color: var(--c-gold-display); display: block; }
@keyframes up { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }

.hero-btm {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(var(--white-rgb),0.07);
  position: relative; z-index: 1; animation: up 1.2s 0.22s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-desc { font-size: 14px; color: rgba(var(--white-rgb),0.92); line-height: 1.8; font-weight: 300; max-width: 460px; }
.hero-desc strong { color: rgba(var(--white-rgb),0.95); font-weight: 400; }
.hero-acts { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.hero-btn1 {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-gold); color: var(--c-ink); border: none;
  padding: 16px 36px; font-size: 13px; font-family: var(--font-sans);
  font-weight: 600; letter-spacing: 0.2px; transition: all 0.25s; cursor: none;
  position: relative; overflow: hidden; text-decoration: none;
}
.hero-btn1::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(var(--white-rgb),0.12), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.hero-btn1:hover { background: var(--c-gold-hi); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(var(--gold-rgb),0.25); }
.hero-btn1:hover::after { opacity: 1; }
.hero-btn2 {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(var(--white-rgb),0.26); color: rgba(var(--ink-rgb),0.9);
  border: 1px solid rgba(var(--ink-rgb),0.22); padding: 14px 24px;
  font-size: 12px; font-family: var(--font-sans); font-weight: 300;
  transition: all 0.25s; cursor: none; text-decoration: none;
}
.hero-btn2:hover { border-color: rgba(var(--ink-rgb),0.35); color: var(--c-ink); background: rgba(var(--white-rgb),0.34); }

.scroll-hint {
  position: absolute; bottom: 34px; left: 77%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(var(--white-rgb),0.86); font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; z-index: 3; animation: bob 3.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(var(--white-rgb),0.16), transparent);
  animation: sline 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}
@keyframes sline {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero Photo */
.hero-photo {
  position: relative; overflow: hidden; min-height: 100vh; z-index: 2; border-radius: 0 0 0 96px;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  will-change: transform;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: grayscale(7%) contrast(1.06);
  animation: heroBreathe 18s ease-in-out infinite;
  transform-origin: center 24%;
  will-change: transform;
}
@keyframes heroBreathe {
  0%, 100% { transform: scale(1.03); }
  50% { transform: scale(1.07); }
}
.hero-photo-grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--rose-bg-1) 0%, rgba(122,81,99,0.12) 28%, transparent 55%, transparent 75%, var(--rose-bg-1) 100%),
    linear-gradient(to top, var(--rose-bg-1) 0%, transparent 22%);
}

.funnel-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background: var(--rose-bg-2);
  border-top: 1px solid rgba(var(--white-rgb),0.08);
  border-bottom: 1px solid rgba(var(--white-rgb),0.08);
  padding: 16px 22px;
}
.funnel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(var(--white-rgb),0.22);
  background: rgba(var(--ink-rgb),0.22);
  color: var(--c-cream);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.funnel-link span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--white-rgb),0.18);
  font-size: 11px;
  font-weight: 700;
}
.funnel-link:hover {
  transform: translateY(-1px);
  border-color: var(--c-gold-text);
  background: rgba(var(--gold-rgb),0.18);
}
.funnel-link.is-active {
  border-color: var(--c-gold-text);
  background: rgba(var(--gold-rgb),0.32);
  color: var(--c-ink);
}
.funnel-link.is-active span {
  background: rgba(var(--ink-rgb),0.72);
  color: var(--c-white);
}

/* ============================================================
   CERT STRIP
   ============================================================ */
.cert-strip {
  background: var(--rose-bg-2); padding: 22px 56px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(var(--white-rgb),0.04); border-bottom: 1px solid rgba(var(--white-rgb),0.04);
}
.cert-strip-l { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(var(--white-rgb),0.86); font-weight: 300; }
.cert-strip-l { color: rgba(var(--ink-rgb),0.76); font-weight: 500; }
.cert-logos { display: flex; align-items: center; gap: 32px; }
.cert-logo-item { display: flex; align-items: center; gap: 10px; }
.cert-logo-img { height: 36px; width: auto; object-fit: contain; background: var(--c-white); padding: 4px 8px; border-radius: var(--radius-xs); opacity: 0.7; transition: opacity 0.25s; }
.cert-logo-img:hover { opacity: 1; }
.cert-logo-label { font-size: 10px; color: rgba(var(--white-rgb),0.86); letter-spacing: 1px; font-weight: 300; }
.cert-logo-label { color: rgba(var(--ink-rgb),0.76); font-weight: 500; }
.cert-strip-divider { width: 1px; height: 28px; background: rgba(var(--white-rgb),0.08); }
.cert-strip-r { font-size: 12px; color: var(--c-gold-text); font-weight: 300; letter-spacing: 0.5px; }
.cert-strip-r { color: rgba(var(--ink-rgb),0.72); font-weight: 500; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker { background: var(--rose-bg-3); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.ticker-t { display: inline-flex; animation: tick 32s linear infinite; }
.ticker-i { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(var(--white-rgb),0.92); padding: 0 34px; font-weight: 300; }
.ticker-sep { color: var(--c-gold-text); padding: 0 4px; }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   STATEMENT
   ============================================================ */
.statement {
  padding: 120px 56px; background: var(--rose-bg-1);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.stmt-q {
  font-family: var(--font-serif); font-size: clamp(26px, 3.2vw, 44px);
  font-style: italic; font-weight: 300; color: var(--c-cream);
  line-height: 1.32; position: relative; padding-left: 26px;
}
.stmt-q::before {
  content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px;
  background: linear-gradient(to bottom, var(--c-ink), rgba(var(--ink-rgb),0));
}
.stmt-attr { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--c-gold-text); margin-top: 22px; font-weight: 300; }
.stmt-r { display: flex; flex-direction: column; gap: 26px; }
.stmt-k { font-size: 10px; letter-spacing: 3.2px; text-transform: uppercase; color: var(--c-gold-text); font-weight: 300; }
.stmt-txt { font-size: 15px; color: rgba(var(--white-rgb),0.92); line-height: 2; font-weight: 300; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 8px; }
.stat-n { font-family: var(--font-serif); font-size: clamp(40px, 5vw, 64px); font-weight: 300; color: var(--c-cream); line-height: 1; letter-spacing: -1px; }
.stat-n-ma { font-size: clamp(30px,3.8vw,50px); line-height: 1.1; }
.stat-n sup { font-size: 0.36em; color: var(--c-gold-text); letter-spacing: 0; }
.stat-l { font-size: 11px; color: rgba(var(--white-rgb),0.86); letter-spacing: 0.6px; margin-top: 5px; line-height: 1.5; }

/* ============================================================
   TRUST / ZERTIFIZIERUNG
   ============================================================ */
.trust { padding: 80px 56px; background: var(--rose-bg-2); border-top: 1px solid rgba(var(--white-rgb),0.04); }
.trust-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.trust-k { font-size: 10px; letter-spacing: 3.2px; text-transform: uppercase; color: var(--c-gold-text); font-weight: 300; margin-bottom: 16px; }
.trust-h { font-family: var(--font-serif); font-size: clamp(30px, 4vw, 50px); font-weight: 300; color: var(--c-cream); margin-bottom: 48px; letter-spacing: -1px; }
.trust-h em { font-style: italic; color: var(--c-gold-display); }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.trust-logo-box { display: flex; flex-direction: column; align-items: center; gap: 14px; transition: opacity 0.25s; opacity: 0.75; }
.trust-logo-box:hover { opacity: 1; }
.trust-logo-box img { height: 56px; width: auto; object-fit: contain; background: var(--c-white); padding: 8px 14px; border-radius: var(--radius-sm); }
.trust-logo-name { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(var(--white-rgb),0.86); font-weight: 300; }
.trust-logo-name a { color: rgba(var(--white-rgb),0.86); text-decoration: none; border-bottom: 1px solid rgba(var(--gold-rgb),0.35); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.trust-logo-name a:hover { color: var(--c-gold-text); border-color: var(--c-gold-text); }
.trust-divider { width: 1px; height: 48px; background: rgba(var(--white-rgb),0.08); }
.trust-badges {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  margin-top: 52px; padding-top: 40px; border-top: 1px solid rgba(var(--white-rgb),0.05); flex-wrap: wrap;
}
.trust-badge { display: flex; align-items: center; gap: 10px; }
.trust-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-gold); opacity: 0.6; flex-shrink: 0; }
.trust-badge-txt { font-size: 12px; color: rgba(var(--white-rgb),0.86); font-weight: 300; letter-spacing: 0.3px; }

/* ============================================================
   KOOPERATION / ONLINE-KURS
   ============================================================ */
.kooperation {
  background: var(--rose-night);
  border-top: 1px solid rgba(var(--white-rgb),0.04);
  border-bottom: 1px solid rgba(var(--white-rgb),0.04);
  padding: 72px 56px;
}
.kooperation-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(var(--gold-rgb),0.22);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(var(--gold-rgb),0.07), rgba(var(--white-rgb),0.015));
  box-shadow: var(--shadow-card);
}
.kooperation-k {
  font-size: 10px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: var(--c-gold-text);
  font-weight: 300;
  margin-bottom: 12px;
}
.kooperation-h {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 300;
  color: var(--c-cream);
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.kooperation-h em { color: var(--c-gold-display); font-style: italic; }
.kooperation-txt {
  font-size: 15px;
  color: rgba(var(--white-rgb),0.80);
  line-height: 1.9;
  font-weight: 300;
  max-width: 900px;
}
.kooperation-txt strong { color: rgba(var(--white-rgb),0.95); font-weight: 500; }
.kooperation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 16px 32px;
  background: var(--c-gold);
  color: var(--c-ink);
  border: none;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: all 0.25s;
  cursor: none;
  box-shadow: 0 4px 20px rgba(var(--gold-rgb),0.25);
}
.kooperation-btn:hover {
  background: var(--c-gold-hi);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(var(--gold-rgb),0.35);
}
.kooperation-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 12px 20px;
  border: 1px solid rgba(var(--gold-rgb),0.45);
  border-radius: var(--radius-pill);
  color: var(--c-gold-text);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.3px;
  font-weight: 500;
  transition: all 0.25s;
}
.kooperation-link:hover {
  background: rgba(var(--gold-rgb),0.12);
  border-color: var(--c-gold-text);
  transform: translateY(-1px);
}

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.leis { padding: 0 0 120px; background: var(--rose-bg-1); }
.leis-hdr {
  padding: 90px 56px 56px; display: flex; align-items: flex-end;
  justify-content: space-between; border-bottom: 1px solid rgba(var(--white-rgb),0.05);
}
.leis-h { font-family: var(--font-serif); font-size: clamp(50px, 8vw, 110px); font-weight: 300; color: var(--c-cream); letter-spacing: -2px; line-height: 0.88; }
.leis-h em { font-style: italic; color: var(--c-ink); }
.leis-sub { font-size: 13px; color: rgba(var(--white-rgb),0.86); font-weight: 300; max-width: 240px; line-height: 1.8; text-align: right; }
.leis-row {
  display: grid; grid-template-columns: 70px 190px minmax(0,1fr) 170px 28px;
  align-items: start; gap: 36px; padding: 36px 56px;
  border-bottom: 1px solid rgba(var(--white-rgb),0.05);
  transition: background 0.25s; cursor: none; position: relative;
}
.leis-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--c-gold); transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.leis-row:hover { background: rgba(var(--white-rgb),0.016); }
.leis-row:hover::before { transform: scaleY(1); }
.leis-row:hover .leis-arr { transform: translateX(8px); color: var(--c-gold-text); }
.leis-n { font-family: var(--font-mono); font-size: 11px; color: var(--c-gold-text); padding-top: 6px; letter-spacing: 1px; }
.leis-name { font-family: var(--font-serif); font-size: clamp(24px, 2.6vw, 36px); font-weight: 300; color: var(--c-cream); line-height: 1.05; }
.leis-body { padding-top: 4px; }
.leis-lead { font-size: 14px; color: rgba(var(--white-rgb),0.92); line-height: 1.9; font-weight: 300; margin-bottom: 14px; }
.leis-bullets { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.leis-bullets li { font-size: 12px; color: rgba(var(--white-rgb),0.92); font-weight: 300; display: flex; align-items: baseline; gap: 10px; }
.leis-bullets li::before { content: '—'; color: rgba(var(--ink-rgb),0.65); flex-shrink: 0; }
.leis-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 13px; font-weight: 600; color: var(--c-gold-text); text-decoration: none;
  letter-spacing: 0.3px; min-height: 40px; padding: 8px 18px;
  border-radius: var(--radius-pill); border: 1px solid rgba(var(--gold-rgb),0.65);
  background: rgba(var(--gold-rgb),0.1);
  transition: all 0.2s;
}
.leis-link:hover { color: var(--c-ink); background: var(--c-gold); border-color: var(--c-gold); transform: translateY(-1px); }
.leis-media {
  margin: 0; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(var(--white-rgb),0.1);
  background: rgba(var(--white-rgb),0.03);
  box-shadow: var(--shadow-card);
}
.leis-row.d1 .leis-media {
  border-radius: 22px;
  border-color: var(--c-gold-text);
  box-shadow: 0 20px 42px rgba(0,0,0,0.28), 0 0 0 1px rgba(var(--gold-rgb),0.12) inset;
}
.leis-media img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block;
  object-position: center 35%;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), filter 0.3s;
  filter: saturate(0.92) contrast(1.03);
}
.img-leis-coaching { object-position: center 34%; }
.img-leis-supervision { object-position: center 22%; }
.img-leis-beratung { object-position: center 42%; }
.img-leis-seminare { object-position: center 34%; }
.leis-row:hover .leis-media img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.07);
}
.leis-arr { font-size: 16px; color: rgba(var(--white-rgb),0.86); padding-top: 6px; transition: transform 0.25s, color 0.25s; }

/* ============================================================
   DAS BIN ICH - PERSÖNLICH
   ============================================================ */
.personal {
  background: var(--rose-bg-3);
  padding: 74px 56px 100px;
  border-top: 1px solid rgba(var(--white-rgb),0.04);
  margin-top: 0;
}
.personal-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.personal-k {
  font-size: 10px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: var(--c-gold-text);
  margin-bottom: 16px;
  font-weight: 300;
}
.personal-h {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 300;
  color: var(--c-cream);
  letter-spacing: -2px;
  line-height: 0.95;
  margin-bottom: 32px;
}
.personal-h em {
  font-style: italic;
  color: var(--c-gold-display);
}
.personal-txt {
  font-size: 16px;
  color: rgba(var(--white-rgb),0.80);
  line-height: 1.9;
  font-weight: 300;
  max-width: 820px;
  margin-bottom: 18px;
}

.personal-txt:last-of-type { margin-bottom: 48px; }
.personal-cta {
  margin-top: 10px;
  margin-bottom: 34px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--white-rgb),0.10);
  background: rgba(var(--white-rgb),0.03);
  max-width: 920px;
}
.personal-cta-txt {
  font-size: 14px;
  color: rgba(var(--white-rgb),0.86);
  line-height: 1.7;
  margin-bottom: 14px;
}
.personal-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.personal-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(var(--gold-rgb),0.65);
  color: var(--c-ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: var(--c-gold);
  transition: all .25s;
}
.personal-cta-btn:hover {
  transform: translateY(-1px);
  background: var(--c-gold-hi);
}
.personal-cta-btn-alt {
  background: transparent;
  color: var(--c-cream);
}
.personal-cta-btn-alt:hover {
  background: rgba(var(--gold-rgb),0.16);
}
.personal-hobbies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}
.hobby-item {
  background: transparent;
  border: none;
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
}
.hobby-item:hover {
  background: transparent;
  border-color: transparent;
  transform: translateY(-4px);
}
.hobby-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  background: transparent;
}
.hobby-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(5%) contrast(1.05);
  transition: transform 0.4s, filter 0.3s;
}
.hobby-img-running img { object-position: center center; }
.hobby-img-family img { object-position: center center; }
.hobby-item:hover .hobby-img img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.1);
}
.hobby-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--c-cream);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.hobby-desc {
  font-size: 14px;
  color: rgba(var(--white-rgb),0.92);
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================================
   ÜBER MICH
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  background: var(--rose-bg-1);
  margin-top: -26px;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  position: relative;
  z-index: 2;
}
.about-img { position: relative; overflow: hidden; background: var(--rose-bg-3); border-radius: 0 60px 60px 0; min-width: 0; }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 26%; filter: grayscale(10%) contrast(1.05); }
.about-img-over {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, transparent 55%, var(--rose-bg-1) 100%),
    linear-gradient(to bottom, transparent 80%, rgba(0,0,0,0.35) 100%);
}
.about-img-lbl { position: absolute; bottom: 26px; left: 26px; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(var(--white-rgb),0.86); font-weight: 300; }
.about-cnt { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; background: var(--rose-bg-1); min-width: 0; }
.about-k { font-size: 10px; letter-spacing: 3.2px; text-transform: uppercase; color: var(--c-gold-text); margin-bottom: 26px; font-weight: 300; }
.about-h { font-family: var(--font-serif); font-size: clamp(32px, 3.8vw, 50px); font-weight: 300; color: var(--c-cream); line-height: 1.05; margin-bottom: 20px; letter-spacing: -1px; }
.about-h em { font-style: italic; color: rgba(var(--white-rgb),0.86); }
.about-txt { font-size: 14px; color: rgba(var(--white-rgb),0.92); line-height: 2; font-weight: 300; margin-bottom: 30px; }
.quals { display: flex; flex-direction: column; list-style: none; margin: 0; padding: 0; }
.qual {
  display: flex; align-items: center; gap: 13px; padding: 11px 0;
  border-top: 1px solid rgba(var(--white-rgb),0.05); font-size: 12px;
  color: rgba(var(--white-rgb),0.86); font-weight: 300; transition: color 0.2s;
}
.qual:last-child { border-bottom: 1px solid rgba(var(--white-rgb),0.05); }
.qual:hover { color: rgba(var(--white-rgb),0.86); }
.qual-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--c-ink); flex-shrink: 0; }
.qual-cert { margin-left: auto; font-size: 9px; letter-spacing: 1.5px; color: var(--c-gold-text); text-transform: uppercase; font-weight: 300; }

/* ============================================================
   BERATUNG DETAIL
   ============================================================ */
.detail-sec { background: var(--rose-bg-3); padding: 100px 56px; border-top: 1px solid rgba(var(--white-rgb),0.04); }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.detail-k { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--c-gold-text); margin-bottom: 14px; font-weight: 300; }
.detail-h { font-family: var(--font-serif); font-size: clamp(32px, 3.8vw, 50px); font-weight: 300; color: var(--c-cream); line-height: 1.05; margin-bottom: 20px; letter-spacing: -1px; }
.detail-h em { font-style: italic; color: var(--c-gold-display); }
.detail-txt { font-size: 14px; color: rgba(var(--white-rgb),0.92); line-height: 2; font-weight: 300; margin-bottom: 18px; }
.detail-note {
  font-size: 12px; color: rgba(var(--white-rgb),0.92); line-height: 1.8; font-weight: 300;
  padding: 18px; border: 1px solid rgba(var(--white-rgb),0.06); margin-top: 16px;
  background: rgba(var(--white-rgb),0.012);
}
.detail-topics { display: flex; flex-direction: column; }
.topic {
  display: flex; align-items: center; gap: 16px; padding: 14px 0;
  border-top: 1px solid rgba(var(--white-rgb),0.05); font-size: 13px;
  color: rgba(var(--white-rgb),0.92); font-weight: 300; transition: color 0.2s;
}
.topic:last-child { border-bottom: 1px solid rgba(var(--white-rgb),0.05); }
.topic:hover { color: rgba(var(--white-rgb),0.92); }
.topic-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(var(--gold-rgb),0.38); flex-shrink: 0; }

/* ============================================================
   SEMINARE
   ============================================================ */
.sem-sec { background: var(--rose-bg-1); padding: 100px 56px; border-top: 1px solid rgba(var(--white-rgb),0.04); }
.sem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 52px; }
.sem-card { border: 1px solid rgba(var(--white-rgb),0.06); border-radius: var(--radius-lg); padding: 38px; transition: border-color 0.25s, background 0.25s; }
.sem-card:hover { border-color: var(--c-gold-text); background: rgba(var(--gold-rgb),0.02); }
.sem-card-k { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--c-gold-text); margin-bottom: 14px; font-weight: 300; }
.sem-card-h { font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: var(--c-cream); margin-bottom: 18px; letter-spacing: -0.5px; }
.sem-topics { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.sem-topics li { font-size: 13px; color: rgba(var(--white-rgb),0.92); font-weight: 300; display: flex; align-items: baseline; gap: 10px; line-height: 1.65; }
.sem-topics li::before { content: '→'; color: rgba(var(--ink-rgb),0.62); flex-shrink: 0; font-size: 11px; }

/* ============================================================
   PREISE
   ============================================================ */
.preise { padding: 100px 56px; background: var(--rose-bg-3); border-top: 1px solid rgba(var(--white-rgb),0.04); }
.preise-k { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--c-gold-text); margin-bottom: 14px; font-weight: 300; }
.preise-h { font-family: var(--font-serif); font-size: clamp(44px, 6.5vw, 90px); font-weight: 300; color: var(--c-cream); letter-spacing: -2px; margin-bottom: 60px; line-height: 0.9; }
.preise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(var(--white-rgb),0.07);
  border-radius: var(--radius-lg); overflow: hidden;
}
.p-card {
  padding: 50px 40px; border-right: 1px solid rgba(var(--white-rgb),0.07);
  transition: background 0.25s; cursor: none; position: relative; overflow: hidden;
}
.p-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--c-ink), var(--c-gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.p-card:hover { background: rgba(var(--white-rgb),0.018); }
.p-card:hover::after { transform: scaleX(1); }
.p-card:last-child { border-right: none; }
.p-type { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(var(--white-rgb),0.86); margin-bottom: 22px; font-weight: 300; }
.p-val { font-family: var(--font-serif); font-size: clamp(58px, 8vw, 96px); font-weight: 300; color: var(--c-cream); line-height: 0.88; margin-bottom: 7px; letter-spacing: -2px; }
.p-val-anfrage { font-size: clamp(38px,5vw,62px); letter-spacing: -1px; }
.p-val sup { font-size: 0.3em; color: var(--c-gold-text); letter-spacing: 0; vertical-align: super; }
.p-unit { font-size: 12px; color: rgba(var(--white-rgb),0.86); margin-bottom: 22px; font-weight: 300; }
.p-desc { font-size: 13px; color: rgba(var(--white-rgb),0.86); line-height: 1.8; font-weight: 300; padding-top: 22px; border-top: 1px solid rgba(var(--white-rgb),0.05); }

/* ============================================================
   STICKY CTA — STARS
   ============================================================ */
.scta-stars { font-size: 13px; color: var(--c-star); letter-spacing: 1px; }

/* ============================================================
   PROZESS — 3 SCHRITTE
   ============================================================ */
.prozess { background: var(--rose-bg-2); padding: 100px 56px; border-top: 1px solid rgba(var(--white-rgb),0.04); }
.prozess-inner { max-width: 1100px; margin: 0 auto; }
.prozess-hdr { text-align: center; margin-bottom: 64px; }
.prozess-k { font-size: 10px; letter-spacing: 3.2px; text-transform: uppercase; color: var(--c-gold-text); font-weight: 300; margin-bottom: 14px; }
.prozess-h { font-family: var(--font-serif); font-size: clamp(32px, 4vw, 54px); font-weight: 300; color: var(--c-cream); letter-spacing: -1px; line-height: 1.05; }
.prozess-h em { font-style: italic; color: var(--c-gold-display); }
.prozess-gallery {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px; margin-bottom: 42px;
}
.prozess-shot {
  margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(var(--white-rgb),0.1); background: rgba(var(--white-rgb),0.03);
  box-shadow: var(--shadow-card);
}
.prozess-shot img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block;
  object-position: center 35%;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), filter 0.3s;
}
.img-prozess-portrait { object-position: center 18%; }
.img-prozess-coaching { object-position: center 36%; }
.img-prozess-warm { object-position: center 42%; }
.img-prozess-seminar { object-position: center 32%; }
.prozess-shot:hover img {
  transform: scale(1.04);
  filter: saturate(1) contrast(1.06);
}
.prozess-steps { display: flex; align-items: flex-start; gap: 0; list-style: none; margin: 0; padding: 0; }
.prozess-step {
  flex: 1; background: rgba(var(--white-rgb),0.025); border: 1px solid rgba(var(--white-rgb),0.06);
  border-radius: var(--radius-lg); padding: 40px 36px; transition: border-color 0.25s, background 0.25s;
}
.prozess-step:hover { border-color: var(--c-gold-text); background: rgba(var(--gold-rgb),0.03); }
.prozess-num { font-family: var(--font-mono); font-size: 11px; color: var(--c-gold-text); letter-spacing: 2px; margin-bottom: 20px; }
.prozess-title { font-family: var(--font-serif); font-size: 22px; font-weight: 400; color: var(--c-cream); margin-bottom: 12px; letter-spacing: -0.3px; }
.prozess-txt { font-size: 13px; color: rgba(var(--white-rgb),0.92); line-height: 1.85; font-weight: 300; }
.prozess-arrow { align-self: center; color: var(--c-gold-text); font-size: 22px; padding: 0 18px; flex-shrink: 0; }
.prozess-cta { margin-top: 52px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.prozess-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-gold); color: var(--c-ink); border: none;
  padding: 18px 48px; font-size: 14px; font-family: var(--font-sans); font-weight: 600;
  letter-spacing: 0.2px; cursor: none; transition: all 0.25s; border-radius: var(--radius-pill);
  text-decoration: none;
}
.prozess-btn:hover { background: var(--c-gold-hi); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(var(--gold-rgb),0.22); }
.prozess-hint { font-size: 12px; color: rgba(var(--ink-rgb),0.76); font-weight: 400; letter-spacing: 0.3px; }

/* ============================================================
   GOOGLE BEWERTUNGEN
   ============================================================ */
.bewertungen { background: var(--rose-bg-1); padding: 100px 56px; border-top: 1px solid rgba(var(--white-rgb),0.04); }
.bew-hdr { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.bew-k { font-size: 10px; letter-spacing: 3.2px; text-transform: uppercase; color: var(--c-gold-text); font-weight: 300; margin-bottom: 12px; }
.bew-h { font-family: var(--font-serif); font-size: clamp(44px, 6vw, 80px); font-weight: 300; color: var(--c-cream); letter-spacing: -2px; line-height: 0.9; }
.bew-h em { font-style: italic; color: var(--c-gold-display); }
.bew-google { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.bew-google-logo { display: flex; align-items: center; gap: 7px; font-size: 11px; color: rgba(var(--white-rgb),0.86); letter-spacing: 0.5px; font-weight: 300; }
.bew-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(var(--white-rgb),0.92);
  text-decoration: none;
  border: 1px solid rgba(var(--white-rgb),0.15);
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.24s ease;
  margin-top: 12px;
}
.bew-cta-link:hover {
  color: var(--c-gold-text);
  border-color: var(--c-gold-text);
  background: rgba(var(--gold-rgb),0.08);
  text-decoration: none;
  transform: translateY(-1px);
}
.bew-stars-total { display: flex; align-items: center; gap: 8px; }
.bew-stars { color: var(--c-star); font-size: 20px; letter-spacing: 2px; }
.bew-rating-num { font-family: var(--font-serif); font-size: 32px; font-weight: 300; color: var(--c-cream); letter-spacing: -1px; }
.bew-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 24px; }
.bew-card {
  background: rgba(var(--white-rgb),0.03); border: 1px solid rgba(var(--white-rgb),0.07);
  border-radius: var(--radius-lg); padding: 32px; transition: border-color 0.25s, background 0.25s; display: flex; flex-direction: column; gap: 18px;
}
.bew-card:hover { border-color: var(--c-gold-text); background: rgba(var(--white-rgb),0.045); }
.bew-card-top { display: flex; align-items: center; gap: 12px; }
.bew-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--c-ink), var(--c-gold));
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500;
  color: var(--c-white); flex-shrink: 0; letter-spacing: 0.5px;
}
.bew-meta { flex: 1; }
.bew-name { font-size: 13px; color: rgba(var(--white-rgb),0.92); font-weight: 500; }
.bew-date { font-size: 11px; color: rgba(var(--white-rgb),0.86); font-weight: 300; margin-top: 2px; }
.bew-guide { color: rgba(var(--white-rgb),0.86); font-weight: 300; }
.bew-rating-count { font-size: 13px; color: rgba(var(--white-rgb),0.86); font-weight: 300; margin-left: 2px; }
.bew-stars-card { color: var(--c-star); font-size: 14px; letter-spacing: 1px; }
.bew-text { font-size: 14px; color: rgba(var(--white-rgb),0.92); line-height: 1.85; font-weight: 300; font-style: italic; flex: 1; }
.bew-via { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(var(--white-rgb),0.86); font-weight: 300; margin-top: auto; }
.bew-footer { margin-top: 40px; text-align: center; }
.bew-more {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px;
  color: var(--c-gold-text); text-decoration: none; font-weight: 400; letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(var(--gold-rgb),0.25); padding-bottom: 2px; transition: all 0.2s;
}
.bew-more:hover { color: var(--c-gold-text); border-color: var(--c-gold-text); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--rose-bg-2); padding: 100px 56px; border-top: 1px solid rgba(var(--white-rgb),0.04); }
.faq-head { margin-bottom: 42px; }
.faq-k { font-size: 10px; letter-spacing: 3.2px; text-transform: uppercase; color: var(--c-gold-text); font-weight: 300; margin-bottom: 12px; }
.faq-h { font-family: var(--font-serif); font-size: clamp(38px, 5vw, 68px); font-weight: 300; color: var(--c-cream); letter-spacing: -1.5px; line-height: 0.95; }
.faq-h em { font-style: italic; color: var(--c-gold-display); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.faq-item {
  border: 1px solid rgba(var(--white-rgb),0.08); background: rgba(var(--white-rgb),0.02);
  transition: border-color 0.2s, background 0.2s;
  overflow: hidden; border-radius: var(--radius-lg);
}
.faq-item:hover { border-color: var(--c-gold-text); background: rgba(var(--gold-rgb),0.03); }
.faq-q {
  width: 100%; border: none; background: transparent; cursor: none;
  padding: 24px 26px; display: flex; align-items: flex-start; justify-content: space-between; gap: 14px;
  text-align: left; color: var(--c-cream); font-family: var(--font-serif); font-size: 27px;
  font-weight: 400; line-height: 1.08; letter-spacing: -0.3px;
}
.faq-ico {
  color: var(--c-gold-text); font-family: var(--font-sans); font-size: 18px;
  line-height: 1; transition: transform 0.25s ease; margin-top: 4px;
}
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.faq-a p {
  font-size: 13px; color: rgba(var(--white-rgb),0.86); line-height: 1.8; font-weight: 300;
  padding: 0 26px 24px;
}
.faq-item.open { border-color: var(--c-gold-text); background: rgba(var(--gold-rgb),0.03); }
.faq-item.open .faq-a { max-height: 260px; }
.faq-item.open .faq-ico { transform: rotate(45deg); }

/* ============================================================
   MAPS SECTION
   ============================================================ */
.maps-sec { background: var(--rose-bg-2); border-top: 1px solid rgba(var(--white-rgb),0.04); }
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.maps-info { padding: 72px 56px; display: flex; flex-direction: column; justify-content: center; }
.maps-k { font-size: 10px; letter-spacing: 3.2px; text-transform: uppercase; color: var(--c-gold-text); font-weight: 300; margin-bottom: 14px; }
.maps-h { font-family: var(--font-serif); font-size: clamp(36px, 4.5vw, 58px); font-weight: 300; color: var(--c-cream); letter-spacing: -1px; line-height: 1; margin-bottom: 36px; }
.maps-h em { font-style: italic; color: var(--c-gold-display); }
.maps-details { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
.maps-detail-row {
  display: flex; align-items: flex-start; gap: 14px; padding: 14px 0;
  border-top: 1px solid rgba(var(--white-rgb),0.05); font-size: 13px;
}
.maps-detail-row:last-child { border-bottom: 1px solid rgba(var(--white-rgb),0.05); }
.maps-icon { font-size: 14px; flex-shrink: 0; padding-top: 1px; opacity: 0.7; }
.maps-detail-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(var(--white-rgb),0.86); font-weight: 300; margin-bottom: 3px; }
.maps-detail-val { font-size: 14px; color: rgba(var(--white-rgb),0.86); font-weight: 300; }
.maps-detail-val a { color: var(--c-gold-text); text-decoration: none; transition: color 0.2s; }
.maps-detail-val a:hover { color: var(--c-gold-text); }
.maps-cta {
  background: transparent; color: var(--c-gold-text); border: 1px solid rgba(var(--gold-rgb),0.55);
  padding: 14px 28px; font-size: 13px; font-family: var(--font-sans); font-weight: 500;
  letter-spacing: 0.3px; cursor: none; transition: all 0.25s; align-self: flex-start; border-radius: var(--radius-pill);
}
.maps-cta:hover { background: rgba(var(--gold-rgb),0.14); border-color: var(--c-gold-text); }
.maps-open {
  margin-top: 14px; color: var(--c-gold-text); text-decoration: none; font-size: 12px;
  letter-spacing: 0.3px; border-bottom: 1px solid rgba(var(--gold-rgb),0.25); padding-bottom: 2px;
  width: fit-content; transition: color 0.2s, border-color 0.2s;
}
.maps-open:hover { color: var(--c-gold-text); border-color: var(--c-gold-text); }
.maps-embed { position: relative; overflow: hidden; min-height: 480px; border-radius: var(--radius-xl) 0 0 var(--radius-xl); }
.maps-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.maps-iframe { border: 0; filter: grayscale(30%) contrast(1.05) saturate(0.7); }

.nav-cta,
.hero-btn1,
.hero-btn2,
.form-next,
.form-back,
.cta-b1,
.quick-btn,
.bew-more,
.maps-open,
.leis-link,
.prozess-btn {
  border-radius: var(--radius-pill);
}

.detail-note,
.p-card,
.form-field input,
.form-field select,
.form-field textarea {
  border-radius: var(--radius-md);
}

/* content-visibility:auto wurde hier entfernt: die geschätzte
   Platzhalterhöhe (900px) wich auf vielen Screens stark von der
   echten Höhe ab und ließ Sprungziele wie #kontakt oder #preise
   an der falschen Stelle landen — sowohl beim Laden mit Hash
   von einer anderen Seite als auch bei Klicks auf Anker-Links,
   solange der Abschnitt noch nicht gerendert war. */

/* ============================================================
   CTA / KONTAKT
   ============================================================ */
.cta {
  background: var(--rose-bg-3); padding: 120px 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: -40%; right: -15%; width: 72%; height: 180%;
  border-radius: 50%; background: radial-gradient(circle, rgba(90,10,22,0.7) 0%, transparent 65%);
  pointer-events: none;
}
.cta::after {
  content: ''; position: absolute; bottom: -30%; left: -5%; width: 40%; height: 80%;
  border-radius: 50%; background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.cta-h { font-family: var(--font-serif); font-size: clamp(44px, 6vw, 82px); font-weight: 300; color: var(--c-cream); line-height: 0.95; letter-spacing: -2px; position: relative; z-index: 1; }
.cta-h em { font-style: italic; color: rgba(245,239,230,0.52); }
.detail-h-seminare { margin-bottom: 0; }
.cta-r { display: flex; flex-direction: column; gap: 32px; position: relative; z-index: 1; }
.cta-txt { font-size: 15px; color: rgba(var(--white-rgb),0.92); line-height: 1.9; font-weight: 300; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.form-progress {
  width: 100%; height: 4px; background: rgba(var(--white-rgb),0.12);
  border-radius: var(--radius-pill); overflow: hidden; margin-bottom: 4px;
}
.form-progress-bar {
  width: 33.33%; height: 100%; background: linear-gradient(to right, var(--c-ink), var(--c-gold));
  transition: width 0.3s ease;
}
.form-step { 
  display: flex; 
  flex-direction: column; 
  gap: 12px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s, transform 0.3s;
}
.form-step[hidden] {
  display: none;
}
.form-step.in {
  opacity: 1;
  transform: translateX(0);
}
.form-step-k {
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--c-gold-text); font-weight: 400; margin-top: 2px;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(var(--white-rgb),0.14);
  border-radius: 10px;
  background: rgba(var(--white-rgb),0.04);
}
.form-consent input {
  margin-top: 3px;
  accent-color: var(--c-gold-text);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.form-consent span {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(var(--white-rgb),0.82);
  text-transform: none;
  letter-spacing: 0;
}
.form-consent a {
  color: var(--c-gold-text);
  text-decoration: underline;
}
.form-field span {
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  color: rgba(var(--white-rgb),0.86); font-weight: 300;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; background: rgba(var(--white-rgb),0.06);
  border: 1px solid rgba(var(--white-rgb),0.16); color: var(--c-cream);
  padding: 13px 14px; font-size: 14px; font-family: var(--font-sans);
  transition: border-color 0.2s, background 0.2s; outline: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(var(--white-rgb),0.86); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--c-gold-text);
  background: rgba(var(--white-rgb),0.09);
}
.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(var(--gold-rgb),0.8) 50%),
    linear-gradient(135deg, rgba(var(--gold-rgb),0.8) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}
.form-nav {
  display: flex; justify-content: flex-end; margin-top: 4px;
}
.form-nav-dual { justify-content: space-between; gap: 10px; }
.form-next,
.form-back {
  border: 1px solid rgba(var(--gold-rgb),0.35); background: transparent;
  color: var(--c-gold-text); padding: 12px 18px; font-size: 12px; letter-spacing: 0.3px;
  font-family: var(--font-sans); cursor: none; transition: all 0.2s;
}
.form-next:hover,
.form-back:hover { background: rgba(var(--gold-rgb),0.14); border-color: var(--c-gold-text); }
.cta-b1 {
  background: var(--c-white); color: var(--c-ink); border: none; padding: 18px 34px;
  font-size: 14px; font-family: var(--font-sans); font-weight: 600;
  transition: all 0.25s; cursor: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.cta-b1:hover { background: var(--c-white); transform: translateX(4px); box-shadow: 0 12px 36px rgba(0,0,0,0.2); }
.cta-b1:disabled {
  opacity: 0.7;
  cursor: progress;
  transform: none;
  box-shadow: none;
}
.form-status {
  min-height: 20px;
  font-size: 13px;
  line-height: 1.45;
  margin-top: 2px;
}
.form-status.info { color: rgba(var(--white-rgb),0.86); }
.form-status.success { color: var(--c-success); }
.form-status.error { color: var(--c-error); }
.contact-quick {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(var(--white-rgb),0.10);
}
.contact-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}
.contact-mini-links a {
  color: rgba(var(--white-rgb),0.92);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-mini-links a:hover {
  color: var(--c-white);
}
.quick-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(var(--ink-rgb),0.82); color: var(--c-white);
  border: 1px solid rgba(var(--white-rgb),0.35); padding: 10px 14px;
  font-size: 12px; text-decoration: none; transition: all 0.25s; cursor: none;
  font-weight: 500;
  gap: 8px;
}
.quick-btn:hover { color: var(--c-white); border-color: var(--c-gold-text); background: rgba(var(--gold-rgb),0.22); }
.quick-btn-secondary {
  background: rgba(var(--ink-rgb),0.76);
  border-color: rgba(var(--white-rgb),0.86);
  color: rgba(var(--white-rgb),0.95);
}
.quick-btn-secondary:hover {
  background: rgba(var(--ink-rgb),0.9);
  border-color: rgba(var(--white-rgb),0.86);
}
.quick-btn-primary {
  box-shadow: 0 10px 26px rgba(37,211,102,0.24);
  padding: 12px 18px;
}
.quick-btn-wa,
.rfix-btn-wa {
  background: var(--c-wa);
  color: var(--c-ink) !important;
  border-color: rgba(var(--ink-rgb),0.22) !important;
}
.quick-btn-wa:hover,
.rfix-btn-wa:hover {
  background: var(--c-wa-dark) !important;
  border-color: rgba(var(--ink-rgb),0.35) !important;
  color: var(--c-ink) !important;
}
.btn-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(var(--ink-rgb),0.14);
  color: var(--c-ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.cta-contact { padding-top: 16px; border-top: 1px solid rgba(var(--white-rgb),0.1); display: flex; flex-direction: column; gap: 6px; }
.cta-ph { font-family: var(--font-serif); font-size: 30px; font-style: italic; font-weight: 300; color: rgba(var(--white-rgb),0.86); }
.cta-ml { font-size: 12px; color: rgba(var(--white-rgb),0.86); font-weight: 300; }

/* Bewertungs-Erinnerung */
.contact-review-note {
  margin: 24px 0 0;
  padding: 16px 20px;
  background: rgba(var(--star-rgb), 0.08);
  border: 1px solid rgba(var(--star-rgb), 0.2);
  border-radius: var(--radius-md);
}

.review-note-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(var(--white-rgb),0.9);
}

.review-link {
  color: var(--c-star);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  white-space: nowrap;
}

.review-link:hover {
  color: var(--c-white);
  text-decoration: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--rose-bg-2); padding: 36px 56px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(var(--white-rgb),0.03);
}

/* ============================================================
   ALTROSA + AKZENT-FARBE
   ============================================================ */
.nav-cta,
.maps-cta,
.form-next,
.form-back,
.kooperation-btn,
.quick-btn,
.kooperation-link,
.rfix-btn,
.bew-more,
.maps-open,
.leis-link {
  color: var(--accent-ink);
  border-color: var(--c-gold-text);
  font-weight: 600;
  letter-spacing: 0.35px;
}

.kooperation-btn {
  background: var(--c-gold);
  color: var(--c-ink) !important;
  border-color: transparent;
}

.nav-cta:hover,
.maps-cta:hover,
.form-next:hover,
.form-back:hover,
.quick-btn:hover,
.kooperation-link:hover,
.rfix-btn:hover {
  background: rgba(var(--gold-rgb),0.16);
  border-color: var(--accent-ink);
}

.hero-btn1,
.prozess-btn,
.scta,
.rfix-btn-form {
  background: var(--c-ink);
  color: var(--c-white);
}

.hero-btn1:hover,
.prozess-btn:hover,
.scta-btn:hover {
  background: var(--c-ink-soft);
}

/* ============================================================
   KONTRAST-FEINSCHLIFF
   ============================================================ */
.hero-desc,
.stmt-txt,
.about-txt,
.detail-txt,
.sem-topics li,
.prozess-txt,
.bew-text,
.faq-a p,
.maps-detail-val,
.cta-txt,
.p-desc,
.leis-lead {
  color: rgba(var(--white-rgb),0.92);
}

.stat-l,
.trust-badge-txt,
.qual,
.topic,
.leis-bullets li,
.p-unit,
.bew-date,
.bew-via,
.cta-ml {
  color: rgba(var(--white-rgb),0.86);
}

.hero-h1 em,
.about-k,
.trust-h em,
.prozess-h em,
.faq-h em,
.maps-h em,
.bew-h em,
.kooperation-h em,
.cta-h em {
  color: var(--accent-ink);
}
.f-brand { display: flex; align-items: center; gap: 12px; }
.f-brand-logo {
  height: 46px; width: auto; object-fit: contain;
  background: var(--c-white);
  border-radius: var(--radius-xs);
  padding: 5px 10px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35));
}
.cert-logo-img {
  background: var(--c-white);
  border-radius: var(--radius-xs);
  padding: 4px 8px;
}
.f-logo { font-family: var(--font-serif); font-size: 15px; font-weight: 600; color: rgba(var(--white-rgb),0.86); }
.f-logo { color: rgba(var(--ink-rgb),0.82); }
.f-logo span { color: rgba(var(--ink-rgb),0.82); }
.f-cert { display: flex; align-items: center; gap: 8px; opacity: 0.45; transition: opacity 0.2s; }
.f-cert:hover { opacity: 0.75; }
.f-cert a { display: flex; align-items: center; }
.f-cert img { height: 28px; width: auto; object-fit: contain; background: var(--c-white); padding: 3px 6px; border-radius: var(--radius-xs); }
.f-links { display: flex; gap: 20px; }
.f-links a { font-size: 11px; color: rgba(var(--ink-rgb),0.8); text-decoration: none; transition: color 0.2s; }
.f-links a:hover { color: var(--c-ink); }

.btn-ico svg {
  width: 12px;
  height: 12px;
  display: block;
}

.quick-btn.quick-btn-wa,
.rfix-btn.rfix-btn-wa {
  background: var(--c-wa) !important;
  color: var(--c-ink) !important;
  border-color: rgba(var(--ink-rgb),0.24) !important;
}

.quick-btn.quick-btn-wa:hover,
.rfix-btn.rfix-btn-wa:hover {
  background: var(--c-wa-dark) !important;
  color: var(--c-ink) !important;
  border-color: rgba(var(--ink-rgb),0.36) !important;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.rv { opacity: 0; transform: translateY(32px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.rl { opacity: 0; transform: translateX(-32px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.rr { opacity: 0; transform: translateX(32px); transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
.rv.in, .rl.in, .rr.in { opacity: 1; transform: translate(0); }
.d1 { transition-delay: 0.07s; }
.d2 { transition-delay: 0.14s; }
.d3 { transition-delay: 0.21s; }
.d4 { transition-delay: 0.28s; }

/* ============================================================
   RESPONSIVE — NAV (collapses to hamburger on tablet + mobile)
   ============================================================ */
@media (max-width: 1024px) {
  .nav { padding: 0 22px; height: auto; min-height: 66px; }
  .nav-toggle { display: inline-flex; }
  .nav-logo-txt { max-width: 44vw; }
  /* Der dreizeilige Untertitel sprengte die feste Nav-Höhe und lief
     über den unteren Rand der Leiste hinaus. */
  .nav-logo small { display: none; }

  .nav-menu {
    position: fixed;
    top: 66px; left: 0; right: 0;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: rgb(var(--ink-rgb));
    padding: 8px 22px 28px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 610;
  }
  .nav-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }

  .nav-links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav-links a { min-height: 50px; width: 100%; border-bottom: 1px solid rgba(var(--white-rgb),0.08); font-size: 15px; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
  .nav-links-legal { display: flex; }
  .nav-links-legal a { color: rgba(var(--white-rgb),0.86); font-size: 13px; }

  .nav-right { flex-direction: column; align-items: stretch; gap: 14px; width: 100%; margin-top: 18px; }
  .nav-cert { display: flex; justify-content: center; opacity: 0.85; }
  .nav-cta { width: 100%; justify-content: center; text-align: center; padding: 14px 22px; }

  body.nav-open { overflow: hidden; }
  .nav-menu { overscroll-behavior: contain; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .rfix-contact { right: 12px; bottom: 22px; top: auto; transform: none; gap: 8px; }
  .rfix-contact.is-hidden { transform: translateX(26px); }
  .rfix-btn { width: 46px; height: 46px; }
  .rfix-btn .btn-ico, .rfix-btn .btn-ico svg { width: 20px; height: 20px; }

  .nav { padding: 0 16px; }
  .nav-brand-logo { height: 31px; }
  .nav-logo small { letter-spacing: 2px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .funnel-guide {
    justify-content: flex-start;
    gap: 8px;
    padding: 14px 12px;
    overflow-x: auto;
  }
  .funnel-link { white-space: nowrap; }
  .hero-photo { min-height: 55vh; border-radius: 0 0 0 44px; }
  .hero-photo img { object-position: center 24%; }
  .hero-left { padding: 0 22px 56px; }
  .hero-h1 { margin-top: -18px; }
  .hero-vert { display: none; }
  .hero-btm { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-acts { align-items: flex-start; width: 100%; }
  .hero-btn1, .hero-btn2 { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-nav,
  .form-nav-dual { justify-content: stretch; flex-direction: column; }
  .form-next,
  .form-back,
  .cta-b1 { width: 100%; }

  .cert-strip { flex-direction: column; gap: 18px; padding: 22px; text-align: center; }

  .statement,
  .about,
  .detail-grid,
  .cta { grid-template-columns: 1fr; gap: 48px; }

  .personal-hobbies { grid-template-columns: 1fr; gap: 18px; }
  .personal-cta { padding: 16px; margin-bottom: 24px; }
  .personal-cta-actions { flex-direction: column; }
  .personal-cta-btn { width: 100%; }
  .hobby-img { aspect-ratio: 1 / 1; }

  .statement,
  .kooperation,
  .leis-hdr,
  .sem-sec,
  .preise,
  .detail-sec,
  .trust,
  .cert-strip { padding-left: 22px; padding-right: 22px; }

  .leis-row {
    grid-template-columns: 40px 1fr;
    grid-template-areas: "num name" "media media" "body body";
    gap: 14px 12px; padding: 28px 22px;
  }
  .leis-row .leis-n { grid-area: num; font-size: 11px; }
  .leis-row .leis-name { grid-area: name; }
  .leis-row .leis-media { grid-area: media; width: 100%; max-width: none; margin-top: 6px; border-radius: var(--radius-md); }
  .leis-row .leis-body { grid-area: body; margin-top: 4px; }
  .leis-arr { display: none; }

  .preise-grid { grid-template-columns: 1fr; }
  .p-card { border-right: none; border-bottom: 1px solid rgba(var(--white-rgb),0.07); }

  .sem-grid { grid-template-columns: 1fr; }

  .footer { flex-direction: column; gap: 16px; padding: 28px 22px; text-align: center; }
  .f-brand { flex-direction: column; gap: 8px; }
  .f-brand-logo { height: 42px; }

  .trust-logos { gap: 28px; }
  .trust-divider { display: none; }

  .prozess { padding: 72px 22px; }
  .prozess-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 28px; }
  .prozess-shot { border-radius: var(--radius-md); }
  .prozess-steps { flex-direction: column; }
  .prozess-arrow { transform: rotate(90deg); align-self: center; padding: 8px 0; }

  .bewertungen { padding: 72px 22px; }
  .bew-hdr { flex-direction: column; align-items: flex-start; }
  .bew-google { align-items: flex-start; }
  .bew-grid { grid-template-columns: 1fr; }
  .faq { padding: 72px 22px; }
  .faq-grid { grid-template-columns: 1fr; }

  .maps-grid { grid-template-columns: 1fr; }
  .maps-info { padding: 56px 22px; }
  .maps-embed { min-height: 280px; border-radius: 0; }
}

/* ============================================================
   A11Y TYPOGRAFIE & FOKUS
   ============================================================ */
body {
  font-size: 17px;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  cursor: auto !important;
}

.cur,
.cur-ring {
  display: none !important;
}

a,
button,
[role="button"],
input,
select,
textarea,
summary,
label {
  cursor: auto !important;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 1200;
  background: var(--c-ink);
  color: var(--c-white);
  border: 2px solid var(--c-gold);
  border-radius: 10px;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.skip-link:focus-visible {
  top: 12px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--c-ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(var(--white-rgb),0.65);
}

#main-content:focus {
  outline: none;
}

p,
li,
.hero-desc,
.stmt-txt,
.about-txt,
.detail-txt,
.personal-txt,
.hobby-desc,
.prozess-txt,
.faq-a p,
.cta-txt,
.maps-detail-val,
.p-desc,
.bew-text,
.kooperation-txt {
  color: rgba(var(--white-rgb),0.94) !important;
  font-size: 16px;
  line-height: 1.75;
}

.nav-links a,
.quick-btn,
.rfix-btn,
.maps-open,
.bew-more,
.leis-link,
.form-next,
.form-back,
.cta-b1,
.nav-cta,
.scta-btn,
.scta-ph,
.btn-ico + span {
  font-size: 14px !important;
}

.form-field span,
.form-step-k,
.maps-detail-label,
.p-type,
.cert-logo-label,
.stat-l,
.bew-date,
.bew-via,
.f-links a,
.kicker,
.about-k,
.detail-k,
.faq-k,
.preise-k,
.prozess-k,
.trust-k,
.sem-card-k,
.stmt-k,
.nav-logo small,
.hero-vert,
.about-img-lbl,
.qual-cert,
.cert-text,
.cert-strip-l,
.trust-logo-name,
.kooperation-k,
.personal-k,
.bew-k,
.maps-k,
.scroll-hint {
  font-size: 12px !important;
  color: rgba(var(--white-rgb),0.88) !important;
  letter-spacing: 1.2px;
}

@media (prefers-reduced-motion: reduce) {
  .cur,
  .cur-ring,
  .hero-photo,
  .hero-photo img,
  .hero-btn1,
  .rfix-btn-form,
  .hero-orb,
  .scroll-hint,
  .scroll-line,
  .ticker-t {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* Hero-Auftritt: nur mit aktivem JavaScript vorbereiten */
.js .hero-cert,
.js .hero-h1,
.js .hero-kicker,
.js .hero-desc,
.js .hero-acts,
.js .hero-vert,
.js .scroll-hint,
.js .hero-photo { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .js .hero-cert, .js .hero-h1, .js .hero-kicker, .js .hero-desc,
  .js .hero-acts, .js .hero-vert, .js .scroll-hint,
  .js .hero-photo { opacity: 1 !important; }
}

/* Lesefortschritt */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(var(--gold-rgb),0.35), var(--c-gold));
  z-index: 600; pointer-events: none;
}

/* ============================================================
   FEINSCHLIFF V3
   ============================================================ */
/* Schnellkontakt-Leiste: Klasse statt Inline-Style */
.rfix-contact.is-hidden { opacity: 0; pointer-events: none; transform: translateY(-50%) translateX(26px); }

/* Fußzeile: Button und Jahresangabe wie die übrigen Links */
.f-links { flex-wrap: wrap; align-items: center; row-gap: 8px; }
.f-links a,
.f-links button,
.f-links span {
  font-size: 11px;
  color: rgba(var(--white-rgb),0.8);
  text-decoration: none;
  transition: color var(--dur-2) var(--ease-out);
  display: inline-flex; align-items: center; min-height: 44px;
}
.f-links button { cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.f-links a:hover, .f-links button:hover { color: var(--c-white); }

/* Touch-Ziele: Mindestgröße 44 px (WCAG 2.5.5) */
.nav-cta, .scta-btn, .hero-btn1, .hero-btn2, .prozess-btn, .maps-cta,
.cta-b1, .form-next, .form-back, .quick-btn, .rfix-btn, .leis-link,
.personal-cta-btn, .kooperation-btn, .bew-more, .bew-cta-link, .maps-open, .faq-q {
  min-height: 44px;
}
.nav-toggle { min-width: 44px; min-height: 44px; }

/* Formularfelder: klare Zustände statt reiner Platzhalter-Beschriftung */
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible { box-shadow: var(--focus-ring); }
.form-field input:user-invalid,
.form-field textarea:user-invalid { border-color: var(--c-error); }

/* Statusmeldungen des Formulars deutlich hervorheben */
.form-status:empty { display: none; }
.form-status { margin-top: var(--sp-3); font-size: 14.5px; line-height: 1.6; }
.form-status.success { color: var(--c-success); }
.form-status.error { color: var(--c-error); }

/* Bildschirmlesegeräte: nur für sie sichtbarer Text */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Druckausgabe: Schwebeelemente entfernen */
@media print {
  .nav, .scta, .rfix-contact, .cookie-banner, .consent-overlay,
  .scroll-progress, .cur, .cur-ring, .funnel-guide { display: none !important; }
  body { background: #fff; color: #111; }
}

/* ============================================================
   MOBILE-KORREKTUREN V3
   Der Kopfbereich lag unter der festen Navigation und die
   Überschrift war breiter als der Bildschirm.
   ============================================================ */
@media (max-width: 768px) {
  .hero-left {
    padding: calc(66px + var(--sp-7)) var(--sp-5) var(--sp-7);
    justify-content: flex-start;
  }
  .hero-cert { flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-5); }
  .cert-logo { height: 32px; }
  .cert-divider { display: none; }
  .hero-h1 { margin-top: 0; letter-spacing: -1px; }
  .hero-desc { font-size: 15px; }
  .hero-acts { gap: var(--sp-3); }

  /* Nichts darf über den rechten Rand hinauslaufen */
  .hero, .hero-left, .leis-row, .prozess-step, .cta { min-width: 0; }
  .hero-h1, .leis-name, .trust-h, .detail-h, .prozess-h, .faq-h, .maps-h, .bew-h, .personal-h {
    overflow-wrap: break-word; hyphens: auto;
  }
}

@media (max-width: 420px) {
  .hero-h1 { font-size: clamp(40px, 12vw, 56px); }
}

/* Die volle Leiste (Sterne + Text + Telefon + Button) braucht rund
   615px Platz. Darunter lief sie über den Bildschirmrand hinaus —
   auf jedem Telefon und den meisten aufrechten Tablets. */
@media (max-width: 620px) {
  .scta {
    left: var(--sp-3); right: var(--sp-3);
    transform: translateY(120px); justify-content: space-between;
    padding: 12px 16px; gap: 10px;
  }
  .scta.show { transform: translateY(0); }
  .scta-txt { display: none; }
}

@media (max-width: 420px) {
  .scta-stars { display: none; }
}

/* Navigation: bis 1300 px genügt der kompakte Modus,
   sonst brechen die Menüpunkte um. */
@media (max-width: 1500px) and (min-width: 1025px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 11.5px; }
  .nav-menu { gap: 20px; }
  .nav-logo small { display: none; }
}

/* Unsichtbarer Sticky-CTA darf keine Berührungen abfangen */
.scta:not(.show) { pointer-events: none; }

/* ============================================================
   KONTRAST-KORREKTUREN V3
   Sekundäre Schaltflächen waren auf dem Rosé kaum zu erkennen.
   ============================================================ */
.hero-btn2 {
  background: rgba(var(--white-rgb),0.42);
  color: rgba(var(--ink-rgb),0.96);
  border-color: rgba(var(--ink-rgb),0.34);
  font-weight: 400;
}
.hero-btn2:hover {
  background: rgba(var(--white-rgb),0.62);
  border-color: rgba(var(--ink-rgb),0.5);
}

/* Telefon-Schaltfläche im Schnellkontakt: eigenständig statt blass */
.rfix-btn-phone {
  background: var(--c-gold);
  color: var(--c-ink);
  font-weight: 600;
}
.rfix-btn-phone:hover { background: var(--c-gold-hi); }

/* ============================================================
   NAVIGATION — Kollision zwischen Logo und Menü verhindern
   ============================================================ */
.nav { gap: var(--sp-5); }
.nav-logo { flex: 0 1 auto; min-width: 0; }
.nav-logo-txt { min-width: 0; }
.nav-menu { flex: 1 1 auto; min-width: 0; }
.nav-links { flex-wrap: nowrap; }
.nav-links a { white-space: nowrap; }

@media (max-width: 1500px) and (min-width: 1025px) {
  .nav { padding: 0 28px; gap: var(--sp-4); }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 11px; letter-spacing: 0; }
  .nav-menu { gap: 14px; }
  .nav-logo-txt { font-size: 15px; }
  .nav-cert { display: none; }
  .nav-cta { padding: 10px 16px; font-size: 11px; }
}

@media (max-width: 1180px) and (min-width: 1025px) {
  .nav-logo-txt { display: none; }
}

/* Kopfbereich: Platz für die feste Navigation reservieren,
   damit das Zertifikats-Band bei schmaleren Fenstern nicht darunter rutscht. */
@media (min-width: 769px) {
  .hero-left { padding-top: 104px; }
}

/* Die senkrechte Zertifikatszeile kreuzte bei mittleren Fenstern die Überschrift. */
@media (max-width: 1400px) {
  .hero-vert { display: none; }
}

/* ============================================================
   MOBIL-OPTIMIERUNG
   Touch-Ziele auf 44x44px angehoben, ohne das Erscheinungsbild
   zu verändern (per unsichtbarem Padding / Pseudo-Element).
   Grundlage: WCAG 2.5.5, Apple HIG, Material Design.
   ============================================================ */

/* .f-social-btn hatte gar keine Regel — Icons liefen ohne
   Touch-Ziel, Hover-Zustand oder Farbabstimmung. */
.f-social {
  display: flex; align-items: center; gap: 4px;
}
.f-social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  color: rgba(var(--white-rgb),0.85);
  transition: color 0.2s, background 0.2s;
}
.f-social-btn:hover {
  color: var(--c-white);
  background: rgba(var(--white-rgb),0.12);
}

/* Kleine Textlinks: größere Tippfläche über Padding statt
   sichtbarer Vergrößerung. */
.trust-logo-name a,
.maps-detail-val a,
.contact-mini-links a,
.review-link,
.bew-cta-link,
.bew-more,
.maps-open,
.cookie-link,
.hobby-title + .hobby-desc a {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 4px 2px;
  margin: -4px -2px;
}

/* Fußzeile: Datenschutz/Impressum/Cookie-Einstellungen —
   Zeilenhöhe reicht für Touch, aber Abstand zwischen den
   Links war zu knapp für zuverlässiges Antippen. */
.f-links { column-gap: 28px; }
.f-links a, .f-links button {
  min-height: 44px; padding: 4px 0;
}

/* Kontakt-Icons in der Kontaktzeile (Telefon/E-Mail als reiner
   Text ohne Icon-Button) bekommen dieselbe Mindesthöhe. */
.maps-detail-row a {
  display: inline-flex; align-items: center; min-height: 44px;
}

/* Checkboxen: das native Kästchen bleibt klein, aber das
   umschließende Label ist die eigentliche Tippfläche — hier
   auf komfortable Höhe gebracht. */
.form-consent,
.cookie-option,
.maps-consent-remember {
  min-height: 44px;
}
.form-consent input[type="checkbox"],
.maps-consent-remember input[type="checkbox"] {
  width: 22px; height: 22px; flex-shrink: 0;
}

/* ============================================================
   MOBIL-OPTIMIERUNG, TEIL 2
   Feste Innenabstände aus dem Desktop-Layout skalierten nicht
   mit herunter und zwangen einzelne Spalten breiter als der
   Bildschirm (CSS-Grid-„Blowout" bei sehr schmalen Geräten).
   ============================================================ */
@media (max-width: 768px) {
  /* 64px Seitenabstand ließ auf einem Telefon nur ~210px Textbreite
     übrig und zwang die Grid-Spalte über den Bildschirmrand hinaus. */
  .about-cnt { padding: 48px 26px; }

  /* Fixe 32px-Polsterung auf einer ~300px breiten Karte wirkte eng;
     angeglichen an die übrigen mobilen Abstände (22–28px). */
  .bew-card { padding: 24px 22px; }

  /* Logo + Beschriftung passten bei sehr schmalen Geräten nicht in
     eine Zeile — jetzt bricht die Zeile kontrolliert um, statt den
     Bildschirmrand zu überschreiten. */
  .cert-logos { flex-wrap: wrap; justify-content: center; row-gap: 12px; }
}

/* ============================================================
   SCHNELLKONTAKT — nur Icons statt Text
   ============================================================ */
.rfix-btn {
  min-width: 0;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
}
.rfix-btn .btn-ico {
  width: 22px;
  height: 22px;
  background: transparent;
  color: inherit;
}
.rfix-btn .btn-ico svg {
  width: 22px;
  height: 22px;
}

/* ============================================================
   FOOTER — Credit/Baustellen-Hinweis als eigene zweite Zeile
   ============================================================ */
.f-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.f-credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  color: rgba(var(--white-rgb),0.6);
}
.f-credit a {
  color: rgba(var(--white-rgb),0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.f-credit a:hover {
  color: var(--c-white);
}

/* FK Designstudio Credit-Badge */
.fk-credit {
  --fk-heart: #E24C6D;
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none !important; color: rgba(var(--white-rgb),0.78) !important;
  font-size: 11px; line-height: 1;
  padding: 5px 12px 5px 5px; border-radius: 999px; border: 1px solid rgba(var(--white-rgb),0.35);
  opacity: 0.85; transition: opacity .18s ease, transform .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.fk-credit:hover, .fk-credit:focus-visible {
  opacity: 1; transform: translateY(-1px); border-color: rgba(var(--white-rgb),0.6);
  color: var(--c-white) !important;
}
.fk-credit:focus-visible { outline: 2px solid var(--fk-heart); outline-offset: 2px; }
.fk-credit__logo {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: block; object-fit: contain; background: rgba(var(--white-rgb),0.92);
}
.fk-credit__heart { width: 12px; height: 12px; fill: var(--fk-heart); flex-shrink: 0; vertical-align: -1px; }
.fk-credit:hover .fk-credit__heart,
.fk-credit:focus-visible .fk-credit__heart { animation: fk-pulse .5s ease; }
@keyframes fk-pulse { 0%{transform:scale(1)} 35%{transform:scale(1.35)} 60%{transform:scale(.92)} 100%{transform:scale(1)} }
@media (prefers-reduced-motion: reduce) { .fk-credit__heart{ animation:none !important; } .fk-credit{ transition:none; } }


