/* ============================================================
   MedVital Berlin — Infusionstherapie (Vitamin C · B12 · NAD+ · Eisen)
   Design-Rezept: "Klinik-Luxus 2.0 / Longevity Editorial" (Schwesterseite zur Gesundheits-Check-LP)
   Espresso · Bronze-Gold · Creme  |  Playfair Display + DM Sans
   Eigener Charakter: Tropfen-/Infusions-Deko, Infusions-Menü, Wirkmechanik, Sicherheits-Block
   ============================================================ */

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{font-family:var(--sans);color:var(--ink);background:var(--cream);
  font-size:17px;line-height:1.65;-webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;overflow-x:hidden}
img,svg,video{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
ul{list-style:none}
input,textarea,select{font-family:inherit;font-size:inherit;color:inherit}
:focus-visible{outline:2px solid var(--gold);outline-offset:3px}

/* ---------- Tokens ---------- */
:root{
  --ink:#241C13;         /* darkest espresso — text + darkest bg */
  --espresso:#2A2118;    /* dark section bg (client base) */
  --espresso-2:#37291B;  /* raised dark surface */
  --espresso-3:#453320;

  --gold:#B8945A;        /* primary bronze-gold (client) */
  --gold-deep:#9A7842;
  --gold-light:#D6B47C;
  --champagne:#E9DcC5;

  --cream:#FAF7F1;       /* page background */
  --cream-2:#F3EBDF;     /* alt light surface */
  --sand:#EBE1D2;        /* tint / soft border fill */
  --line:rgba(42,33,24,.12);
  --line-2:rgba(42,33,24,.08);
  --muted:#776E60;       /* muted body on light */
  --muted-d:#B7AA96;     /* muted body on dark */
  --white:#fff;

  --serif:'Playfair Display',Georgia,'Times New Roman',serif;
  --sans:'DM Sans',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;

  --r-sm:10px; --r:16px; --r-lg:24px; --r-xl:32px; --r-pill:999px;
  --shadow-sm:0 2px 10px rgba(42,33,24,.06);
  --shadow:0 14px 40px -12px rgba(42,33,24,.16);
  --shadow-lg:0 34px 80px -24px rgba(42,33,24,.30);
  --shadow-gold:0 20px 46px -18px rgba(154,120,66,.5);

  --container:1200px;
  --ease:cubic-bezier(.22,.61,.36,1);
  --sp:clamp(4.5rem,9vw,8rem);   /* vertical section rhythm */
}

/* ---------- Layout ---------- */
.container{width:100%;max-width:var(--container);margin-inline:auto;padding-inline:clamp(1.15rem,4vw,2.4rem)}
.container--narrow{max-width:920px}
.section{padding-block:var(--sp);position:relative}
.section--tight{padding-block:clamp(3rem,6vw,4.5rem)}
.section--cream2{background:var(--cream-2)}
.section--dark{background:var(--espresso);color:#F1E9DC}
.section--ink{background:var(--ink);color:#F1E9DC}
.section--dark .muted,.section--ink .muted{color:var(--muted-d)}

/* ---------- Typography ---------- */
h1,h2,h3,h4{font-family:var(--serif);font-weight:600;line-height:1.1;
  letter-spacing:-.01em;color:var(--ink)}
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4,
.section--ink h2,.section--ink h3,.hero h1,.hero h2{color:#FBF6EE}
.display{font-size:clamp(2.6rem,6vw,4.6rem);line-height:1.03;letter-spacing:-.02em}
h2.h-sec{font-size:clamp(2rem,4.2vw,3.35rem);line-height:1.06}
h3{font-size:clamp(1.3rem,2.2vw,1.7rem)}
.serif-i{font-style:italic}
.gold-word{color:var(--gold)}
.section--dark .gold-word{color:var(--gold-light)}
.lead{font-size:clamp(1.08rem,1.7vw,1.32rem);line-height:1.6;color:var(--muted)}
.section--dark .lead{color:#D8CDBB}
.muted{color:var(--muted)}
p{text-wrap:pretty}
.balance{text-wrap:balance}

/* ---------- Eyebrow (editorial gold small-caps + rule) ---------- */
.eyebrow{display:inline-flex;align-items:center;gap:.7rem;
  font-family:var(--sans);font-weight:600;font-size:.8rem;
  letter-spacing:.22em;text-transform:uppercase;color:var(--gold-deep);margin-bottom:1.15rem}
.eyebrow::before{content:"";width:34px;height:1px;background:var(--gold);opacity:.9}
.eyebrow--center{justify-content:center}
.section--dark .eyebrow{color:var(--gold-light)}
.eyebrow--num{color:var(--gold-deep)}
.eyebrow .num{font-family:var(--serif);font-style:italic;font-size:1rem;letter-spacing:0;color:var(--gold-deep)}
.section--dark .eyebrow .num{color:var(--gold-light)}

.section-head{max-width:760px}
.section-head--center{margin-inline:auto;text-align:center}

/* ---------- Buttons ---------- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.6rem;
  font-family:var(--sans);font-weight:600;font-size:1rem;line-height:1;
  padding:1.02rem 1.7rem;border-radius:var(--r-pill);
  transition:transform .3s var(--ease),box-shadow .3s var(--ease),background .3s,color .3s;
  white-space:nowrap;letter-spacing:.005em}
.btn i{font-size:1.2em}
.btn-gold{background:var(--gold);color:#241C13;box-shadow:var(--shadow-gold)}
.btn-gold:hover{background:var(--gold-light);transform:translateY(-3px);box-shadow:0 26px 54px -18px rgba(154,120,66,.62)}
.btn-ink{background:var(--ink);color:#F6EFE3}
.btn-ink:hover{background:#160f08;transform:translateY(-3px)}
.btn-ghost{background:transparent;color:var(--ink);box-shadow:inset 0 0 0 1.5px rgba(42,33,24,.28)}
.btn-ghost:hover{box-shadow:inset 0 0 0 1.5px var(--ink);transform:translateY(-3px)}
.btn-ghost-light{background:transparent;color:#F6EFE3;box-shadow:inset 0 0 0 1.5px rgba(246,239,227,.4)}
.btn-ghost-light:hover{box-shadow:inset 0 0 0 1.5px rgba(246,239,227,.9);transform:translateY(-3px)}
.btn-lg{padding:1.2rem 2.1rem;font-size:1.06rem}
.btn-block{width:100%}
.btn-row{display:flex;flex-wrap:wrap;gap:.9rem}

/* ---------- Header ---------- */
.header{position:fixed;inset:0 0 auto 0;z-index:80;transition:all .4s var(--ease);
  padding-block:1.1rem}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.header.scrolled{background:rgba(250,247,241,.86);backdrop-filter:blur(16px) saturate(1.3);
  box-shadow:0 1px 0 var(--line),0 12px 30px -22px rgba(42,33,24,.4);padding-block:.7rem}
.brand{display:flex;align-items:center;gap:.7rem;z-index:2}
.brand img{height:46px;width:auto;transition:height .4s var(--ease)}
.header.scrolled .brand img{height:40px}
.brand-fallback{font-family:var(--serif);font-weight:700;font-size:1.4rem;letter-spacing:.02em;color:#FBF6EE}
.header.scrolled .brand-fallback{color:var(--ink)}
.nav{display:flex;align-items:center;gap:2rem}
.nav-links{display:flex;gap:1.9rem;font-size:.96rem;font-weight:500}
.nav-links a{color:rgba(251,246,238,.9);position:relative;padding-block:.3rem;transition:color .25s}
.nav-links a::after{content:"";position:absolute;left:0;bottom:0;width:0;height:1.5px;background:var(--gold);transition:width .3s var(--ease)}
.nav-links a:hover{color:#fff}.nav-links a:hover::after{width:100%}
.header.scrolled .nav-links a{color:var(--muted)}
.header.scrolled .nav-links a:hover{color:var(--ink)}
.header-cta{display:flex;align-items:center;gap:1rem}
.header-phone{display:inline-flex;align-items:center;gap:.5rem;font-weight:600;font-size:.98rem;color:#FBF6EE}
.header.scrolled .header-phone{color:var(--ink)}
.header-phone i{color:var(--gold-light)}.header.scrolled .header-phone i{color:var(--gold-deep)}
.nav-toggle{display:none;font-size:1.7rem;color:#FBF6EE;z-index:2}
.header.scrolled .nav-toggle{color:var(--ink)}
.nav-close{display:none}
.nav-logo{display:none}
.nav-cta-mobile{display:none}          /* desktop CTA lives in .header-cta; this one is only for the mobile menu */
.header-cta .nav-cta-desktop{padding:.72rem 1.4rem;font-size:.95rem}

/* ---------- HERO (full-bleed bg image + overlay) ---------- */
.hero{position:relative;min-height:100svh;display:flex;align-items:center;
  padding-top:7rem;padding-bottom:4rem;overflow:hidden;isolation:isolate}
.hero-bg{position:absolute;inset:0;z-index:-2}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:70% center}
.hero-bg--fallback{background:
  radial-gradient(120% 90% at 78% 18%,rgba(184,148,90,.34),transparent 55%),
  radial-gradient(100% 80% at 12% 88%,rgba(69,51,32,.7),transparent 60%),
  linear-gradient(115deg,#1B140C 0%,#2A2118 46%,#3A2C1B 100%)}
.hero-overlay{position:absolute;inset:0;z-index:-1;
  background:
   linear-gradient(90deg,rgba(20,14,8,.92) 0%,rgba(20,14,8,.7) 42%,rgba(20,14,8,.3) 72%,rgba(20,14,8,.12) 100%),
   linear-gradient(180deg,rgba(20,14,8,.6) 0%,rgba(20,14,8,0) 20%),
   linear-gradient(0deg,rgba(20,14,8,.72) 0%,rgba(20,14,8,0) 42%)}
@media (max-width:640px){.hero-overlay{background:
   linear-gradient(180deg,rgba(20,14,8,.82) 0%,rgba(20,14,8,.6) 34%,rgba(20,14,8,.64) 66%,rgba(20,14,8,.9) 100%)}}
.hero-inner{position:relative;max-width:820px}
.hero .eyebrow{color:var(--gold-light)}
.hero .eyebrow::before{background:var(--gold-light)}
.hero h1{font-size:clamp(2.55rem,5.6vw,4.5rem);line-height:1.02;letter-spacing:-.022em;color:#FCF8F1;
  margin-bottom:1.5rem;text-shadow:0 2px 30px rgba(0,0,0,.25)}
.hero-sub{font-size:clamp(1.08rem,1.7vw,1.32rem);color:#E7DCCB;max-width:600px;margin-bottom:1.9rem}
.hero-usps{display:flex;flex-wrap:wrap;gap:.7rem 1.6rem;margin-bottom:2.3rem}
.hero-usps li{display:flex;align-items:center;gap:.6rem;font-weight:500;font-size:1.02rem;color:#F1E7D8}
.hero-usps i{color:var(--gold-light);font-size:1.15rem;flex:none}
.hero .btn-row{margin-bottom:2.6rem}
.hero-trust{display:flex;flex-wrap:wrap;align-items:center;gap:1.4rem 2rem;
  padding-top:1.7rem;border-top:1px solid rgba(233,220,197,.2)}
.trust-item{display:flex;align-items:center;gap:.7rem}
.trust-stars{display:flex;gap:.12rem;color:var(--gold-light);font-size:1.05rem}
.trust-item .t-strong{font-family:var(--serif);font-size:1.35rem;font-weight:600;color:#FCF8F1;line-height:1}
.trust-item small{display:block;font-size:.82rem;color:#C9BCA8;line-height:1.3}
.trust-sep{width:1px;height:34px;background:rgba(233,220,197,.22)}
.hero-scroll{position:absolute;left:50%;bottom:1.4rem;transform:translateX(-50%);z-index:1;
  color:rgba(233,220,197,.6);font-size:1.5rem;animation:bob 2.4s ease-in-out infinite}
@keyframes bob{0%,100%{transform:translate(-50%,0)}50%{transform:translate(-50%,9px)}}

/* ---------- Marquee trust strip ---------- */
.strip{background:var(--ink);color:#E7DCCB;padding-block:1.05rem;overflow:hidden}
.strip-track{display:flex;gap:3.2rem;width:max-content;animation:marq 36s linear infinite}
.strip:hover .strip-track{animation-play-state:paused}
.strip-item{display:flex;align-items:center;gap:.7rem;font-size:.95rem;font-weight:500;white-space:nowrap;letter-spacing:.01em}
.strip-item i{color:var(--gold-light);font-size:1.2rem}
.strip-dot{width:5px;height:5px;border-radius:50%;background:var(--gold);opacity:.6}
@keyframes marq{to{transform:translateX(-50%)}}

/* ---------- Signs / symptom recognition ---------- */
.signs-head{max-width:820px}
.signs{display:grid;grid-template-columns:repeat(3,1fr);gap:1.1rem;margin-top:3rem}
.sign{display:flex;gap:1rem;align-items:flex-start;background:var(--white);border:1px solid var(--line-2);
  border-radius:var(--r-lg);padding:1.6rem 1.6rem;transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .4s}
.sign:hover{transform:translateY(-5px);box-shadow:var(--shadow-sm);border-color:rgba(184,148,90,.4)}
.sign i{flex:none;width:48px;height:48px;border-radius:13px;display:grid;place-items:center;
  background:linear-gradient(150deg,#F6EEE0,#EADCC4);color:var(--gold-deep);font-size:1.4rem;box-shadow:inset 0 0 0 1px rgba(184,148,90,.25)}
.sign h4{font-size:1.12rem;font-family:var(--sans);font-weight:700;margin-bottom:.2rem;color:var(--ink)}
.sign p{color:var(--muted);font-size:.95rem}
.signs-bridge{max-width:820px;margin:2.8rem auto 0;text-align:center}
.signs-bridge p{font-family:var(--serif);font-style:italic;font-size:clamp(1.25rem,2.4vw,1.7rem);line-height:1.45;color:var(--espresso)}
.signs-bridge .gold-word{font-style:normal}

/* ---------- Infusion menu ---------- */
.inf-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;align-items:stretch}
.inf{background:var(--white);border:1px solid var(--line);border-radius:var(--r-lg);padding:2rem 1.8rem;
  display:flex;flex-direction:column;position:relative;transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .4s}
.inf:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:rgba(184,148,90,.4)}
.inf--feature{background:var(--espresso);color:#F1E9DC;border-color:var(--espresso);box-shadow:var(--shadow-lg)}
.inf--feature .inf-name{color:#FCF8F1}
.inf-flag{position:absolute;top:-14px;left:50%;transform:translateX(-50%);background:var(--gold);color:#241C13;
  font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:.4rem 1rem;border-radius:var(--r-pill);white-space:nowrap}
.inf-ic{width:58px;height:58px;border-radius:16px;display:grid;place-items:center;margin-bottom:1.2rem;
  background:linear-gradient(150deg,#F6EEE0,#EADCC4);color:var(--gold-deep);font-size:1.75rem;box-shadow:inset 0 0 0 1px rgba(184,148,90,.25)}
.inf--feature .inf-ic{background:rgba(214,180,124,.16);color:var(--gold-light);box-shadow:inset 0 0 0 1px rgba(214,180,124,.32)}
.inf-name{font-family:var(--serif);font-size:1.45rem;margin-bottom:.3rem}
.inf-for{font-size:.93rem;color:var(--muted);margin-bottom:1.2rem;min-height:2.6em}
.inf--feature .inf-for{color:#CFC3AF}
.inf-feats{display:grid;gap:.6rem;margin-bottom:1.5rem;flex:1}
.inf-feats li{display:flex;gap:.55rem;align-items:flex-start;font-size:.95rem;color:#3B3226}
.inf--feature .inf-feats li{color:#DBD0BE}
.inf-feats i{color:var(--gold-deep);flex:none;margin-top:.15rem;font-size:1rem}
.inf--feature .inf-feats i{color:var(--gold-light)}
.inf-foot{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding-top:1.2rem;border-top:1px solid var(--line);margin-top:auto}
.inf--feature .inf-foot{border-color:rgba(233,220,197,.18)}
.inf-price{display:flex;align-items:baseline;gap:.35rem}
.inf-price .from{font-size:.8rem;color:var(--muted)}
.inf--feature .inf-price .from{color:#CFC3AF}
.inf-price .amt{font-family:var(--serif);font-size:1.9rem;line-height:1;color:var(--ink)}
.inf--feature .inf-price .amt{color:var(--gold-light)}
.inf-req{display:inline-flex;align-items:center;gap:.35rem;font-weight:600;font-size:.9rem;color:var(--gold-deep)}
.inf--feature .inf-req{color:var(--gold-light)}
.inf-req:hover{gap:.6rem}
.inf-note{text-align:center;margin-top:1.8rem;font-size:.9rem;color:var(--muted)}

/* ---------- Mechanism (why infusion vs pills) ---------- */
.mech{display:grid;grid-template-columns:.88fr 1.12fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.mech-visual{position:relative;border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow-lg);aspect-ratio:3/4;background:var(--espresso-2)}
.mech-visual img{width:100%;height:100%;object-fit:cover}
.mech-visual--fallback{background:radial-gradient(90% 60% at 40% 20%,rgba(184,148,90,.4),transparent 60%),linear-gradient(160deg,#2A2118,#150E07)}
.mech-badge{position:absolute;left:1.2rem;bottom:1.2rem;background:rgba(20,14,8,.7);backdrop-filter:blur(8px);
  border:1px solid rgba(214,180,124,.4);border-radius:var(--r);padding:.9rem 1.15rem;color:#F1E9DC}
.mech-badge .n{font-family:var(--serif);font-size:1.9rem;color:var(--gold-light);line-height:1}
.mech-badge small{font-size:.82rem;color:#CFC3AF}
.mech-points{display:grid;gap:1.05rem;margin-top:1.8rem}
.mech-point{display:flex;gap:1rem;align-items:flex-start}
.mech-point .mp-ic{flex:none;width:48px;height:48px;border-radius:13px;display:grid;place-items:center;
  background:var(--sand);color:var(--gold-deep);font-size:1.35rem}
.mech-point h4{font-size:1.14rem;font-family:var(--sans);font-weight:700;margin-bottom:.15rem}
.mech-point p{color:var(--muted);font-size:.98rem}
.compare{display:grid;gap:.7rem;margin-top:2rem;background:var(--white);border:1px solid var(--line-2);border-radius:var(--r);padding:1.4rem 1.5rem}
.cmp-row{display:grid;grid-template-columns:110px 1fr auto;align-items:center;gap:.9rem}
.cmp-row .cmp-l{font-size:.92rem;font-weight:600;color:var(--espresso)}
.cmp-bar{height:10px;border-radius:var(--r-pill);background:var(--sand);overflow:hidden}
.cmp-bar span{display:block;height:100%;border-radius:inherit}
.cmp-row .cmp-v{font-size:.86rem;font-weight:700;color:var(--gold-deep);white-space:nowrap}
.cmp-bar.low span{width:35%;background:linear-gradient(90deg,#C9B48F,#B7A588)}
.cmp-bar.high span{width:100%;background:linear-gradient(90deg,var(--gold-deep),var(--gold-light))}
.cmp-note{font-size:.82rem;color:var(--muted);margin-top:.2rem}

/* ---------- Safety / medical supervision ---------- */
.safety-lead{max-width:820px}
.safety-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.2rem;margin-top:3rem}
.safe{padding:1.9rem 1.7rem;border-radius:var(--r-lg);background:var(--white);border:1px solid var(--line-2);transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .4s}
.safe:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:rgba(184,148,90,.4)}
.safe .s-ic{width:52px;height:52px;border-radius:14px;display:grid;place-items:center;margin-bottom:1.1rem;
  background:linear-gradient(150deg,#F6EEE0,#EADCC4);color:var(--gold-deep);font-size:1.55rem;box-shadow:inset 0 0 0 1px rgba(184,148,90,.25)}
.safe h4{font-size:1.16rem;margin-bottom:.4rem}
.safe p{color:var(--muted);font-size:.96rem}
.safety-anti{display:flex;flex-wrap:wrap;gap:.8rem;justify-content:center;margin-top:2.6rem}
.anti-pill{display:inline-flex;align-items:center;gap:.55rem;background:var(--sand);border-radius:var(--r-pill);
  padding:.7rem 1.25rem;font-weight:600;font-size:.98rem;color:var(--espresso)}
.anti-pill i{color:var(--gold-deep);font-size:1.2rem}

/* ---------- Authority (Dr Qedra) — dark ---------- */
.authority{display:grid;grid-template-columns:.82fr 1.18fr;gap:clamp(2rem,5vw,4.5rem);align-items:center}
.doc-photo{position:relative;border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow-lg);
  aspect-ratio:4/5;background:var(--espresso-3)}
.doc-photo img{width:100%;height:100%;object-fit:cover;object-position:center top}
.doc-photo::after{content:"";position:absolute;inset:0;box-shadow:inset 0 -80px 90px -40px rgba(20,14,8,.7);pointer-events:none}
.doc-frame{position:absolute;inset:12px;border:1px solid rgba(214,180,124,.4);border-radius:16px;pointer-events:none}
.doc-name{font-family:var(--serif);font-size:clamp(1.8rem,3vw,2.5rem);color:#FCF8F1;margin-bottom:.35rem}
.doc-role{color:var(--gold-light);font-weight:600;letter-spacing:.04em;margin-bottom:1.5rem}
.doc-quote{font-family:var(--serif);font-style:italic;font-size:clamp(1.3rem,2.3vw,1.8rem);line-height:1.4;color:#F1E7D6;margin-bottom:1.6rem}
.doc-cred{display:grid;gap:.75rem;margin-bottom:1.9rem}
.doc-cred li{display:flex;gap:.75rem;align-items:flex-start;color:#DBD0BE;font-size:1.02rem}
.doc-cred i{color:var(--gold-light);flex:none;margin-top:.15rem;font-size:1.2rem}

/* ---------- Process / Ablauf ---------- */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem;counter-reset:step;position:relative}
.step{position:relative;padding:2.2rem 1.9rem;background:var(--white);border:1px solid var(--line-2);border-radius:var(--r-lg)}
.step-num{font-family:var(--serif);font-size:3.2rem;line-height:1;color:var(--gold);opacity:.9;margin-bottom:1rem;letter-spacing:-.02em}
.step h3{font-size:1.3rem;margin-bottom:.5rem}
.step p{color:var(--muted);font-size:1rem}
.step-ic{position:absolute;top:2.2rem;right:1.9rem;font-size:1.5rem;color:var(--gold-deep);opacity:.55}

/* ---------- Cross-link to check LP ---------- */
.crosslink{margin-top:2.8rem;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1.4rem;
  background:linear-gradient(120deg,var(--white),var(--cream-2));border:1px solid var(--line);border-radius:var(--r-lg);padding:1.6rem 1.9rem;box-shadow:var(--shadow-sm)}
.crosslink-txt{display:flex;gap:1rem;align-items:center;min-width:260px;flex:1}
.crosslink-txt i{flex:none;width:48px;height:48px;border-radius:13px;display:grid;place-items:center;background:var(--sand);color:var(--gold-deep);font-size:1.5rem}
.crosslink-txt h4{font-size:1.15rem;margin-bottom:.15rem}
.crosslink-txt p{color:var(--muted);font-size:.95rem}
.crosslink .btn{white-space:nowrap}

/* ---------- Testimonials ---------- */
.testi-head{display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;gap:1.5rem;margin-bottom:2.8rem}
.google-badge{display:inline-flex;align-items:center;gap:.85rem;background:var(--white);border:1px solid var(--line);
  border-radius:var(--r);padding:.9rem 1.3rem;box-shadow:var(--shadow-sm)}
.google-badge .g{font-family:var(--serif);font-weight:700;font-size:1.15rem}
.google-badge .g b{color:#4285F4}.google-badge .rate{font-family:var(--serif);font-size:1.7rem;line-height:1;color:var(--ink)}
.google-badge .trust-stars{color:var(--gold);font-size:1rem}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.testi{background:var(--white);border:1px solid var(--line-2);border-radius:var(--r-lg);padding:1.9rem;display:flex;flex-direction:column;gap:1rem}
.testi .trust-stars{color:var(--gold);font-size:1rem}
.testi p{font-size:1.02rem;color:#3B3226;line-height:1.6;flex:1}
.testi-av{width:46px;height:46px;border-radius:50%;background:var(--espresso);color:var(--gold-light);
  display:grid;place-items:center;font-family:var(--serif);font-size:1.2rem;flex:none}
/* authentic Google review layout: avatar + name + date on top, G logo top-right */
.testi-top{display:flex;align-items:center;gap:.75rem}
.testi-id{flex:1;min-width:0}
.testi-id .nm{font-weight:600;font-size:.99rem;color:var(--ink);line-height:1.2}
.testi-id small{color:var(--muted);font-size:.82rem}
.g-logo{width:22px;height:22px;flex:none}
.testi-top .g-logo{width:22px;height:22px}
.testi .trust-stars{color:#FBBC05;font-size:1.08rem;letter-spacing:.02em}
.testi p{font-size:1.02rem;color:#3B3226;line-height:1.6;flex:1;margin-top:-.2rem}
/* Google rating summary badge */
.greviews{display:inline-flex;align-items:center;gap:.95rem;background:var(--white);border:1px solid var(--line);
  border-radius:var(--r);padding:.8rem 1.35rem;box-shadow:var(--shadow-sm)}
.greviews .g-logo{width:34px;height:34px}
.gr-score{display:flex;align-items:center;gap:.55rem}
.gr-num{font-family:var(--serif);font-size:1.75rem;line-height:1;color:var(--ink)}
.greviews .trust-stars{color:#FBBC05;font-size:1rem}
.greviews-meta small{display:block;color:var(--muted);font-size:.82rem;margin-top:.15rem}
.hero-trust .g-logo{width:20px;height:20px}

/* ---------- Catchment (no map) ---------- */
.reach{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.reach-card{background:var(--espresso);color:#F1E9DC;border-radius:var(--r-lg);padding:clamp(2rem,4vw,3rem);box-shadow:var(--shadow-lg)}
.reach-addr{display:flex;gap:1rem;align-items:flex-start;padding-bottom:1.5rem;margin-bottom:1.5rem;border-bottom:1px solid rgba(233,220,197,.18)}
.reach-addr i{font-size:1.6rem;color:var(--gold-light);flex:none}
.reach-addr .a-t{font-family:var(--serif);font-size:1.5rem;color:#FCF8F1}
.reach-addr .a-s{color:#CFC3AF}
.reach-facts{display:grid;gap:1rem}
.reach-facts li{display:flex;gap:.7rem;align-items:center;color:#DBD0BE}
.reach-facts i{color:var(--gold-light)}
.reach-pills{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.9rem}
.reach-pill{background:var(--white);border:1px solid var(--line);border-radius:var(--r-pill);padding:.5rem 1.05rem;font-size:.92rem;font-weight:500;color:var(--espresso)}
.reach-photo{border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow);aspect-ratio:4/3;background:var(--sand)}
.reach-photo img{width:100%;height:100%;object-fit:cover}

/* ---------- Booking / Quiz ---------- */
.book{display:grid;grid-template-columns:1fr 1.05fr;gap:clamp(2rem,5vw,4rem);align-items:start}
.book-left h2{margin-bottom:1.1rem}
.book-benefits{display:grid;gap:1.05rem;margin-top:2rem}
.book-benefit{display:flex;gap:.9rem;align-items:flex-start}
.book-benefit i{flex:none;width:42px;height:42px;border-radius:12px;display:grid;place-items:center;
  background:rgba(214,180,124,.16);color:var(--gold-light);font-size:1.25rem}
.book-benefit h4{color:#FCF8F1;font-size:1.1rem;font-family:var(--sans);font-weight:700;margin-bottom:.1rem}
.book-benefit p{color:#CFC3AF;font-size:.96rem}
.book-doc{display:flex;align-items:center;gap:1rem;margin-top:2.3rem;padding-top:1.8rem;border-top:1px solid rgba(233,220,197,.16)}
.book-doc img{width:64px;height:64px;border-radius:50%;object-fit:cover;object-position:center top;border:2px solid rgba(214,180,124,.5)}
.book-doc .bd-n{font-family:var(--serif);font-size:1.2rem;color:#FCF8F1}
.book-doc .bd-r{color:var(--gold-light);font-size:.9rem}

/* Quiz card */
.quiz{background:var(--white);border-radius:var(--r-xl);box-shadow:var(--shadow-lg);padding:clamp(1.6rem,3vw,2.6rem);color:var(--ink)}
.quiz-progress{height:6px;border-radius:var(--r-pill);background:var(--sand);overflow:hidden;margin-bottom:1.7rem}
.quiz-progress span{display:block;height:100%;width:20%;background:linear-gradient(90deg,var(--gold-deep),var(--gold-light));
  border-radius:inherit;transition:width .5s var(--ease)}
.quiz-progress.hidden{display:none}
.quiz-step{display:none;animation:fade .45s var(--ease)}
.quiz-step.active{display:block}
@keyframes fade{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}
.quiz-q{font-family:var(--serif);font-size:1.5rem;margin-bottom:.4rem;color:var(--ink);font-weight:600}
/* quiz card is white even though it sits in a .section--dark → force dark text, don't inherit the cream heading color */
.section--dark .quiz .quiz-q{color:var(--ink)}
.section--dark .quiz .muted{color:var(--muted)}
.quiz-hint{color:var(--muted);font-size:.95rem;margin-bottom:1.5rem}
.quiz-opts{display:grid;gap:.75rem}
.quiz-opts.two{grid-template-columns:1fr 1fr}
.opt{display:flex;align-items:center;gap:.9rem;padding:1.05rem 1.2rem;border:1.5px solid var(--line);border-radius:var(--r);
  background:var(--cream);transition:.25s;text-align:left;font-weight:500;font-size:1.02rem;width:100%}
.opt:hover{border-color:var(--gold);background:#fff;transform:translateY(-2px);box-shadow:var(--shadow-sm)}
.opt.sel{border-color:var(--gold-deep);background:#fff;box-shadow:0 0 0 3px rgba(184,148,90,.16)}
.opt i{width:40px;height:40px;border-radius:10px;display:grid;place-items:center;background:var(--sand);color:var(--gold-deep);font-size:1.2rem;flex:none}
.opt .o-sub{display:block;font-weight:400;font-size:.83rem;color:var(--muted)}
.quiz-fields{display:grid;gap:.85rem}
.field{display:flex;flex-direction:column;gap:.35rem}
.field label{font-size:.86rem;font-weight:600;color:var(--espresso)}
.field input,.field textarea{padding:.9rem 1rem;border:1.5px solid var(--line);border-radius:var(--r-sm);background:var(--cream);transition:.2s}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--gold);background:#fff;box-shadow:0 0 0 3px rgba(184,148,90,.14)}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:.85rem}
.quiz-nav{display:flex;gap:.8rem;margin-top:1.6rem}
.quiz-back{color:var(--muted);font-weight:500;display:inline-flex;align-items:center;gap:.4rem;padding:.6rem}
.quiz-back:hover{color:var(--ink)}
.consent{display:flex;gap:.6rem;align-items:flex-start;font-size:.82rem;color:var(--muted);margin-top:.4rem}
.consent input{margin-top:.2rem;accent-color:var(--gold-deep);width:16px;height:16px;flex:none}
.consent a{color:var(--gold-deep);text-decoration:underline}
.quiz-reassure{display:flex;flex-wrap:wrap;gap:.4rem 1.1rem;margin-top:1.3rem;font-size:.82rem;color:var(--muted)}
.quiz-reassure span{display:inline-flex;align-items:center;gap:.35rem}
.quiz-reassure i{color:var(--gold-deep)}
.quiz-success{display:none;text-align:center;padding:1.5rem 0}
.quiz-success.show{display:block;animation:fade .5s}
.quiz-success .ok-ic{width:74px;height:74px;border-radius:50%;background:rgba(184,148,90,.16);color:var(--gold-deep);
  display:grid;place-items:center;font-size:2.2rem;margin:0 auto 1.3rem}

/* ---------- FAQ ---------- */
.faq-wrap{max-width:860px;margin-inline:auto}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;width:100%;
  padding:1.5rem 0;font-family:var(--serif);font-size:clamp(1.1rem,1.9vw,1.34rem);color:var(--ink);text-align:left}
.faq-q i{flex:none;font-size:1.3rem;color:var(--gold-deep);transition:transform .35s var(--ease)}
.faq-item.open .faq-q i{transform:rotate(45deg)}
.faq-a{max-height:0;overflow:hidden;transition:max-height .4s var(--ease)}
.faq-a-inner{padding-bottom:1.5rem;color:var(--muted);font-size:1.04rem;line-height:1.65;max-width:70ch}

/* ---------- Final CTA (full-bleed) ---------- */
.final{position:relative;overflow:hidden;isolation:isolate;color:#F6EFE3;text-align:center}
.final-bg{position:absolute;inset:0;z-index:-2}
.final-bg img{width:100%;height:100%;object-fit:cover;object-position:center}
.final-bg--fallback{background:
  radial-gradient(90% 80% at 50% 0%,rgba(184,148,90,.34),transparent 60%),
  linear-gradient(160deg,#2A2118,#150E07)}
.final-overlay{position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,rgba(20,14,8,.72),rgba(20,14,8,.88)),linear-gradient(90deg,rgba(20,14,8,.6),rgba(20,14,8,.15))}
.final .container{padding-block:clamp(5rem,9vw,7.5rem)}
.final h2{font-size:clamp(2.2rem,4.6vw,3.7rem);color:#FCF8F1;margin-bottom:1.2rem}
.final p{font-size:1.2rem;color:#E7DCCB;max-width:620px;margin:0 auto 2.4rem}
.final .btn-row{justify-content:center}
.final-mini{margin-top:2rem;display:flex;flex-wrap:wrap;gap:1.4rem;justify-content:center;color:#CFC3AF;font-size:.95rem}
.final-mini span{display:inline-flex;align-items:center;gap:.5rem}
.final-mini i{color:var(--gold-light)}

/* ---------- Footer ---------- */
.footer{background:var(--ink);color:#C9BCA8;padding-block:clamp(3.5rem,6vw,5rem) 2rem}
.footer-top{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:2.5rem;padding-bottom:2.6rem;border-bottom:1px solid rgba(233,220,197,.12)}
.footer-brand img{height:52px;margin-bottom:1.2rem}
.footer-brand p{max-width:36ch;font-size:.96rem;color:#A99C87}
.footer h5{font-family:var(--sans);font-weight:700;letter-spacing:.08em;text-transform:uppercase;font-size:.82rem;color:var(--gold-light);margin-bottom:1.1rem}
.footer-col a,.footer-col li{display:block;color:#C9BCA8;font-size:.96rem;margin-bottom:.6rem;transition:color .2s}
.footer-col a:hover{color:#fff}
.footer-contact li{display:flex;gap:.6rem;align-items:flex-start}
.footer-contact i{color:var(--gold-light);margin-top:.15rem}
.footer-bottom{display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem;padding-top:1.8rem;font-size:.85rem;color:#8B7F6C}
.footer-bottom a{color:#A99C87}.footer-bottom a:hover{color:#fff}
.footer-legal-note{max-width:100%;margin-top:.8rem;font-size:.78rem;color:#6F6454;line-height:1.5}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta{position:fixed;left:0;right:0;bottom:0;z-index:70;display:none;gap:.6rem;padding:.6rem;
  background:rgba(250,247,241,.94);backdrop-filter:blur(14px);box-shadow:0 -4px 24px -8px rgba(42,33,24,.3);
  border-top:1px solid var(--line)}
.sticky-cta .btn{flex:1;padding:.95rem 1rem;font-size:.98rem}

/* ---------- Cookie banner ---------- */
.cookie{position:fixed;left:1rem;right:1rem;bottom:1rem;z-index:120;max-width:480px;margin-inline:auto;
  background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);box-shadow:var(--shadow-lg);
  padding:1.5rem;transform:translateY(140%);transition:transform .5s var(--ease)}
.cookie.show{transform:none}
.cookie h4{font-size:1.15rem;margin-bottom:.5rem}
.cookie p{font-size:.88rem;color:var(--muted);margin-bottom:1.1rem;line-height:1.55}
.cookie p a{color:var(--gold-deep);text-decoration:underline}
.cookie-btns{display:grid;grid-template-columns:1fr 1fr;gap:.6rem}
.cookie-btns .btn{padding:.8rem 1rem;font-size:.92rem}
.cookie-all{grid-column:1/-1}
.cookie-settings{position:fixed;left:1.4rem;bottom:1.4rem;z-index:60;width:44px;height:44px;border-radius:50%;
  background:#fff;box-shadow:var(--shadow);display:none;place-items:center;color:var(--espresso);font-size:1.3rem}

/* ---------- Reveal animation ---------- */
html.js .reveal{opacity:0;transform:translateY(26px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
html.js .reveal.in{opacity:1;transform:none}
.reveal[data-d="1"]{transition-delay:.08s}.reveal[data-d="2"]{transition-delay:.16s}
.reveal[data-d="3"]{transition-delay:.24s}.reveal[data-d="4"]{transition-delay:.32s}
@media (prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none}
  .strip-track,.hero-scroll{animation:none}*{scroll-behavior:auto!important}}

/* ---------- Deco (droplet / infusion motif — this page's signature) ---------- */
.deco{position:absolute;pointer-events:none;z-index:0}
.deco-drop{width:min(360px,44%);opacity:.10;color:var(--gold)}
.section--dark .deco-drop{opacity:.14;color:var(--gold-light)}
.deco-glow{width:520px;height:520px;border-radius:50%;filter:blur(90px);opacity:.5;
  background:radial-gradient(circle,rgba(184,148,90,.35),transparent 70%)}
.deco-line{width:2px;height:220px;background:linear-gradient(180deg,transparent,var(--gold) 40%,transparent);opacity:.14}
.has-deco>.container{position:relative;z-index:1}

/* ---------- Legal pages ---------- */
.legal-header{position:sticky;top:0;z-index:50;background:rgba(250,247,241,.92);backdrop-filter:blur(14px);border-bottom:1px solid var(--line);padding-block:.85rem}
.legal-header .brand img{height:40px}
.legal-back{display:inline-flex;align-items:center;gap:.5rem;font-weight:600;color:var(--muted);font-size:.95rem}
.legal-back:hover{color:var(--ink)}
.legal-hero{background:var(--espresso);color:#F1E9DC;padding:clamp(3rem,7vw,4.8rem) 0 clamp(2.4rem,5vw,3.4rem)}
.legal-hero h1{color:#FCF8F1;font-size:clamp(2rem,4vw,3rem);margin-bottom:.5rem}
.legal-hero p{color:#CFC3AF}
.legal-main{padding-block:clamp(2.5rem,6vw,4.5rem);background:var(--cream)}
.legal-content{max-width:860px}
.legal-content h2{font-size:clamp(1.25rem,2.2vw,1.6rem);margin:2.1rem 0 .7rem}
.legal-content h2:first-of-type{margin-top:0}
.legal-content p,.legal-content li{color:#463C2E;margin-bottom:.8rem;font-size:1.02rem}
.legal-content ul{padding-left:1.2rem;list-style:disc;margin-bottom:1rem}
.legal-content a{color:var(--gold-deep);text-decoration:underline}
.legal-box{background:var(--cream-2);border:1px solid var(--line);border-radius:var(--r);padding:1.3rem 1.5rem;margin:1rem 0}
.legal-box p{margin-bottom:.3rem}
.legal-todo{display:inline-block;background:#FBEFCF;color:#8A6D1A;border:1px dashed #D9B64E;border-radius:6px;padding:.05rem .45rem;font-size:.82rem}
.legal-footer{background:var(--ink);color:#A99C87;padding-block:2rem}
.legal-footer .container{display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem;font-size:.9rem}
.legal-footer a{color:#C9BCA8}.legal-footer a:hover{color:#fff}

/* ---------- Responsive ---------- */
@media (max-width:1024px){
  .signs{grid-template-columns:1fr 1fr}
  .safety-grid{grid-template-columns:1fr 1fr}
  .authority{grid-template-columns:1fr;gap:2.5rem}
  .doc-photo{max-width:420px}
}
@media (max-width:880px){
  .nav-links,.header-cta .header-phone span{display:none}
  .nav-toggle{display:block}
  .nav{position:fixed;inset:0 0 0 auto;width:min(320px,84vw);background:var(--espresso);
    flex-direction:column;justify-content:center;gap:0;padding:2rem;transform:translateX(100%);
    transition:transform .45s var(--ease);box-shadow:var(--shadow-lg)}
  .nav.open{transform:none}
  .nav-links{display:flex;flex-direction:column;gap:.4rem;width:100%}
  .nav-links a{color:#F1E9DC;font-size:1.15rem;padding:.7rem 0;border-bottom:1px solid rgba(233,220,197,.12)}
  .nav .btn{margin-top:1.5rem;width:100%}
  .nav-close{position:absolute;top:1.3rem;right:1.4rem;font-size:1.8rem;color:#F1E9DC}
  .nav-cta-desktop{display:none}
  .nav .nav-cta-mobile{display:inline-flex}
  .nav-logo{display:block;height:44px;width:auto;align-self:flex-start;margin-bottom:1.7rem}
  .header-phone{padding:.25rem}
  .header-phone i{font-size:1.75rem}
  .mech,.reach,.book{grid-template-columns:1fr;gap:2.2rem}
  .mech-visual{aspect-ratio:16/10;max-width:520px}
  .inf-grid,.steps,.testi-grid{grid-template-columns:1fr}
  .inf--feature{order:-1}
  .footer-top{grid-template-columns:1fr 1fr}
  .sticky-cta{display:flex}
  body{padding-bottom:70px}
}
@media (max-width:560px){
  body{font-size:16px}
  .hero{min-height:auto;padding-top:8.5rem;padding-bottom:3.5rem}
  /* keep the H1 at exactly two lines on phones: "Fühlen Sie sich wieder" / "voller Energie." */
  .hero h1{font-size:1.9rem;line-height:1.14;letter-spacing:-.025em}
  .hero-usps{gap:.55rem 1.1rem}
  .hero-trust{gap:1rem 1.3rem}.trust-sep{display:none}
  .btn-row .btn{flex:1;min-width:100%}
  .hero .btn-row{gap:.7rem}
  .signs,.safety-grid{grid-template-columns:1fr}
  .quiz-opts.two,.field-row{grid-template-columns:1fr}
  .cmp-row{grid-template-columns:92px 1fr auto;gap:.6rem}
  .footer-top{grid-template-columns:1fr}
  .testi-head{flex-direction:column;align-items:flex-start}
  .cookie-btns{grid-template-columns:1fr}
  .crosslink{flex-direction:column;align-items:flex-start}
}
