/* ============================================================
   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; }
:root {
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --rose-bg-1: #D47479;
  --rose-bg-2: #C6656B;
  --rose-bg-3: #DE8A8F;
  --accent-ink: #BFAA69;
}
body { font-family: 'DM Sans', sans-serif; background: var(--rose-bg-1); color: #FFFFFF; overflow-x: hidden; cursor: none; }

/* ============================================================
   CURSOR
   ============================================================ */
.cur {
  position: fixed; width: 8px; height: 8px; background: #BFAA69;
  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(196,164,74,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: rgba(196,164,74,0.85); }
.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: rgba(0,0,0,0.24);
  -webkit-backdrop-filter: blur(22px); backdrop-filter: blur(22px);
  border-color: rgba(255,255,255,0.06);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Cormorant', serif; font-size: 18px; font-weight: 600;
  color: #F5EFE6; letter-spacing: 0.2px; line-height: 1;
  cursor: none; text-decoration: none;
}
.nav-brand-logo {
  height: 38px; width: auto; object-fit: contain;
  background: #FFFFFF;
  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: 'DM Sans', sans-serif; font-size: 9px;
  letter-spacing: 3.2px; text-transform: uppercase;
  color: rgba(196,164,74,0.6); font-weight: 300; margin-top: 3px;
}
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 12px; color: rgba(255,255,255,0.88); text-decoration: none;
  font-weight: 400; letter-spacing: 0.3px; transition: color 0.2s; cursor: none;
}
.nav-links a:hover { color: #F5EFE6; }
.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: #fff; padding: 3px 6px; border-radius: var(--radius-xs); }
.nav-cta {
  background: transparent; color: #BFAA69;
  border: 1px solid rgba(191,170,105,0.55); padding: 9px 22px;
  font-size: 11px; font-family: 'DM Sans', sans-serif; font-weight: 500;
  letter-spacing: 1.2px; text-transform: uppercase; transition: all 0.25s; cursor: none;
}
.nav-cta:hover { background: rgba(191,170,105,0.14); border-color: #BFAA69; }

/* ============================================================
   STICKY CTA
   ============================================================ */
.scta {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: #111111; 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: 0 20px 56px rgba(0,0,0,0.35);
}
.scta.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.scta-txt { font-size: 13px; color: #fff; font-weight: 400; }
.scta-btn {
  background: #fff; color: #111111; border: none;
  padding: 8px 18px; border-radius: var(--radius-pill); font-size: 12px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; cursor: none; transition: all 0.2s;
}
.scta-btn:hover { background: #FFF8F0; transform: scale(1.03); }
.scta-ph { font-size: 11px; color: rgba(255,255,255,0.72); font-family: 'DM Mono', monospace; letter-spacing: 0.5px; }

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

.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(191,170,105,0.58);
  background: rgba(17,17,17,0.82);
  color: #FFFFFF;
  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: #BFAA69;
}

.rfix-btn-phone {
  background: rgba(196,164,74,0.16);
}

.rfix-btn-wa {
  background: #111111;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.3);
}

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

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,164,74,0); }
  50% { box-shadow: 0 0 0 6px rgba(196,164,74,0.08), 0 14px 32px rgba(196,164,74,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(191,170,105,0.08) 45%, transparent 68%);
  pointer-events: none; animation: pulse 10s ease-in-out infinite; z-index: 1;
}
@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.03) rotate(1deg) translateY(-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: flex-end;
  padding: 0 56px 48px; position: relative; z-index: 3;
}
.hero-vert {
  position: absolute; left: 56px; top: 50%; transform: translateY(-50%);
  writing-mode: vertical-rl; font-size: 9px; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(255,255,255,0.16); font-weight: 300;
  display: flex; align-items: center; gap: 14px;
}
.hero-vert::before { content: ''; width: 1px; height: 52px; background: rgba(255,255,255,0.07); }

/* 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: #fff; 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(255,255,255,0.12); }
.cert-text { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 300; line-height: 1.6; }
.cert-text { color: rgba(17,17,17,0.9); font-weight: 500; }

.hero-h1 {
  font-family: 'Cormorant', serif; font-size: clamp(80px, 11.5vw, 168px);
  line-height: 0.87; font-weight: 300; letter-spacing: -3px; color: #F5EFE6;
  position: relative; z-index: 1; animation: up 1.2s 0.1s cubic-bezier(0.16,1,0.3,1) both;
  margin-top: -28px;
}
.hero-h1 em { font-style: italic; color: #BFAA69; 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(255,255,255,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(255,255,255,0.72); line-height: 2; font-weight: 300; max-width: 360px; }
.hero-desc strong { color: rgba(255,255,255,0.95); font-weight: 400; }
.hero-acts { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.hero-btn1 {
  background: #BFAA69; color: #111111; border: none;
  padding: 16px 36px; font-size: 13px; font-family: 'DM Sans', sans-serif;
  font-weight: 600; letter-spacing: 0.2px; transition: all 0.25s; cursor: none;
  position: relative; overflow: hidden;
  animation: ctaGlow 5.2s ease-in-out infinite;
}
.hero-btn1::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.hero-btn1:hover { background: #D4B45A; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(196,164,74,0.25); }
.hero-btn1:hover::after { opacity: 1; }
.hero-btn2 {
  background: rgba(255,255,255,0.26); color: rgba(17,17,17,0.9);
  border: 1px solid rgba(17,17,17,0.22); padding: 14px 24px;
  font-size: 12px; font-family: 'DM Sans', sans-serif; font-weight: 300;
  transition: all 0.25s; cursor: none;
}
.hero-btn2:hover { border-color: rgba(17,17,17,0.35); color: #111111; background: rgba(255,255,255,0.34); }

.scroll-hint {
  position: absolute; bottom: 34px; left: 27%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.16); 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(255,255,255,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%);
}

/* ============================================================
   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(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cert-strip-l { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.22); font-weight: 300; }
.cert-strip-l { color: rgba(17,17,17,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: #fff; 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(255,255,255,0.28); letter-spacing: 1px; font-weight: 300; }
.cert-logo-label { color: rgba(17,17,17,0.76); font-weight: 500; }
.cert-strip-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.08); }
.cert-strip-r { font-size: 12px; color: rgba(196,164,74,0.5); font-weight: 300; letter-spacing: 0.5px; }
.cert-strip-r { color: rgba(17,17,17,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(255,255,255,0.65); padding: 0 34px; font-weight: 300; }
.ticker-sep { color: rgba(196,164,74,0.5); 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: 'Cormorant', serif; font-size: clamp(26px, 3.2vw, 44px);
  font-style: italic; font-weight: 300; color: #F5EFE6;
  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, #111111, rgba(17,17,17,0));
}
.stmt-attr { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(196,164,74,0.5); 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: rgba(196,164,74,0.62); font-weight: 300; }
.stmt-txt { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 2; font-weight: 300; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 8px; }
.stat-n { font-family: 'Cormorant', serif; font-size: clamp(40px, 5vw, 64px); font-weight: 300; color: #F5EFE6; 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: #BFAA69; letter-spacing: 0; }
.stat-l { font-size: 11px; color: rgba(255,255,255,0.28); 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(255,255,255,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: rgba(196,164,74,0.6); font-weight: 300; margin-bottom: 16px; }
.trust-h { font-family: 'Cormorant', serif; font-size: clamp(30px, 4vw, 50px); font-weight: 300; color: #F5EFE6; margin-bottom: 48px; letter-spacing: -1px; }
.trust-h em { font-style: italic; color: #BFAA69; }
.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: #fff; padding: 8px 14px; border-radius: var(--radius-sm); }
.trust-logo-name { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 300; }
.trust-logo-name a { color: rgba(255,255,255,0.45); text-decoration: none; border-bottom: 1px solid rgba(196,164,74,0.35); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.trust-logo-name a:hover { color: #BFAA69; border-color: #BFAA69; }
.trust-divider { width: 1px; height: 48px; background: rgba(255,255,255,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(255,255,255,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: #BFAA69; opacity: 0.6; flex-shrink: 0; }
.trust-badge-txt { font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 300; letter-spacing: 0.3px; }

/* ============================================================
   KOOPERATION / ONLINE-KURS
   ============================================================ */
.kooperation {
  background: #321020;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 72px 56px;
}
.kooperation-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(196,164,74,0.22);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(196,164,74,0.07), rgba(255,255,255,0.015));
  box-shadow: 0 18px 42px rgba(0,0,0,0.2);
}
.kooperation-k {
  font-size: 10px;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: rgba(196,164,74,0.65);
  font-weight: 300;
  margin-bottom: 12px;
}
.kooperation-h {
  font-family: 'Cormorant', serif;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 300;
  color: #F5EFE6;
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.kooperation-h em { color: #BFAA69; font-style: italic; }
.kooperation-txt {
  font-size: 15px;
  color: rgba(255,255,255,0.80);
  line-height: 1.9;
  font-weight: 300;
  max-width: 900px;
}
.kooperation-txt strong { color: rgba(255,255,255,0.95); font-weight: 500; }
.kooperation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 16px 32px;
  background: #BFAA69;
  color: #111111;
  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(196,164,74,0.25);
}
.kooperation-btn:hover {
  background: #D4B55A;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(196,164,74,0.35);
}
.kooperation-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 12px 20px;
  border: 1px solid rgba(196,164,74,0.45);
  border-radius: var(--radius-pill);
  color: #BFAA69;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.3px;
  font-weight: 500;
  transition: all 0.25s;
}
.kooperation-link:hover {
  background: rgba(196,164,74,0.12);
  border-color: #BFAA69;
  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(255,255,255,0.05);
}
.leis-h { font-family: 'Cormorant', serif; font-size: clamp(50px, 8vw, 110px); font-weight: 300; color: #F5EFE6; letter-spacing: -2px; line-height: 0.88; }
.leis-h em { font-style: italic; color: #111111; }
.leis-sub { font-size: 13px; color: rgba(255,255,255,0.28); 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(255,255,255,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: #BFAA69; transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.leis-row:hover { background: rgba(255,255,255,0.016); }
.leis-row:hover::before { transform: scaleY(1); }
.leis-row:hover .leis-arr { transform: translateX(8px); color: rgba(196,164,74,0.7); }
.leis-n { font-family: 'DM Mono', monospace; font-size: 11px; color: rgba(196,164,74,0.38); padding-top: 6px; letter-spacing: 1px; }
.leis-name { font-family: 'Cormorant', serif; font-size: clamp(24px, 2.6vw, 36px); font-weight: 300; color: #F5EFE6; line-height: 1.05; }
.leis-body { padding-top: 4px; }
.leis-lead { font-size: 14px; color: rgba(255,255,255,0.76); 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(255,255,255,0.68); font-weight: 300; display: flex; align-items: baseline; gap: 10px; }
.leis-bullets li::before { content: '—'; color: rgba(17,17,17,0.65); flex-shrink: 0; }
.leis-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: 12px; color: rgba(196,164,74,0.75); text-decoration: none;
  letter-spacing: 0.4px; border-bottom: 1px solid rgba(196,164,74,0.28); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.leis-link:hover { color: #BFAA69; border-color: #BFAA69; }
.leis-media {
  margin: 0; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  box-shadow: 0 14px 32px rgba(0,0,0,0.2);
}
.leis-row.d1 .leis-media {
  border-radius: 22px;
  border-color: rgba(196,164,74,0.24);
  box-shadow: 0 20px 42px rgba(0,0,0,0.28), 0 0 0 1px rgba(196,164,74,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(255,255,255,0.12); 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(255,255,255,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: #BFAA69;
  margin-bottom: 16px;
  font-weight: 300;
}
.personal-h {
  font-family: 'Cormorant', serif;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 300;
  color: #F5EFE6;
  letter-spacing: -2px;
  line-height: 0.95;
  margin-bottom: 32px;
}
.personal-h em {
  font-style: italic;
  color: #BFAA69;
}
.personal-txt {
  font-size: 16px;
  color: rgba(255,255,255,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(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  max-width: 920px;
}
.personal-cta-txt {
  font-size: 14px;
  color: rgba(255,255,255,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(191,170,105,0.65);
  color: #111111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  background: #BFAA69;
  transition: all .25s;
}
.personal-cta-btn:hover {
  transform: translateY(-1px);
  background: #C8B679;
}
.personal-cta-btn-alt {
  background: transparent;
  color: #F5EFE6;
}
.personal-cta-btn-alt:hover {
  background: rgba(191,170,105,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: 'Cormorant', serif;
  font-size: 26px;
  font-weight: 400;
  color: #F5EFE6;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.hobby-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  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; }
.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(255,255,255,0.2); font-weight: 300; }
.about-cnt { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; background: var(--rose-bg-1); }
.about-k { font-size: 10px; letter-spacing: 3.2px; text-transform: uppercase; color: #BFAA69; margin-bottom: 26px; font-weight: 300; }
.about-h { font-family: 'Cormorant', serif; font-size: clamp(32px, 3.8vw, 50px); font-weight: 300; color: #F5EFE6; line-height: 1.05; margin-bottom: 20px; letter-spacing: -1px; }
.about-h em { font-style: italic; color: rgba(255,255,255,0.42); }
.about-txt { font-size: 14px; color: rgba(255,255,255,0.76); 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(255,255,255,0.05); font-size: 12px;
  color: rgba(255,255,255,0.3); font-weight: 300; transition: color 0.2s;
}
.qual:last-child { border-bottom: 1px solid rgba(255,255,255,0.05); }
.qual:hover { color: rgba(255,255,255,0.55); }
.qual-dot { width: 4px; height: 4px; border-radius: 50%; background: #111111; flex-shrink: 0; }
.qual-cert { margin-left: auto; font-size: 9px; letter-spacing: 1.5px; color: rgba(196,164,74,0.45); text-transform: uppercase; font-weight: 300; }

/* ============================================================
   BERATUNG DETAIL
   ============================================================ */
.detail-sec { background: var(--rose-bg-3); padding: 100px 56px; border-top: 1px solid rgba(255,255,255,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: rgba(196,164,74,0.58); margin-bottom: 14px; font-weight: 300; }
.detail-h { font-family: 'Cormorant', serif; font-size: clamp(32px, 3.8vw, 50px); font-weight: 300; color: #F5EFE6; line-height: 1.05; margin-bottom: 20px; letter-spacing: -1px; }
.detail-h em { font-style: italic; color: #BFAA69; }
.detail-txt { font-size: 14px; color: rgba(255,255,255,0.76); line-height: 2; font-weight: 300; margin-bottom: 18px; }
.detail-note {
  font-size: 12px; color: rgba(255,255,255,0.66); line-height: 1.8; font-weight: 300;
  padding: 18px; border: 1px solid rgba(255,255,255,0.06); margin-top: 16px;
  background: rgba(255,255,255,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(255,255,255,0.05); font-size: 13px;
  color: rgba(255,255,255,0.70); font-weight: 300; transition: color 0.2s;
}
.topic:last-child { border-bottom: 1px solid rgba(255,255,255,0.05); }
.topic:hover { color: rgba(255,255,255,0.92); }
.topic-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(196,164,74,0.38); flex-shrink: 0; }

/* ============================================================
   SEMINARE
   ============================================================ */
.sem-sec { background: var(--rose-bg-1); padding: 100px 56px; border-top: 1px solid rgba(255,255,255,0.04); }
.sem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 52px; }
.sem-card { border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg); padding: 38px; transition: border-color 0.25s, background 0.25s; }
.sem-card:hover { border-color: rgba(196,164,74,0.2); background: rgba(196,164,74,0.02); }
.sem-card-k { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(196,164,74,0.52); margin-bottom: 14px; font-weight: 300; }
.sem-card-h { font-family: 'Cormorant', serif; font-size: 28px; font-weight: 300; color: #F5EFE6; 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(255,255,255,0.72); font-weight: 300; display: flex; align-items: baseline; gap: 10px; line-height: 1.65; }
.sem-topics li::before { content: '→'; color: rgba(17,17,17,0.62); flex-shrink: 0; font-size: 11px; }

/* ============================================================
   PREISE
   ============================================================ */
.preise { padding: 100px 56px; background: var(--rose-bg-3); border-top: 1px solid rgba(255,255,255,0.04); }
.preise-k { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(196,164,74,0.58); margin-bottom: 14px; font-weight: 300; }
.preise-h { font-family: 'Cormorant', serif; font-size: clamp(44px, 6.5vw, 90px); font-weight: 300; color: #F5EFE6; letter-spacing: -2px; margin-bottom: 60px; line-height: 0.9; }
.preise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); overflow: hidden;
}
.p-card {
  padding: 50px 40px; border-right: 1px solid rgba(255,255,255,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, #111111, #BFAA69);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.p-card:hover { background: rgba(255,255,255,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(255,255,255,0.26); margin-bottom: 22px; font-weight: 300; }
.p-val { font-family: 'Cormorant', serif; font-size: clamp(58px, 8vw, 96px); font-weight: 300; color: #F5EFE6; 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: #BFAA69; letter-spacing: 0; vertical-align: super; }
.p-unit { font-size: 12px; color: rgba(255,255,255,0.2); margin-bottom: 22px; font-weight: 300; }
.p-desc { font-size: 13px; color: rgba(255,255,255,0.28); line-height: 1.8; font-weight: 300; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.05); }

/* ============================================================
   STICKY CTA — STARS
   ============================================================ */
.scta-stars { font-size: 13px; color: #FFD700; letter-spacing: 1px; }

/* ============================================================
   PROZESS — 3 SCHRITTE
   ============================================================ */
.prozess { background: var(--rose-bg-2); padding: 100px 56px; border-top: 1px solid rgba(255,255,255,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: rgba(196,164,74,0.6); font-weight: 300; margin-bottom: 14px; }
.prozess-h { font-family: 'Cormorant', serif; font-size: clamp(32px, 4vw, 54px); font-weight: 300; color: #F5EFE6; letter-spacing: -1px; line-height: 1.05; }
.prozess-h em { font-style: italic; color: #BFAA69; }
.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(255,255,255,0.1); background: rgba(255,255,255,0.03);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}
.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(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); padding: 40px 36px; transition: border-color 0.25s, background 0.25s;
}
.prozess-step:hover { border-color: rgba(196,164,74,0.22); background: rgba(196,164,74,0.03); }
.prozess-num { font-family: 'DM Mono', monospace; font-size: 11px; color: rgba(196,164,74,0.45); letter-spacing: 2px; margin-bottom: 20px; }
.prozess-title { font-family: 'Cormorant', serif; font-size: 22px; font-weight: 400; color: #F5EFE6; margin-bottom: 12px; letter-spacing: -0.3px; }
.prozess-txt { font-size: 13px; color: rgba(255,255,255,0.74); line-height: 1.85; font-weight: 300; }
.prozess-arrow { align-self: center; color: rgba(196,164,74,0.3); 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 {
  background: #BFAA69; color: #111111; border: none;
  padding: 18px 48px; font-size: 14px; font-family: 'DM Sans', sans-serif; font-weight: 600;
  letter-spacing: 0.2px; cursor: none; transition: all 0.25s; border-radius: var(--radius-pill);
}
.prozess-btn:hover { background: #D4B45A; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(196,164,74,0.22); }
.prozess-hint { font-size: 12px; color: rgba(17,17,17,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(255,255,255,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: rgba(196,164,74,0.6); font-weight: 300; margin-bottom: 12px; }
.bew-h { font-family: 'Cormorant', serif; font-size: clamp(44px, 6vw, 80px); font-weight: 300; color: #F5EFE6; letter-spacing: -2px; line-height: 0.9; }
.bew-h em { font-style: italic; color: #BFAA69; }
.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(255,255,255,0.35); letter-spacing: 0.5px; font-weight: 300; }
.bew-stars-total { display: flex; align-items: center; gap: 8px; }
.bew-stars { color: #FFD700; font-size: 20px; letter-spacing: 2px; }
.bew-rating-num { font-family: 'Cormorant', serif; font-size: 32px; font-weight: 300; color: #F5EFE6; letter-spacing: -1px; }
.bew-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bew-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,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: rgba(196,164,74,0.18); background: rgba(255,255,255,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, #111111, #BFAA69);
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500;
  color: #fff; flex-shrink: 0; letter-spacing: 0.5px;
}
.bew-meta { flex: 1; }
.bew-name { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }
.bew-date { font-size: 11px; color: rgba(255,255,255,0.28); font-weight: 300; margin-top: 2px; }
.bew-stars-card { color: #FFD700; font-size: 14px; letter-spacing: 1px; }
.bew-text { font-size: 14px; color: rgba(255,255,255,0.78); 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(255,255,255,0.2); 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: rgba(196,164,74,0.65); text-decoration: none; font-weight: 400; letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(196,164,74,0.25); padding-bottom: 2px; transition: all 0.2s;
}
.bew-more:hover { color: #BFAA69; border-color: #BFAA69; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--rose-bg-2); padding: 100px 56px; border-top: 1px solid rgba(255,255,255,0.04); }
.faq-head { margin-bottom: 42px; }
.faq-k { font-size: 10px; letter-spacing: 3.2px; text-transform: uppercase; color: rgba(196,164,74,0.6); font-weight: 300; margin-bottom: 12px; }
.faq-h { font-family: 'Cormorant', serif; font-size: clamp(38px, 5vw, 68px); font-weight: 300; color: #F5EFE6; letter-spacing: -1.5px; line-height: 0.95; }
.faq-h em { font-style: italic; color: #BFAA69; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02);
  transition: border-color 0.2s, background 0.2s;
  overflow: hidden; border-radius: var(--radius-lg);
}
.faq-item:hover { border-color: rgba(196,164,74,0.24); background: rgba(196,164,74,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: #F5EFE6; font-family: 'Cormorant', serif; font-size: 27px;
  font-weight: 400; line-height: 1.08; letter-spacing: -0.3px;
}
.faq-ico {
  color: rgba(196,164,74,0.75); font-family: 'DM Sans', sans-serif; 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(255,255,255,0.38); line-height: 1.8; font-weight: 300;
  padding: 0 26px 24px;
}
.faq-item.open { border-color: rgba(196,164,74,0.26); background: rgba(196,164,74,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(255,255,255,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: rgba(196,164,74,0.6); font-weight: 300; margin-bottom: 14px; }
.maps-h { font-family: 'Cormorant', serif; font-size: clamp(36px, 4.5vw, 58px); font-weight: 300; color: #F5EFE6; letter-spacing: -1px; line-height: 1; margin-bottom: 36px; }
.maps-h em { font-style: italic; color: #BFAA69; }
.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(255,255,255,0.05); font-size: 13px;
}
.maps-detail-row:last-child { border-bottom: 1px solid rgba(255,255,255,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(255,255,255,0.22); font-weight: 300; margin-bottom: 3px; }
.maps-detail-val { font-size: 14px; color: rgba(255,255,255,0.55); font-weight: 300; }
.maps-detail-val a { color: rgba(196,164,74,0.75); text-decoration: none; transition: color 0.2s; }
.maps-detail-val a:hover { color: #BFAA69; }
.maps-cta {
  background: transparent; color: #BFAA69; border: 1px solid rgba(191,170,105,0.55);
  padding: 14px 28px; font-size: 13px; font-family: 'DM Sans', sans-serif; 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(191,170,105,0.14); border-color: #BFAA69; }
.maps-open {
  margin-top: 14px; color: rgba(196,164,74,0.65); text-decoration: none; font-size: 12px;
  letter-spacing: 0.3px; border-bottom: 1px solid rgba(196,164,74,0.25); padding-bottom: 2px;
  width: fit-content; transition: color 0.2s, border-color 0.2s;
}
.maps-open:hover { color: #BFAA69; border-color: #BFAA69; }
.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);
}

.prozess,
.leis,
.faq,
.bewertungen,
.maps-sec,
.cta {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

/* ============================================================
   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: 'Cormorant', serif; font-size: clamp(44px, 6vw, 82px); font-weight: 300; color: #F5EFE6; 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: 26px; position: relative; z-index: 1; }
.cta-txt { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.9; font-weight: 300; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-progress {
  width: 100%; height: 4px; background: rgba(255,255,255,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, #111111, #BFAA69);
  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: rgba(196,164,74,0.75); 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(255,255,255,0.14);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
}
.form-consent input {
  margin-top: 3px;
  accent-color: #BFAA69;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.form-consent span {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  text-transform: none;
  letter-spacing: 0;
}
.form-consent a {
  color: #BFAA69;
  text-decoration: underline;
}
.form-field span {
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  color: rgba(255,255,255,0.34); font-weight: 300;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16); color: #F5EFE6;
  padding: 13px 14px; font-size: 14px; font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, background 0.2s; outline: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.34); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(196,164,74,0.7);
  background: rgba(255,255,255,0.09);
}
.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(196,164,74,0.8) 50%),
    linear-gradient(135deg, rgba(196,164,74,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(196,164,74,0.35); background: transparent;
  color: #BFAA69; padding: 12px 18px; font-size: 12px; letter-spacing: 0.3px;
  font-family: 'DM Sans', sans-serif; cursor: none; transition: all 0.2s;
}
.form-next:hover,
.form-back:hover { background: rgba(191,170,105,0.14); border-color: #BFAA69; }
.cta-b1 {
  background: #FFFFFF; color: #111111; border: none; padding: 18px 34px;
  font-size: 14px; font-family: 'DM Sans', sans-serif; font-weight: 600;
  transition: all 0.25s; cursor: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.cta-b1:hover { background: #fff; transform: translateX(4px); box-shadow: 0 12px 36px rgba(0,0,0,0.2); }
.contact-quick { display: flex; flex-wrap: wrap; gap: 10px; }
.quick-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(17,17,17,0.82); color: #FFFFFF;
  border: 1px solid rgba(255,255,255,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: #FFFFFF; border-color: #BFAA69; background: rgba(191,170,105,0.22); }
.quick-btn-wa,
.rfix-btn-wa {
  background: #25D366;
  color: #111111 !important;
  border-color: rgba(17,17,17,0.22) !important;
}
.quick-btn-wa:hover,
.rfix-btn-wa:hover {
  background: #1EBE5A !important;
  border-color: rgba(17,17,17,0.35) !important;
  color: #111111 !important;
}
.btn-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(17,17,17,0.14);
  color: #111111;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.cta-contact { padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 6px; }
.cta-ph { font-family: 'Cormorant', serif; font-size: 30px; font-style: italic; font-weight: 300; color: rgba(255,255,255,0.52); }
.cta-ml { font-size: 12px; color: rgba(255,255,255,0.26); font-weight: 300; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--rose-bg-2); padding: 36px 56px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,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: rgba(191,170,105,0.65);
  font-weight: 600;
  letter-spacing: 0.35px;
}

.kooperation-btn {
  background: #BFAA69;
  color: #111111 !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(191,170,105,0.16);
  border-color: var(--accent-ink);
}

.hero-btn1,
.prozess-btn,
.scta,
.rfix-btn-form {
  background: #111111;
  color: #FFFFFF;
}

.hero-btn1:hover,
.prozess-btn:hover,
.scta-btn:hover {
  background: #2A2A2A;
}

/* ============================================================
   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(255,255,255,0.72);
}

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

.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: #FFFFFF;
  border-radius: var(--radius-xs);
  padding: 5px 10px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35));
}
.cert-logo-img {
  background: #FFFFFF;
  border-radius: var(--radius-xs);
  padding: 4px 8px;
}
.f-logo { font-family: 'Cormorant', serif; font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.2); }
.f-logo { color: rgba(17,17,17,0.82); }
.f-logo span { color: rgba(17,17,17,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 img { height: 28px; width: auto; object-fit: contain; background: #fff; padding: 3px 6px; border-radius: var(--radius-xs); }
.f-links { display: flex; gap: 20px; }
.f-links a { font-size: 11px; color: rgba(17,17,17,0.8); text-decoration: none; transition: color 0.2s; }
.f-links a:hover { color: #111111; }

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

.quick-btn.quick-btn-wa,
.rfix-btn.rfix-btn-wa {
  background: #25D366 !important;
  color: #111111 !important;
  border-color: rgba(17,17,17,0.24) !important;
}

.quick-btn.quick-btn-wa:hover,
.rfix-btn.rfix-btn-wa:hover {
  background: #1EBE5A !important;
  color: #111111 !important;
  border-color: rgba(17,17,17,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 — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .rfix-contact { display: none; }

  .nav { padding: 0 22px; }
  .nav-links, .nav-cert { display: none; }
  .nav-brand-logo { height: 31px; }
  .nav-logo small { letter-spacing: 2px; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .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: 50px 1fr 20px; gap: 18px; padding: 28px 22px; }
  .leis-media { grid-column: 2 / 3; width: min(100%, 240px); margin-top: 2px; border-radius: var(--radius-md); }
  .leis-n, .leis-arr { font-size: 10px; }

  .preise-grid { grid-template-columns: 1fr; }
  .p-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,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; }
}

@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;
  }
}
