:root{
  --blue-980:#061724;
  --blue-950:#0a2234;
  --blue-900:#0f334f;
  --blue-800:#174f78;
  --blue-700:#1f6f9f;
  --blue-600:#2d91c7;
  --blue-200:#c7dde9;
  --blue-100:#e3f0f7;
  --blue-50:#f4f9fc;
  --teal:#2fb7a5;
  --gold:#d7a948;
  --sand:#f3eadc;
  --sand-2:#fff8ec;
  --stone:#67747d;
  --ink:#0b1c29;
  --muted:#4c5d68;
  --line:#c5d6e2;
  --white:#ffffff;
  --shadow:0 28px 80px rgba(6,23,36,.18);
  --shadow-strong:0 32px 100px rgba(6,23,36,.28);
  --radius:24px;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(47,183,165,.08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(31,111,159,.10), transparent 30%),
    #fff;
  line-height:1.6;
  overflow-x:hidden;
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  opacity:.36;
  background-image:
    linear-gradient(rgba(10,34,52,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,34,52,.035) 1px, transparent 1px);
  background-size:52px 52px;
  mask-image:linear-gradient(180deg, #000 0%, transparent 70%);
}
a{color:var(--blue-700); text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%; height:auto}
.container{width:min(var(--max), calc(100% - 40px)); margin-inline:auto}
.narrow{max-width:850px}
.skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{left:16px;top:16px;width:auto;height:auto;padding:10px 14px;background:#fff;z-index:9999;border-radius:10px}
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.80);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom:1px solid rgba(197,214,226,.9);
  box-shadow:0 8px 30px rgba(6,23,36,.05);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;min-height:78px;gap:24px}
.brand{display:flex;align-items:center;gap:12px;color:var(--ink)}
.brand:hover{text-decoration:none}
.brand-mark{
  width:46px;height:46px;border-radius:50%;
  display:grid;place-items:center;
  background:conic-gradient(from 210deg, var(--gold), var(--blue-600), var(--blue-980), var(--gold));
  color:#fff;font-weight:800;font-size:22px;
  box-shadow:0 12px 34px rgba(15,51,79,.32);
}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.brand-text small{color:var(--muted);font-size:12px;margin-top:5px}
.site-nav{display:flex;align-items:center;gap:18px}
.nav-link{font-size:15px;color:var(--ink);opacity:.82;position:relative;padding:7px 0}
.nav-link:after{content:"";position:absolute;left:0;right:100%;bottom:0;height:2px;background:linear-gradient(90deg,var(--gold),var(--teal));transition:right .24s ease}
.nav-link.active,.nav-link:hover{opacity:1;color:var(--blue-800);text-decoration:none}
.nav-link.active:after,.nav-link:hover:after{right:0}
.nav-toggle{display:none;border:1px solid var(--line);background:#fff;border-radius:999px;padding:9px 13px;color:var(--ink)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  border:0;border-radius:999px;
  padding:14px 22px;
  background:linear-gradient(135deg,var(--blue-800),var(--blue-980)); color:#fff;
  font-weight:800; cursor:pointer;
  box-shadow:0 16px 40px rgba(15,51,79,.28);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease, filter .22s ease;
}
.btn:hover{transform:translateY(-3px);filter:saturate(1.15);text-decoration:none;box-shadow:0 24px 58px rgba(15,51,79,.36)}
.btn-secondary{background:#fff;color:var(--blue-950);box-shadow:0 12px 32px rgba(6,23,36,.10);border:1px solid var(--line)}
.btn-secondary:hover{background:var(--sand-2);color:var(--blue-950)}
.btn-light{background:#fff;color:var(--blue-950)}
.btn-small{padding:10px 16px;font-size:14px}
.hero{
  position:relative;
  isolation:isolate;
  padding:96px 0 78px;
  overflow:hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(215,169,72,.30), transparent 22%),
    radial-gradient(circle at 72% 36%, rgba(47,183,165,.22), transparent 30%),
    linear-gradient(135deg,#f7fbfd 0%,#e9f4fa 48%,#fff8ec 100%);
}
.hero:before,
.hero:after{
  content:"";
  position:absolute;
  border-radius:50%;
  filter:blur(2px);
  opacity:.55;
  z-index:-1;
  animation:float-soft 13s ease-in-out infinite alternate;
}
.hero:before{width:420px;height:420px;left:-150px;top:30px;background:rgba(31,111,159,.22)}
.hero:after{width:320px;height:320px;right:-90px;bottom:-70px;background:rgba(215,169,72,.24);animation-delay:-4s}
.hero-grid{display:grid;grid-template-columns:minmax(0,1.12fr) minmax(320px,.88fr);gap:58px;align-items:center}
.eyebrow{text-transform:uppercase;letter-spacing:.16em;font-weight:900;color:var(--blue-700);font-size:12px;margin:0 0 13px}
h1,h2,h3{line-height:1.08;color:var(--blue-980);margin:0}
h1{font-size:clamp(44px,6vw,78px);letter-spacing:-.055em;max-width:850px}
h2{font-size:clamp(32px,4vw,50px);letter-spacing:-.04em}
h3{font-size:22px;letter-spacing:-.02em}
.lead{font-size:clamp(18px,2.2vw,23px);color:#334854;max-width:780px}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin:34px 0}
.trust-list{display:flex;flex-wrap:wrap;gap:10px;list-style:none;padding:0;margin:24px 0 0}
.trust-list li{margin:0}
.trust-list a{display:inline-flex;align-items:center;padding:9px 13px;border:1px solid rgba(23,79,120,.18);border-radius:999px;background:rgba(255,255,255,.72);color:#263d4c;font-size:14px;text-decoration:none;box-shadow:0 8px 22px rgba(6,23,36,.06);transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease}
.trust-list a:hover,.trust-list a:focus-visible{transform:translateY(-2px);border-color:rgba(182,145,67,.45);background:rgba(255,255,255,.92);box-shadow:0 14px 30px rgba(6,23,36,.11);outline:none}
.hero-card{
  min-height:540px;border-radius:42px;padding:40px;position:relative;overflow:hidden;
  background:
    linear-gradient(160deg,rgba(255,255,255,.08),transparent 32%),
    radial-gradient(circle at 74% 18%, rgba(215,169,72,.42), transparent 26%),
    linear-gradient(145deg,var(--blue-980),var(--blue-800) 56%,#1f7e93);
  color:#fff;box-shadow:var(--shadow-strong);
  display:flex;flex-direction:column;justify-content:flex-end;
  transform:rotate(1.2deg);
  animation:card-breathe 7s ease-in-out infinite alternate;
}
.hero-card:before{
  content:"";position:absolute;inset:18px;border:1px solid rgba(255,255,255,.24);border-radius:32px;
}
.hero-card:after{
  content:"";position:absolute;inset:auto -40% -55% -40%;height:60%;background:rgba(255,255,255,.12);transform:rotate(-8deg);
}
.hero-card p{position:relative;font-size:31px;line-height:1.2;margin:0 0 20px;text-shadow:0 2px 18px rgba(0,0,0,.18)}
.hero-card span{position:relative;color:rgba(255,255,255,.82);font-weight:700}
.orb{position:absolute;width:300px;height:300px;border-radius:50%;background:rgba(255,255,255,.13);top:54px;right:-85px;animation:orb-move 10s ease-in-out infinite alternate}
.section{padding:92px 0;position:relative}
.bg-soft{background:linear-gradient(180deg,var(--blue-50),#fff)}
.bg-blue{background:linear-gradient(135deg,var(--blue-980),var(--blue-800) 58%,#176a7b);color:#fff;position:relative;overflow:hidden}
.bg-blue:before{content:"";position:absolute;width:420px;height:420px;right:-130px;top:-160px;border-radius:50%;background:rgba(215,169,72,.24)}
.bg-blue h2,.bg-blue p{color:#fff}
.split{display:grid;grid-template-columns:.9fr 1.1fr;gap:60px;align-items:start}
.prose p{font-size:18px;color:var(--muted);margin-top:0}
.prose ul{font-size:18px;color:var(--muted)}
.section-head{max-width:820px;margin-bottom:40px}
.cards{display:grid;gap:24px}
.cards.four{grid-template-columns:repeat(4,1fr)}
.cards.three{grid-template-columns:repeat(3,1fr)}
.card{
  background:rgba(255,255,255,.92);border:1px solid rgba(197,214,226,.92);border-radius:var(--radius);padding:30px;box-shadow:0 14px 42px rgba(6,23,36,.09);
  position:relative;overflow:hidden;transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:before{content:"";position:absolute;left:0;top:0;width:100%;height:5px;background:linear-gradient(90deg,var(--blue-700),var(--teal),var(--gold))}
.card:hover{transform:translateY(-8px);box-shadow:0 28px 70px rgba(6,23,36,.17);border-color:rgba(31,111,159,.35)}
.card-number{display:inline-block;color:var(--blue-700);font-weight:900;margin-bottom:28px}
.card p{color:var(--muted)}
.card a{font-weight:900}
.process .steps{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.step{border-left:5px solid var(--blue-700);padding:24px;background:#fff;border-radius:0 var(--radius) var(--radius) 0;box-shadow:0 14px 42px rgba(6,23,36,.09);transition:transform .25s ease, border-color .25s ease}
.step:hover{transform:translateY(-5px);border-color:var(--gold)}
.step strong{display:inline-grid;place-items:center;width:40px;height:40px;border-radius:50%;background:linear-gradient(135deg,var(--blue-100),#fff);color:var(--blue-900);margin-bottom:16px;box-shadow:0 8px 22px rgba(6,23,36,.08)}
.quote-section{background:linear-gradient(135deg,var(--sand),#fff3df);position:relative;overflow:hidden}
.quote-section:before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 20% 30%, rgba(215,169,72,.18), transparent 25%), radial-gradient(circle at 80% 70%, rgba(31,111,159,.14), transparent 28%)}
blockquote{margin:0 auto;max-width:920px;text-align:center;position:relative}
blockquote p{font-size:clamp(31px,4vw,54px);line-height:1.13;color:var(--blue-980);margin:0;font-weight:900;letter-spacing:-.045em}
.cta{text-align:center;max-width:780px;position:relative;z-index:1}
.cta p{font-size:20px;margin-bottom:28px}
.page-hero{padding:84px 0 62px;background:linear-gradient(135deg,var(--blue-50),#fff8ec)}
.offer-list{display:grid;gap:20px}
.offer-item{
  display:grid;grid-template-columns:360px 1fr;gap:36px;
  padding:36px;border:1px solid var(--line);border-radius:var(--radius);background:#fff;
  box-shadow:0 14px 42px rgba(6,23,36,.08);transition:transform .25s ease, box-shadow .25s ease;
}
.offer-item:hover{transform:translateY(-5px);box-shadow:0 28px 70px rgba(6,23,36,.14)}
.offer-item span{color:var(--blue-700);font-weight:900;display:block;margin-bottom:10px}
.offer-item p{font-size:18px;color:var(--muted);margin:0}
.check-list{list-style:none;padding:0;margin:0}
.check-list li{position:relative;padding-left:32px;margin-bottom:14px}
.check-list li:before{content:"";position:absolute;left:0;top:.5em;width:12px;height:12px;border-radius:50%;background:linear-gradient(135deg,var(--blue-700),var(--teal))}
.note-box,.placeholder-note{
  border:1px solid var(--line);background:linear-gradient(135deg,var(--blue-50),#fff);border-radius:var(--radius);padding:24px;box-shadow:0 12px 34px rgba(6,23,36,.06)
}
.about-grid{display:grid;grid-template-columns:360px 1fr;gap:60px}
.portrait-placeholder{
  min-height:520px;border-radius:32px;border:1px dashed var(--blue-700);
  background:
    radial-gradient(circle at 68% 18%, rgba(215,169,72,.22), transparent 28%),
    linear-gradient(145deg,var(--blue-50),#fff);
  display:grid;place-items:center;color:var(--muted);font-weight:800;
  box-shadow:0 18px 50px rgba(6,23,36,.09)
}
.newsletter{text-align:center;max-width:760px}
.inline-form{display:flex;gap:12px;justify-content:center;margin-top:24px}
.inline-form input{min-width:280px}
.contact-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:42px;align-items:start}
.contact-panel,.contact-form{
  border:1px solid var(--line);border-radius:var(--radius);padding:32px;background:#fff;box-shadow:0 16px 46px rgba(6,23,36,.10);
}
.small,.form-note{font-size:14px;color:var(--muted)}
.field{display:grid;gap:7px;margin-bottom:16px}
label{font-weight:800;color:var(--blue-950)}
input,textarea,select{
  width:100%;border:1px solid var(--line);border-radius:14px;padding:13px 14px;
  font:inherit;background:#fff;color:var(--ink)
}
input:focus,textarea:focus,select:focus{outline:3px solid rgba(31,111,159,.18);border-color:var(--blue-700)}
.checkbox{display:flex;gap:12px;align-items:flex-start;margin:18px 0;font-weight:400;color:var(--muted)}
.checkbox input{width:auto;margin-top:6px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.site-footer{background:linear-gradient(135deg,var(--blue-980),var(--blue-900));color:#d8e3ea;padding:58px 0 22px}
.site-footer h2{font-size:18px;color:#fff;margin-bottom:12px}
.site-footer a{color:#fff}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:36px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.14);margin-top:34px;padding-top:18px;color:#b7c8d4}
.reveal{opacity:0;transform:translateY(26px);transition:opacity .7s ease, transform .7s ease}
.reveal.in-view{opacity:1;transform:translateY(0)}
@keyframes float-soft{from{transform:translate3d(0,0,0) scale(1)}to{transform:translate3d(34px,-22px,0) scale(1.08)}}
@keyframes card-breathe{from{transform:rotate(1.2deg) translateY(0)}to{transform:rotate(-.6deg) translateY(-8px)}}
@keyframes orb-move{from{transform:translate(0,0) scale(1)}to{transform:translate(-34px,42px) scale(1.16)}}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*:before,*:after{animation:none!important;transition:none!important}
  .reveal{opacity:1;transform:none}
}
@media (max-width: 980px){
  .nav-toggle{display:inline-flex}
  .site-nav{
    position:absolute;left:20px;right:20px;top:78px;
    display:none;flex-direction:column;align-items:stretch;
    padding:18px;background:#fff;border:1px solid var(--line);border-radius:20px;box-shadow:var(--shadow)
  }
  .site-nav.open{display:flex}
  .hero-grid,.split,.offer-item,.about-grid,.contact-grid{grid-template-columns:1fr}
  .cards.four,.cards.three,.process .steps,.footer-grid{grid-template-columns:1fr}
  .hero-card{min-height:360px;transform:none}
}
@media (max-width: 560px){
  .container{width:min(var(--max), calc(100% - 28px))}
  .hero{padding-top:58px}
  h1{font-size:40px}
  .brand-text small{display:none}
  .hero-card p{font-size:24px}
  .inline-form{flex-direction:column}
  .section{padding:66px 0}
}


/* Topic graphics */
.topic-visual,
.card-visual,
.offer-visual{
  display:block;
  width:100%;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 48px rgba(6,23,36,.14);
  border:1px solid rgba(197,214,226,.86);
  background:#fff;
}
.topic-visual{margin-top:22px;min-height:220px;object-fit:cover;}
.card-visual{height:170px;object-fit:cover;margin:-10px 0 22px;transition:transform .35s ease, box-shadow .35s ease;}
.card:hover .card-visual{transform:scale(1.035);box-shadow:0 24px 64px rgba(6,23,36,.20)}
.offer-visual{height:220px;object-fit:cover;align-self:stretch;}
.offer-item.visual-offer{grid-template-columns:300px 1fr;align-items:center;}
.offer-item.visual-offer .offer-copy{display:grid;gap:8px;}
.visual-split{display:grid;grid-template-columns:1fr 390px;gap:44px;align-items:center;}
.visual-split .topic-visual{margin-top:0;}
.mini-visual{width:100%;height:138px;object-fit:cover;border-radius:18px;margin-bottom:18px;border:1px solid rgba(197,214,226,.86);box-shadow:0 12px 34px rgba(6,23,36,.10)}
.graphic-band{position:relative;overflow:hidden;}
.graphic-band:after{content:"";position:absolute;inset:auto 0 0 0;height:4px;background:linear-gradient(90deg,var(--blue-700),var(--teal),var(--gold));opacity:.9;}
@media (max-width: 980px){
  .visual-split,.offer-item.visual-offer{grid-template-columns:1fr;}
  .offer-visual{height:auto;max-height:320px;}
}


/* Logo integration: provided horizontal logo.
   Kreis/Weg links, Schriftzug rechts; header/menu height stays unchanged.
   V10: logo auf 2/3 verkleinert und bündig an den linken Browserrand gesetzt. */
.header-inner{
  position:relative;
}
.brand-logo{
  position:absolute;
  left:calc((100vw - min(var(--max), calc(100vw - 40px))) / -2);
  top:0;
  z-index:70;
  display:inline-flex;
  align-items:flex-start;
  justify-content:flex-start;
  width:313px;
  max-width:none;
  padding:0;
  transform:none;
}
.brand-logo img{
  display:block;
  width:313px;
  height:auto;
  max-width:none;
  object-fit:contain;
  object-position:top left;
  filter:drop-shadow(0 12px 26px rgba(6,23,36,.16));
}
.site-nav{
  position:relative;
  z-index:55;
  margin-left:260px;
}
.footer-logo{
  display:block;
  width:90px;
  max-width:100%;
  height:auto;
  margin:0 0 12px;
  filter:drop-shadow(0 12px 26px rgba(0,0,0,.18));
}
.site-header.is-scrolled .brand-logo img{
  width:313px;
}
@media (max-width: 1180px){
  .brand-logo{width:270px}
  .brand-logo img{width:270px}
  .site-header.is-scrolled .brand-logo img{width:270px}
  .site-nav{margin-left:245px;gap:10px}
}
@media (max-width: 980px){
  .brand-logo{width:227px}
  .brand-logo img{width:227px}
  .site-header.is-scrolled .brand-logo img{width:227px}
  .site-nav{margin-left:0}
  .site-nav.open{z-index:90}
}
@media (max-width: 760px){
  .header-inner{min-height:72px}
  .brand-logo{left:-20px;width:190px}
  .brand-logo img{width:190px}
  .site-header.is-scrolled .brand-logo img{width:190px}
  .nav-toggle{position:relative;z-index:95;margin-left:auto}
}


/* Sanft bewegte Hintergrundkreise */
body::after{
  content:"";
  position:fixed;
  inset:-18vh -12vw;
  pointer-events:none;
  z-index:-2;
  opacity:.52;
  background:
    radial-gradient(circle at 15% 20%, rgba(47,183,165,.22) 0 110px, transparent 230px),
    radial-gradient(circle at 84% 14%, rgba(215,169,72,.20) 0 96px, transparent 220px),
    radial-gradient(circle at 72% 82%, rgba(31,111,159,.19) 0 130px, transparent 260px),
    radial-gradient(circle at 25% 78%, rgba(45,145,199,.13) 0 90px, transparent 220px);
  animation:ambient-circles 28s ease-in-out infinite alternate;
}
.cards.five{grid-template-columns:repeat(5,1fr)}
.honey-field{position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden;opacity:0}
@keyframes ambient-circles{
  0%{transform:translate3d(0,0,0) scale(1)}
  50%{transform:translate3d(3.2vw,-2.2vh,0) scale(1.045)}
  100%{transform:translate3d(-2.6vw,2.8vh,0) scale(1.02)}
}
@media (max-width:1180px){.cards.five{grid-template-columns:repeat(3,1fr)}}
@media (max-width:980px){.cards.five{grid-template-columns:1fr}}
@media (prefers-reduced-motion: reduce){body::after{animation:none!important}}

/* V11: Hintergrundbild für die Seite Aufstellungsarbeit / systemisches Familienstellen */
.image-hero{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  border-bottom:1px solid rgba(197,214,226,.9);
}
.image-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.82) 34%, rgba(255,255,255,.34) 68%, rgba(255,255,255,.08) 100%),
    radial-gradient(circle at 18% 45%, rgba(255,248,236,.88), transparent 34%);
  z-index:0;
}
.image-hero .container{position:relative;z-index:1}
.aufstellungen-image-hero{
  background-image:url("../assets/img/systemisches-familienstellen-bild-2.png");
  background-position:center center;
}
.hero-text-panel{
  max-width:690px;
  padding:34px 36px;
  border-radius:28px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(197,214,226,.72);
  box-shadow:0 24px 70px rgba(6,23,36,.14);
  backdrop-filter:blur(12px) saturate(1.08);
}
.hero-text-panel .lead{margin-bottom:0}
@media (max-width: 760px){
  .image-hero{min-height:500px;background-position:center right;}
  .image-hero::before{background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.72));}
  .hero-text-panel{padding:26px 22px;border-radius:22px;}
}


/* V13: Startseite mit nicht-gezoomtem, fixiertem Coachingraum-Hintergrundbild */
.hero.home-image-hero{
  background-image:
    linear-gradient(90deg, rgba(247,251,253,.96) 0%, rgba(247,251,253,.88) 42%, rgba(247,251,253,.52) 68%, rgba(247,251,253,.22) 100%),
    linear-gradient(180deg, rgba(255,255,255,.50), rgba(255,248,236,.22)),
    url("../assets/img/startseite-coachingraum-hintergrund.png");
  /* Die ersten beiden Ebenen sind Overlays; das Bild selbst wird über die volle Breite gezeigt statt per cover hineingezoomt. */
  background-size:100% 100%, 100% 100%, 100% auto;
  background-position:center top, center top, center top;
  background-repeat:no-repeat, no-repeat, no-repeat;
  background-attachment:scroll, scroll, fixed;
  background-color:#f7fbfd;
}
.hero.home-image-hero:before{
  background:rgba(47,183,165,.18);
  mix-blend-mode:multiply;
}
.hero.home-image-hero:after{
  background:rgba(215,169,72,.18);
  mix-blend-mode:multiply;
}
.hero.home-image-hero .hero-content{
  padding:32px 34px;
  border-radius:32px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(197,214,226,.68);
  box-shadow:0 26px 80px rgba(6,23,36,.13);
  backdrop-filter:blur(10px) saturate(1.06);
}
.hero.home-image-hero .hero-card{
  background:
    linear-gradient(160deg,rgba(255,255,255,.10),transparent 32%),
    radial-gradient(circle at 74% 18%, rgba(215,169,72,.42), transparent 26%),
    linear-gradient(145deg,rgba(11,45,71,.92),rgba(23,79,120,.90) 56%,rgba(31,126,147,.88));
}
@media (max-width:760px){
  .hero.home-image-hero{
    background-image:
      linear-gradient(180deg, rgba(247,251,253,.94), rgba(247,251,253,.82)),
      url("../assets/img/startseite-coachingraum-hintergrund.png");
    background-size:100% 100%, 100% auto;
    background-position:center top, center top;
    background-repeat:no-repeat, no-repeat;
    background-attachment:scroll, scroll;
  }
  .hero.home-image-hero .hero-content{padding:24px 20px;border-radius:24px;}
}


/* V15: Angebote-Hero korrigiert
   - eigenes breites Bannerbild, damit mehr vom Ambiente sichtbar bleibt
   - Hintergrund bleibt auf großen Screens beim Scrollen stehen
   - Hero bekommt wieder Abstand unterhalb der Menüleiste */
.angebote-image-hero{
  min-height:620px;
  padding:96px 0 78px;
  align-items:center;
  background-image:url("../assets/img/angebote-hintergrund-wide.png");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}
.angebote-image-hero::before{
  background:
    linear-gradient(90deg, rgba(255,255,255,.91) 0%, rgba(255,255,255,.74) 38%, rgba(255,255,255,.30) 70%, rgba(255,255,255,.08) 100%),
    radial-gradient(circle at 18% 43%, rgba(255,248,236,.78), transparent 34%);
}
.angebote-image-hero .hero-text-panel{
  margin-top:24px;
}
@media (min-width: 1100px){
  .angebote-image-hero{
    background-attachment:fixed;
  }
}
@media (max-width: 760px){
  .angebote-image-hero{
    min-height:560px;
    padding:72px 0 56px;
    background-size:auto 100%;
    background-position:center center;
    background-attachment:scroll;
  }
  .angebote-image-hero .hero-text-panel{
    margin-top:10px;
  }
}


/* V17: Atemarbeit-Hero angepasst
   - Hintergrundbild auf 75% Darstellung verkleinert
   - Footer-Logo gegenüber V16 um 50% vergrößert */
.atemarbeit-image-hero{
  min-height:640px;
  padding:98px 0 82px;
  align-items:center;
  background-image:url("../assets/img/atemarbeit-hintergrund.png");
  background-size:75% auto;
  background-position:center top;
  background-repeat:no-repeat;
  background-color:#fbf7ef;
}
.atemarbeit-image-hero::before{
  background:
    linear-gradient(90deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.58) 34%, rgba(255,255,255,.18) 68%, rgba(255,255,255,.06) 100%),
    radial-gradient(circle at 20% 45%, rgba(255,248,236,.60), transparent 36%);
}
.atemarbeit-text-panel{
  background:rgba(255,255,255,.66);
  border-color:rgba(197,214,226,.58);
  backdrop-filter:blur(8px) saturate(1.04);
}
@media (min-width:1100px){
  .atemarbeit-image-hero{
    background-attachment:fixed;
  }
}
@media (max-width:760px){
  .atemarbeit-image-hero{
    min-height:560px;
    padding:72px 0 56px;
    background-size:auto 100%;
    background-position:center center;
    background-attachment:scroll;
  }
  .atemarbeit-text-panel{
    background:rgba(255,255,255,.78);
  }
}

/* V18: Online-Coaching-Hero mit Online-Session / VISTEMA-ähnlichem Board
   - Hintergrundbild zeigt mehr Raum und bleibt auf großen Screens beim Scrollen stehen
   - Textpanel bleibt bewusst transparent, damit das Bild sichtbar bleibt */
.online-coaching-image-hero{
  min-height:640px;
  padding:98px 0 82px;
  align-items:center;
  background-image:url("../assets/img/online-coaching-hintergrund.png");
  background-size:100% auto;
  background-position:center top;
  background-repeat:no-repeat;
  background-color:#fbf7ef;
}
.online-coaching-image-hero::before{
  background:
    linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.70) 36%, rgba(255,255,255,.22) 70%, rgba(255,255,255,.06) 100%),
    radial-gradient(circle at 20% 45%, rgba(255,248,236,.68), transparent 36%);
}
.online-coaching-text-panel{
  background:rgba(255,255,255,.68);
  border-color:rgba(197,214,226,.58);
  backdrop-filter:blur(8px) saturate(1.04);
}
@media (min-width:1100px){
  .online-coaching-image-hero{
    background-attachment:fixed;
  }
}
@media (max-width:760px){
  .online-coaching-image-hero{
    min-height:560px;
    padding:72px 0 56px;
    background-size:auto 100%;
    background-position:center center;
    background-attachment:scroll;
  }
  .online-coaching-text-panel{
    background:rgba(255,255,255,.80);
  }
}

/* V19: Fix Online-Coaching-Hintergrund sichtbar machen
   Problem: Das Bild war durch Overlay/Background-Handling zu stark verdeckt bzw. in einigen Browsern nicht sauber sichtbar.
   Lösung: eigenes Bild-Layer über ::after, reduziertes Overlay, klare Z-Index-Struktur. */
.online-coaching-image-hero{
  background-image:none !important;
  position:relative;
  isolation:isolate;
  min-height:680px;
  padding:120px 0 96px;
  background-color:#fbf7ef;
}
.online-coaching-image-hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background-image:url("../assets/img/online-coaching-hintergrund.png");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  opacity:.98;
  transform:translateZ(0);
}
.online-coaching-image-hero::before{
  z-index:1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.68) 0%, rgba(255,255,255,.44) 38%, rgba(255,255,255,.12) 70%, rgba(255,255,255,.02) 100%),
    radial-gradient(circle at 18% 42%, rgba(255,248,236,.40), transparent 34%);
}
.online-coaching-image-hero .container{
  position:relative;
  z-index:2;
}
.online-coaching-text-panel{
  background:rgba(255,255,255,.58);
  border-color:rgba(197,214,226,.50);
  backdrop-filter:blur(6px) saturate(1.04);
}
@media (min-width:1100px){
  .online-coaching-image-hero::after{
    background-attachment:fixed;
  }
}
@media (max-width:760px){
  .online-coaching-image-hero{
    min-height:590px;
    padding:82px 0 64px;
  }
  .online-coaching-image-hero::after{
    background-size:auto 100%;
    background-position:center center;
    background-attachment:scroll;
  }
  .online-coaching-text-panel{
    background:rgba(255,255,255,.76);
  }
}

/* V20: Alle großen Seiten-Hintergrundbilder bleiben beim Scrollen stehen.
   Hinweis: Auf manchen mobilen Browsern (besonders iOS Safari) wird background-attachment: fixed
   systemseitig eingeschränkt. Für Desktop/Tablet ist die Fixierung aktiv. */
.hero.home-image-hero,
.image-hero,
.angebote-image-hero,
.atemarbeit-image-hero{
  background-attachment:fixed !important;
}
.hero.home-image-hero{
  background-attachment:scroll, scroll, fixed !important;
}
.online-coaching-image-hero::after{
  background-attachment:fixed !important;
}
@media (max-width:760px){
  .hero.home-image-hero{
    background-attachment:scroll, fixed !important;
  }
  .image-hero,
  .angebote-image-hero,
  .atemarbeit-image-hero{
    background-attachment:fixed !important;
  }
  .online-coaching-image-hero::after{
    background-attachment:fixed !important;
  }
}

/* V21: Online-Coaching-Fixierung korrigiert
   Hintergrund liegt wieder direkt auf der Hero-Section statt auf einem ::after-Layer.
   Grund: background-attachment: fixed ist auf Pseudo-Layern je nach Browser unzuverlässig. */
.online-coaching-image-hero{
  background-image:url("../assets/img/online-coaching-hintergrund.png") !important;
  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;
  background-attachment:fixed !important;
  background-color:#fbf7ef !important;
}
.online-coaching-image-hero::after{
  content:none !important;
  display:none !important;
  background-image:none !important;
}
.online-coaching-image-hero::before{
  z-index:1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.66) 0%, rgba(255,255,255,.38) 40%, rgba(255,255,255,.10) 72%, rgba(255,255,255,.02) 100%),
    radial-gradient(circle at 18% 42%, rgba(255,248,236,.34), transparent 34%);
}
@media (max-width:760px){
  .online-coaching-image-hero{
    background-attachment:fixed !important;
    background-size:auto 100% !important;
    background-position:center center !important;
  }
}


/* V22: Über-mich-Seite mit Wolfram-Foto als Hintergrund und Portrait */
.ueber-mich-image-hero{
  position:relative;
  min-height:620px;
  padding:118px 0 88px;
  display:flex;
  align-items:center;
  background-image:url("../assets/img/ueber-mich-therapeutischer-ansatz-hintergrund.png");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  background-attachment:fixed;
  overflow:hidden;
}
.ueber-mich-image-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.56) 42%, rgba(255,255,255,.20) 74%, rgba(255,255,255,.08) 100%),
    radial-gradient(circle at 16% 42%, rgba(255,248,236,.44), transparent 34%);
  z-index:0;
}
.ueber-mich-image-hero .container{
  position:relative;
  z-index:1;
}
.ueber-mich-image-hero .visual-split > div:first-child{
  max-width:760px;
  padding:34px 38px;
  border-radius:30px;
  background:rgba(255,255,255,.66);
  border:1px solid rgba(197,214,226,.62);
  box-shadow:0 26px 80px rgba(6,23,36,.13);
  backdrop-filter:blur(9px) saturate(1.05);
}
.hero-portrait-chip{
  width:min(360px, 28vw);
  aspect-ratio:1/1;
  border-radius:50%;
  background:
    radial-gradient(circle at 42% 36%, rgba(255,255,255,.32), transparent 54%),
    linear-gradient(135deg, rgba(23,79,120,.55), rgba(47,183,165,.28));
  border:1px solid rgba(255,255,255,.42);
  box-shadow:0 28px 80px rgba(6,23,36,.16);
  opacity:.70;
}
.portrait-card{
  margin:0;
  border-radius:32px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(197,214,226,.86);
  box-shadow:0 24px 70px rgba(6,23,36,.16);
}
.portrait-card img{
  display:block;
  width:100%;
  height:auto;
  object-fit:cover;
}
.portrait-card figcaption{
  padding:14px 18px;
  font-weight:800;
  color:var(--blue-900);
  background:linear-gradient(90deg, rgba(255,255,255,.96), rgba(244,249,252,.96));
}
@media (max-width:760px){
  .ueber-mich-image-hero{
    min-height:560px;
    padding:82px 0 62px;
    background-position:center top;
    background-attachment:fixed;
  }
  .ueber-mich-image-hero .visual-split > div:first-child{
    padding:26px 22px;
    border-radius:24px;
  }
  .hero-portrait-chip{display:none;}
}

/* V25: Hintergründe für Impulse und Kontakt */
.impulse-image-hero,
.kontakt-image-hero{
  position:relative;
  min-height:540px;
  padding:116px 0 84px;
  display:flex;
  align-items:center;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  background-attachment:fixed;
  overflow:hidden;
}
.impulse-image-hero{
  background-image:url("../assets/img/impulse-hintergrund.png");
  background-position:center center;
}
.kontakt-image-hero{
  background-image:url("../assets/img/kontakt-hintergrund.png");
  background-position:center center;
}
.impulse-image-hero::before,
.kontakt-image-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}
.impulse-image-hero::before{
  background:
    linear-gradient(90deg, rgba(255,255,255,.80) 0%, rgba(255,255,255,.56) 42%, rgba(255,255,255,.22) 72%, rgba(255,255,255,.08) 100%),
    radial-gradient(circle at 18% 45%, rgba(255,248,236,.36), transparent 35%);
}
.kontakt-image-hero::before{
  background:
    linear-gradient(90deg, rgba(255,255,255,.74) 0%, rgba(255,255,255,.46) 42%, rgba(255,255,255,.18) 72%, rgba(255,255,255,.06) 100%),
    radial-gradient(circle at 18% 45%, rgba(255,248,236,.30), transparent 35%);
}
.impulse-image-hero .container,
.kontakt-image-hero .container{
  position:relative;
  z-index:1;
  margin-left:max(24px, calc((100vw - var(--max))/2));
  margin-right:auto;
  max-width:720px;
  padding:34px 38px;
  border-radius:30px;
  background:rgba(255,255,255,.66);
  border:1px solid rgba(197,214,226,.60);
  box-shadow:0 26px 80px rgba(6,23,36,.13);
  backdrop-filter:blur(8px) saturate(1.05);
}
.kontakt-image-hero .container{
  background:rgba(255,255,255,.58);
}
@media (max-width:760px){
  .impulse-image-hero,
  .kontakt-image-hero{
    min-height:560px;
    padding:86px 0 64px;
    background-attachment:fixed;
    background-size:auto 100%;
  }
  .impulse-image-hero{background-position:center center;}
  .kontakt-image-hero{background-position:42% center;}
  .impulse-image-hero .container,
  .kontakt-image-hero .container{
    margin-left:16px;
    margin-right:16px;
    max-width:none;
    padding:26px 22px;
    border-radius:24px;
  }
}


/* Footer brand alignment: logo left, claim text right, both visually same height */
.footer-grid{
  grid-template-columns:minmax(420px, 2.4fr) minmax(180px, 1fr) minmax(180px, 1fr);
  column-gap:54px;
  row-gap:34px;
  align-items:start;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:22px;
  max-width:720px;
}
.footer-brand .footer-logo{
  flex:0 0 auto;
  width:120px;
  margin:0;
}
.footer-brand-text{
  min-height:90px;
  display:flex;
  align-items:center;
  margin:0;
  max-width:500px;
  color:#e7f0f5;
  font-size:1rem;
  line-height:1.45;
  letter-spacing:.01em;
}
@media (max-width: 980px){
  .footer-grid{grid-template-columns:1fr;gap:28px}
  .footer-brand{align-items:flex-start}
  .footer-brand .footer-logo{width:110px}
  .footer-brand-text{min-height:auto}
}
@media (max-width: 560px){
  .footer-brand{flex-direction:column;gap:14px}
}

/* Footer claim stacked layout, requested format */
.footer-brand-text-stacked{
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:2px;
  line-height:1.12;
  min-height:90px;
  font-size:.96rem;
  font-weight:500;
}
.footer-brand-text-stacked span{
  display:block;
  white-space:nowrap;
}
.footer-brand-text-stacked .footer-indent{
  padding-left:1.45em;
}
@media (max-width: 560px){
  .footer-brand-text-stacked span{white-space:normal;}
  .footer-brand-text-stacked .footer-indent{padding-left:1.2em;}
}


/* Multilingual language selector */
.language-select {
  border: 1px solid rgba(23, 59, 87, 0.18);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: rgba(255,255,255,0.92);
  color: var(--ink, #0f2537);
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(23,59,87,0.08);
}
.language-select:focus {
  outline: 3px solid rgba(196, 154, 73, 0.35);
  outline-offset: 2px;
}
@media (max-width: 900px) {
  .language-select { width: 100%; margin: 0.35rem 0; }
}


/* V29: Header-/Sprachmenü-Korrektur
   - Navigationspunkte bleiben einzeilig.
   - CTA bleibt einzeilig, auch in EN/PT.
   - Sprachselektor steht rechts außen.
   - Flaggen stehen direkt im Select-Text der Sprachoptionen. */
.site-nav{
  flex:1 1 auto;
  min-width:0;
  justify-content:flex-start;
  flex-wrap:nowrap;
  gap:14px;
}
.site-nav .nav-link,
.site-nav .btn-small,
.site-nav .language-select{
  white-space:nowrap;
  flex:0 0 auto;
}
.site-nav .btn-small{
  order:90;
  padding-inline:14px;
  min-width:max-content;
}
.site-nav .language-select{
  order:100;
  margin-left:auto;
  min-width:132px;
  max-width:160px;
  padding-inline:0.8rem 1.7rem;
  font-size:14px;
}
@media (min-width: 981px){
  .site-nav{gap:12px;}
  .nav-link{font-size:14px;}
}
@media (min-width: 1181px){
  .site-nav{gap:14px;}
  .nav-link{font-size:15px;}
}
@media (max-width: 900px){
  .site-nav{
    flex-wrap:wrap;
  }
  .site-nav .language-select{
    order:98;
    margin-left:0;
    width:100%;
    max-width:none;
  }
  .site-nav .btn-small{
    width:100%;
  }
}


/* V30: Sprachmenü mit echten lokalen SVG-Flaggen statt Emoji-/Kurzform-Darstellung.
   Hintergrund: Windows/Browser können Flaggen-Emojis als Länder-Kurzform anzeigen.
   Deshalb werden kleine SVG-Flaggen als Bildsymbole verwendet. */
.language-menu{
  position:relative;
  order:100;
  margin-left:auto;
  flex:0 0 auto;
  white-space:nowrap;
  z-index:40;
}
.language-menu-button{
  display:inline-flex;
  align-items:center;
  gap:0.45rem;
  min-width:142px;
  height:38px;
  border:1px solid rgba(23, 59, 87, 0.18);
  border-radius:999px;
  padding:0 0.72rem;
  background:rgba(255,255,255,0.94);
  color:var(--ink, #0f2537);
  font:inherit;
  font-size:14px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(23,59,87,0.08);
}
.language-menu-button:focus-visible{
  outline:3px solid rgba(196, 154, 73, 0.35);
  outline-offset:2px;
}
.language-flag{
  display:inline-block;
  width:1.25em;
  height:0.86em;
  object-fit:cover;
  border-radius:2px;
  box-shadow:0 0 0 1px rgba(15,37,55,0.14);
  flex:0 0 auto;
}
.language-caret{
  margin-left:auto;
  font-size:0.75em;
  opacity:0.72;
}
.language-menu-panel{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  display:none;
  min-width:164px;
  padding:0.35rem;
  border:1px solid rgba(23, 59, 87, 0.14);
  border-radius:16px;
  background:rgba(255,255,255,0.98);
  box-shadow:0 18px 40px rgba(15,37,55,0.16);
}
.language-menu.open .language-menu-panel,
.language-menu:focus-within .language-menu-panel{
  display:block;
}
.language-option{
  display:flex;
  align-items:center;
  gap:0.55rem;
  padding:0.62rem 0.72rem;
  border-radius:12px;
  color:var(--ink, #0f2537);
  text-decoration:none;
  font-size:14px;
  line-height:1;
  white-space:nowrap;
}
.language-option:hover,
.language-option:focus-visible{
  background:rgba(23,59,87,0.08);
  outline:none;
}
.language-option[aria-current="page"]{
  background:rgba(196,154,73,0.14);
  font-weight:700;
}
.site-nav .language-select{display:none;}
.site-nav .language-menu{margin-left:auto;}
.site-nav .btn-small{order:90;}
@media (max-width: 900px){
  .site-nav .language-menu{
    width:100%;
    margin-left:0;
    order:98;
  }
  .language-menu-button{
    width:100%;
    justify-content:flex-start;
  }
  .language-menu-panel{
    position:static;
    margin-top:0.45rem;
    width:100%;
  }
}


/* v31: zusätzliche Angebotsbereiche */
.inneres-kind-image-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.88), rgba(255,255,255,.52)),
    radial-gradient(circle at 25% 45%, rgba(215,166,62,.38), transparent 32%),
    radial-gradient(circle at 75% 35%, rgba(29,102,131,.30), transparent 34%),
    linear-gradient(135deg, #eaf6fb, #fff7df 55%, #edf6f8);
  background-attachment: fixed;
}
.traumarbeit-image-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.88), rgba(255,255,255,.48)),
    radial-gradient(circle at 70% 35%, rgba(215,166,62,.34), transparent 30%),
    radial-gradient(circle at 25% 70%, rgba(24,67,95,.25), transparent 34%),
    linear-gradient(135deg, #eef7fb, #f7edd8 62%, #e7f1f3);
  background-attachment: fixed;
}


/* V32: Neue Angebotsbereiche in der oberen Menüleiste.
   Die zusätzlichen Links bleiben einzeilig und die Navigation wird auf Desktop etwas kompakter. */
.site-nav .nav-link{
  white-space:nowrap;
}
@media (min-width: 981px){
  .site-nav{
    gap:9px;
  }
  .nav-link{
    font-size:13px;
  }
  .site-nav .btn-small{
    padding-inline:11px;
    font-size:13px;
  }
  .language-menu-button{
    min-width:124px;
    font-size:13px;
    padding-inline:0.58rem;
  }
}
@media (min-width: 1280px){
  .site-nav{
    gap:11px;
  }
  .nav-link{
    font-size:13.5px;
  }
}

/* V33: Hintergrundbilder für Inneres-Kind-Arbeit und Traumarbeit */
.inneres-kind-image-hero,
.traumarbeit-image-hero{
  position:relative;
  min-height:560px;
  padding:116px 0 84px;
  display:flex;
  align-items:center;
  background-repeat:no-repeat;
  background-size:cover;
  background-attachment:fixed;
  overflow:hidden;
}
.inneres-kind-image-hero{
  background-image:url("../assets/img/inneres-kind-hintergrund.png");
  background-position:center center;
}
.traumarbeit-image-hero{
  background-image:url("../assets/img/traumarbeit-hintergrund.png");
  background-position:center center;
}
.inneres-kind-image-hero::before,
.traumarbeit-image-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.58) 42%, rgba(255,255,255,.26) 72%, rgba(255,255,255,.10) 100%),
    radial-gradient(circle at 18% 45%, rgba(255,248,236,.28), transparent 35%);
}
.inneres-kind-image-hero .container,
.traumarbeit-image-hero .container{
  position:relative;
  z-index:1;
}
.inneres-kind-image-hero .hero-text-panel,
.traumarbeit-image-hero .hero-text-panel{
  background:rgba(255,255,255,.68);
  border:1px solid rgba(197,214,226,.62);
  box-shadow:0 26px 80px rgba(6,23,36,.13);
  backdrop-filter:blur(8px) saturate(1.05);
}
@media (max-width:760px){
  .inneres-kind-image-hero,
  .traumarbeit-image-hero{
    min-height:560px;
    padding:86px 0 64px;
    background-attachment:fixed;
    background-size:auto 100%;
  }
  .inneres-kind-image-hero{background-position:center center;}
  .traumarbeit-image-hero{background-position:center center;}
}

/* V34: Zusatzbereich Traumarbeit - generationenübergreifende Traumata */
.trauma-generation-section blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,.72);
  border-radius: 0 18px 18px 0;
  box-shadow: 0 12px 35px rgba(16, 42, 62, .08);
}

.trauma-generation-section blockquote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
}


/* Integrated blog archive */
.blog-index-section .section-head p:not(.eyebrow){color:var(--muted);font-size:18px;max-width:860px;}
.blog-article-grid{align-items:stretch;}
.blog-card{display:flex;flex-direction:column;}
.blog-card h2{font-size:clamp(22px,2vw,30px);line-height:1.12;margin-top:0;}
.blog-card p{margin-bottom:18px;}
.blog-card a{margin-top:auto;display:inline-flex;align-items:center;gap:8px;color:var(--blue-800);text-decoration:none;}
.blog-card a::after{content:"→";}
.blog-card-visual{background:linear-gradient(135deg,var(--blue-50),#fff8ec);}
@media (max-width: 1180px){.blog-article-grid.cards.three{grid-template-columns:repeat(2,1fr);}}
@media (max-width: 760px){.blog-article-grid.cards.three{grid-template-columns:1fr;}}


/* V37: Transparenz und Hintergrundwirkung erhöht
   - Hero-Hauptfelder transparenter, damit die Hintergrundbilder stärker wirken.
   - Inhaltskarten und Flächen der restlichen Seite leicht transparent.
   - Navigation bleibt kompakt; Online-Coaching steht vor Über mich. */
.hero.home-image-hero .hero-content,
.hero-text-panel,
.ueber-mich-image-hero .visual-split > div:first-child,
.impulse-image-hero .container,
.kontakt-image-hero .container,
.inneres-kind-image-hero .hero-text-panel,
.traumarbeit-image-hero .hero-text-panel,
.atemarbeit-text-panel,
.online-coaching-text-panel{
  background:rgba(255,255,255,.50) !important;
  border-color:rgba(197,214,226,.46) !important;
  backdrop-filter:blur(7px) saturate(1.04) !important;
}
.image-hero::before,
.angebote-image-hero::before,
.atemarbeit-image-hero::before,
.online-coaching-image-hero::before,
.ueber-mich-image-hero::before,
.impulse-image-hero::before,
.kontakt-image-hero::before,
.inneres-kind-image-hero::before,
.traumarbeit-image-hero::before{
  opacity:.72 !important;
}
.card,
.offer-item,
.step,
.note-box,
.placeholder-note,
.contact-panel,
.contact-form,
.portrait-card,
.blog-card,
.article-card,
.article-inline-image,
.trauma-generation-section blockquote{
  background:rgba(255,255,255,.84) !important;
  border-color:rgba(197,214,226,.62) !important;
  backdrop-filter:blur(4px) saturate(1.03);
}
.bg-soft{
  background:linear-gradient(180deg, rgba(244,249,252,.66), rgba(255,255,255,.54)) !important;
}
.quote-section{
  background:linear-gradient(135deg, rgba(243,234,220,.66), rgba(255,243,223,.54)) !important;
}
.page-hero{
  background:linear-gradient(135deg, rgba(244,249,252,.66), rgba(255,248,236,.54)) !important;
}
.site-header{
  background:rgba(255,255,255,.76) !important;
}
@media (max-width:760px){
  .hero.home-image-hero .hero-content,
  .hero-text-panel,
  .ueber-mich-image-hero .visual-split > div:first-child,
  .impulse-image-hero .container,
  .kontakt-image-hero .container,
  .inneres-kind-image-hero .hero-text-panel,
  .traumarbeit-image-hero .hero-text-panel,
  .atemarbeit-text-panel,
  .online-coaching-text-panel{
    background:rgba(255,255,255,.70) !important;
  }
}

/* V38: Neues Hintergrundbild für Aufstellungen und 15 % mehr Transparenz der Inhaltsobjekte */
.aufstellungen-image-hero{
  background-image:url("../assets/img/aufstellungen-hintergrund-v38.png") !important;
  background-position:center center !important;
  background-size:cover !important;
  background-repeat:no-repeat !important;
  background-attachment:fixed !important;
}

/* Hauptfelder: bisher ca. 50 % Deckkraft -> ca. 35 % Deckkraft */
.hero.home-image-hero .hero-content,
.hero-text-panel,
.ueber-mich-image-hero .visual-split > div:first-child,
.impulse-image-hero .container,
.kontakt-image-hero .container,
.inneres-kind-image-hero .hero-text-panel,
.traumarbeit-image-hero .hero-text-panel,
.atemarbeit-text-panel,
.online-coaching-text-panel{
  background:rgba(255,255,255,.35) !important;
  border-color:rgba(197,214,226,.38) !important;
  backdrop-filter:blur(6px) saturate(1.03) !important;
}

/* Karten/Formulare/Blog-/Zitatflächen: bisher ca. 84 % Deckkraft -> ca. 69 % Deckkraft */
.card,
.offer-item,
.step,
.note-box,
.placeholder-note,
.contact-panel,
.contact-form,
.portrait-card,
.blog-card,
.article-card,
.article-inline-image,
.trauma-generation-section blockquote{
  background:rgba(255,255,255,.69) !important;
  border-color:rgba(197,214,226,.52) !important;
  backdrop-filter:blur(3px) saturate(1.02) !important;
}

/* Seiten-/Abschnittshintergründe ebenfalls ca. 15 Prozentpunkte transparenter */
.bg-soft{
  background:linear-gradient(180deg, rgba(244,249,252,.51), rgba(255,255,255,.39)) !important;
}
.quote-section{
  background:linear-gradient(135deg, rgba(243,234,220,.51), rgba(255,243,223,.39)) !important;
}
.page-hero{
  background:linear-gradient(135deg, rgba(244,249,252,.51), rgba(255,248,236,.39)) !important;
}
.site-header{
  background:rgba(255,255,255,.61) !important;
}

/* Overlays über Bild-Heroes ebenfalls zurückgenommen: bisher .72 -> .57 */
.image-hero::before,
.angebote-image-hero::before,
.atemarbeit-image-hero::before,
.online-coaching-image-hero::before,
.ueber-mich-image-hero::before,
.impulse-image-hero::before,
.kontakt-image-hero::before,
.inneres-kind-image-hero::before,
.traumarbeit-image-hero::before{
  opacity:.57 !important;
}

@media (max-width:760px){
  .hero.home-image-hero .hero-content,
  .hero-text-panel,
  .ueber-mich-image-hero .visual-split > div:first-child,
  .impulse-image-hero .container,
  .kontakt-image-hero .container,
  .inneres-kind-image-hero .hero-text-panel,
  .traumarbeit-image-hero .hero-text-panel,
  .atemarbeit-text-panel,
  .online-coaching-text-panel{
    background:rgba(255,255,255,.60) !important;
  }
}

/* V39: Transparenz gezielt erhöht, Startseiten-Bildfläche verdoppelt, fehlende Bild-Heroes stabilisiert */

/* Startseite: doppelte Hero-/Hintergrundfläche, ohne das Bild selbst zu vergrößern. */
.hero.home-image-hero{
  min-height:1180px !important;
  padding-top:96px !important;
  padding-bottom:140px !important;
  background-image:
    linear-gradient(90deg, rgba(247,251,253,.54) 0%, rgba(247,251,253,.40) 42%, rgba(247,251,253,.18) 68%, rgba(247,251,253,.05) 100%),
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,248,236,.08)),
    url("../assets/img/startseite-coachingraum-hintergrund.png") !important;
  background-size:100% 100%, 100% 100%, 100% auto !important;
  background-position:center top, center top, center top !important;
  background-repeat:no-repeat, no-repeat, no-repeat !important;
  background-attachment:scroll, scroll, fixed !important;
}

/* Aufstellungen: neues gewünschtes Hintergrundbild und stabile Anzeige. */
.aufstellungen-image-hero{
  background-image:url("../assets/img/aufstellungen-hintergrund-v39.png") !important;
  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;
  background-attachment:fixed !important;
  min-height:640px !important;
}

/* Sicherstellen, dass die Bild-Heroes der genannten Seiten wieder sichtbar sind. */
.ueber-mich-image-hero{
  background-image:url("../assets/img/ueber-mich-therapeutischer-ansatz-hintergrund.png") !important;
  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;
  background-attachment:fixed !important;
}
.impulse-image-hero{
  background-image:url("../assets/img/impulse-hintergrund.png") !important;
  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;
  background-attachment:fixed !important;
}
.kontakt-image-hero{
  background-image:url("../assets/img/kontakt-hintergrund.png") !important;
  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;
  background-attachment:fixed !important;
}

/* Bild-Overlays deutlich reduzieren, damit die Hintergründe sichtbar bleiben. */
.image-hero::before,
.angebote-image-hero::before,
.atemarbeit-image-hero::before,
.online-coaching-image-hero::before,
.ueber-mich-image-hero::before,
.impulse-image-hero::before,
.kontakt-image-hero::before,
.inneres-kind-image-hero::before,
.traumarbeit-image-hero::before{
  opacity:.36 !important;
}

/* Hauptstichpunkt-/Hero-Boxen deutlich transparenter. */
.hero.home-image-hero .hero-content,
.hero-text-panel,
.ueber-mich-image-hero .visual-split > div:first-child,
.impulse-image-hero .container,
.kontakt-image-hero .container,
.inneres-kind-image-hero .hero-text-panel,
.traumarbeit-image-hero .hero-text-panel,
.atemarbeit-text-panel,
.online-coaching-text-panel{
  background:rgba(255,255,255,.22) !important;
  border-color:rgba(197,214,226,.32) !important;
  backdrop-filter:blur(5px) saturate(1.02) !important;
  box-shadow:0 24px 72px rgba(6,23,36,.10) !important;
}

/* Normale Inhaltsobjekte/Karten/Formulare transparenter. */
.card,
.offer-item,
.step,
.note-box,
.placeholder-note,
.contact-panel,
.contact-form,
.portrait-card,
.blog-card,
.article-card,
.article-inline-image,
.trauma-generation-section blockquote{
  background:rgba(255,255,255,.46) !important;
  border-color:rgba(197,214,226,.40) !important;
  backdrop-filter:blur(3px) saturate(1.02) !important;
}

/* Grafiken innerhalb der Karten weniger flächig, damit sie nicht wie weiße Blöcke wirken. */
.offer-visual,
.mini-visual,
.card-visual,
.blog-card-visual{
  opacity:.78;
  filter:saturate(.96) contrast(.96);
}

/* Abschnittshintergründe transparenter, damit der Seitenhintergrund stärker durchkommt. */
.bg-soft{
  background:linear-gradient(180deg, rgba(244,249,252,.28), rgba(255,255,255,.20)) !important;
}
.quote-section{
  background:linear-gradient(135deg, rgba(243,234,220,.28), rgba(255,243,223,.20)) !important;
}
.page-hero:not(.image-hero):not(.ueber-mich-image-hero):not(.impulse-image-hero):not(.kontakt-image-hero):not(.inneres-kind-image-hero):not(.traumarbeit-image-hero){
  background:linear-gradient(135deg, rgba(244,249,252,.28), rgba(255,248,236,.20)) !important;
}

.site-header{
  background:rgba(255,255,255,.56) !important;
}

@media (max-width:760px){
  .hero.home-image-hero{
    min-height:980px !important;
    background-size:100% 100%, 100% auto !important;
    background-position:center top, center top !important;
    background-attachment:scroll, fixed !important;
  }
  .hero.home-image-hero .hero-content,
  .hero-text-panel,
  .ueber-mich-image-hero .visual-split > div:first-child,
  .impulse-image-hero .container,
  .kontakt-image-hero .container,
  .inneres-kind-image-hero .hero-text-panel,
  .traumarbeit-image-hero .hero-text-panel,
  .atemarbeit-text-panel,
  .online-coaching-text-panel{
    background:rgba(255,255,255,.52) !important;
  }
  .card,
  .offer-item,
  .step,
  .note-box,
  .placeholder-note,
  .contact-panel,
  .contact-form,
  .portrait-card,
  .blog-card,
  .article-card,
  .article-inline-image,
  .trauma-generation-section blockquote{
    background:rgba(255,255,255,.64) !important;
  }
}


/* ==========================================================
   V40: Blog Explorer + Startseiten-Hintergrund V3
   ========================================================== */
.hero.home-image-hero{
  background-image:
    linear-gradient(90deg, rgba(247,251,253,.74) 0%, rgba(247,251,253,.52) 38%, rgba(247,251,253,.20) 72%, rgba(247,251,253,.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,248,236,.10)),
    url("../assets/img/startseite-hintergrund-v40.png");
  background-size:100% 100%, 100% 100%, 100% auto;
  background-position:center top, center top, center top;
  background-repeat:no-repeat, no-repeat, no-repeat;
  background-attachment:scroll, scroll, fixed;
}

.blog-explorer-section{
  background:rgba(239,248,250,.52);
}
.blog-explorer-head{
  margin-bottom:26px;
}
.blog-explorer-layout{
  display:grid;
  grid-template-columns:minmax(260px, 1fr) minmax(0, 2fr);
  gap:28px;
  align-items:start;
}
.blog-explorer-sidebar,
.blog-reader{
  background:rgba(255,255,255,.52);
  border:1px solid rgba(197,214,226,.58);
  border-radius:28px;
  box-shadow:0 24px 70px rgba(6,23,36,.10);
  backdrop-filter:blur(10px) saturate(1.04);
}
.blog-explorer-sidebar{
  padding:18px;
  position:sticky;
  top:104px;
  max-height:calc(100vh - 130px);
  overflow:auto;
}
.blog-explorer-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-bottom:16px;
}
.blog-tab{
  border:1px solid rgba(197,214,226,.8);
  border-radius:999px;
  padding:10px 12px;
  background:rgba(255,255,255,.62);
  color:var(--ink);
  font-weight:800;
  cursor:pointer;
}
.blog-tab.active{
  background:linear-gradient(135deg,var(--blue),var(--teal));
  color:#fff;
  border-color:transparent;
}
.blog-tree-group{
  border-top:1px solid rgba(197,214,226,.55);
  padding:8px 0;
}
.blog-tree-group:first-child{border-top:0;}
.blog-tree-group summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
  list-style:none;
  padding:10px 6px;
  font-weight:900;
  color:var(--blue);
}
.blog-tree-group summary::-webkit-details-marker{display:none;}
.blog-tree-group summary strong{
  min-width:32px;
  height:26px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(215,169,72,.18);
  color:var(--blue);
  font-size:.82rem;
}
.blog-tree-list{
  list-style:none;
  margin:0;
  padding:0 0 8px;
}
.blog-tree-list li{margin:4px 0;}
.blog-tree-list a{
  display:block;
  padding:10px 10px 10px 14px;
  border-radius:16px;
  text-decoration:none;
  color:var(--ink);
  border:1px solid transparent;
  background:rgba(255,255,255,.28);
  transition:background .18s ease,border-color .18s ease,transform .18s ease;
}
.blog-tree-list a:hover,
.blog-tree-list a.active{
  background:rgba(255,255,255,.70);
  border-color:rgba(215,169,72,.55);
  transform:translateX(2px);
}
.blog-tree-list a span{
  display:block;
  font-weight:800;
  line-height:1.24;
}
.blog-tree-list a small{
  display:block;
  color:var(--muted);
  margin-top:4px;
  font-size:.82rem;
}
.blog-reader{
  overflow:hidden;
  min-height:760px;
}
.blog-reader-toolbar{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  padding:20px 22px;
  border-bottom:1px solid rgba(197,214,226,.58);
  background:rgba(255,255,255,.46);
}
.blog-reader-toolbar h3{
  margin:4px 0 4px;
  font-size:clamp(1.25rem,2vw,1.8rem);
}
.blog-reader-toolbar p{margin:0;color:var(--muted);}
.blog-reader-toolbar > span{
  color:var(--muted);
  font-size:.92rem;
  max-width:230px;
  text-align:right;
}
.blog-reader iframe{
  width:100%;
  height:860px;
  border:0;
  display:block;
  background:#fff;
}
@media (max-width:980px){
  .blog-explorer-layout{grid-template-columns:1fr;}
  .blog-explorer-sidebar{position:relative;top:auto;max-height:none;}
  .blog-reader iframe{height:760px;}
  .blog-reader-toolbar{flex-direction:column;}
  .blog-reader-toolbar > span{text-align:left;max-width:none;}
}
@media (max-width:760px){
  .hero.home-image-hero{
    background-image:
      linear-gradient(180deg, rgba(247,251,253,.62), rgba(247,251,253,.40)),
      url("../assets/img/startseite-hintergrund-v40.png");
    background-size:100% 100%, auto 100%;
    background-position:center top, center top;
    background-repeat:no-repeat, no-repeat;
    background-attachment:scroll, scroll;
  }
}


/* V41: Über uns selector and header submenu */
.about-menu{
  position:relative;
  display:flex;
  align-items:center;
  flex:0 0 auto;
}
.about-menu-button{
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.about-caret{font-size:.82em;opacity:.75;}
.about-menu-panel{
  position:absolute;
  top:calc(100% + 12px);
  left:0;
  min-width:245px;
  padding:10px;
  border-radius:18px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(197,214,226,.68);
  box-shadow:0 22px 60px rgba(6,23,36,.18);
  backdrop-filter:blur(12px) saturate(1.04);
  display:none;
  z-index:80;
}
.about-menu:hover .about-menu-panel,
.about-menu:focus-within .about-menu-panel{
  display:grid;
  gap:4px;
}
.about-option{
  display:block;
  padding:9px 12px;
  border-radius:12px;
  color:var(--ink);
  text-decoration:none;
  font-weight:750;
  white-space:nowrap;
}
.about-option:hover,
.about-option:focus{
  background:rgba(22,91,132,.10);
  color:var(--blue);
}
.about-selector{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}
.about-selector a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 15px;
  border-radius:999px;
  border:1px solid rgba(197,214,226,.70);
  background:rgba(255,255,255,.34);
  color:var(--ink);
  text-decoration:none;
  font-weight:800;
  backdrop-filter:blur(6px);
}
.about-selector a.active,
.about-selector a:hover,
.about-selector a:focus{
  background:rgba(18,76,111,.88);
  color:#fff;
  border-color:rgba(18,76,111,.88);
}
.wide-prose{
  max-width:1040px;
}
@media (max-width:980px){
  .about-menu{display:block;width:100%;}
  .about-menu-panel{position:static;display:grid;margin-top:8px;box-shadow:none;background:rgba(255,255,255,.72);} 
  .about-menu-button{width:100%;}
}

/* V43: Fix for the 'Über uns' dropdown: clickable, not clipped, touch/mouse safe. */
.site-header,
.header-inner,
.site-nav{
  overflow:visible !important;
}
.site-header{
  z-index:500 !important;
}
.about-menu{
  position:relative !important;
  z-index:560 !important;
}
.about-menu-button{
  cursor:pointer;
  user-select:none;
}
.about-menu::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:12px;
  background:transparent;
}
.about-menu-panel{
  top:calc(100% + 4px) !important;
  z-index:600 !important;
  pointer-events:auto;
}
.about-menu.open .about-menu-panel,
.about-menu:hover .about-menu-panel,
.about-menu:focus-within .about-menu-panel{
  display:grid !important;
  gap:4px;
}
@media (max-width:980px){
  .about-menu-panel{
    position:static !important;
    top:auto !important;
    display:none;
    margin-top:8px;
    width:100%;
  }
  .about-menu.open .about-menu-panel,
  .about-menu:focus-within .about-menu-panel{
    display:grid !important;
  }
}


/* ==========================================================
   v44 Blog-Explorer Fix: linkes Drittel Explorer, rechtes 2/3 Leser
   ========================================================== */
.blog-explorer-section{background:rgba(239,248,250,.34);}
.blog-explorer-layout{
  display:grid !important;
  grid-template-columns:minmax(280px, 1fr) minmax(0, 2fr) !important;
  gap:28px !important;
  align-items:start !important;
}
.blog-explorer-sidebar{
  background:rgba(255,255,255,.42) !important;
  border:1px solid rgba(197,214,226,.48) !important;
  border-radius:28px !important;
  box-shadow:0 24px 70px rgba(6,23,36,.08) !important;
  backdrop-filter:blur(10px) saturate(1.04) !important;
  padding:18px !important;
  position:sticky !important;
  top:104px !important;
  max-height:calc(100vh - 130px) !important;
  overflow:auto !important;
}
.blog-explorer-sidebar h2{margin-top:0;}
.blog-tree[hidden]{display:none !important;}
.blog-tree.active{display:block;}
.blog-reader{
  background:rgba(255,255,255,.42) !important;
  border:1px solid rgba(197,214,226,.48) !important;
  border-radius:28px !important;
  box-shadow:0 24px 70px rgba(6,23,36,.08) !important;
  backdrop-filter:blur(10px) saturate(1.04) !important;
  overflow:hidden !important;
  min-height:860px !important;
}
.blog-reader-frame-shell{height:860px;background:#fff;}
.blog-reader iframe{width:100% !important;height:100% !important;border:0 !important;display:block !important;background:#fff !important;}
.blog-reader-toolbar{background:rgba(255,255,255,.38) !important;}
.blog-tree-list a.active{background:rgba(255,255,255,.76) !important;border-color:rgba(215,169,72,.70) !important;}
.blog-modal[hidden]{display:none !important;}
.blog-modal{position:fixed;inset:0;z-index:10000;display:grid;place-items:center;padding:28px;}
.blog-modal-backdrop{position:absolute;inset:0;background:rgba(5,16,26,.62);backdrop-filter:blur(5px);}
.blog-modal-dialog{position:relative;width:min(1220px,96vw);height:min(880px,92vh);background:#fff;border-radius:28px;overflow:hidden;box-shadow:0 35px 100px rgba(0,0,0,.36);display:flex;flex-direction:column;}
.blog-modal-toolbar{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:14px 18px;border-bottom:1px solid rgba(197,214,226,.65);background:rgba(255,255,255,.94);}
.blog-modal-toolbar strong{font-size:1rem;line-height:1.25;color:var(--ink);}
.blog-modal-close{white-space:nowrap;border:0;border-radius:999px;background:linear-gradient(135deg,var(--blue),var(--teal));color:#fff;font-weight:900;padding:10px 14px;cursor:pointer;}
.blog-modal iframe{width:100%;height:100%;border:0;display:block;background:#fff;}
.blog-modal-open{overflow:hidden;}
@media (max-width:980px){
  .blog-explorer-layout{grid-template-columns:1fr !important;}
  .blog-explorer-sidebar{position:relative !important;top:auto !important;max-height:none !important;}
  .blog-reader,.blog-reader-frame-shell{min-height:760px !important;height:760px !important;}
}


/* v45: Kontakt selector, Missy portrait and Missy-specific contact page */
.contact-menu{
  position:relative;
  display:flex;
  align-items:center;
  flex:0 0 auto;
  z-index:560;
}
.contact-menu-button{
  appearance:none;
  border:0;
  background:transparent;
  cursor:pointer;
  font:inherit;
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.contact-caret{font-size:.82em;opacity:.75;}
.contact-menu-panel{
  position:absolute;
  top:calc(100% + 4px);
  left:0;
  min-width:245px;
  padding:10px;
  border-radius:18px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(197,214,226,.52);
  box-shadow:0 22px 60px rgba(6,23,36,.16);
  backdrop-filter:blur(12px) saturate(1.04);
  display:none;
  z-index:620;
}
.contact-menu:hover .contact-menu-panel,
.contact-menu:focus-within .contact-menu-panel,
.contact-menu.open .contact-menu-panel{
  display:grid;
  gap:4px;
}
.contact-option{
  display:block;
  padding:9px 12px;
  border-radius:12px;
  color:var(--ink);
  text-decoration:none;
  font-weight:800;
  white-space:nowrap;
}
.contact-option:hover,
.contact-option:focus{
  background:rgba(22,91,132,.10);
  color:var(--blue);
}
.contact-person-choice{background:rgba(239,248,250,.22);}
.person-choice-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
  margin-top:24px;
}
.person-choice-card{
  display:grid;
  gap:10px;
  align-content:start;
  min-height:190px;
  padding:24px;
  border-radius:28px;
  border:1px solid rgba(197,214,226,.48);
  background:rgba(255,255,255,.38);
  box-shadow:0 24px 70px rgba(6,23,36,.08);
  backdrop-filter:blur(10px) saturate(1.04);
  color:var(--ink);
  text-decoration:none;
}
.person-choice-card:hover,
.person-choice-card:focus{
  transform:translateY(-2px);
  background:rgba(255,255,255,.52);
  border-color:rgba(215,169,72,.68);
}
.person-choice-card strong{font-size:1.35rem;color:var(--blue);}
.person-choice-card span{line-height:1.65;}
.person-choice-card em{font-style:normal;font-weight:900;color:var(--gold-dark);margin-top:auto;}
.person-choice-card-missy{grid-template-columns:92px 1fr;column-gap:18px;}
.person-choice-card-missy img{
  grid-row:1 / span 3;
  width:92px;
  height:92px;
  object-fit:cover;
  object-position:center 34%;
  border-radius:50%;
  box-shadow:0 16px 38px rgba(6,23,36,.16);
}
.kontakt-missy-image-hero{
  background-image:
    linear-gradient(90deg, rgba(247,251,253,.55), rgba(247,251,253,.24)),
    url("../assets/img/kontakt-missy-hintergrund.png");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  background-attachment:fixed;
}
.missy-profile-hero{
  background-image:
    linear-gradient(90deg, rgba(247,251,253,.40), rgba(247,251,253,.16)),
    url("../assets/img/ueber-mich-therapeutischer-ansatz-hintergrund.png");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  background-attachment:fixed;
}
.person-portrait-card{
  margin:0;
  justify-self:end;
  align-self:center;
  width:min(320px,34vw);
  aspect-ratio:1/1.16;
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 34px 90px rgba(6,23,36,.20);
  background:rgba(255,255,255,.38);
}
.person-portrait-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 30%;
  display:block;
}
@media (max-width:980px){
  .contact-menu{display:block;width:100%;}
  .contact-menu-button{width:100%;justify-content:flex-start;}
  .contact-menu-panel{position:static;display:none;margin-top:8px;box-shadow:none;background:rgba(255,255,255,.62);width:100%;}
  .contact-menu.open .contact-menu-panel,
  .contact-menu:focus-within .contact-menu-panel{display:grid;}
  .person-choice-grid{grid-template-columns:1fr;}
  .person-portrait-card{width:min(340px,78vw);justify-self:start;}
}
@media (max-width:760px){
  .kontakt-missy-image-hero{background-attachment:scroll;background-position:center top;}
}

/* V47: Fix Missy-Kontakt-Hintergrund sichtbar machen.
   Ursache: spätere generische .page-hero-Regeln mit !important haben das spezifische Hintergrundbild überschrieben. */
.kontakt-missy-image-hero{
  background-image:
    linear-gradient(90deg, rgba(247,251,253,.26) 0%, rgba(247,251,253,.16) 42%, rgba(247,251,253,.06) 100%),
    url("../assets/img/kontakt-missy-hintergrund.png") !important;
  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;
  background-attachment:fixed !important;
  min-height:640px !important;
}
.kontakt-missy-image-hero .container{
  background:rgba(255,255,255,.20) !important;
  border-color:rgba(197,214,226,.28) !important;
  backdrop-filter:blur(4px) saturate(1.02) !important;
}
@media (max-width:760px){
  .kontakt-missy-image-hero{
    background-attachment:scroll !important;
    background-position:center top !important;
  }
}

/* V48: Missy-Kontaktseite an Gestaltung von kontakt.html angleichen.
   Die Hero-Headline steht wieder in einem halbtransparenten Panel über dem Bild. */
.page-hero.kontakt-missy-image-hero,
.kontakt-missy-image-hero{
  position:relative !important;
  min-height:540px !important;
  padding:116px 0 84px !important;
  display:flex !important;
  align-items:center !important;
  overflow:hidden !important;
  background-image:url("../assets/img/kontakt-missy-hintergrund.png") !important;
  background-size:cover !important;
  background-position:center center !important;
  background-repeat:no-repeat !important;
  background-attachment:fixed !important;
}
.kontakt-missy-image-hero::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:0 !important;
  pointer-events:none !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,.54) 0%, rgba(255,255,255,.32) 42%, rgba(255,255,255,.12) 72%, rgba(255,255,255,.04) 100%),
    radial-gradient(circle at 18% 45%, rgba(255,248,236,.22), transparent 35%) !important;
  opacity:1 !important;
}
.kontakt-missy-image-hero .container,
.kontakt-missy-image-hero .container.narrow{
  position:relative !important;
  z-index:1 !important;
  margin-left:max(24px, calc((100vw - var(--max))/2)) !important;
  margin-right:auto !important;
  max-width:720px !important;
  padding:34px 38px !important;
  border-radius:30px !important;
  background:rgba(255,255,255,.30) !important;
  border:1px solid rgba(197,214,226,.34) !important;
  box-shadow:0 26px 80px rgba(6,23,36,.12) !important;
  backdrop-filter:blur(5px) saturate(1.04) !important;
}
@media (max-width:760px){
  .page-hero.kontakt-missy-image-hero,
  .kontakt-missy-image-hero{
    min-height:560px !important;
    padding:86px 0 64px !important;
    background-attachment:scroll !important;
    background-size:cover !important;
    background-position:center top !important;
  }
  .kontakt-missy-image-hero .container,
  .kontakt-missy-image-hero .container.narrow{
    margin-left:16px !important;
    margin-right:16px !important;
    max-width:none !important;
    padding:26px 22px !important;
    border-radius:24px !important;
    background:rgba(255,255,255,.44) !important;
  }
}


/* V49: Missy-Kontakt-Hintergrund als echtes Bild-Layer.
   Hintergrundbilder wurden durch spätere Hero-/Overlay-Regeln und Browser-Cache nicht zuverlässig sichtbar.
   Dieses absolute IMG-Layer ist konfliktfest und zeigt das Missy-Bild sicher an. */
.page-hero.kontakt-missy-image-hero.hero-with-real-bg-img,
.kontakt-missy-image-hero.hero-with-real-bg-img{
  position:relative !important;
  min-height:640px !important;
  padding:116px 0 84px !important;
  display:flex !important;
  align-items:center !important;
  overflow:hidden !important;
  background-image:none !important;
  background:transparent !important;
}
.kontakt-missy-hero-img{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
  z-index:0 !important;
  pointer-events:none !important;
  user-select:none !important;
}
.kontakt-missy-image-hero.hero-with-real-bg-img::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:1 !important;
  pointer-events:none !important;
  background:linear-gradient(90deg, rgba(255,255,255,.34) 0%, rgba(255,255,255,.18) 38%, rgba(255,255,255,.06) 68%, rgba(255,255,255,.02) 100%) !important;
}
.kontakt-missy-image-hero.hero-with-real-bg-img .container,
.kontakt-missy-image-hero.hero-with-real-bg-img .container.narrow{
  position:relative !important;
  z-index:2 !important;
  margin-left:max(24px, calc((100vw - var(--max))/2)) !important;
  margin-right:auto !important;
  max-width:720px !important;
  padding:34px 38px !important;
  border-radius:30px !important;
  background:rgba(255,255,255,.24) !important;
  border:1px solid rgba(197,214,226,.28) !important;
  box-shadow:0 26px 80px rgba(6,23,36,.12) !important;
  backdrop-filter:blur(4px) saturate(1.04) !important;
}
@media (max-width:760px){
  .page-hero.kontakt-missy-image-hero.hero-with-real-bg-img,
  .kontakt-missy-image-hero.hero-with-real-bg-img{
    min-height:560px !important;
    padding:86px 0 64px !important;
  }
  .kontakt-missy-hero-img{
    object-position:center top !important;
  }
  .kontakt-missy-image-hero.hero-with-real-bg-img .container,
  .kontakt-missy-image-hero.hero-with-real-bg-img .container.narrow{
    margin-left:16px !important;
    margin-right:16px !important;
    max-width:none !important;
    padding:26px 22px !important;
    border-radius:24px !important;
    background:rgba(255,255,255,.38) !important;
  }
}


/* v51 Klarheitsbibliothek / Ressourcenbereich */
.resource-menu{position:relative;display:inline-flex;align-items:center;}
.resource-menu-button{white-space:nowrap;}
.resource-menu-panel{display:none;position:absolute;top:calc(100% + 12px);left:0;min-width:260px;padding:10px;background:rgba(255,255,255,.94);border:1px solid rgba(21,55,82,.14);border-radius:18px;box-shadow:0 18px 50px rgba(8,29,43,.14);z-index:1200;backdrop-filter:blur(18px);}
.resource-menu.open .resource-menu-panel,.resource-menu:hover .resource-menu-panel{display:grid;gap:4px;}
.resource-option{display:block;padding:10px 12px;border-radius:12px;text-decoration:none;color:var(--ink, #061726);font-weight:700;white-space:nowrap;}
.resource-option:hover,.resource-option:focus{background:rgba(204,161,79,.16);color:var(--blue, #0e4d73);}
.resource-image-hero{min-height:560px;background-image:linear-gradient(90deg,rgba(255,255,255,.35),rgba(255,255,255,.18)),url('../assets/img/klarheitsbibliothek-hintergrund.png');background-size:cover;background-position:center;background-attachment:fixed;display:flex;align-items:center;}
.resource-hero-panel{max-width:760px;background:rgba(255,255,255,.54)!important;border:1px solid rgba(255,255,255,.58);backdrop-filter:blur(16px);}
.resource-section{background:rgba(245,251,252,.68)!important;}
.resource-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px;margin-top:30px;}
.resource-card{position:relative;min-height:220px;padding:28px;border-radius:24px;text-decoration:none;color:var(--ink,#061726);background:linear-gradient(135deg,rgba(255,255,255,.58),rgba(255,255,255,.34));border:1px solid rgba(255,255,255,.65);box-shadow:0 20px 50px rgba(8,29,43,.10);backdrop-filter:blur(16px);overflow:hidden;transition:transform .18s ease,box-shadow .18s ease,background .18s ease;}
.resource-card:hover{transform:translateY(-4px);box-shadow:0 24px 70px rgba(8,29,43,.16);background:linear-gradient(135deg,rgba(255,255,255,.70),rgba(255,255,255,.44));}
.resource-card-kicker{display:inline-block;font-size:.78rem;font-weight:900;letter-spacing:.12em;text-transform:uppercase;color:var(--blue,#0e4d73);margin-bottom:28px;}
.resource-card h2{font-size:1.55rem;margin:0 0 12px;}
.resource-card p{font-size:1rem;line-height:1.55;margin:0;color:rgba(6,23,38,.78);}
.resource-card-arrow{position:absolute;right:24px;bottom:22px;width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.72);color:var(--blue,#0e4d73);font-weight:900;}
.resource-placeholder-panel{padding:42px;border-radius:28px;background:rgba(255,255,255,.58);border:1px solid rgba(255,255,255,.65);backdrop-filter:blur(16px);box-shadow:0 20px 60px rgba(8,29,43,.10);}
.resource-placeholder-panel h2{font-size:clamp(2rem,5vw,4.4rem);line-height:.98;margin:.2em 0 .4em;}
.resource-placeholder-panel p{font-size:1.1rem;line-height:1.7;max-width:850px;}
@media (max-width: 1100px){.resource-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.resource-menu-panel{right:0;left:auto;}}
@media (max-width: 720px){.resource-grid{grid-template-columns:1fr}.resource-image-hero{background-attachment:scroll;min-height:520px}.resource-menu-panel{position:static;box-shadow:none;margin-top:8px}.resource-menu.open .resource-menu-panel{display:grid}}


/* v52 Angebotsdetailseiten */
.offer-title-link{color:inherit;text-decoration:none;border-bottom:2px solid transparent;transition:border-color .18s ease,color .18s ease;}
.offer-title-link:hover,.offer-title-link:focus{color:var(--blue-700);border-bottom-color:var(--gold-500);}
.offer-visual-link{display:block;border-radius:inherit;overflow:hidden;line-height:0;}
.offer-visual-link:focus{outline:3px solid rgba(185,139,58,.45);outline-offset:4px;}
.offer-item.visual-offer[data-target]{cursor:default;}
.offer-detail-hero{min-height:560px;}
.detail-list{margin:0;padding-left:1.25rem;display:grid;gap:10px;}
.detail-list li{font-size:18px;line-height:1.6;color:var(--muted);}
.cta-band{display:flex;gap:24px;justify-content:space-between;align-items:center;padding:34px;border-radius:30px;background:rgba(255,255,255,.58);box-shadow:0 24px 70px rgba(6,23,36,.08);border:1px solid rgba(255,255,255,.55);backdrop-filter:blur(10px);}
.cta-band h2{margin:0 0 8px;}
.cta-band p{margin:0;color:var(--muted);max-width:760px;}
@media (max-width:760px){.cta-band{display:grid}.offer-detail-hero{min-height:520px}}


/* v54: eigener Hintergrund für Spirituelle Reisen */
.spirituelle-reisen-image-hero{
  min-height: 620px;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.34), rgba(255,255,255,.16)),
    url('../assets/img/spirituelle-reisen-hintergrund-v54.png') !important;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.spirituelle-reisen-image-hero::before{
  background: linear-gradient(90deg, rgba(248,252,255,.10), rgba(255,255,255,.04)) !important;
}
.spirituelle-reisen-image-hero .hero-text-panel{
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
@media (max-width: 900px){
  .spirituelle-reisen-image-hero{
    min-height: 560px;
    background-attachment: scroll;
    background-position: center top;
  }
}


/* v55: Spirituelle Reisen Hintergrund als echtes Bild-Layer.
   Grund: Die Seite trägt zusätzlich die Klasse angebote-image-hero; ein CSS-background kann dadurch
   je nach Cache/Override weiterhin das Angebotsbild zeigen. Dieses echte Bild-Layer erzwingt die
   sichtbare Verwendung des neuen spirituellen Reise-Hintergrunds. */
.spirituelle-reisen-image-hero.offer-detail-hero{
  position:relative !important;
  overflow:hidden !important;
  min-height:620px !important;
  background-image:none !important;
  background:transparent !important;
}
.spirituelle-reisen-hero-img{
  position:absolute !important;
  inset:0 !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
  z-index:0 !important;
  pointer-events:none !important;
  user-select:none !important;
}
.spirituelle-reisen-image-hero.offer-detail-hero::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:1 !important;
  pointer-events:none !important;
  opacity:1 !important;
  background:linear-gradient(90deg, rgba(255,255,255,.28) 0%, rgba(255,255,255,.16) 42%, rgba(255,255,255,.05) 76%, rgba(255,255,255,.02) 100%) !important;
}
.spirituelle-reisen-image-hero.offer-detail-hero .container{
  position:relative !important;
  z-index:2 !important;
}
.spirituelle-reisen-image-hero.offer-detail-hero .hero-text-panel{
  background:rgba(255,255,255,.36) !important;
  border-color:rgba(255,255,255,.42) !important;
  backdrop-filter:blur(5px) saturate(1.04) !important;
  -webkit-backdrop-filter:blur(5px) saturate(1.04) !important;
}
@media (max-width:900px){
  .spirituelle-reisen-image-hero.offer-detail-hero{min-height:560px !important;}
  .spirituelle-reisen-hero-img{object-position:center top !important;}
}

/* v56: Spirituelle Reisen als echtes Hintergrundbild, nicht als separates Bildobjekt */
.spirituelle-reisen-image-hero.offer-detail-hero,
section.spirituelle-reisen-image-hero.offer-detail-hero{
  position: relative !important;
  overflow: hidden !important;
  min-height: 680px !important;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.10) 42%, rgba(255,255,255,.04) 76%, rgba(255,255,255,.02) 100%),
    url('../assets/img/spirituelle-reisen-hintergrund-v54.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-color: transparent !important;
}
.spirituelle-reisen-image-hero.offer-detail-hero .spirituelle-reisen-hero-img{
  display: none !important;
}
.spirituelle-reisen-image-hero.offer-detail-hero::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:1 !important;
  pointer-events:none !important;
  background:linear-gradient(90deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.08) 48%, rgba(255,255,255,.02) 100%) !important;
}
.spirituelle-reisen-image-hero.offer-detail-hero .container{
  position:relative !important;
  z-index:2 !important;
}
.spirituelle-reisen-image-hero.offer-detail-hero .hero-text-panel{
  background:rgba(255,255,255,.38) !important;
  border-color:rgba(255,255,255,.46) !important;
  backdrop-filter:blur(5px) saturate(1.04) !important;
  -webkit-backdrop-filter:blur(5px) saturate(1.04) !important;
}
@media (max-width:900px){
  .spirituelle-reisen-image-hero.offer-detail-hero{
    min-height:560px !important;
    background-attachment:scroll !important;
    background-position:center top !important;
  }
}

/* v57: harter Fix Spirituelle Reisen Hintergrund
   Wichtig: kein Bildobjekt mehr, sondern echtes Section-Background mit neuem Dateinamen gegen Browser-Cache. */
section.image-hero.spirituelle-reisen-image-hero.spirituelle-reisen-bg-v57.offer-detail-hero{
  position: relative !important;
  overflow: hidden !important;
  min-height: 680px !important;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.10) 42%, rgba(255,255,255,.04) 76%, rgba(255,255,255,.02) 100%),
    url('../assets/img/spirituelle-reisen-hintergrund-v57.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-color: transparent !important;
}
section.image-hero.spirituelle-reisen-image-hero.spirituelle-reisen-bg-v57.offer-detail-hero .spirituelle-reisen-hero-img{
  display:none !important;
}
section.image-hero.spirituelle-reisen-image-hero.spirituelle-reisen-bg-v57.offer-detail-hero::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  z-index:1 !important;
  pointer-events:none !important;
  background:linear-gradient(90deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.06) 48%, rgba(255,255,255,.02) 100%) !important;
}
section.image-hero.spirituelle-reisen-image-hero.spirituelle-reisen-bg-v57.offer-detail-hero .container{
  position:relative !important;
  z-index:2 !important;
}
section.image-hero.spirituelle-reisen-image-hero.spirituelle-reisen-bg-v57.offer-detail-hero .hero-text-panel{
  background:rgba(255,255,255,.38) !important;
  border-color:rgba(255,255,255,.46) !important;
  backdrop-filter:blur(5px) saturate(1.04) !important;
  -webkit-backdrop-filter:blur(5px) saturate(1.04) !important;
}
@media (max-width:900px){
  section.image-hero.spirituelle-reisen-image-hero.spirituelle-reisen-bg-v57.offer-detail-hero{
    min-height:560px !important;
    background-attachment:scroll !important;
    background-position:center top !important;
  }
}


/* v58 Bücher-Seite */
.books-section {
  position: relative;
}
.books-intro-panel {
  max-width: 980px;
  margin: 0 auto 2rem;
}
.resource-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--gold, #c8a15a);
  background: rgba(255, 255, 255, 0.42);
  border-radius: 1rem;
}
.books-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}
.book-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.2rem;
  border: 1px solid rgba(23, 59, 87, 0.12);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 20px 50px rgba(9, 31, 48, 0.08);
  backdrop-filter: blur(12px);
}
.book-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(9, 31, 48, 0.12);
}
.book-cover-link {
  display: block;
  align-self: start;
}
.book-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 0.9rem;
  box-shadow: 0 18px 36px rgba(9, 31, 48, 0.18);
  background: rgba(255,255,255,0.5);
}
.book-card-body h3 {
  margin: 0.1rem 0 0.35rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
}
.book-subtitle {
  color: var(--blue, #173b57);
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.resource-back-row {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
@media (max-width: 980px) {
  .books-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .book-card { grid-template-columns: 1fr; }
  .book-cover { max-width: 220px; }
}


/* v59: Bibliothek Links */
.link-resource-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;margin-top:30px;}
.link-resource-card{display:flex;flex-direction:column;gap:14px;padding:28px;border-radius:26px;background:rgba(255,255,255,.48);border:1px solid rgba(255,255,255,.62);box-shadow:0 18px 55px rgba(8,29,43,.10);backdrop-filter:blur(14px);}
.link-resource-card h3{font-size:1.35rem;line-height:1.15;margin:0;color:var(--ink,#061726);}
.link-resource-card p{font-size:1rem;line-height:1.65;margin:0;color:rgba(6,23,38,.78);}
.link-resource-card .link-url{font-size:.92rem;word-break:break-word;color:var(--blue,#0e4d73);font-weight:800;text-decoration:none;}
.link-resource-card .link-url:hover{text-decoration:underline;}
.link-resource-intro{max-width:920px;font-size:1.12rem;line-height:1.75;color:rgba(6,23,38,.78);}
@media (max-width: 860px){.link-resource-grid{grid-template-columns:1fr}.link-resource-card{padding:22px}}


/* v60 literature recommendations */
.literature-recommendations-panel{max-width:1120px;margin:0 auto;}
.literature-grid{margin-top:34px;}
.literature-card{min-height:210px;}
.literature-card h3{font-size:1.18rem;}
.literature-card p{font-size:.98rem;}
@media (max-width: 860px){.literature-card{min-height:auto}}


/* v61 Literaturempfehlungen: Cover, Amazon-Verlinkung */
.literature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.35rem;
}
.literature-card-with-cover {
  padding: 0;
  overflow: hidden;
}
.literature-card-link {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 1rem;
  min-height: 100%;
  padding: 1rem;
  color: inherit;
  text-decoration: none;
}
.literature-card-link:hover h3,
.literature-card-link:focus-visible h3 {
  color: var(--color-primary, #173b57);
}
.literature-cover-wrap {
  display: flex;
  gap: .45rem;
  align-items: flex-start;
  justify-content: center;
  align-self: start;
}
.literature-cover-wrap img {
  width: 100%;
  max-width: 102px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(8, 28, 43, .18);
  background: rgba(255,255,255,.55);
}
.literature-cover-wrap img + img {
  max-width: 72px;
  height: 112px;
}
.literature-cover-placeholder {
  width: 102px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: .7rem;
  border-radius: 10px;
  background: rgba(23, 59, 87, .08);
  border: 1px solid rgba(23, 59, 87, .14);
  color: rgba(23, 59, 87, .62);
  font-size: .82rem;
  line-height: 1.25;
}
.literature-card-body h3 {
  margin-top: 0;
}
.literature-card-body p {
  margin-bottom: .85rem;
}
.literature-amazon-link {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: var(--color-primary, #173b57);
  border-bottom: 1px solid rgba(191, 151, 76, .75);
}
@media (max-width: 640px) {
  .literature-card-link {
    grid-template-columns: 1fr;
  }
  .literature-cover-wrap,
  .literature-cover-placeholder {
    justify-content: flex-start;
  }
}
