/* =========================================================
   Kita Löwenherz — Stylesheet
   Palette: 0D5B10 / 187C19 / 69B31E / 8DC71D
   Display: Bricolage Grotesque · Text: Hanken Grotesk
   ========================================================= */

:root{
  --bg:#F6FAEF; --surface:#FFFFFF; --surface-2:#EDF5E1;
  --green-deep:#0D5B10; --green:#187C19; --lime:#69B31E; --lime-bright:#8DC71D;
  --ink:#123018; --muted:#566A4F;
  --rule:rgba(13,91,16,.14); --rule-on:rgba(246,250,239,.20);
  --ease:cubic-bezier(0.23,1,0.32,1);
  --maxw:1280px;
}
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:"Hanken Grotesk",system-ui,sans-serif; color:var(--ink); -webkit-font-smoothing:antialiased; overflow-x:hidden; line-height:1.5;
  background-color:var(--bg);
  background-image:
    radial-gradient(60vw 52vh at 88% -6%, rgba(141,199,29,.10), transparent 60%),
    radial-gradient(54vw 46vh at -8% 10%, rgba(24,124,25,.08), transparent 58%),
    radial-gradient(52vw 52vh at 50% 112%, rgba(105,179,30,.07), transparent 60%);
  background-attachment:fixed; background-repeat:no-repeat;
}
h1,h2,h3,h4,.bric{ font-family:"Bricolage Grotesque","Hanken Grotesk",sans-serif; letter-spacing:-.025em; }
img{ max-width:100%; display:block; }
a{ color:inherit; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 clamp(20px,5vw,56px); }
section{ position:relative; }
:focus-visible{ outline:3px solid var(--lime); outline-offset:3px; border-radius:6px; }

.skip-link{ position:absolute; left:14px; top:-60px; z-index:200; background:var(--green-deep); color:#fff; padding:10px 18px; border-radius:8px; text-decoration:none; transition:top .2s var(--ease); }
.skip-link:focus{ top:14px; }

/* Statische Körnung ohne mix-blend-mode: GPU-komponiert einmal, kein Repaint
   pro Scroll-Frame (Blend-Modes auf fixierten Flächen kosten massiv). */
.grain{ position:fixed; inset:0; z-index:9999; pointer-events:none; opacity:.04;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---------- shared bits ---------- */
.kicker{ font-size:12px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--green); display:inline-flex; align-items:center; gap:10px; }
.kicker::before{ content:""; width:26px; height:3px; border-radius:2px; background:var(--lime-bright); }
.accent{ color:var(--green); }

.btn{ background:var(--green-deep); color:#fff; text-decoration:none; padding:16px 30px; border-radius:999px; font-weight:600; font-size:15px; display:inline-block;
  transition:transform .18s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease); box-shadow:0 10px 24px -12px rgba(13,91,16,.7); }
.btn:hover{ background:var(--green); box-shadow:0 16px 30px -12px rgba(13,91,16,.8); }
.btn:active{ transform:scale(.97); }
.btn-lime{ background:var(--lime-bright); color:var(--ink); box-shadow:0 10px 24px -12px rgba(141,199,29,.8); }
.btn-lime:hover{ background:var(--green); color:#fff; }
.btn-ghost{ background:transparent; border:1.5px solid currentColor; box-shadow:none; }
.link{ text-decoration:none; font-weight:600; font-size:15px; display:inline-flex; gap:8px; align-items:center; color:var(--green-deep); }
.link span{ transition:transform .2s var(--ease); }
.link:hover span{ transform:translateX(4px); }

.divider{ display:block; width:100%; height:64px; }
.divider path{ fill:var(--surface-2); }
.divider.to-green path{ fill:var(--green-deep); }

/* ---------- NAV ---------- */
.nav{ position:fixed; inset:0 0 auto 0; z-index:60; background:rgba(246,250,239,.96); border-bottom:1px solid var(--rule); transition:background .35s var(--ease), border-color .35s var(--ease); }
/* Über einem Vollbild-Foto (z. B. Räume-Journey): transparent, helle Schrift.
   Wird vom JS umgeschaltet, sobald das Foto weggescrollt ist -> wieder deckend. */
.nav.over-media{ background:transparent; border-bottom-color:transparent; }
.nav.over-media .brand b{ color:#fff; text-shadow:0 1px 10px rgba(0,0,0,.45); }
.nav.over-media .nav-toggle span{ background:#fff; }
/* Weiße Links nur für die Desktop-Inline-Leiste; im mobilen Klappmenü
   (heller Hintergrund) bleiben sie dunkel. */
@media(min-width:981px){
  .nav.over-media .navlinks a:not(.cta){ color:#fff; text-shadow:0 1px 10px rgba(0,0,0,.45); }
}
.nav-in{ max-width:none; margin:0; display:flex; align-items:center; justify-content:space-between; padding:9px clamp(20px,4vw,40px); }
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; }
.brand img{ width:48px; height:48px; object-fit:contain; }
.brand b{ font-weight:700; font-size:19px; color:var(--green-deep); font-family:"Bricolage Grotesque",sans-serif; }
.navlinks{ display:flex; align-items:center; gap:26px; }
.navlinks a{ text-decoration:none; color:var(--green-deep); font-weight:500; font-size:14px; }
.navlinks a:not(.cta){ position:relative; }
.navlinks a:not(.cta)::after{ content:""; position:absolute; left:0; bottom:-4px; height:2px; width:100%; background:var(--lime-bright); transform:scaleX(0); transform-origin:left; transition:transform .25s var(--ease); }
.navlinks a:not(.cta):hover::after,
.navlinks a[aria-current="page"]::after{ transform:scaleX(1); }
.cta{ background:var(--green-deep); color:#fff!important; padding:10px 20px; border-radius:999px; font-weight:600; transition:transform .16s var(--ease),background .25s var(--ease); }
.cta:hover{ background:var(--green); }
.cta:active{ transform:scale(.97); }
.nav-toggle{ display:none; flex-direction:column; gap:5px; width:44px; height:44px; align-items:center; justify-content:center; background:transparent; border:0; cursor:pointer; }
.nav-toggle span{ width:24px; height:2px; background:var(--green-deep); border-radius:2px; transition:transform .3s var(--ease), opacity .2s var(--ease); }
.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); }

@media(max-width:980px){
  .nav-toggle{ display:flex; }
  .navlinks{ position:fixed; inset:66px 0 auto 0; flex-direction:column; align-items:flex-start; gap:4px;
    background:var(--bg); border-bottom:1px solid var(--rule); padding:16px clamp(20px,5vw,56px) 26px;
    transform:translateY(-12px); opacity:0; pointer-events:none; transition:transform .3s var(--ease), opacity .3s var(--ease); }
  .navlinks.open{ transform:none; opacity:1; pointer-events:auto; }
  .navlinks a{ font-size:18px; padding:10px 0; width:100%; }
  .navlinks .cta{ margin-top:8px; }
}

/* ---------- HERO (Startseite) ---------- */
.hero{ position:relative; padding:160px 0 110px; display:grid; grid-template-columns:1.05fr .95fr; gap:60px; align-items:center; }
@media(max-width:880px){
  .hero{ grid-template-columns:1fr; padding:128px 0 80px; }
  .green-panel{ right:-12px; }
  .photo-sub{ right:-10px; width:132px; }
  .tag{ left:0; }
  .brush{ left:-12px; }
}
@media(max-width:480px){ .uline{ white-space:normal; } .uline svg{ display:none; } }
.orb{ position:absolute; border-radius:50%; z-index:0; pointer-events:none; filter:blur(8px); }
.orb.a{ width:420px; height:420px; top:-40px; right:-60px; background:radial-gradient(closest-side, rgba(141,199,29,.28), transparent 72%); animation:drift 16s ease-in-out infinite; }
.orb.b{ width:300px; height:300px; bottom:-30px; left:-90px; background:radial-gradient(closest-side, rgba(105,179,30,.20), transparent 72%); animation:drift 20s ease-in-out infinite reverse; }
.hero-copy{ position:relative; z-index:2; }
.hero h1{ font-weight:700; font-size:clamp(40px,7vw,92px); line-height:.92; color:var(--green-deep); margin:22px 0 0; text-wrap:balance; }
.uline{ position:relative; white-space:nowrap; color:var(--green); }
.uline svg{ position:absolute; left:-1%; bottom:-.13em; width:102%; height:.32em; overflow:visible; }
.uline path{ fill:none; stroke:var(--lime-bright); stroke-width:7; stroke-linecap:round; stroke-dasharray:340; stroke-dashoffset:340; }
body.anim .uline.in path{ animation:draw 1s var(--ease) .3s forwards; }
.lede{ margin:28px 0 36px; max-width:46ch; font-size:18.5px; line-height:1.65; color:#34452F; }
.actions{ display:flex; align-items:center; gap:24px; flex-wrap:wrap; }
.hours{ margin-top:44px; display:inline-flex; gap:14px; align-items:center; }
.hours .dot{ width:9px; height:9px; border-radius:50%; background:var(--lime); animation:pulse 2.4s ease-out infinite; }
.hours b{ font-family:"Bricolage Grotesque",sans-serif; font-weight:600; color:var(--green-deep); }
.hours small{ display:block; color:var(--muted); font-size:13px; }

.visual{ position:relative; z-index:2; }
.green-panel{ position:absolute; inset:auto -30px -30px auto; width:82%; height:90%; border-radius:24px; z-index:0; background:linear-gradient(150deg,var(--green),var(--green-deep)); }
.photo{ position:relative; z-index:1; aspect-ratio:4/5; border-radius:24px; overflow:hidden; box-shadow:0 36px 70px -34px rgba(13,91,16,.55); }
.photo img{ width:100%; height:100%; object-fit:cover; transition:transform 1.2s var(--ease); }
.photo:hover img{ transform:scale(1.04); }
.photo-sub{ position:absolute; z-index:3; right:-34px; bottom:-30px; width:160px; aspect-ratio:1/1; border-radius:18px; overflow:hidden; border:6px solid var(--bg); box-shadow:0 22px 44px -20px rgba(13,91,16,.5); }
.photo-sub img{ width:100%; height:100%; object-fit:cover; }
.brush{ position:absolute; z-index:4; left:-30px; top:10px; width:104px; height:104px; color:var(--lime); }
.leaf-float{ position:absolute; z-index:4; color:var(--lime-bright); opacity:.92; transform-origin:62% 88%; will-change:transform; }
.leaf-float.l1{ top:30%; left:-50px; width:40px; animation:leafsway 6.5s ease-in-out infinite; }
.leaf-float.l2{ top:-22px; right:34%; width:30px; color:var(--lime); animation:leafsway 8.4s ease-in-out .5s infinite; }
.leaf-float.l3{ bottom:13%; right:-30px; width:34px; color:var(--lime-bright); animation:leafsway 7.3s ease-in-out 1.1s infinite; }
@media(max-width:880px){ .leaf-float.l3{ right:-6px; bottom:8%; } }
.tag{ position:absolute; z-index:5; left:-20px; bottom:34px; background:var(--surface); border:1px solid var(--rule); border-radius:14px; padding:12px 18px; box-shadow:0 16px 34px -18px rgba(13,91,16,.45); }
.tag b{ font-family:"Bricolage Grotesque",sans-serif; font-weight:700; color:var(--green-deep); font-size:21px; display:block; }
.tag small{ color:var(--muted); font-size:12px; }

/* ---------- PAGE HEADER (Unterseiten) ---------- */
.page-header{ position:relative; padding:150px 0 56px; overflow:hidden; }
.page-header .orb.a{ top:-80px; right:-80px; }
.page-header .kicker{ margin-bottom:14px; }
.page-header h1{ font-size:clamp(38px,5.4vw,68px); font-weight:700; color:var(--green-deep); line-height:1.02; max-width:18ch; text-wrap:balance; }
.page-header .intro{ margin-top:22px; max-width:62ch; font-size:18px; line-height:1.65; color:#34452F; }
.page-header::after{ content:""; display:block; max-width:var(--maxw); margin:40px auto 0; height:1px; background:var(--rule); }

/* ---------- PROSE (Textseiten) ---------- */
.prose{ padding:64px 0 96px; }
.prose-inner{ max-width:72ch; }
.prose h2{ font-size:clamp(26px,3.4vw,38px); font-weight:700; color:var(--green-deep); margin:56px 0 16px; line-height:1.1; }
.prose h2:first-child{ margin-top:0; }
.prose h3{ font-size:21px; font-weight:700; color:var(--green); margin:34px 0 10px; }
.prose p{ font-size:17px; line-height:1.75; color:#34452F; margin:0 0 18px; }
.prose p.lead{ font-size:20px; line-height:1.6; color:var(--ink); }
.prose strong{ color:var(--green-deep); }
.prose ul{ list-style:none; display:grid; gap:12px; margin:18px 0 24px; }
.prose ul li{ position:relative; padding-left:30px; font-size:16.5px; line-height:1.6; color:#34452F; }
.prose ul li::before{ content:""; position:absolute; left:4px; top:.62em; width:9px; height:9px; border-radius:50%; background:var(--lime-bright); }
.prose ol{ counter-reset:i; list-style:none; display:grid; gap:12px; margin:18px 0 24px; }
.prose ol li{ position:relative; padding-left:42px; font-size:16.5px; line-height:1.6; color:#34452F; }
.prose ol li::before{ counter-increment:i; content:counter(i); position:absolute; left:0; top:0; width:28px; height:28px; border-radius:50%; background:var(--surface-2); color:var(--green-deep); font-family:"Bricolage Grotesque",sans-serif; font-weight:700; font-size:13px; display:flex; align-items:center; justify-content:center; }

.pullquote{ margin:44px 0; padding:30px 34px; background:var(--surface-2); border-radius:18px; }
.pullquote blockquote{ font-family:"Bricolage Grotesque",sans-serif; font-weight:600; font-size:clamp(22px,2.8vw,30px); line-height:1.2; color:var(--green-deep); letter-spacing:-.02em; }
.pullquote .h{ color:var(--green); }
.pullquote cite{ display:block; margin-top:14px; font-style:normal; font-size:14px; color:var(--green); font-weight:600; }

/* anchor / table of contents (Rechtliches) */
.toc{ background:var(--surface); border:1px solid var(--rule); border-radius:18px; padding:24px 26px; margin-bottom:44px; }
.toc p.flabel{ color:var(--green); margin-bottom:12px; }
.toc ul{ list-style:none; display:grid; gap:8px; grid-template-columns:1fr 1fr; }
@media(max-width:640px){ .toc ul{ grid-template-columns:1fr; } }
.toc a{ text-decoration:none; color:var(--green-deep); font-weight:500; font-size:15px; }
.toc a:hover{ color:var(--lime); }
.legal-block{ scroll-margin-top:90px; }

/* ---------- WELCOME ---------- */
.welcome{ padding:104px 0; display:grid; grid-template-columns:.85fr 1.15fr; gap:62px; align-items:center; }
@media(max-width:880px){ .welcome{ grid-template-columns:1fr; gap:34px; } }
.welcome-logo{ width:172px; height:172px; object-fit:contain; filter:drop-shadow(0 16px 28px rgba(13,91,16,.18)); }
.welcome h2{ font-size:clamp(31px,4.1vw,48px); font-weight:700; color:var(--green-deep); line-height:1.05; text-wrap:balance; }
.welcome p{ margin-top:20px; font-size:17px; line-height:1.7; color:#34452F; max-width:60ch; }
.welcome p b{ color:var(--green); }

/* ---------- QUOTE ---------- */
.quote{ padding:100px 0; text-align:center; background:var(--surface-2); }
.quote blockquote{ font-family:"Bricolage Grotesque",sans-serif; font-weight:600; font-size:clamp(30px,4.6vw,54px); line-height:1.1; color:var(--green-deep); max-width:18ch; margin:0 auto; letter-spacing:-.025em; }
.quote blockquote .h{ color:var(--green); }
.quote cite{ display:block; margin-top:26px; font-style:normal; font-size:14px; color:var(--green); font-weight:600; letter-spacing:.04em; }

/* ---------- GROWTH PATH ---------- */
.path{ padding:110px 0; }
.path-head{ max-width:62ch; margin-bottom:60px; }
.path-head h2{ font-size:clamp(33px,4.5vw,54px); font-weight:700; color:var(--green-deep); margin-top:16px; line-height:1.03; text-wrap:balance; }
.path-head p{ margin-top:16px; color:var(--muted); font-size:16px; line-height:1.6; }
.steps{ position:relative; }
.vine{ position:absolute; left:17px; top:0; bottom:0; width:4px; z-index:0; }
.vine .track{ position:absolute; inset:0; background:rgba(13,91,16,.1); border-radius:3px; }
.vine .grow{ position:absolute; left:0; top:0; width:100%; border-radius:3px; transform-origin:top;
  background:linear-gradient(var(--lime-bright),var(--lime),var(--green),var(--green-deep)); height:100%; transform:scaleY(var(--p,0)); transition:transform .15s linear; }
.step{ position:relative; padding:0 0 42px 60px; z-index:1; }
.step:last-child{ padding-bottom:0; }
.step .num{ position:absolute; left:0; top:-2px; width:38px; height:38px; border-radius:50%; background:var(--surface); border:3px solid var(--lime); display:flex; align-items:center; justify-content:center; font-family:"Bricolage Grotesque",sans-serif; font-weight:700; font-size:13px; color:var(--green-deep); transition:transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease); }
.step .body{ background:var(--surface); border:1px solid var(--rule); border-radius:18px; padding:22px 24px; transition:transform .35s var(--ease), box-shadow .35s var(--ease); }
.step:hover .body{ transform:translateX(5px); box-shadow:0 22px 46px -26px rgba(13,91,16,.42); }
.step:hover .num{ transform:scale(1.14); border-color:var(--lime-bright); background:var(--lime-bright); }
.step .stage{ font-size:12px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--green); }
.step h3{ font-size:23px; font-weight:700; color:var(--green-deep); margin:3px 0 8px; }
.step .motto{ font-family:"Bricolage Grotesque",sans-serif; font-style:italic; font-weight:500; color:var(--green); font-size:17px; margin-bottom:8px; }
.step p{ color:var(--muted); font-size:15px; line-height:1.6; max-width:64ch; }

/* ---------- INCLUSION ---------- */
.incl{ background:linear-gradient(160deg,var(--green-deep),#0a4a0d); color:#fff; padding:100px 0 110px; }
.incl-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
@media(max-width:880px){ .incl-grid{ grid-template-columns:1fr; gap:30px; } }
.incl .kicker{ color:var(--lime-bright); }
.incl .kicker::before{ background:var(--lime-bright); }
.incl h2{ font-size:clamp(31px,4.3vw,52px); font-weight:700; margin-top:16px; line-height:1.04; text-wrap:balance; }
.incl h2 .h{ color:var(--lime-bright); }
.incl p.body{ margin-top:20px; color:rgba(246,250,239,.86); font-size:16.5px; line-height:1.7; max-width:48ch; }
.incl-list{ list-style:none; display:grid; gap:18px; }
.incl-list li{ display:grid; grid-template-columns:auto 1fr; gap:14px; align-items:start; font-size:15.5px; line-height:1.55; color:rgba(246,250,239,.9); padding-bottom:18px; border-bottom:1px solid var(--rule-on); }
.incl-list li:last-child{ border-bottom:none; }
.incl-list .mk{ width:26px; height:26px; border-radius:50%; background:rgba(141,199,29,.2); color:var(--lime-bright); display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; margin-top:1px; }

/* ---------- INVITE ---------- */
.invite{ padding:110px 0; text-align:center; }
.invite h2{ font-size:clamp(34px,4.8vw,58px); font-weight:700; color:var(--green-deep); line-height:1.03; max-width:20ch; margin:0 auto; text-wrap:balance; }
.invite p{ margin:18px auto 32px; color:var(--muted); font-size:17px; max-width:52ch; line-height:1.6; }

/* ---------- CONTACT ---------- */
.contact{ padding:64px 0 96px; display:grid; grid-template-columns:1fr 1fr; gap:54px; align-items:start; }
@media(max-width:880px){ .contact{ grid-template-columns:1fr; gap:34px; } }
.contact-card{ background:var(--surface); border:1px solid var(--rule); border-radius:20px; padding:30px 32px; }
.contact-card + .contact-card{ margin-top:24px; }
.contact-card h2{ font-size:24px; font-weight:700; color:var(--green-deep); margin-bottom:6px; }
.contact-card p{ font-size:16px; line-height:1.7; color:#34452F; }
.contact-card a{ color:var(--green); text-decoration:none; font-weight:500; }
.contact-card a:hover{ text-decoration:underline; }
.contact-card .role{ color:var(--muted); font-size:14px; }
.hours-table{ list-style:none; display:grid; gap:10px; margin-top:4px; }
.hours-table li{ display:flex; justify-content:space-between; gap:16px; padding:10px 0; border-bottom:1px solid var(--rule); font-size:16px; }
.hours-table li:last-child{ border-bottom:none; }
.hours-table b{ font-family:"Bricolage Grotesque",sans-serif; color:var(--green-deep); }
.map-embed{ border:0; width:100%; aspect-ratio:4/3; border-radius:20px; filter:saturate(.9); }

/* ---------- FOOTER ---------- */
footer{ background:linear-gradient(160deg,var(--green-deep),#0a4a0d); color:#fff; padding:84px 0 38px; }
.foot{ display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:48px; }
@media(max-width:820px){ .foot{ grid-template-columns:1fr; gap:30px; } }
.foot-brand{ display:flex; align-items:center; gap:13px; margin-bottom:16px; }
.foot-brand img{ width:60px; height:60px; object-fit:contain; }
.foot-brand b{ font-family:"Bricolage Grotesque",sans-serif; font-weight:700; font-size:22px; }
footer p,footer a{ color:rgba(246,250,239,.8); font-size:15px; line-height:1.8; text-decoration:none; }
footer a:hover{ color:var(--lime-bright); }
.flabel{ font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--lime-bright); font-weight:600; margin-bottom:10px; }
.on-green{ color:#fff; }
.copy{ border-top:1px solid var(--rule-on); margin-top:46px; padding-top:22px; display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; font-size:13px; color:rgba(246,250,239,.6); }
.copy a{ color:rgba(246,250,239,.6); }
.copy a:hover{ color:var(--lime-bright); }

/* ---------- MOMENTE (vertikales Video) ---------- */
.momente{ padding:104px 0; }
.momente .m-grid{ display:grid; grid-template-columns:1fr .9fr; gap:64px; align-items:center; }
@media(max-width:880px){ .momente .m-grid{ grid-template-columns:1fr; gap:40px; } }
.momente h2{ font-size:clamp(32px,4.4vw,52px); font-weight:700; color:var(--green-deep); line-height:1.04; margin:16px 0 0; text-wrap:balance; }
.momente .m-lead{ margin-top:20px; max-width:48ch; font-size:17px; line-height:1.7; color:#34452F; }
.momente .chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
.momente .chips span{ background:var(--surface-2); color:var(--green-deep); font-size:13px; font-weight:600; padding:8px 15px; border-radius:30px; }
.momente .m-cta{ margin-top:30px; }
.momente .stage{ position:relative; justify-self:center; }
.momente .panel{ position:absolute; inset:auto -26px -26px auto; width:84%; height:88%; border-radius:30px; z-index:0; background:linear-gradient(150deg,var(--green),var(--green-deep)); }
.momente .frame{ position:relative; z-index:1; width:clamp(264px,34vw,340px); aspect-ratio:9/16; border-radius:30px; overflow:hidden; box-shadow:0 36px 70px -30px rgba(13,91,16,.55); background:#06280a; }
.momente .frame video{ width:100%; height:100%; object-fit:cover; display:block; }
.momente .badge{ position:absolute; z-index:3; top:16px; left:16px; display:flex; align-items:center; gap:8px; background:rgba(6,40,10,.5); backdrop-filter:blur(6px); border:1px solid rgba(255,255,255,.2); color:#fff; padding:7px 13px 7px 11px; border-radius:30px; font-size:12px; font-weight:600; letter-spacing:.03em; }
.momente .badge .live{ width:8px; height:8px; border-radius:50%; background:var(--lime-bright); animation:pulse 2.2s ease-out infinite; }
.momente .playbtn{ position:absolute; z-index:4; right:14px; bottom:14px; width:46px; height:46px; border-radius:50%; border:1px solid rgba(255,255,255,.25); background:rgba(6,40,10,.45); backdrop-filter:blur(6px); color:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:transform .16s var(--ease), background .25s var(--ease); }
.momente .playbtn:hover{ background:rgba(6,40,10,.7); }
.momente .playbtn:active{ transform:scale(.94); }
.momente .playbtn svg{ width:18px; height:18px; }
.momente .leaf{ position:absolute; z-index:2; left:-26px; top:18px; width:46px; color:var(--lime); animation:float 8s ease-in-out infinite; }

/* ---------- INTRO (Lade-Animation) ----------
   Per ID gescopt: die Klasse .intro nutzt auch der Einleitungsabsatz im
   Seitenkopf – ohne #-Bindung würde der ein grünes Vollbild-Panel erben. */
#intro{ position:fixed; inset:0; z-index:10000; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(160deg,#0D5B10,#0a4a0d); }
.intro-inner{ text-align:center; }
#intro img{ width:118px; height:118px; object-fit:contain; opacity:0; transform:scale(.82);
  animation:introLogo .85s var(--ease) .1s forwards; filter:drop-shadow(0 18px 30px rgba(0,0,0,.3)); }
.intro-word{ font-family:"Bricolage Grotesque",sans-serif; font-weight:700; font-size:clamp(26px,4vw,34px); color:#fff;
  letter-spacing:.01em; margin-top:16px; opacity:0; transform:translateY(12px); animation:introWord .7s var(--ease) .42s forwards; }
.intro-bar{ width:120px; height:3px; background:rgba(255,255,255,.18); border-radius:2px; margin:24px auto 0; overflow:hidden; }
.intro-bar i{ display:block; height:100%; width:100%; background:var(--lime-bright); border-radius:2px; transform:scaleX(0); transform-origin:left; animation:introBar 1.05s var(--ease) .55s forwards; }
#intro.done{ transform:translateY(-100%); transition:transform .9s cubic-bezier(0.76,0,0.24,1); }
body.intro-lock{ overflow:hidden; }
@keyframes introLogo{ to{ opacity:1; transform:scale(1); } }
@keyframes introWord{ to{ opacity:1; transform:none; } }
@keyframes introBar{ to{ transform:scaleX(1); } }

/* hover polish */
.contact-card{ transition:transform .3s var(--ease), box-shadow .3s var(--ease); }
.contact-card:hover{ transform:translateY(-3px); box-shadow:0 22px 46px -28px rgba(13,91,16,.4); }
.momente .chips span{ transition:transform .2s var(--ease), background .25s var(--ease); }
.momente .chips span:hover{ transform:translateY(-2px); background:#e2efce; }

/* ---------- END-CTA (einheitlicher Seitenabschluss) ---------- */
.endcta{ padding:104px 0 112px; text-align:center; }
.endcta .inner{ position:relative; max-width:760px; margin:0 auto; background:var(--surface); border:1px solid var(--rule); border-radius:28px; padding:clamp(38px,5vw,58px); overflow:hidden; box-shadow:0 30px 70px -44px rgba(13,91,16,.5); }
.endcta .inner::before{ content:""; position:absolute; z-index:0; width:340px; height:340px; top:-150px; right:-110px; border-radius:50%; background:radial-gradient(closest-side, rgba(141,199,29,.22), transparent 70%); pointer-events:none; }
.endcta .inner > *{ position:relative; z-index:1; }
.endcta h2{ font-size:clamp(30px,4.4vw,52px); font-weight:700; color:var(--green-deep); line-height:1.04; max-width:20ch; margin:14px auto 0; text-wrap:balance; }
.endcta p{ margin:16px auto 30px; color:var(--muted); font-size:17px; max-width:50ch; line-height:1.6; }
.endcta .actions{ justify-content:center; }

/* ---------- KONTAKT: Anfrage-Formular ---------- */
.contact-layout{ padding:56px 0 40px; display:grid; grid-template-columns:1.08fr .92fr; gap:54px; align-items:start; }
@media(max-width:920px){ .contact-layout{ grid-template-columns:1fr; gap:34px; } }
.form-card{ position:relative; background:var(--surface); border:1px solid var(--rule); border-radius:24px; padding:clamp(26px,3.4vw,40px); box-shadow:0 30px 64px -40px rgba(13,91,16,.45); overflow:hidden; }
.form-card::before{ content:""; position:absolute; inset:0 0 auto 0; height:5px; background:linear-gradient(90deg,var(--lime-bright),var(--green),var(--green-deep)); }
.form-card h2{ font-size:clamp(23px,2.6vw,30px); font-weight:700; color:var(--green-deep); margin:6px 0 4px; }
.form-card .form-sub{ color:var(--muted); font-size:15.5px; line-height:1.6; margin-bottom:26px; }

.lead-form{ display:grid; gap:18px; }
.field{ display:grid; gap:7px; }
.field.row2{ grid-template-columns:1fr 1fr; gap:18px; }
@media(max-width:520px){ .field.row2{ grid-template-columns:1fr; } }
.field > label{ font-size:13.5px; font-weight:600; color:var(--ink); letter-spacing:.005em; }
.field .req{ color:var(--lime); }
.field input,.field textarea{ width:100%; font-family:inherit; font-size:16px; color:var(--ink); background:var(--bg); border:1.5px solid var(--rule); border-radius:13px; padding:13px 15px; transition:border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); }
.field textarea{ min-height:130px; resize:vertical; line-height:1.55; }
.field input::placeholder,.field textarea::placeholder{ color:#9aab90; }
.field input:hover,.field textarea:hover{ border-color:rgba(13,91,16,.28); }
.field input:focus,.field textarea:focus{ outline:none; background:var(--surface); border-color:var(--green); box-shadow:0 0 0 4px rgba(141,199,29,.22); }
.field.invalid input,.field.invalid textarea{ border-color:#c0392b; box-shadow:0 0 0 4px rgba(192,57,43,.12); }
.field .err{ font-size:12.5px; color:#c0392b; font-weight:600; min-height:0; display:none; }
.field.invalid .err{ display:block; }

.consent{ display:grid; grid-template-columns:auto 1fr; gap:12px; align-items:start; margin-top:2px; }
.consent input{ width:20px; height:20px; margin-top:2px; accent-color:var(--green); flex:none; cursor:pointer; }
.consent label{ font-size:13.5px; line-height:1.5; color:var(--muted); }
.consent a{ color:var(--green); font-weight:600; text-decoration:none; }
.consent a:hover{ text-decoration:underline; }
.consent.invalid label{ color:#c0392b; }
.consent .err{ grid-column:2; font-size:12.5px; color:#c0392b; font-weight:600; display:none; }
.consent.invalid .err{ display:block; }

/* Honeypot: für Menschen unsichtbar, für Bots ein Köder */
.hp{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }

.form-actions{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; margin-top:6px; }
.form-actions .btn{ border:0; cursor:pointer; font-family:inherit; }
.form-note{ font-size:13px; color:var(--muted); }

.form-alert{ border-radius:14px; padding:14px 18px; font-size:14.5px; line-height:1.5; margin-bottom:22px; border:1px solid; }
.form-alert.error{ background:#fdecea; border-color:#f3c6c0; color:#a3271b; }

/* Erfolgs-Zustand nach dem Absenden */
.form-success{ text-align:center; padding:18px 6px 6px; }
.form-success .seal{ width:74px; height:74px; margin:0 auto 18px; border-radius:50%; background:radial-gradient(closest-side,var(--surface-2),var(--surface)); border:2px solid var(--lime-bright); display:flex; align-items:center; justify-content:center; color:var(--green); animation:pop .5s var(--ease) both; }
.form-success .seal svg{ width:34px; height:34px; }
.form-success h2{ font-size:clamp(24px,3vw,32px); color:var(--green-deep); font-weight:700; margin-bottom:8px; }
.form-success p{ color:var(--muted); font-size:16px; line-height:1.65; max-width:42ch; margin:0 auto; }
@keyframes pop{ 0%{ transform:scale(.7); opacity:0; } 60%{ transform:scale(1.08); } 100%{ transform:scale(1); opacity:1; } }

/* ---------- FAQ-Akkordeon ---------- */
.faq-section{ padding:40px 0 96px; }
.faq-head{ max-width:60ch; margin-bottom:30px; }
.faq-head h2{ font-size:clamp(26px,3.4vw,40px); font-weight:700; color:var(--green-deep); margin-top:14px; line-height:1.08; }
.faq{ max-width:820px; display:grid; gap:14px; }
.faq details{ background:var(--surface); border:1px solid var(--rule); border-radius:16px; padding:0 24px; transition:border-color .25s var(--ease), box-shadow .25s var(--ease); }
.faq details[open]{ border-color:rgba(13,91,16,.26); box-shadow:0 18px 40px -30px rgba(13,91,16,.5); }
.faq summary{ list-style:none; cursor:pointer; padding:20px 0; display:flex; align-items:center; justify-content:space-between; gap:18px; font-family:"Bricolage Grotesque",sans-serif; font-weight:600; font-size:18px; color:var(--green-deep); }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary .ic{ flex:none; width:30px; height:30px; border-radius:50%; background:var(--surface-2); color:var(--green-deep); display:flex; align-items:center; justify-content:center; position:relative; transition:transform .3s var(--ease), background .25s var(--ease); }
.faq summary .ic::before,.faq summary .ic::after{ content:""; position:absolute; background:currentColor; border-radius:2px; }
.faq summary .ic::before{ width:13px; height:2.5px; }
.faq summary .ic::after{ width:2.5px; height:13px; transition:transform .3s var(--ease); }
.faq details[open] summary .ic{ background:var(--lime-bright); transform:rotate(90deg); }
.faq details[open] summary .ic::after{ transform:scaleY(0); }
.faq .answer{ padding:0 0 22px; color:#34452F; font-size:16px; line-height:1.7; max-width:64ch; }

/* ---------- RÄUME: Galerie ---------- */
.rooms{ padding:30px 0 40px; }
.rooms-head{ max-width:62ch; margin-bottom:38px; }
.rooms-head h2{ font-size:clamp(28px,4vw,46px); font-weight:700; color:var(--green-deep); margin-top:14px; line-height:1.05; text-wrap:balance; }
.rooms-head p{ margin-top:16px; color:var(--muted); font-size:16.5px; line-height:1.65; }
.rooms-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(290px,1fr)); gap:22px; }
.room{ position:relative; border-radius:20px; overflow:hidden; aspect-ratio:4/3; background:var(--surface-2); box-shadow:0 20px 44px -30px rgba(13,91,16,.4); }
.room img{ width:100%; height:100%; object-fit:cover; transition:transform 1s var(--ease); }
.room::after{ content:""; position:absolute; inset:0; background:linear-gradient(0deg, rgba(6,40,10,.62), transparent 52%); opacity:0; transition:opacity .35s var(--ease); }
.room figcaption{ position:absolute; z-index:2; left:18px; right:18px; bottom:16px; color:#fff; font-family:"Bricolage Grotesque",sans-serif; font-weight:600; font-size:16px; letter-spacing:-.01em; transform:translateY(8px); opacity:0; transition:transform .35s var(--ease), opacity .35s var(--ease); text-shadow:0 2px 12px rgba(0,0,0,.4); }
.room:hover img{ transform:scale(1.06); }
.room:hover::after{ opacity:1; }
.room:hover figcaption{ transform:none; opacity:1; }
.room.has-cap::after{ opacity:.55; }
.room.has-cap figcaption{ opacity:1; transform:none; }
.gallery-empty{ grid-column:1/-1; background:var(--surface); border:1.5px dashed var(--rule); border-radius:20px; padding:46px 30px; text-align:center; color:var(--muted); }
.gallery-empty b{ display:block; color:var(--green-deep); font-family:"Bricolage Grotesque",sans-serif; font-size:18px; margin-bottom:8px; }
.gallery-empty code{ background:var(--surface-2); padding:2px 8px; border-radius:6px; font-size:13px; color:var(--green-deep); }

/* ---------- RÄUME: cinematische Scroll-Journey ---------- */
.journey{ position:relative; }                 /* height inline = scenes * 100vh */
.journey .stage{ position:sticky; top:0; height:100vh; overflow:hidden; background:#0c0c0d; }
.journey .scene{ position:absolute; inset:0; opacity:0; will-change:opacity, transform; }
/* Ohne JS sichtbar: erste Szene + Titel stehen statisch */
.journey .scene[data-i="0"],.journey .cap[data-i="0"]{ opacity:1; }
.journey .scene img{ width:100%; height:100%; object-fit:cover; }
.journey .scrim{ position:absolute; inset:0; z-index:3; pointer-events:none;
  background:linear-gradient(180deg, rgba(0,0,0,.42), transparent 15%),
             linear-gradient(90deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.32) 40%, rgba(0,0,0,0) 70%),
             linear-gradient(0deg, rgba(0,0,0,.48), transparent 42%); }
.journey .j-grain{ position:absolute; inset:0; z-index:4; pointer-events:none; opacity:.05;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.journey .caps{ position:absolute; inset:0; z-index:6; display:flex; align-items:center; }
.journey .cap{ position:absolute; left:clamp(24px,6vw,90px); right:clamp(24px,6vw,90px); max-width:680px; opacity:0; will-change:opacity, transform; }
.journey .cap .ey{ display:inline-flex; align-items:center; gap:12px; font-size:13px; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:var(--lime-bright); margin-bottom:18px; }
.journey .cap .ey::before{ content:""; width:34px; height:2px; background:var(--lime-bright); }
.journey .cap h2{ font-family:"Bricolage Grotesque",sans-serif; font-weight:700; font-size:clamp(38px,6.4vw,84px); line-height:.98; letter-spacing:-.03em; color:#fff; text-wrap:balance; }
.journey .cap p{ margin-top:20px; max-width:42ch; font-size:clamp(16px,2vw,20px); line-height:1.55; color:rgba(255,255,255,.86); }
.journey .label{ position:absolute; z-index:7; display:flex; align-items:center; gap:10px; opacity:0; will-change:opacity; }
.journey .label .dot{ width:11px; height:11px; border-radius:50%; background:var(--lime-bright); box-shadow:0 0 0 5px rgba(141,199,29,.25); flex:none; }
.journey .label span{ font-size:12.5px; font-weight:600; letter-spacing:.05em; color:#fff; background:rgba(0,0,0,.62); padding:6px 12px; border-radius:30px; border:1px solid rgba(255,255,255,.2); white-space:nowrap; }
.journey .progress{ position:absolute; z-index:8; right:clamp(20px,4vw,40px); top:50%; transform:translateY(-50%); display:flex; flex-direction:column; gap:14px; }
.journey .progress i{ width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,.3); transition:background .3s var(--ease), transform .3s var(--ease); }
.journey .progress i.on{ background:var(--lime-bright); transform:scale(1.35); }
.journey .scroll-hint{ position:absolute; z-index:8; left:50%; bottom:26px; transform:translateX(-50%); color:rgba(255,255,255,.7); font-size:12px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; display:flex; flex-direction:column; align-items:center; gap:8px; }
.journey .scroll-hint::after{ content:""; width:1px; height:26px; background:linear-gradient(rgba(255,255,255,.7),transparent); animation:hintdrop 1.8s ease-in-out infinite; }
@keyframes hintdrop{ 0%{ transform:scaleY(.3); transform-origin:top; opacity:0; } 40%{ opacity:1; } 100%{ transform:scaleY(1); transform-origin:top; opacity:0; } }
@media(max-width:680px){ .journey .progress{ display:none; } .journey .cap p{ display:none; } }
/* statischer Fallback (reduced-motion / kein JS) */
.journey.static{ height:auto!important; }
.journey.static .stage{ position:static; height:auto; }
.journey.static .scene{ position:relative; opacity:1; height:78vh; }
.journey.static .caps,.journey.static .progress,.journey.static .label,.journey.static .scroll-hint{ display:none; }

/* ---------- SCROLL-REVEAL (Text Wort für Wort) ---------- */
.scroll-reveal{ transform-origin:0% 50%; }
.scroll-reveal .word{ display:inline-block; }
/* Einmalig per IntersectionObserver ausgelöste CSS-Transition (kein Scroll-Scrub):
   läuft komplett auf dem Compositor, keine Arbeit pro Scroll-Frame. */
/* Kippung nur für große Statement-Texte – auf Fließtext wirkt sie schief. */
body.anim .scroll-reveal.statement{ transform:rotate(3deg); transition:transform .9s var(--ease); }
body.anim .scroll-reveal.statement.in{ transform:none; }
body.anim .scroll-reveal .word{ opacity:0; transform:translateY(.4em); filter:blur(6px);
  transition:opacity .6s var(--ease), transform .6s var(--ease), filter .6s var(--ease); }
body.anim .scroll-reveal.in .word{ opacity:1; transform:none; filter:blur(0); }
.statement-wrap{ padding:clamp(70px,9vw,120px) 0 clamp(30px,4vw,50px); }
.scroll-reveal.statement{ font-family:"Bricolage Grotesque",sans-serif; font-weight:700; font-size:clamp(28px,5vw,58px); line-height:1.12; letter-spacing:-.025em; color:var(--green-deep); max-width:22ch; text-wrap:balance; }

/* ---------- RÄUME: sticky Gruppen-Quicknav ---------- */
.rooms-nav{ position:sticky; top:66px; z-index:40; background:#F1F7E6; border-top:1px solid var(--rule); border-bottom:1px solid var(--rule); }
.rooms-nav-in{ display:flex; gap:8px; overflow-x:auto; padding:11px clamp(20px,5vw,56px); scrollbar-width:none; -ms-overflow-style:none; }
.rooms-nav-in::-webkit-scrollbar{ display:none; }
.rooms-nav a{ flex:none; display:inline-flex; align-items:center; gap:8px; text-decoration:none; font-size:13.5px; font-weight:600; color:var(--green-deep); padding:8px 15px; border-radius:999px; border:1px solid var(--rule); background:var(--surface); transition:background .22s var(--ease), border-color .22s var(--ease), transform .16s var(--ease); }
.rooms-nav a span{ font-family:"Bricolage Grotesque",sans-serif; font-weight:700; font-size:11px; color:var(--lime); }
.rooms-nav a:hover{ background:var(--surface-2); border-color:transparent; }
.rooms-nav a:active{ transform:scale(.96); }
.rooms-nav a.current{ background:var(--green-deep); border-color:transparent; color:#fff; }
.rooms-nav a.current span{ color:var(--lime-bright); }

/* ---------- RÄUME: editoriale Gruppen-Abschnitte ---------- */
.room-group{ padding:clamp(56px,8vw,100px) 0; scroll-margin-top:128px;
  content-visibility:auto; contain-intrinsic-size:auto 760px; }
.room-group.alt{ background:var(--surface-2); }
.rg-inner{ display:grid; grid-template-columns:.86fr 1.14fr; gap:clamp(30px,5vw,64px); align-items:center; }
.room-group.alt .rg-intro{ order:2; }
.room-group.alt .rg-photos{ order:1; }
@media(max-width:920px){
  .rg-inner{ grid-template-columns:1fr; gap:28px; }
  .room-group.alt .rg-intro,.room-group.alt .rg-photos{ order:0; }
}
.rg-intro{ position:relative; }
.rg-no{ display:block; font-family:"Bricolage Grotesque",sans-serif; font-weight:800; font-size:clamp(58px,8vw,112px); line-height:.78; color:transparent; -webkit-text-stroke:2px rgba(13,91,16,.16); margin-bottom:14px; }
.rg-intro .kicker{ margin-bottom:10px; }
.rg-intro h2{ font-size:clamp(28px,4vw,46px); font-weight:700; color:var(--green-deep); line-height:1.03; text-wrap:balance; }
.rg-motto{ font-family:"Bricolage Grotesque",sans-serif; font-style:italic; font-weight:500; color:var(--green); font-size:clamp(17px,2vw,21px); margin-top:12px; }
.rg-text{ margin-top:18px; font-size:17px; line-height:1.72; color:#34452F; max-width:46ch; }
.rg-meta{ margin-top:20px; font-size:11.5px; letter-spacing:.13em; text-transform:uppercase; color:var(--muted); font-weight:600; }

.rg-photos{ position:relative; }
.rg-feat{ position:relative; border-radius:24px; overflow:hidden; aspect-ratio:4/3; box-shadow:0 34px 70px -38px rgba(13,91,16,.55); }
.rg-feat img{ width:100%; height:100%; object-fit:cover; transition:transform 1.1s var(--ease); }
.rg-feat:hover img{ transform:scale(1.05); }
.rg-rest{ margin-top:16px; display:grid; grid-template-columns:repeat(auto-fit,minmax(148px,1fr)); gap:16px; }
.rg-rest figure{ position:relative; border-radius:16px; overflow:hidden; aspect-ratio:1/1; box-shadow:0 20px 44px -32px rgba(13,91,16,.5); }
.rg-rest img{ width:100%; height:100%; object-fit:cover; transition:transform .9s var(--ease); }
.rg-rest figure:hover img{ transform:scale(1.06); }
.rg-photos figcaption{ position:absolute; z-index:2; left:14px; bottom:13px; background:rgba(0,0,0,.6); color:#fff; font-size:12.5px; font-weight:600; letter-spacing:.01em; padding:6px 12px; border-radius:30px; border:1px solid rgba(255,255,255,.2); }
.rg-rest figcaption{ left:10px; bottom:10px; font-size:11.5px; padding:5px 10px; }

/* ---------- MOTION ---------- */
@keyframes draw{ to{ stroke-dashoffset:0; } }
@keyframes pulse{ 0%{ box-shadow:0 0 0 0 rgba(105,179,30,.5);} 70%{ box-shadow:0 0 0 10px rgba(105,179,30,0);} 100%{ box-shadow:0 0 0 0 rgba(105,179,30,0);} }
@keyframes float{ 0%,100%{ transform:translateY(0) rotate(0deg);} 50%{ transform:translateY(-14px) rotate(8deg);} }
/* Sanftes, organisches Blätter-Schwingen (nur transform -> Compositor, kein Jank). */
@keyframes leafsway{
  0%   { transform:translateY(0) rotate(-7deg); }
  25%  { transform:translateY(-9px) rotate(5deg); }
  50%  { transform:translateY(-4px) rotate(11deg); }
  75%  { transform:translateY(-13px) rotate(-3deg); }
  100% { transform:translateY(0) rotate(-7deg); }
}
@keyframes drift{ 0%,100%{ transform:translate(0,0);} 50%{ transform:translate(-22px,18px);} }

/* block build-up: the page assembles block by block */
@media (prefers-reduced-motion: no-preference){
  body.anim .block{ opacity:0; transform:translateY(34px) scale(.985); transition:opacity .6s var(--ease), transform .8s var(--ease); }
  body.anim .block.in{ opacity:1; transform:none; }
}
@media (prefers-reduced-motion: reduce){
  .leaf-float,.hours .dot,.orb,.momente .leaf,.momente .badge .live,
  .form-success .seal,.journey .scroll-hint::after,
  .map-consent .mc-pin,.open-pill.is-open i{ animation:none!important; }
  .uline path{ stroke-dashoffset:0; }
  .vine .grow{ transform:scaleY(1)!important; }
  html{ scroll-behavior:auto; }
  /* Journey ohne JS/Bewegung: Szenen gestapelt statt sticky */
  .journey:not(.static){ height:auto!important; }
  .journey:not(.static) .stage{ position:static; height:auto; }
  .journey:not(.static) .scene{ position:relative; opacity:1; height:78vh; }
  .journey:not(.static) .caps,.journey:not(.static) .progress,
  .journey:not(.static) .label,.journey:not(.static) .scroll-hint{ display:none; }
}

/* =========================================================
   KONTAKT: Schnellkontakt, Info-Karte, Karten-Consent
   ========================================================= */

/* ---------- Schnellkontakt-Kacheln ---------- */
.contact-quick{ padding:6px 0 6px; }
.cq-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
@media(max-width:760px){ .cq-grid{ grid-template-columns:1fr; gap:13px; } }
.cq{ display:flex; align-items:center; gap:16px; background:var(--surface); border:1px solid var(--rule); border-radius:18px; padding:17px 20px; text-decoration:none; color:var(--ink);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.cq:hover{ transform:translateY(-3px); border-color:transparent; box-shadow:0 22px 46px -28px rgba(13,91,16,.42); }
.cq:active{ transform:translateY(-1px) scale(.99); }
.cq .ic{ flex:none; width:48px; height:48px; border-radius:14px; background:var(--surface-2); color:var(--green-deep); display:flex; align-items:center; justify-content:center; transition:background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); }
.cq:hover .ic{ background:var(--lime-bright); transform:rotate(-6deg) scale(1.06); }
.cq .ic svg{ width:22px; height:22px; }
.cq-body{ min-width:0; }
.cq small{ display:block; font-size:11.5px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--green); margin-bottom:2px; }
.cq b{ display:block; font-family:"Bricolage Grotesque",sans-serif; font-size:15px; color:var(--green-deep); font-weight:600; overflow-wrap:anywhere; }

/* ---------- Info-Karte: Icon-Liste + Ansprechpartnerin ---------- */
.contact-list{ list-style:none; display:grid; gap:16px; margin:16px 0 2px; }
.contact-list li{ display:grid; grid-template-columns:auto 1fr; gap:14px; align-items:center; font-size:16px; line-height:1.5; color:#34452F; }
.contact-list .ci{ flex:none; width:40px; height:40px; border-radius:12px; background:var(--surface-2); color:var(--green); display:flex; align-items:center; justify-content:center; }
.contact-list .ci svg{ width:19px; height:19px; }
.contact-list b{ color:var(--ink); font-weight:600; }
.contact-list a{ color:var(--green); text-decoration:none; font-weight:600; }
.contact-list a:hover{ text-decoration:underline; }
.contact-list small{ color:var(--muted); font-size:13.5px; }

.person{ display:flex; align-items:center; gap:14px; margin-top:22px; padding-top:20px; border-top:1px solid var(--rule); }
.person .avatar{ flex:none; width:48px; height:48px; border-radius:50%; background:linear-gradient(150deg,var(--lime),var(--green)); color:#fff;
  font-family:"Bricolage Grotesque",sans-serif; font-weight:700; font-size:16px; letter-spacing:.01em; display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 22px -12px rgba(13,91,16,.7); }
.person b{ display:block; font-family:"Bricolage Grotesque",sans-serif; font-size:16px; color:var(--green-deep); font-weight:700; }
.person small{ color:var(--muted); font-size:13px; }

/* ---------- Öffnungszeiten-Kopf + „jetzt geöffnet"-Pille ---------- */
.oh-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-bottom:8px; }
.oh-head h2{ margin-bottom:0; }
.open-pill{ display:inline-flex; align-items:center; gap:8px; font-size:12.5px; font-weight:600; padding:6px 13px 6px 11px; border-radius:999px; white-space:nowrap; }
.open-pill i{ width:8px; height:8px; border-radius:50%; flex:none; }
.open-pill.is-open{ background:rgba(105,179,30,.16); color:var(--green-deep); }
.open-pill.is-open i{ background:var(--lime); animation:pulse 2.4s ease-out infinite; }
.open-pill.is-closed{ background:var(--surface-2); color:var(--muted); }
.open-pill.is-closed i{ background:#b6c2ab; }

/* ---------- Karte mit Einwilligung (DSGVO) ---------- */
.map-wrap{ position:relative; margin-top:24px; border-radius:20px; overflow:hidden; aspect-ratio:4/3; scroll-margin-top:96px;
  box-shadow:0 24px 50px -36px rgba(13,91,16,.5); }
.map-wrap iframe{ position:absolute; inset:0; width:100%; height:100%; aspect-ratio:auto; border:0; border-radius:0; filter:saturate(.92); }
.map-consent{ position:absolute; inset:0; z-index:2; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:10px; padding:30px 26px;
  background-color:var(--surface-2);
  background-image:radial-gradient(closest-side, rgba(141,199,29,.18), transparent 72%); background-position:-20% -30%; background-size:80% 80%; background-repeat:no-repeat; }
.map-consent::before{ content:""; position:absolute; inset:0; z-index:0; opacity:.55; pointer-events:none;
  background-image:linear-gradient(rgba(13,91,16,.06) 1px,transparent 1px),linear-gradient(90deg, rgba(13,91,16,.06) 1px,transparent 1px);
  background-size:34px 34px; }
.map-consent > *{ position:relative; z-index:1; }
.map-consent .mc-pin{ width:54px; height:54px; border-radius:50%; background:var(--surface); border:2px solid var(--lime-bright); color:var(--green);
  display:flex; align-items:center; justify-content:center; box-shadow:0 14px 30px -16px rgba(13,91,16,.55); animation:float 6s ease-in-out infinite; }
.map-consent .mc-pin svg{ width:26px; height:26px; }
.map-consent b{ font-family:"Bricolage Grotesque",sans-serif; font-size:20px; color:var(--green-deep); font-weight:700; }
.map-consent p{ font-size:13.5px; line-height:1.55; color:var(--muted); max-width:40ch; }
.map-consent .btn{ margin-top:4px; border:0; cursor:pointer; font-family:inherit; }
.map-consent .mc-remember{ display:inline-flex; align-items:center; gap:8px; font-size:12.5px; color:var(--muted); cursor:pointer; }
.map-consent .mc-remember input{ width:16px; height:16px; accent-color:var(--green); cursor:pointer; }
.map-consent .mc-link{ font-size:13px; font-weight:600; color:var(--green); text-decoration:none; }
.map-consent .mc-link:hover{ text-decoration:underline; }

/* ---------- COOKIE-BANNER (süßer Löwenherz-Stil) ---------- */
.cookie-banner{ position:fixed; z-index:9000; left:50%; bottom:clamp(14px,3vw,26px); transform:translateX(-50%) translateY(22px);
  width:min(580px, calc(100vw - 28px)); opacity:0; pointer-events:none;
  transition:opacity .4s var(--ease), transform .5s var(--ease); }
.cookie-banner.show{ opacity:1; transform:translateX(-50%) translateY(0); pointer-events:auto; }
.ck-inner{ position:relative; background:var(--surface); border:1px solid var(--rule); border-radius:22px; padding:22px 24px;
  box-shadow:0 34px 80px -34px rgba(13,91,16,.6); overflow:hidden; }
.ck-inner::before{ content:""; position:absolute; inset:0 0 auto 0; height:5px; background:linear-gradient(90deg,var(--lime-bright),var(--green),var(--green-deep)); }
.ck-top{ display:flex; align-items:center; gap:12px; margin-bottom:8px; }
.ck-emoji{ width:40px; height:40px; border-radius:12px; background:var(--surface-2); display:flex; align-items:center; justify-content:center; font-size:20px; flex:none; }
.ck-inner h2{ font-family:"Bricolage Grotesque",sans-serif; font-size:19px; font-weight:700; color:var(--green-deep); letter-spacing:-.01em; }
.ck-inner p{ font-size:13.5px; line-height:1.6; color:#34452F; }
.ck-inner p a{ color:var(--green); font-weight:600; text-decoration:none; }
.ck-inner p a:hover{ text-decoration:underline; }
.ck-actions{ display:flex; gap:10px; margin-top:16px; }
.ck-actions .btn{ flex:1 1 auto; text-align:center; border:0; cursor:pointer; font-family:inherit; padding:13px 22px; }
.btn-soft{ background:var(--surface-2); color:var(--green-deep); box-shadow:none; }
.btn-soft:hover{ background:#e2efce; color:var(--green-deep); }
@media(max-width:520px){ .ck-actions{ flex-wrap:wrap; } .ck-actions .btn{ flex-basis:100%; } }

/* ---------- STARTSEITE: Highlight-Clips (zwei Hochkant-Videos) ---------- */
.clips{ padding:30px 0 104px; }
.clips-head{ max-width:60ch; margin-bottom:42px; }
.clips-head h2{ font-size:clamp(30px,4.2vw,50px); font-weight:700; color:var(--green-deep); margin-top:14px; line-height:1.04; text-wrap:balance; }
.clips-head p{ margin-top:16px; color:var(--muted); font-size:16.5px; line-height:1.65; max-width:56ch; }
.clip-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:clamp(20px,3vw,36px); max-width:760px; }
@media(max-width:680px){ .clip-grid{ grid-template-columns:1fr; max-width:340px; margin:0 auto; gap:24px; } }
.clip{ margin:0; }
.clip-frame{ position:relative; aspect-ratio:9/16; border-radius:26px; overflow:hidden; background:#06280a; cursor:pointer;
  box-shadow:0 34px 70px -34px rgba(13,91,16,.55); transition:transform .4s var(--ease), box-shadow .4s var(--ease); }
.clip-frame:hover{ transform:translateY(-4px); box-shadow:0 44px 80px -34px rgba(13,91,16,.6); }
.clip-video{ width:100%; height:100%; object-fit:cover; display:block; }
.clip-frame::after{ content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(0deg, rgba(6,40,10,.62), transparent 44%); opacity:1; transition:opacity .4s var(--ease); }
.clip-frame.playing::after{ opacity:0; }
.clip-tag{ position:absolute; z-index:2; left:15px; bottom:15px; color:#fff; font-family:"Bricolage Grotesque",sans-serif; font-weight:600; font-size:15px; letter-spacing:-.01em;
  text-shadow:0 2px 12px rgba(0,0,0,.5); transition:opacity .35s var(--ease), transform .35s var(--ease); }
.clip-frame.playing .clip-tag{ opacity:0; transform:translateY(8px); }
.clip-play{ position:absolute; z-index:3; left:50%; top:50%; transform:translate(-50%,-50%); width:64px; height:64px; border-radius:50%;
  border:1px solid rgba(255,255,255,.3); background:rgba(6,40,10,.42); backdrop-filter:blur(6px); color:#fff; cursor:pointer;
  display:flex; align-items:center; justify-content:center; transition:transform .2s var(--ease), background .25s var(--ease), opacity .25s var(--ease); }
.clip-play:hover{ background:rgba(6,40,10,.66); }
.clip-frame:hover .clip-play{ transform:translate(-50%,-50%) scale(1.07); }
.clip-play:active{ transform:translate(-50%,-50%) scale(.95); }
.clip-play svg{ width:26px; height:26px; margin-left:3px; }
.clip-frame.playing .clip-play{ opacity:0; pointer-events:none; }
