/* ============================================================
   Elay H. Aktas — Orthomolekulare Medizin & Vitalstoff-Beratung
   Palette per Kundenbriefing: warmes Off-White / Elfenbein,
   Taupe, dezentes Rosé-Mauve, Champagnergold nur als Akzent,
   gedämpftes Salbeigrün punktuell. Kein Schwarz.
   ============================================================ */

:root{
  --bg:#f8f4ec;
  --bg-alt:#f1e9da;
  --surface:#ffffff;

  --ink:#3a332c;          /* dunkles warmes Taupe statt Schwarz */
  --muted:#6f6152;        /* 5.46:1 auf --bg */
  --muted-deep:#5c5044;

  --rose:#ddc3ba;
  --rose-soft:rgba(221,195,186,.30);

  --gold:#a67d3a;         /* Linien, Icons, grosse Zahlen */
  --gold-deep:#8a6529;    /* 4.81:1 — kleiner Text & Buttons */
  --bronze-deep:#6f5120;  /* Hover-Zustand der primären Aktion */
  --gold-soft:rgba(166,125,58,.13);
  --gold-line:rgba(166,125,58,.40);

  --sage:#8fa084;
  --sage-soft:rgba(143,160,132,.18);

  --line:rgba(58,51,44,.12);
  --line-strong:rgba(58,51,44,.20);

  --shadow-sm:0 2px 10px -4px rgba(58,51,44,.14);
  --shadow-md:0 18px 38px -24px rgba(58,51,44,.30);
  --shadow-lg:0 30px 60px -30px rgba(58,51,44,.34);

  --z-base:1; --z-sticky:40; --z-overlay:60; --z-grain:100;

  --ease:cubic-bezier(.19,1,.22,1);
  --nav-h:78px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:auto; -webkit-text-size-adjust:100%; }

body{
  background:var(--bg); color:var(--ink);
  font-family:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
  font-size:16px; line-height:1.6;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}

h1,h2,h3,.serif{ font-family:'Fraunces',Georgia,serif; font-weight:500; letter-spacing:-.015em; }
em{ font-family:'Fraunces',Georgia,serif; font-style:italic; color:var(--gold); }
/* height:auto verhindert, dass die HTML-Attribute width/height ein Bild
   verzerren, sobald die Breite responsiv skaliert wird. Regeln mit
   Klassenselektor (Hero, Split, Footer …) überschreiben das gezielt. */
img{ max-width:100%; height:auto; display:block; }
button{ font:inherit; color:inherit; }
::selection{ background:var(--gold-soft); color:var(--ink); }

::-webkit-scrollbar{ width:10px; }
::-webkit-scrollbar-track{ background:var(--bg-alt); }
::-webkit-scrollbar-thumb{ background:rgba(166,125,58,.55); border-radius:6px; }
::-webkit-scrollbar-thumb:hover{ background:var(--gold); }

a:focus-visible, button:focus-visible{
  outline:2px solid var(--gold-deep); outline-offset:3px; border-radius:4px;
}

/* Sprungmarke für Tastaturnutzer */
.skip-link{
  position:absolute; left:12px; top:-70px; z-index:200;
  background:var(--ink); color:var(--bg); padding:12px 20px;
  border-radius:0 0 10px 10px; text-decoration:none; font-size:14px;
  transition:top .25s var(--ease);
}
.skip-link:focus{ top:0; }

/* feines Korn gegen digitale Flachheit */
.grain{
  position:fixed; inset:0; z-index:var(--z-grain); pointer-events:none;
  opacity:.30; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

/* ---------- gemeinsame Bausteine ---------- */
.eyebrow{
  display:flex; align-items:center; gap:12px;
  text-transform:uppercase; letter-spacing:.19em; font-size:11px;
  font-weight:600; color:var(--muted-deep); margin-bottom:18px;
}
.eyebrow::before{ content:''; flex:0 0 26px; height:1px; background:var(--gold); }
.eyebrow.is-centered{ justify-content:center; }

.section{ padding:clamp(72px,9vw,124px) 7vw; position:relative; }
.section.alt{ background:var(--bg-alt); }
.section-head{ max-width:660px; margin:0 auto clamp(40px,5vw,64px); text-align:center; }
.section-head h2{ font-size:clamp(28px,4.2vw,44px); line-height:1.14; margin-bottom:16px; text-wrap:balance; }
.section-head p{ color:var(--muted); font-size:16.5px; line-height:1.7; max-width:56ch; margin:0 auto; text-wrap:pretty; }

/* Anker landen nicht unter der Sticky-Nav */
section[id]{ scroll-margin-top:calc(var(--nav-h) + 18px); }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  border-radius:32px; text-decoration:none; font-size:15px; font-weight:500;
  padding:15px 30px; border:1px solid transparent; cursor:pointer;
  transition:background .3s var(--ease), color .3s var(--ease),
             transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.btn .arw{ color:var(--gold); transition:transform .3s var(--ease), color .3s var(--ease); }
/* Primäre Aktion in warmem Bronze-Champagner — bewusst kein Schwarz */
.btn-primary{ background:var(--gold-deep); color:#fdfbf7; box-shadow:0 16px 32px -18px rgba(138,101,41,.62); }
.btn-primary .arw{ color:rgba(253,251,247,.72); }
.btn-primary:hover{ background:var(--bronze-deep); transform:translateY(-2px);
  box-shadow:0 22px 42px -18px rgba(110,80,32,.60); }
.btn-primary:hover .arw{ color:#fdfbf7; transform:translateX(4px); }
.btn-primary:active{ transform:translateY(0) scale(.985); }
.btn-ghost{ border-color:var(--line-strong); color:var(--ink); background:transparent; }
.btn-ghost:hover{ border-color:var(--gold-line); background:var(--gold-soft); }
.btn-ghost:active{ transform:scale(.985); }
/* helle Variante für Buttons über dem Hero-Bild */
.btn-outline-light{ border-color:rgba(248,244,236,.5); color:var(--bg); }
.btn-outline-light:hover{ border-color:var(--bg); background:rgba(248,244,236,.12); }

/* ---------- Navigation ---------- */
.site-nav{
  position:sticky; top:0; z-index:var(--z-sticky);
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:15px 5vw; min-height:var(--nav-h);
  background:rgba(248,244,236,.88); backdrop-filter:blur(12px) saturate(140%);
  -webkit-backdrop-filter:blur(12px) saturate(140%);
  border-bottom:1px solid var(--line);
}
.brand{ display:flex; align-items:center; gap:11px; padding:7px 0;
  font-family:'Fraunces',Georgia,serif;
  font-size:17px; color:var(--ink); text-decoration:none; white-space:nowrap; }
.brand img{ height:30px; width:auto; }
.brand span{ color:var(--muted); font-weight:400; font-size:13.5px; }

.navlinks{ display:flex; gap:30px; list-style:none; }
.navlinks a{ color:var(--ink); text-decoration:none; font-size:14px; opacity:.78;
  position:relative; padding:4px 0; transition:opacity .3s var(--ease); }
.navlinks a:hover{ opacity:1; }
.navlinks a::after{ content:''; position:absolute; left:0; bottom:0; width:0; height:1px;
  background:var(--gold); transition:width .35s var(--ease); }
.navlinks a:hover::after, .navlinks a[aria-current="true"]::after{ width:100%; }
.navlinks a[aria-current="true"]{ opacity:1; }

.nav-actions{ display:flex; align-items:center; gap:12px; }
.nav-cta{ background:var(--gold-deep); color:#fdfbf7; padding:11px 22px; border-radius:30px;
  text-decoration:none; font-size:13.5px; font-weight:500; white-space:nowrap;
  transition:background .3s var(--ease), transform .3s var(--ease); }
.nav-cta:hover{ background:var(--bronze-deep); transform:translateY(-2px); }

.nav-toggle{
  display:none; width:44px; height:44px; border:1px solid var(--line-strong);
  border-radius:50%; background:transparent; cursor:pointer;
  align-items:center; justify-content:center; flex-direction:column; gap:5px;
  transition:border-color .3s var(--ease), background .3s var(--ease);
}
.nav-toggle:hover{ border-color:var(--gold-line); background:var(--gold-soft); }
.nav-toggle span{ display:block; width:17px; height:1.5px; background:var(--ink);
  border-radius:2px; transition:transform .35s var(--ease), opacity .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-6.5px) rotate(-45deg); }

.mobile-menu{
  position:fixed; inset:var(--nav-h) 0 0; z-index:var(--z-overlay);
  background:var(--bg); padding:8vh 8vw 40px;
  display:flex; flex-direction:column; gap:4px;
  opacity:0; visibility:hidden; transform:translateY(-12px);
  transition:opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  overflow-y:auto;
}
.mobile-menu.open{ opacity:1; visibility:visible; transform:translateY(0); }
.mobile-menu a{
  font-family:'Fraunces',Georgia,serif; font-size:26px; color:var(--ink);
  text-decoration:none; padding:15px 0; border-bottom:1px solid var(--line);
  display:flex; align-items:baseline; gap:16px;
}
.mobile-menu a .num{ font-size:12px; font-family:'Inter',sans-serif;
  color:var(--gold-deep); letter-spacing:.1em; }
.mobile-menu .mm-foot{ margin-top:auto; padding-top:34px; font-size:14px; color:var(--muted); }
.mobile-menu .mm-foot a{ font-family:'Inter',sans-serif; font-size:16px;
  color:var(--gold-deep); border:none; padding:12px 0; display:inline-block; }

/* ---------- Hero ---------- */
.hero{
  position:relative; min-height:min(88dvh,780px);
  display:flex; align-items:flex-end;
  padding:clamp(90px,14vh,150px) 7vw clamp(52px,8vh,88px);
  overflow:hidden; isolation:isolate;
}
/* Bild ist bewusst höher als der Ausschnitt: Spielraum für den sanften Parallax */
.hero-media{ position:absolute; inset:0; z-index:-2; overflow:hidden; }
.hero-media img{ position:absolute; left:0; top:-12%; width:100%; height:124%;
  object-fit:cover; object-position:center 60%; will-change:transform; }
/* Der Text steht links — deshalb trägt die Lasur vor allem von links,
   ergänzt durch einen ruhigen Verlauf von unten. */
.hero-media::after{
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(to right, rgba(58,51,44,.78) 0%, rgba(58,51,44,.58) 40%, rgba(58,51,44,.20) 72%, rgba(58,51,44,.10) 100%),
    linear-gradient(to top, rgba(58,51,44,.55) 0%, rgba(58,51,44,.22) 55%, rgba(58,51,44,.08) 100%);
}
.hero-inner{ position:relative; z-index:1; max-width:660px; }
.hero .eyebrow{ color:rgba(248,244,236,.9); }
.hero .eyebrow::before{ background:var(--rose); }
.hero h1{
  font-size:clamp(36px,6.2vw,66px); line-height:1.04; letter-spacing:-.025em;
  color:#fdfbf7; margin-bottom:22px; text-wrap:balance;
}
.hero h1 em{ color:#e8cfa0; }
.hero .lead{
  font-size:clamp(16px,1.9vw,18.5px); line-height:1.68; color:rgba(250,247,241,.93);
  max-width:50ch; margin-bottom:36px; text-wrap:pretty;
}
.hero .actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* rechts statt mittig — sonst kollidiert der Hinweis mit den Buttons */
.scroll-cue{
  position:absolute; right:5vw; bottom:34px;
  z-index:1; display:flex; flex-direction:column; align-items:center; gap:9px;
  font-size:10px; letter-spacing:.22em; text-transform:uppercase;
  color:rgba(248,244,236,.72); pointer-events:none;
}
.scroll-cue i{ display:block; width:1px; height:38px;
  background:linear-gradient(to bottom, rgba(248,244,236,.7), transparent);
  animation:cue 2.4s var(--ease) infinite; transform-origin:top; }
@keyframes cue{ 0%{transform:scaleY(0);opacity:0} 35%{transform:scaleY(1);opacity:1} 100%{transform:scaleY(1) translateY(38px);opacity:0} }

/* ---------- Philosophie ---------- */
.philo{ max-width:780px; margin:0 auto; text-align:center; position:relative; }
.philo-mark{
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  width:min(46vw,330px); opacity:.13; z-index:0; pointer-events:none;
}
.philo-body{ position:relative; z-index:1; }
.philo .qm{ display:block; font-family:'Fraunces',Georgia,serif; font-style:italic;
  font-size:64px; line-height:.4; color:var(--gold); margin-bottom:22px; }
.philo blockquote{
  font-family:'Fraunces',Georgia,serif; font-style:italic; font-weight:400;
  font-size:clamp(20px,2.8vw,30px); line-height:1.48; color:var(--ink); text-wrap:pretty;
}
.philo figcaption{
  display:flex; align-items:center; justify-content:center; gap:14px; margin-top:32px;
  font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted-deep);
}
.philo figcaption::before, .philo figcaption::after{ content:''; width:30px; height:1px; background:var(--gold); }

/* ---------- Beschwerden / FAQ ---------- */
.faq-layout{ max-width:1060px; margin:0 auto; display:grid; gap:clamp(30px,4vw,56px);
  grid-template-columns:minmax(0,1fr); align-items:start; }
@media (min-width:960px){ .faq-layout{ grid-template-columns:0.78fr 1.22fr; } }

.faq-aside{ position:sticky; top:calc(var(--nav-h) + 30px); }
.faq-aside figure{ border-radius:20px; overflow:hidden; box-shadow:var(--shadow-md); }
.faq-aside img{ width:100%; aspect-ratio:3/4; object-fit:cover; }
.faq-aside-note{ margin-top:16px; font-size:13px; line-height:1.65; color:var(--muted);
  padding-left:16px; border-left:1px solid var(--gold-line); }
@media (max-width:959px){ .faq-aside{ position:static; } .faq-aside img{ aspect-ratio:16/9; } }

.faq-list{ display:grid; gap:12px; }
.faq-item{ background:var(--surface); border:1px solid var(--line); border-radius:16px;
  overflow:hidden; transition:border-color .3s var(--ease), box-shadow .3s var(--ease); }
.faq-item:hover{ border-color:var(--gold-line); box-shadow:var(--shadow-sm); }
.faq-item.open{ border-color:var(--gold-line); box-shadow:var(--shadow-sm); }
.faq-h{ margin:0; font-size:inherit; font-weight:inherit; letter-spacing:normal; }
.faq-q{ width:100%; display:flex; align-items:flex-start; justify-content:space-between; gap:18px;
  padding:22px 24px; background:none; border:none; cursor:pointer; text-align:left; }
.faq-q .q-title{ font-family:'Fraunces',Georgia,serif; font-size:17.5px; font-weight:500;
  color:var(--ink); line-height:1.35; display:block; }
.faq-q .q-teaser{ font-size:13.5px; color:var(--muted); margin-top:6px; line-height:1.5; display:block; }
.faq-plus{ flex:0 0 30px; width:30px; height:30px; margin-top:2px; border-radius:50%;
  border:1px solid var(--gold-line); position:relative;
  transition:background .3s var(--ease), border-color .3s var(--ease); }
.faq-plus::before, .faq-plus::after{ content:''; position:absolute; left:50%; top:50%;
  background:var(--gold); border-radius:2px; transition:background .3s var(--ease), transform .4s var(--ease); }
.faq-plus::before{ width:11px; height:1.5px; transform:translate(-50%,-50%); }
.faq-plus::after{ width:1.5px; height:11px; transform:translate(-50%,-50%); }
.faq-item.open .faq-plus{ background:var(--gold); border-color:var(--gold); }
.faq-item.open .faq-plus::before, .faq-item.open .faq-plus::after{ background:#fff; }
.faq-item.open .faq-plus::after{ transform:translate(-50%,-50%) scaleY(0); }
.faq-panel{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .48s var(--ease); }
.faq-item.open .faq-panel{ grid-template-rows:1fr; }
.faq-panel > div{ overflow:hidden; }
.faq-panel p{ padding:0 24px 18px; font-size:14.5px; line-height:1.76; color:var(--muted); max-width:62ch; }
/* zweite Klickebene: von der Frage weiter zum passenden Angebot */
.faq-more{ margin:0 24px 24px; padding-top:16px; border-top:1px solid var(--line);
  display:inline-flex; align-items:center; gap:9px; font-size:13.5px;
  color:var(--gold-deep); text-decoration:none; }
.faq-more span{ border-bottom:1px solid var(--gold-line); transition:border-color .25s var(--ease); }
.faq-more i{ font-style:normal; transition:transform .3s var(--ease); }
.faq-more:hover span{ border-bottom-color:var(--gold-deep); }
.faq-more:hover i{ transform:translateX(4px); }
.faq-note{ margin-top:38px; padding-top:26px; border-top:1px solid var(--line);
  font-size:12.5px; line-height:1.7; color:var(--muted); text-align:center; }

/* ---------- Sprechzeiten ---------- */
.sprechzeiten{ max-width:940px; margin:0 auto clamp(40px,5vw,60px);
  background:var(--surface); border:1px solid var(--line); border-radius:18px;
  padding:30px clamp(22px,3vw,34px); box-shadow:var(--shadow-sm); }
.sz-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:14px 22px; }
.sz{ text-align:center; display:flex; flex-direction:column; gap:6px; }
.sz .day{ font-family:'Fraunces',Georgia,serif; font-size:15.5px; color:var(--ink); }
.sz .when{ font-size:13px; color:var(--muted); line-height:1.45; margin-top:auto; }
.sz-note{ margin-top:22px; padding-top:18px; border-top:1px solid var(--line);
  text-align:center; font-family:'Fraunces',Georgia,serif; font-style:italic;
  font-size:13.5px; color:var(--gold-deep); }

/* ---------- Pakete ---------- */
.pkg-grid{ max-width:1180px; margin:0 auto; display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,290px),1fr)); gap:22px; align-items:stretch; }
.pkg-card{ background:var(--surface); border:1px solid var(--line); border-radius:18px;
  padding:30px 26px; display:flex; flex-direction:column;
  transition:transform .38s var(--ease), box-shadow .38s var(--ease), border-color .38s var(--ease); }
.pkg-card:hover{ transform:translateY(-4px); border-color:var(--gold-line); box-shadow:var(--shadow-md); }
/* Feine Goldicons statt Fotos: sie unterscheiden die Pakete, ohne die
   ruhige Fläche zu zerstören — und Gold bleibt reiner Akzent. */
.pkg-icon{ width:32px; height:32px; color:var(--gold); margin-bottom:20px;
  transition:transform .4s var(--ease), color .3s var(--ease); }
.pkg-card:hover .pkg-icon, .pkg-feature:hover .pkg-icon{
  transform:translateY(-2px); color:var(--gold-deep); }

/* Der Name führt, der Preis bleibt ruhig — die Seite soll nach Beratung
   aussehen, nicht nach Verkaufsregal. */
.pkg-card h3{ font-size:23px; color:var(--ink); line-height:1.2; }
.pkg-sub{ font-size:13px; color:var(--muted); margin-top:6px; min-height:2.9em; }
.pkg-price{ font-family:'Inter',sans-serif; font-size:14px; font-weight:500;
  color:var(--muted-deep); margin:14px 0 0; letter-spacing:.02em; }
.pkg-price small{ font-size:14px; color:var(--muted); font-weight:400; }
.pkg-blurb{ font-size:14px; line-height:1.62; color:var(--muted); margin-top:12px; }
.pkg-list{ list-style:none; display:grid; gap:9px; margin:20px 0 26px;
  padding-top:20px; border-top:1px solid var(--line); }
.pkg-list li{ font-size:13.5px; line-height:1.5; color:var(--ink); padding-left:18px; position:relative; }
.pkg-list li::before{ content:''; position:absolute; left:0; top:7px; width:5px; height:5px;
  border-radius:50%; background:var(--gold); }
.pkg-card .btn{ margin-top:auto; align-self:flex-start; padding:12px 22px; font-size:14px; }

/* Signature als breites Featured-Band statt neunter gleicher Karte */
.pkg-feature{
  max-width:1180px; margin:22px auto 0; border-radius:20px; overflow:hidden;
  border:1px solid var(--gold-line);
  background:linear-gradient(135deg,#fffdf9 0%,#fbf3e5 55%,#f7ebd9 100%);
  display:grid; grid-template-columns:minmax(0,1fr); box-shadow:var(--shadow-sm);
}
@media (min-width:900px){ .pkg-feature{ grid-template-columns:1.15fr .85fr; } }
.pkg-feature-body{ padding:clamp(30px,3.6vw,46px); display:flex; flex-direction:column; }
.pkg-badge{ align-self:flex-start; background:var(--gold-deep); color:#fdfbf7;
  font-size:10.5px; letter-spacing:.14em; text-transform:uppercase;
  padding:6px 14px; border-radius:4px; margin-bottom:20px; }
.pkg-feature h3{ font-size:clamp(24px,3vw,32px); margin-bottom:6px; }
.pkg-feature .pkg-sub{ min-height:0; font-size:14px; }
.pkg-feature .pkg-price{ font-size:15px; }
.pkg-feature .pkg-price small{ font-size:15px; }
.pkg-feature-list{ padding:24px 0 0; border-top:1px solid var(--gold-line); margin:24px 0 30px;
  list-style:none; display:grid; gap:10px; }
@media (min-width:620px){ .pkg-feature-list{ grid-template-columns:1fr 1fr; column-gap:26px; } }
.pkg-feature-list li{ font-size:13.5px; line-height:1.5; color:var(--ink);
  padding-left:18px; position:relative; }
.pkg-feature-list li::before{ content:''; position:absolute; left:0; top:7px; width:5px; height:5px;
  border-radius:50%; background:var(--gold); }
.pkg-feature-media{ position:relative; min-height:230px; }
.pkg-feature-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.pkg-feature .btn{ align-self:flex-start; margin-top:auto; }

.pk-legal{ max-width:760px; margin:clamp(48px,6vw,70px) auto 0; padding-top:34px; border-top:1px solid var(--line); }
.pk-legal p{ font-size:12.5px; line-height:1.72; color:var(--muted); }
.pk-legal p + p{ margin-top:12px; }
.pk-legal.booking-notes{ margin-top:30px; padding-top:30px; }
.pk-legal strong{ color:var(--ink); font-weight:600; }

/* ---------- Split-Sektionen (Labor, Ablauf, Über mich) ---------- */
.split{ max-width:1120px; margin:0 auto; display:grid; gap:clamp(30px,5vw,68px);
  grid-template-columns:minmax(0,1fr); align-items:center; }
@media (min-width:900px){
  .split{ grid-template-columns:1fr 1fr; }
  .split.reverse .split-media{ order:2; }
}
.split-media figure{ border-radius:20px; overflow:hidden; box-shadow:var(--shadow-md); }
.split-media img{ width:100%; aspect-ratio:4/3; object-fit:cover; }
.split-media.tall img{ aspect-ratio:3/4; }
.split-body h2{ font-size:clamp(26px,3.6vw,38px); line-height:1.16; margin-bottom:18px; text-wrap:balance; }
.split-body p{ color:var(--muted); font-size:15.5px; line-height:1.76; text-wrap:pretty; }
.split-body p + p{ margin-top:15px; }

.steps{ display:grid; gap:0; margin-top:8px; }
.steps li{ display:grid; grid-template-columns:auto 1fr; gap:20px;
  padding:22px 0; border-top:1px solid var(--line); list-style:none; }
.steps li:last-child{ border-bottom:1px solid var(--line); }
.steps .n{ font-family:'Fraunces',Georgia,serif; font-style:italic;
  color:var(--gold-deep); font-size:16px; padding-top:2px; }
.steps h3{ font-size:18.5px; margin-bottom:5px; }
.steps p{ font-size:14.5px; line-height:1.65; color:var(--muted); }

.about-badge{ display:inline-flex; align-items:center; gap:10px; padding:8px 18px;
  border-radius:30px; background:var(--sage-soft); color:var(--ink);
  font-size:12.5px; letter-spacing:.02em; margin-bottom:22px; }
.about-badge img{ height:20px; width:auto; }
.about-quote{ font-family:'Fraunces',Georgia,serif; font-style:italic; font-weight:400;
  font-size:clamp(19px,2.3vw,25px); line-height:1.5; color:var(--ink);
  margin-bottom:20px; text-wrap:pretty; }
.about-note{ margin-top:22px; padding-top:18px; border-top:1px solid var(--line);
  font-size:13px; color:var(--muted); font-style:italic; }

/* ---------- Kontakt ---------- */
.kontakt{ position:relative; overflow:hidden; isolation:isolate;
  padding:clamp(80px,10vw,130px) 7vw; text-align:center; }
.kontakt-media{ position:absolute; inset:0; z-index:-2; }
.kontakt-media img{ width:100%; height:100%; object-fit:cover; }
/* helle Lasur statt dunklem Block — die Fläche bleibt ruhig und hell */
.kontakt-media::after{ content:''; position:absolute; inset:0;
  background:linear-gradient(rgba(248,244,236,.90), rgba(241,233,218,.94)); }
.kontakt .eyebrow{ justify-content:center; }
.kontakt h2{ font-size:clamp(28px,4.2vw,46px); line-height:1.14; color:var(--ink);
  margin-bottom:16px; text-wrap:balance; }
.kontakt p.lead{ color:var(--muted); font-size:16.5px; line-height:1.7;
  max-width:52ch; margin:0 auto 34px; text-wrap:pretty; }
.kontakt .actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.contactline{ margin-top:22px; font-size:13.5px; color:var(--muted); }
.contactline a{ display:inline-block; padding:10px 2px; color:var(--gold-deep);
  text-decoration:none; border-bottom:1px solid var(--gold-line); }
.contactline a:hover{ border-bottom-color:var(--gold-deep); }

/* ---------- Footer ---------- */
.site-footer{ background:var(--bg-alt); color:var(--ink);
  padding:54px 7vw 30px; border-top:1px solid var(--line); }
.footer-inner{ max-width:1180px; margin:0 auto; display:flex; flex-wrap:wrap;
  align-items:center; justify-content:space-between; gap:24px; }
.footer-brand{ display:flex; align-items:center; gap:11px;
  font-family:'Fraunces',Georgia,serif; font-size:16px; color:var(--ink); }
.footer-brand img{ height:28px; width:auto; }
.footer-brand span{ color:var(--muted); font-weight:400; font-size:13px; }
.footer-links{ display:flex; flex-wrap:wrap; gap:4px 22px; }
/* grosszügige Trefferfläche — die Links sind sonst nur ~21 px hoch */
.footer-links a{ display:inline-block; padding:11px 0; color:var(--muted-deep);
  text-decoration:none; font-size:13px; transition:color .25s var(--ease); }
.footer-links a:hover{ color:var(--gold-deep); }
.footer-copy{ width:100%; text-align:center; font-size:12px;
  color:var(--muted); padding-top:24px; margin-top:6px;
  border-top:1px solid var(--line); }

/* ---------- Scroll-Reveals ----------
   Nur aktiv, wenn JavaScript läuft (html.js). Ohne JS bleibt der
   Inhalt sichtbar, statt unsichtbar hängen zu bleiben. */
.js .reveal{ opacity:0; transform:translateY(20px);
  transition:opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.in{ opacity:1; transform:none; }
.js .reveal[data-d="1"]{ transition-delay:.08s; }
.js .reveal[data-d="2"]{ transition-delay:.16s; }
.js .reveal[data-d="3"]{ transition-delay:.24s; }

/* ---------- Responsive ---------- */
@media (max-width:900px){
  .navlinks{ display:none; }
  .nav-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .brand span{ display:none; }
}
@media (max-width:900px){
  .scroll-cue{ display:none; }
}
@media (max-width:620px){
  .hero{ min-height:min(80dvh,640px); align-items:flex-end; }
  .hero .actions .btn{ width:100%; justify-content:center; }
  .kontakt .actions .btn{ width:100%; justify-content:center; }
  .footer-inner{ flex-direction:column; align-items:flex-start; }
  .footer-links{ gap:14px 20px; }
  .steps li{ grid-template-columns:1fr; gap:5px; }
  .scroll-cue{ display:none; }
}

@media (prefers-reduced-motion:reduce){
  *, *::before, *::after{
    animation-duration:.01ms !important; animation-iteration-count:1 !important;
    transition-duration:.01ms !important; scroll-behavior:auto !important;
  }
  .js .reveal{ opacity:1; transform:none; }
  .hero-media img{ transform:none !important; }
}

@media print{
  .site-nav,.mobile-menu,.grain,.scroll-cue,.hero-media,.kontakt-media{ display:none !important; }
  body{ background:#fff; color:#000; }
}
