/* ============================================================
   STYLE · Naturheilkundepraxis Wenz  (baut auf design-tokens.css)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; color: var(--text); font-family: var(--font-body); font-size: var(--fs-body); line-height: var(--lh-body); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
  background-color: var(--c-cream);
  background-image:
    radial-gradient(38rem 30rem at 100% -8%, rgba(140,154,130,.13), transparent 60%),
    radial-gradient(34rem 26rem at -8% 12%, rgba(226,180,92,.10), transparent 60%),
    radial-gradient(48rem 40rem at 50% 118%, rgba(140,154,130,.11), transparent 62%);
  background-attachment: fixed; background-repeat: no-repeat;
}
/* feine, ruhige Papier-Textur über der ganzen Seite */
body::after { content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .022;
  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='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
body.nav-open { overflow: hidden; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--c-gold-light); color: var(--c-ink); }
:focus-visible { outline: 3px solid var(--c-gold); outline-offset: 3px; border-radius: 3px; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-left: max(var(--gutter), env(safe-area-inset-left)); padding-right: max(var(--gutter), env(safe-area-inset-right)); }
.container.narrow { max-width: var(--container-narrow); }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 300; background: var(--c-ink); color: var(--c-cream); padding: .75rem 1.25rem; }
.skip-link:focus { left: 0; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: var(--lh-head); color: var(--c-sage-deep); letter-spacing: var(--ls-head); margin: 0 0 .5em; }
h2 { font-size: var(--fs-h2); } h3 { font-size: var(--fs-h3); }
h1 em, h2 em { font-style: italic; color: var(--c-gold-deep); }
p { margin: 0 0 1.1em; }
.lead { font-size: var(--fs-lead); }
.muted { color: var(--text-muted); }
.overline { font-weight: 600; font-size: var(--fs-kicker); letter-spacing: var(--ls-kicker); text-transform: uppercase; color: var(--c-gold-deep); margin: 0 0 1rem; display: inline-flex; align-items: center; gap: .6rem; }
.overline::before { content: ""; width: 1.8rem; height: 1px; background: linear-gradient(90deg, var(--c-gold), transparent); }
.section { padding-block: var(--section-y); position: relative; }
.section.alt { background: var(--bg-alt); }
.section__head { max-width: 64ch; margin-bottom: clamp(2rem, 5vw, 3.5rem); }

/* ---------- Buttons (edel, glänzend, ruhig) ---------- */
.btn { position: relative; isolation: isolate; display: inline-flex; align-items: center; justify-content: center; gap: .55rem; font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1; letter-spacing: .01em; padding: 1rem 1.75rem; min-height: 3rem; border: 0; border-radius: var(--r-pill); background: transparent; color: var(--text); text-decoration: none; cursor: pointer; -webkit-tap-highlight-color: transparent; transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-3) var(--ease-out), color var(--dur-2) var(--ease-out); }
.btn--lg { padding: 1.15rem 2.2rem; font-size: 1.06rem; min-height: 3.4rem; }
.btn--sm { padding: .65rem 1.15rem; min-height: 2.6rem; font-size: .95rem; }
.btn--primary { color: #F6F3EA; overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0) 44%), linear-gradient(135deg, #5C6E4E 0%, #46563A 55%, #3A4930 100%); background-clip: padding-box; box-shadow: inset 0 1px 0 rgba(255,255,255,.2), inset 0 -2px 6px rgba(22,30,16,.35), inset 0 0 0 1px rgba(226,180,92,.32), 0 10px 26px -12px rgba(38,48,30,.55), 0 3px 8px -2px rgba(38,48,30,.28); }
.btn--primary::after { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; background: linear-gradient(115deg, transparent 38%, rgba(246,226,170,.32) 50%, transparent 62%); transform: translateX(-130%); pointer-events: none; animation: btnSheen 9s var(--ease-inout) 3s infinite; }
@keyframes btnSheen { 0% { transform: translateX(-130%); } 9% { transform: translateX(130%); } 100% { transform: translateX(130%); } }
.btn--ghost { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1.5px rgba(44,42,38,.22); }
.btn--glow { box-shadow: inset 0 1px 0 rgba(255,255,255,.2), inset 0 0 0 1px rgba(226,180,92,.42), 0 12px 30px -12px rgba(38,48,30,.55), 0 0 24px -6px rgba(226,180,92,.42); animation: glowCalm 8s var(--ease-inout) infinite; }
@keyframes glowCalm { 0%,100% { filter: brightness(1); } 50% { filter: brightness(1.07); } }
@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover { transform: translateY(-2px); color: #FBF7F1; box-shadow: inset 0 1px 0 rgba(255,255,255,.24), inset 0 -2px 6px rgba(22,30,16,.35), inset 0 0 0 1px rgba(226,180,92,.62), 0 16px 34px -12px rgba(38,48,30,.6), 0 0 22px -6px rgba(226,180,92,.45); }
  .btn--ghost:hover { color: var(--c-gold-deep); box-shadow: inset 0 0 0 1.5px var(--c-gold); transform: translateY(-2px); }
}
.btn:active { transform: translateY(0) scale(.99); }
.linklike { background: none; border: 0; color: inherit; cursor: pointer; font: inherit; padding: 0; }

/* ---------- Header + Brand ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; padding-block: .65rem; padding-top: max(.65rem, env(safe-area-inset-top)); transition: background var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out); }
.site-header.is-scrolled { background: rgba(251,247,241,.85); backdrop-filter: blur(12px) saturate(1.05); box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand__mark { width: 46px; height: 46px; flex: none; filter: drop-shadow(0 2px 6px rgba(154,117,38,.28)); transition: transform var(--dur-3) var(--ease-out); }
.brand__text { display: flex; flex-direction: column; line-height: 1.04; }
.brand__name { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; color: var(--c-ink); }
.brand__role { font-weight: 600; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--c-sage-deep); margin-top: 3px; }
.site-header.is-scrolled .brand__mark { width: 60px; height: 60px; }
/* Header-Marke & Namenszug groesser (Wunsch Frau Wenz): nie kleiner als das alte Logo/der Cookie-Button (60px) */
.site-header .brand__mark { width: 64px; height: 64px; }
.site-header .brand__sign { width: 184px; height: 42px; }
.sub-header .brand__mark { width: 60px; height: 60px; }
.hero-lit .site-header:not(.is-scrolled) .brand__name { color: #FBF7F1; }
.hero-lit .site-header:not(.is-scrolled) .brand__role { color: #EBD9AE; }
/* Handschrift-Unterschrift als Namenszug (per Maske einfärbbar, läuft mit der Textfarbe mit) */
.brand__sign { display: block; width: 132px; height: 30px; color: var(--c-ink); }
.brand__sign path { fill: currentColor; }
.site-header.is-scrolled .brand__sign, .sub-header .brand__sign { width: 152px; height: 35px; }
/* Unterschrift unter „Über mich" – wird beim Erscheinen wie von Hand geschrieben */
.signature { margin: 1.8rem 0 .2rem; width: clamp(230px, 44%, 330px); opacity: 1 !important; transform: none !important; }
.signature img { display: block; width: 100%; height: auto; clip-path: inset(0 100% 0 0); }
.signature.is-visible img { animation: signDraw 2.5s .35s var(--ease-out) forwards; }
@keyframes signDraw { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 -1% 0 0); } }
@media (prefers-reduced-motion: reduce) { .signature img { clip-path: none !important; animation: none !important; } }
@media (hover: hover) { .brand:hover .brand__mark { transform: rotate(22deg) scale(1.06); } }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav > a:not(.btn) { text-decoration: none; font-weight: 600; font-size: .98rem; color: var(--text); position: relative; padding: .2rem 0; }
.nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--c-gold); transition: width var(--dur-2) var(--ease-out); }
.hero-lit .nav > a:not(.btn), .hero-lit .nav-toggle span { color: var(--c-cream); }
@media (hover: hover) { .nav > a:not(.btn):hover::after { width: 100%; } }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.nav-toggle span { width: 26px; height: 2px; background: var(--c-ink); border-radius: 2px; transition: transform var(--dur-2) var(--ease-out), opacity var(--dur-1) var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (Text links & groß) ---------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; color: var(--c-cream); overflow: hidden; }
.hero > .container { max-width: 1520px; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 118%; object-fit: cover; object-position: center; will-change: transform; transform: translateZ(0); backface-visibility: hidden; }
.hero__veil { position: absolute; inset: 0; background: radial-gradient(130% 100% at 18% 32%, rgba(44,42,38,.18), transparent 58%), linear-gradient(180deg, rgba(44,42,38,.42) 0%, rgba(44,42,38,.14) 34%, rgba(44,42,38,.58) 100%); }
.hero__seeds { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; pointer-events: none; }
.hero__content { position: relative; max-width: 42ch; padding-block: clamp(7rem, 16vh, 11rem); }
.hero .overline { color: #F3E3C2; }
.hero .overline::before { background: linear-gradient(90deg, #F0CF86, transparent); }
.hero__title { font-size: clamp(2.7rem, 6.4vw, 6rem); margin: 0 0 1rem; color: var(--c-cream); }
.hero__title em { font-style: italic; position: relative; white-space: nowrap; background: linear-gradient(100deg, #F0CF86 0%, #FBEAC4 32%, #E7B457 56%, #F6E1A6 78%, #E7B457 100%); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 2px 14px rgba(44,42,38,.35)); animation: shimmerText 6.5s var(--ease-inout) infinite; }
.hero__title em::after { content: ""; position: absolute; left: 2%; right: 2%; bottom: -.06em; height: .07em; border-radius: 3px; background: linear-gradient(90deg, transparent, #E7B457 18%, #F6E1A6 50%, #E7B457 82%, transparent); transform: scaleX(0); transform-origin: center; animation: underlineDraw 1.5s .7s var(--ease-out) forwards; }
@keyframes shimmerText { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes underlineDraw { to { transform: scaleX(1); } }
.hero__sub { font-size: var(--fs-lead); max-width: 44ch; color: #F7F2EA; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.8rem 0 1.4rem; }
.hero__actions .btn--ghost { color: var(--c-cream); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55); }
@media (hover: hover) { .hero__actions .btn--ghost:hover { background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 1.5px #fff; color: #fff; } }
.hero__trust { font-size: .9rem; color: #EADFCB; }
.hero__scroll { position: absolute; left: 50%; bottom: max(1.4rem, env(safe-area-inset-bottom)); transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.55); border-radius: 14px; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.8s var(--ease-inout) infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%,14px); } 100% { opacity: 0; } }
@media (min-width: 1100px) { .hero__content { max-width: 48ch; } }

/* ---------- Split ---------- */
.split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.split__media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); border-radius: inherit; pointer-events: none; }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .9s var(--ease-out); }
.split--reverse .split__media img { aspect-ratio: 5/6; }
@media (hover: hover) { .split__media:hover img { transform: scale(1.045); } }
.badges { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-wrap: wrap; gap: .6rem; }
.badges li { background: var(--c-sage-tint); color: var(--c-sage-deep); border: 1px solid var(--c-sage-soft); font-size: .85rem; font-weight: 600; padding: .4rem .85rem; border-radius: var(--r-pill); }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 1.4rem; }
.card { position: relative; background: var(--c-white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out); }
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform var(--dur-3) var(--ease-out); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #F6E9C8, var(--c-gold-tint)); color: var(--c-gold-deep); margin-bottom: 1.1rem; box-shadow: inset 0 0 0 1px rgba(200,149,46,.25); }
.card__icon svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: .5rem; } .card p { margin: 0; color: var(--text-muted); font-size: .98rem; }
@media (hover: hover) { .card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--c-gold-light); } .card:hover::before { transform: scaleX(1); } .card:hover .card__icon { transform: scale(1.06) rotate(-4deg); transition: transform var(--dur-2) var(--ease-out); } }

/* ---------- Parallax-Band (Bild im Hintergrund, Inhalt scrollt darüber) ---------- */
.parallax { position: relative; display: grid; place-items: center; text-align: center; color: #fff; min-height: 80vh; padding-block: clamp(4rem, 12vh, 8rem); background-image: linear-gradient(rgba(40,38,34,.52), rgba(40,38,34,.52)), url("../img/detail-natur-tautropfen.jpg"); background-attachment: fixed; background-size: cover; background-position: center; background-repeat: no-repeat; }
@media (hover: none) { .parallax { background-attachment: scroll; } }
.parallax__inner { max-width: 44ch; position: relative; }
.parallax__quote { font-family: var(--font-head); font-style: italic; font-size: clamp(1.55rem, 3.6vw, 2.7rem); line-height: 1.32; color: #FBF7F1; margin: 0 0 1rem; text-shadow: 0 2px 24px rgba(44,42,38,.4); }
.parallax__cite { letter-spacing: .22em; text-transform: uppercase; font-size: .8rem; font-weight: 600; color: #F0CF86; margin: 0; }

/* ---------- Steps ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 1.6rem; }
.step { background: var(--c-white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); }
.step__num { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background-image: var(--grad-gold); color: #402F0C; font-family: var(--font-head); font-weight: 700; font-size: 1.45rem; margin-bottom: 1.1rem; box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 8px 18px -8px rgba(200,149,46,.7); }
.step__num::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1.5px solid var(--c-gold-light); opacity: .55; }
.step.is-visible .step__num { animation: numPop .8s var(--ease-out) both; }
@keyframes numPop { 0% { transform: scale(.55); opacity: 0; } 55% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }
.step h3 { margin-bottom: .4rem; } .step p { margin: 0; color: var(--text-muted); }

/* ---------- Trust (saubere Zeilen + animiertes Häkchen) ---------- */
.trust__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.trust__list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 1.05rem; }
.trust-item { display: grid; grid-template-columns: 2rem 1fr; gap: .9rem; align-items: start; }
.tcheck { width: 2rem; height: 2rem; flex: none; }
.tcheck svg { width: 100%; height: 100%; }
.tcheck .disc { fill: #C8952E; }
.tcheck .ring { fill: none; stroke: #E9C06A; stroke-width: 1; opacity: .7; }
.tcheck .tick { fill: none; stroke: #fff; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 24; stroke-dashoffset: 24; }
.trust__body.is-visible .tcheck .tick { animation: tickDraw .55s var(--ease-out) forwards; }
.trust-item:nth-child(2) .tcheck .tick { animation-delay: .09s; }
.trust-item:nth-child(3) .tcheck .tick { animation-delay: .18s; }
.trust-item:nth-child(4) .tcheck .tick { animation-delay: .27s; }
.trust-item:nth-child(5) .tcheck .tick { animation-delay: .36s; }
.trust-item:nth-child(6) .tcheck .tick { animation-delay: .45s; }
@keyframes tickDraw { to { stroke-dashoffset: 0; } }
.trust-item__text { line-height: 1.55; padding-top: .1rem; }
.trust-item__text strong { color: var(--c-ink); font-weight: 700; }
.trust__cert { margin: 0; text-align: center; }
.trust__cert img { display: inline-block; max-width: 290px; width: 100%; border-radius: var(--r-md); box-shadow: var(--shadow-md); }
.trust__cert figcaption { margin-top: .8rem; font-size: .9rem; color: var(--text-muted); }

/* ---------- Patientenbewertungen (jameda-Badge) ---------- */
.trust-rating { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem; width: 100%; max-width: 360px; margin-inline: auto; padding: 2.3rem 1.9rem 2rem; border-radius: 22px; overflow: hidden; background: linear-gradient(180deg, #FFFFFF, #FBF4EA); border: 1px solid var(--border); box-shadow: 0 26px 54px -30px rgba(74,52,22,.5), 0 8px 20px -14px rgba(74,52,22,.35); color: var(--text); text-decoration: none; transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out); }
.trust-rating::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(120% 62% at 50% -12%, rgba(255,214,140,.30), transparent 62%); }
.trust-rating > * { position: relative; }
.trust-rating__label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: #6E7A5E; }
.trust-rating__stars { display: inline-flex; gap: .3rem; color: #D79A2E; filter: drop-shadow(0 2px 5px rgba(200,138,43,.4)); margin: .1rem 0 .2rem; }
.trust-rating__star { width: 30px; height: 30px; fill: currentColor; }
.trust-rating__count { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--text); line-height: 1.2; }
.trust-rating__count strong { display: block; font-size: 2.7rem; font-weight: 600; line-height: 1; color: var(--text); margin-bottom: .12rem; }
.trust-rating__src { font-size: .84rem; color: var(--text-muted); max-width: 24ch; }
.trust-rating__cta { margin-top: .7rem; display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .95rem; color: #fff; background: #E0781C; padding: .72rem 1.5rem; border-radius: 999px; box-shadow: 0 10px 20px -9px rgba(224,120,28,.75); transition: gap var(--dur-1) var(--ease-out); }
.trust-rating__cta svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
@media (hover: hover) {
  .trust-rating:hover { transform: translateY(-4px); box-shadow: 0 34px 66px -28px rgba(74,52,22,.55), 0 12px 26px -14px rgba(74,52,22,.42); }
  .trust-rating:hover .trust-rating__cta { gap: .85rem; }
}
.trust-rating:focus-visible { outline: 2px solid var(--c-gold-deep); outline-offset: 4px; }

/* ---------- Pricing ---------- */
.pricing { display: grid; gap: .2rem; margin-bottom: 1.8rem; }
.price { display: flex; align-items: baseline; gap: 1rem; padding: 1.1rem .4rem; border-bottom: 1px solid var(--border); }
.price__label { flex: 1; }
.price__value { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--c-gold-deep); }
.notes { color: var(--text-muted); font-size: .95rem; padding-left: 1.1rem; display: grid; gap: .5rem; }

/* ---------- FAQ ---------- */
.faq__list { display: grid; gap: .8rem; }
.faq__item { background: var(--c-white); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.4rem; font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--c-ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__ic { position: relative; width: 20px; height: 20px; flex: none; }
.faq__ic::before, .faq__ic::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: var(--c-gold-deep); border-radius: 2px; transform: translate(-50%,-50%); transition: transform var(--dur-2) var(--ease-out); }
.faq__ic::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item[open] .faq__ic::after { transform: translate(-50%,-50%) rotate(0); }
.faq__a { padding: 0 1.4rem 1.3rem; color: var(--text-muted); animation: faqIn .4s var(--ease-out); }
.faq__a p { margin: 0; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (hover: hover) { .faq__item summary:hover { color: var(--c-gold-deep); } }

/* ---------- CTA ---------- */
.cta { position: relative; padding-block: clamp(4rem, 9vw, 7rem); background: linear-gradient(160deg, #34302A 0%, #221F1B 100%); color: var(--c-cream); text-align: center; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 130% at 50% 0%, rgba(226,180,92,.26), transparent 60%); pointer-events: none; }
.cta__inner { position: relative; max-width: 56ch; margin-inline: auto; }
.cta h2 { color: #fff; }
.cta p { color: #EFEADF; font-size: var(--fs-lead); }
.cta .btn { margin-top: 1rem; }
.cta__note { font-size: .95rem; margin-top: 1.6rem; color: #E4DDCE; }
.cta__note a { color: #F0CF86; }

/* ---------- Kontakt ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; column-gap: clamp(2rem, 6vw, 4.5rem); row-gap: 1.8rem; align-items: start; grid-template-areas: "info form" "notfall form"; }
.contact__info { grid-area: info; }
.contact__form-wrap { grid-area: form; }
.contact__address { font-style: normal; line-height: 1.9; margin: 1rem 0; }
.contact__address a { color: var(--c-gold-deep); text-decoration: none; }
@media (hover: hover) { .contact__address a:hover { text-decoration: underline; } }
.notfall { grid-area: notfall; }
.notfall h3 { font-family: var(--font-body); font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 .7rem; color: var(--c-gold-deep); }
.notfall__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: .6rem; }
.notfall__item { display: flex; align-items: center; gap: .7rem; background: rgba(255,255,255,.65); border: 1px solid var(--border); border-left: 3px solid var(--c-gold); border-radius: var(--r-md); padding: .65rem .85rem; text-decoration: none; color: inherit; transition: transform var(--dur-1) var(--ease-out), box-shadow var(--dur-2) var(--ease-out); }
@media (hover: hover) { .notfall__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); } }
.notfall__ico { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--c-gold-tint); color: var(--c-gold-deep); }
.notfall__ico svg { width: 18px; height: 18px; }
.notfall__item b { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--c-ink); line-height: 1.1; }
.notfall__item span { font-size: .78rem; color: var(--text-muted); }
.contact__form-wrap { background: var(--c-white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(1.5rem, 4vw, 2.6rem); box-shadow: var(--shadow-md); }
.cform__intro { color: var(--text-muted); font-size: .95rem; margin-bottom: 1.6rem; }
.field { position: relative; margin-bottom: 1.7rem; }
.field input, .field textarea { width: 100%; border: 0; border-bottom: 1.5px solid var(--border); background: transparent; font-family: inherit; font-size: 16px; color: var(--text); padding: .6rem 0 .5rem; border-radius: 0; }
.field textarea { min-height: 116px; resize: none; }
.field label { position: absolute; left: 0; top: .6rem; color: var(--text-muted); pointer-events: none; transform-origin: left; transition: transform var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out); }
.field input:focus + label, .field textarea:focus + label, .field input:not(:placeholder-shown) + label, .field textarea:not(:placeholder-shown) + label { transform: translateY(-1.5rem) scale(.8); color: var(--c-gold-deep); }
.field__line { position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; transform: scaleX(0); transform-origin: left; background: var(--grad-gold); transition: transform var(--dur-2) var(--ease-out); }
.field input:focus ~ .field__line, .field textarea:focus ~ .field__line { transform: scaleX(1); }
.field.invalid input, .field.invalid textarea { border-bottom-color: #b5462f; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent-check { display: flex; gap: .6rem; align-items: flex-start; font-size: .88rem; color: var(--text-muted); margin-bottom: 1.4rem; }
.consent-check a { color: var(--c-gold-deep); }
.consent-check input { margin-top: .2rem; accent-color: var(--c-gold); width: 20px; height: 20px; flex: none; }
.cform__submit { width: 100%; }
.cform__check { width: 0; height: 26px; }
.cform__success { text-align: center; padding: 1rem .5rem; animation: fadeUp .6s var(--ease-out) both; position: relative; }
.cform__success-glow { position: absolute; inset: -20% 10% auto; height: 200px; background: radial-gradient(circle, rgba(200,149,46,.4), transparent 70%); filter: blur(20px); z-index: -1; }
.cform__success p { font-family: var(--font-head); font-size: 1.5rem; margin: .8rem 0 .3rem; }
.cform__success small { color: var(--text-muted); }
.cform__success-check { width: 72px; height: 72px; }
.cform__success-check circle { stroke: var(--c-gold); stroke-width: 2; stroke-dasharray: 151; stroke-dashoffset: 151; animation: draw .6s var(--ease-out) forwards; }
.cform__success-check path { stroke: var(--c-gold-deep); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 48; stroke-dashoffset: 48; animation: draw .5s .4s var(--ease-out) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- Footer (klassisch, Navigation + Kontakt) ---------- */
.site-footer { background: var(--c-ink); color: #E8E1D6; padding-block: clamp(3rem, 6vw, 4.5rem) max(1.5rem, env(safe-area-inset-bottom)); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: clamp(1.6rem, 4vw, 3rem); }
.footer__brand .brand { margin-bottom: .8rem; }
.footer__brand .brand__name { color: #FBF7F1; }
.footer__brand p { color: #B9B1A4; font-size: .92rem; max-width: 30ch; }
.footer__col h3 { font-family: var(--font-body); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; color: var(--c-gold-light); margin: 0 0 .9rem; }
.footer__col a { display: block; color: #D8D0C4; text-decoration: none; padding: .28rem 0; font-size: .95rem; }
.footer__col a.linklike { padding: .28rem 0; }
@media (hover: hover) { .footer__col a:hover { color: var(--c-gold-light); } }
.footer__contact address { font-style: normal; color: #D8D0C4; font-size: .95rem; line-height: 1.8; }
.footer__contact address a { color: #D8D0C4; text-decoration: none; }
.footer__hours { color: #B9B1A4; font-size: .88rem; margin-top: .7rem; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem 1.5rem; align-items: center; margin-top: 2.6rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .9rem; color: #A79F92; }
.footer__credit a { color: var(--c-gold-light); text-decoration: none; font-weight: 600; }
@media (hover: hover) { .footer__credit a:hover { text-decoration: underline; } }

/* Footer-Sonnenaufgang entfernt: das alte Logo erscheint nur im Über-mich-Bereich. */

/* ---------- Consent + Cookie-Button ---------- */
.consent[hidden] { display: none; }
.consent { position: fixed; left: 0; bottom: 0; z-index: 160; display: flex; justify-content: flex-start; padding: 1rem; padding-left: max(1rem, env(safe-area-inset-left)); padding-bottom: max(1rem, env(safe-area-inset-bottom)); pointer-events: none; }
.consent__panel { pointer-events: auto; background: rgba(255,255,255,.94); backdrop-filter: blur(16px) saturate(1.1); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); max-width: 420px; width: 100%; padding: 1.15rem 1.3rem; display: flex; flex-direction: column; gap: 1rem; animation: consentIn .55s var(--ease-out) both; }
@keyframes consentIn { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }
.consent__body { display: flex; gap: .9rem; align-items: flex-start; }
.consent__mark { width: 36px; height: 36px; flex: none; background: url("../logo/mark-wenz.svg") center/contain no-repeat; }
.consent__title { font-size: 1.15rem; margin: 0 0 .2rem; }
.consent__text { font-size: .86rem; color: var(--text-muted); margin: 0; }
.consent__text a { color: var(--c-gold-deep); }
.consent__ok { align-self: flex-start; }
/* Consent-Button = das Logo selbst (aufgehende Sonne unten links), kein Rahmen, kein Kreis */
.cookie-fab { position: fixed; left: max(1rem, env(safe-area-inset-left)); bottom: max(1rem, env(safe-area-inset-bottom)); z-index: 140; width: 60px; height: auto; padding: 0; border: 0; background: none; -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: none; line-height: 0; display: block; cursor: pointer; transform-origin: left bottom; filter: drop-shadow(0 5px 12px rgba(120,90,35,.28)); transition: transform var(--dur-2) var(--ease-out), filter var(--dur-2) var(--ease-out), opacity var(--dur-2) var(--ease-out), visibility var(--dur-2) var(--ease-out); -webkit-tap-highlight-color: transparent; }
.cookie-fab img { width: 100%; height: auto; display: block; }
.cookie-fab[hidden] { display: none; }
/* Hover: Sonne wächst sanft aus der Ecke und leuchtet warm auf */
@media (hover: hover) { .cookie-fab:hover { transform: scale(1.12) translateY(-2px); filter: drop-shadow(0 9px 22px rgba(232,150,32,.55)) brightness(1.05); } }
.cookie-fab:active { transform: scale(1.04) translateY(0); }
.cookie-fab:focus-visible { outline: 2px solid var(--c-gold-deep); outline-offset: 5px; border-radius: 8px; }
/* Weicht dem Footer aus: zieht sich weich zurueck, sobald der Footer erscheint (dort gibt es bereits den Cookie-Einstellungen-Link) */
.cookie-fab.is-tucked { opacity: 0; visibility: hidden; transform: scale(.55) translateY(12px); pointer-events: none; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.cards .card:nth-child(2){ transition-delay:.06s; } .cards .card:nth-child(3){ transition-delay:.12s; }
.cards .card:nth-child(4){ transition-delay:.06s; } .cards .card:nth-child(5){ transition-delay:.12s; } .cards .card:nth-child(6){ transition-delay:.18s; }
.cards .card:nth-child(7){ transition-delay:.1s; } .cards .card:nth-child(8){ transition-delay:.16s; }
.steps .step:nth-child(2){ transition-delay:.1s; } .steps .step:nth-child(3){ transition-delay:.2s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .hero__media img, .parallax__media img, .trust__portrait__media { transform: none !important; }
  .cookie-fab.is-tucked { transform: none !important; }
  .btn--glow, .hero__scroll span, .hero__title em, .hero__title em::after, .step.is-visible .step__num, .tcheck .tick { animation: none !important; }
  .hero__title em { color: #F0CF86; -webkit-text-fill-color: #F0CF86; }
  .hero__title em::after { transform: scaleX(1); }
  .tcheck .tick { stroke-dashoffset: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.5rem; background: var(--c-cream); padding: 2.5rem; padding-right: max(2.5rem, env(safe-area-inset-right)); box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform var(--dur-3) var(--ease-out); overflow-y: auto; }
  .nav.is-open { transform: none; }
  .nav > a:not(.btn) { font-size: 1.2rem; color: var(--c-ink); }
  .nav__cta { margin-top: .5rem; }
  .nav-toggle { display: flex; z-index: 120; }
  body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(44,42,38,.45); z-index: 90; animation: fadeUp .3s ease both; }
  .split__grid, .trust__grid, .contact__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-areas: "info" "form" "notfall"; }
  .split--reverse .split__media { order: 0; }
  .split--reverse .split__media img { aspect-ratio: 4/3; max-height: 460px; }
  .trust__cert, .trust__portrait { justify-self: center; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .hero__actions .btn { width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; }
  .brand__name { font-size: 1.3rem; } .brand__mark { width: 42px; height: 42px; }
  .site-header .brand__mark { width: 60px; height: 60px; } .site-header .brand__sign { width: 152px; height: 35px; }
  .consent { right: 0; } .consent__panel { max-width: none; }
}
@media (max-width: 380px) { :root { --gutter: 1.1rem; } .brand__role { letter-spacing: .14em; } .card, .step { padding: 1.6rem 1.4rem; } }

/* ---------- Region-Seite ---------- */
.region-hero { padding: calc(5rem + env(safe-area-inset-top)) 0 2rem; }
.region-hero h1 { font-size: var(--fs-h1); }
.region-hero p { max-width: 60ch; color: var(--text-muted); }
.mapwrap { position: relative; margin: 2rem auto 0; max-width: 900px; aspect-ratio: 1/1; }
.map-svg { width: 100%; height: 100%; overflow: visible; }
.map-ring { fill: none; stroke: var(--c-gold); opacity: .32; }
.map-ring--soft { stroke-dasharray: 3 6; opacity: .22; }
.map-ring-label { fill: var(--c-gold-deep); font-family: var(--font-body); font-size: 13px; font-weight: 600; opacity: .7; }
.map-node { cursor: pointer; opacity: 0; animation: nodeIn .6s var(--ease-out) forwards; }
@keyframes nodeIn { to { opacity: 1; } }
.map-node .dot { fill: var(--c-sage); stroke: #fff; stroke-width: 1.2; transition: fill var(--dur-2) var(--ease-out); }
.map-node.is-city .dot { fill: var(--c-gold); }
.map-node .halo { fill: var(--c-gold); opacity: 0; }
.map-node text { font-family: var(--font-body); font-size: 12px; fill: var(--c-ink); opacity: 0; pointer-events: none; transition: opacity var(--dur-2) var(--ease-out); paint-order: stroke; stroke: rgba(251,247,241,.92); stroke-width: 3px; }
.map-node.is-city text { font-weight: 700; }
@media (hover: hover) { .map-node:hover .dot { fill: var(--c-gold-deep); } .map-node:hover text { opacity: 1; } .map-node:hover .halo { opacity: .18; } }
@media (hover: none) { .map-node.is-city text { opacity: .92; font-size: 11px; } }
.map-center .core { fill: url(#mapSun); }
.map-center .halo { fill: var(--c-gold); opacity: .2; animation: haloPulse 2.6s var(--ease-inout) infinite; }
@keyframes haloPulse { 0% { opacity: .3; transform: scale(1); } 70% { opacity: 0; transform: scale(2.4); } 100% { opacity: 0; } }
.map-center text { fill: var(--c-ink); font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.map-legend { display: flex; justify-content: center; gap: 1.6rem; margin-top: 1.2rem; font-size: .85rem; color: var(--text-muted); flex-wrap: wrap; }
.map-legend span { display: inline-flex; align-items: center; gap: .5rem; }
.map-legend i { width: .8rem; height: .8rem; border-radius: 50%; }
.map-legend .is-city { background: var(--c-gold); } .map-legend .is-town { background: var(--c-sage); }
.places__group { margin-bottom: 2.2rem; }
.places__group h2 { font-size: 1.4rem; display: flex; align-items: baseline; gap: .6rem; }
.places__group h2 small { font-size: .8rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 600; }
.places__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 210px), 1fr)); gap: .7rem; margin-top: 1rem; }
.place-link { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .8rem 1rem; background: var(--c-white); border: 1px solid var(--border); border-radius: var(--r-md); text-decoration: none; color: var(--c-ink); font-weight: 600; box-shadow: var(--shadow-sm); transition: transform var(--dur-1) var(--ease-out), box-shadow var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out); }
.place-link .arw { color: var(--c-gold-deep); transition: transform var(--dur-2) var(--ease-out); }
@media (hover: hover) { .place-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-gold-light); } .place-link:hover .arw { transform: translateX(4px); } }
.place-link small { display: block; font-weight: 400; font-size: .74rem; color: var(--text-muted); }

/* ---------- Sub-Header (identisch zur Startseite, solide) ---------- */
.sub-header { position: sticky; top: 0; z-index: 100; background: rgba(251,247,241,.9); backdrop-filter: blur(12px) saturate(1.05); border-bottom: 1px solid var(--border); padding-top: env(safe-area-inset-top); }
.sub-header .site-header__inner { padding-block: .6rem; }

/* ---------- Orts-Seiten ---------- */
.loc-hero { position: relative; overflow: hidden; color: var(--c-cream); }
.loc-hero__media { position: absolute; inset: 0; z-index: -2; }
.loc-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.loc-hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(44,42,38,.5), rgba(44,42,38,.38) 40%, rgba(44,42,38,.64)); z-index: -1; }
.loc-hero__inner { max-width: 42ch; padding-block: clamp(4.5rem, 12vh, 8rem); }
.loc-hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.loc-hero h1 em { color: #F0CF86; font-style: italic; }
.loc-hero p { color: #F4EFE6; font-size: var(--fs-lead); max-width: 46ch; }
.loc-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.loc-back { display: inline-flex; align-items: center; gap: .4rem; color: var(--c-gold-deep); text-decoration: none; font-weight: 600; }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.chip { background: var(--c-sage-tint); color: var(--c-sage-deep); border: 1px solid var(--c-sage-soft); border-radius: var(--r-pill); padding: .35rem .8rem; font-size: .85rem; font-weight: 600; }

/* ---------- Rechtsseiten ---------- */
.legal-main { padding-block: clamp(2.5rem, 6vw, 5rem); }
.legal-main .container { max-width: 820px; }
.legal-main h1 { font-size: var(--fs-h1); margin-bottom: 1.2rem; }
.legal-main h2 { font-size: 1.5rem; margin-top: 2.4rem; }
.legal-main h3 { font-size: 1.12rem; margin-top: 1.5rem; }
.legal-main ul { padding-left: 1.2rem; }
.legal-main a { color: var(--c-gold-deep); }
.legal-note { background: var(--c-sand); border-left: 4px solid var(--c-gold); border-radius: var(--r-md); padding: 1rem 1.2rem; font-size: .92rem; color: var(--text-muted); margin: 1.5rem 0; }
.back-link { text-decoration: none; font-weight: 600; color: var(--c-gold-deep); white-space: nowrap; }

/* ---------- Kacheln als Link + „Mehr erfahren" ---------- */
.card { display: flex; flex-direction: column; }
a.card { color: inherit; text-decoration: none; }
.card__more { margin-top: auto; padding-top: 1.1rem; display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .95rem; color: var(--c-sage-deep); }
.card__more .arw { width: 16px; height: 16px; flex: none; transition: transform var(--dur-2) var(--ease-out); }
@media (hover: hover) { .card:hover .card__more { color: var(--c-gold-deep); } .card:hover .card__more .arw { transform: translateX(5px); } }
.hero__title { overflow-wrap: break-word; hyphens: auto; }

/* Fortbildungs-Kurse */
.courses { align-items: start; }
.course { display: flex; flex-direction: column; }
.course h3 { font-size: 1.24rem; }
.course .chip-row { margin: 1.1rem 0 0; }
.course .course-quote { position: relative; font-family: var(--font-head); font-style: italic; font-size: 1.14rem; line-height: 1.45; color: var(--c-gold-deep); margin: 1.2rem 0 0; padding: .1rem 0 .1rem 1rem; border-left: 2px solid var(--c-gold); }
.course .course-quote__author { display: block; margin-top: .4rem; font-family: var(--font-body); font-style: normal; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.course .course-meta { margin: 1.4rem 0 0; padding-top: 1rem; border-top: 1px solid var(--border); font-size: .83rem; color: var(--text-muted); line-height: 1.65; }
.course.is-visible .card__icon { animation: courseIconIn .7s var(--ease-out) both; }
@keyframes courseIconIn { 0% { opacity: 0; transform: scale(.6) rotate(-12deg); } 60% { transform: scale(1.1) rotate(4deg); } 100% { opacity: 1; transform: scale(1) rotate(0); } }

/* (Sonnen-Emblem im Über-mich-Bereich entfernt) */

/* ---------- Karten-Icon Einblende-Animation ---------- */
.card.is-visible .card__icon { animation: iconPop .7s var(--ease-out) both; }
@keyframes iconPop { 0% { transform: scale(.5) rotate(-12deg); opacity: 0; } 60% { transform: scale(1.1) rotate(4deg); } 100% { transform: scale(1) rotate(0); opacity: 1; } }

/* ---------- Solider Sub-Header (Rechtsseiten) ---------- */
.sub-header { position: sticky; top: 0; z-index: 100; background: rgba(251,247,241,.92); backdrop-filter: blur(12px) saturate(1.05); border-bottom: 1px solid var(--border); padding-top: env(safe-area-inset-top); }
.sub-header .site-header__inner { padding-block: .55rem; }

/* ---------- Rechtsseiten: Scroll-Navigation links (Scrollspy) ---------- */
.legal-layout { display: grid; grid-template-columns: 250px 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.legal-toc { position: sticky; top: 5.5rem; align-self: start; }
.legal-toc__title { font-weight: 600; font-size: var(--fs-kicker); letter-spacing: var(--ls-kicker); text-transform: uppercase; color: var(--c-gold-deep); margin: 0 0 1rem; }
.legal-toc nav { display: grid; gap: .1rem; border-left: 2px solid var(--border); }
.legal-toc a { display: block; padding: .5rem .9rem; margin-left: -2px; border-left: 2px solid transparent; color: var(--text-muted); text-decoration: none; font-size: .92rem; line-height: 1.35; border-radius: 0 var(--r-sm) var(--r-sm) 0; transition: color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out); }
@media (hover: hover) { .legal-toc a:hover { color: var(--c-ink); } }
.legal-toc a.is-active { color: var(--c-gold-deep); font-weight: 600; border-left-color: var(--c-gold); background: linear-gradient(90deg, rgba(200,149,46,.09), transparent); }
.legal-content section { scroll-margin-top: 5.5rem; }
.legal-content section h2 { margin-top: 0; }
.legal-content section + section { margin-top: 2.4rem; }

/* ---------- Dezente botanische Zier (ruhig) ---------- */
.deco { position: relative; overflow: hidden; }
.deco::before { content: ""; position: absolute; pointer-events: none; width: clamp(150px, 22vw, 280px); aspect-ratio: 1; top: -4%; right: -3%; opacity: .05; background: url("../logo/mark-wenz.svg") center/contain no-repeat; }

@media (max-width: 820px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; top: auto; margin-bottom: 1.6rem; }
  .legal-toc nav { grid-auto-flow: column; grid-auto-columns: max-content; overflow-x: auto; border-left: 0; border-bottom: 2px solid var(--border); padding-bottom: .25rem; -webkit-overflow-scrolling: touch; }
  .legal-toc a { border-left: 0; border-bottom: 2px solid transparent; margin-left: 0; white-space: nowrap; border-radius: 0; }
  .legal-toc a.is-active { border-left: 0; border-bottom-color: var(--c-gold); background: none; }
}
@media (max-width: 900px) {
  .nav { z-index: 110; }
  .nav.is-open a:not(.btn) { color: var(--c-ink) !important; }
  /* Fix Burger-Menue: Header/Sub-Header duerfen bei offenem Menue KEIN
     Containing-Block fuer das fixierte Panel sein. backdrop-filter (beim
     Scrollen aktiv) erzeugt sonst genau diesen Bezugsrahmen und quetscht
     das Menue in die Kopfleiste. Beim Oeffnen daher neutralisieren. */
  body.nav-open .site-header,
  body.nav-open .sub-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none;
  }
  /* Kopfleiste im Scroll-Zustand deckend, damit sie ueber dem Inhalt sauber
     wirkt (Marke ist dort ohnehin dunkel). Am Seitenanfang bleibt sie
     transparent, damit die helle Marke auf dem Hero sichtbar bleibt. */
  body.nav-open .site-header.is-scrolled,
  body.nav-open .sub-header { background: var(--c-cream); }
}
@media (prefers-reduced-motion: reduce) {
  .btn--primary::after { animation: none !important; }
  .card.is-visible .card__icon { animation: none !important; }
}
