/* Landingpage - Stilrichtung "Editorial Naturalism".
   Redaktionelles Magazin-Layout mit organischer SVG-Tiefe in der CI-Grüntönung.
   Fonts (Fraunces Display + InterVar Body) sind self-hosted (@font-face im <head>).
   CI-Farben kommen als --c-primary/--c-secondary/--c-akzent aus den Stammdaten. */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --max: 1180px;

  /* Aus der Primärfarbe abgeleitete Tints/Shades (oklab-Mischung). */
  --p-50:  color-mix(in oklab, var(--c-primary), white 92%);
  --p-100: color-mix(in oklab, var(--c-primary), white 84%);
  --p-200: color-mix(in oklab, var(--c-primary), white 70%);
  --p-700: color-mix(in oklab, var(--c-primary), black 22%);

  --ink: #16201c;
  --muted: #56655d;
  --line: color-mix(in oklab, var(--c-primary), white 80%);
  --bg: #fbfcfb;
  --surface: #ffffff;

  --shadow-1: 0 1px 2px rgba(20,32,28,.06), 0 2px 8px rgba(20,32,28,.05);
  --shadow-2: 0 12px 40px -12px rgba(20,32,28,.22);
  --glow: 0 18px 50px -18px color-mix(in oklab, var(--c-primary), transparent 55%);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;

  --ease: cubic-bezier(.16,1,.3,1);
  --dur: .55s;

  --fs-hero: clamp(3rem, 2rem + 6vw, 6.5rem);
  --fs-h2:   clamp(2rem, 1.4rem + 2.6vw, 3.25rem);
  --fs-h3:   clamp(1.25rem, 1.05rem + .8vw, 1.6rem);
  --fs-lead: clamp(1.12rem, 1rem + .55vw, 1.42rem);

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "InterVar", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 82px; }

body.lp {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* Platz für den fixierten Header (immer sichtbar). */
  padding-top: 74px;
}

.lp-container { max-width: var(--max); margin: 0 auto; padding: 0 1.6rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.08; letter-spacing: -.012em; color: var(--c-secondary); }

/* Atmosphaere: feines Topografie-Pattern im Hintergrund. */
.lp-atmo {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .045;
}
.lp-atmo svg { width: 100%; height: 100%; }
/* Stapelkontext für normale Inhalte - aber NICHT für fixierte Elemente
   (Header/Editbar/Editfab), sonst würde 'position: relative' deren 'fixed'
   überschreiben und das Sticky-Verhalten kaputtmachen. */
body.lp > *:not(.lp-atmo):not(.lp-header):not(.lp-editbar):not(.lp-editfab) { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .72rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .98rem;
  text-decoration: none; cursor: pointer;
  background: var(--c-primary); color: #fff; border: 2px solid var(--c-primary);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .2s, color .2s;
}
.lp-btn:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.lp-btn:active { transform: translateY(0) scale(.98); }
.lp-btn:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; }
.lp-btn-lg { padding: .95rem 2.1rem; font-size: 1.06rem; }
.lp-btn-sm { padding: .5rem 1.1rem; font-size: .88rem; }
.lp-btn-ghost { background: transparent; color: var(--c-primary); }
.lp-btn-ghost:hover { background: var(--p-50); color: var(--p-700); box-shadow: none; }
.lp-btn-akzent { background: var(--c-akzent); border-color: var(--c-akzent); color: #2a2400; }
.lp-arrow { width: 18px; height: 18px; transition: transform .22s var(--ease); }
.lp-btn-ghost:hover .lp-arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.lp-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.lp-header.is-scrolled {
  background: color-mix(in oklab, var(--surface), transparent 12%);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-1);
}
.lp-header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.lp-brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.lp-brand img { border-radius: 9px; }
.lp-brand-name { font-family: var(--display); font-weight: 600; font-size: 1.3rem; color: var(--c-secondary); letter-spacing: -.01em; }
.lp-nav { display: flex; align-items: center; gap: 1.7rem; }
.lp-nav a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: .96rem; position: relative; }
.lp-nav a:not(.lp-btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--c-primary); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.lp-nav a:not(.lp-btn):hover::after { transform: scaleX(1); }
.lp-nav a:not(.lp-btn):hover { color: var(--c-primary); }
.lp-login { color: var(--muted) !important; font-size: .85rem !important; }
@media (max-width: 820px) {
  .lp-nav { gap: 1rem; }
  .lp-nav a:not(.lp-btn):not(.lp-login) { display: none; }
}

/* ---------- Hero ---------- */
.lp-hero {
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 4vw, 4rem);
  background:
    radial-gradient(120% 130% at 92% 4%, color-mix(in oklab, var(--c-akzent), transparent 90%), transparent 55%),
    linear-gradient(168deg, var(--p-50), var(--bg) 62%);
}
.lp-hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center; min-height: min(58vh, 520px);
}
.lp-kicker {
  display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 1.4rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--p-700);
}
.lp-kicker-dot { width: 9px; height: 9px; fill: var(--c-akzent); }
.lp-hero-title { font-size: var(--fs-hero); margin: 0 0 1.6rem; }
.lp-hero-lead-word { display: block; color: var(--c-secondary); }
.lp-mark { position: relative; isolation: isolate; font-style: normal; color: var(--c-primary); display: inline-block; }
.lp-mark-underline {
  position: absolute; left: 0; right: 0; bottom: .02em; width: 100%; height: .3em;
  stroke: var(--c-akzent); stroke-width: 7; stroke-linecap: round; overflow: visible;
  z-index: -1; /* hinter den Text (Highlighter-Effekt), nicht darueber */
}
.lp-hero-lead { font-size: var(--fs-lead); color: var(--muted); max-width: 56ch; margin: 0 0 2.2rem; }
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.lp-hero-visual { display: flex; justify-content: center; }
.lp-hero-art { width: 100%; max-width: 480px; height: auto; overflow: visible; }
.lp-art-leaf { transform-origin: center; }
@media (prefers-reduced-motion: no-preference) {
  .lp-art-leaf { animation: lpLeafFloat 9s ease-in-out infinite; }
  .lp-art-seed { animation: lpSeed 6s ease-in-out infinite; }
  @keyframes lpLeafFloat { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-10px) rotate(-1.4deg); } }
  @keyframes lpSeed { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
}
@media (max-width: 880px) {
  .lp-hero-grid { grid-template-columns: 1fr; text-align: left; }
  .lp-hero-visual { order: -1; max-width: 320px; }
  .lp-hero-art { max-width: 320px; }
}

/* ---------- Sections ---------- */
.lp-section { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.lp-section-alt { background: var(--p-50); }
.lp-section-head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 46ch; }
.lp-eyebrow {
  margin: 0 0 .6rem; font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--c-primary);
}
.lp-section-title { font-size: var(--fs-h2); margin: 0; }
.lp-muted { color: var(--muted); }
.lp-small { font-size: .85rem; }
.lp-empty {
  padding: 2.5rem; text-align: center; color: var(--muted);
  border: 1px dashed var(--line); border-radius: var(--r-md); background: var(--surface);
}

/* ---------- Cards (Basis) ---------- */
.lp-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

/* ---------- Bento (Default-Über-Bereich) ---------- */
.lp-bento {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1.6fr 1fr;
  grid-template-areas: "lead stat" "lead quote";
}
.lp-bento-lead { grid-area: lead; }
.lp-bento-stat { grid-area: stat; display: flex; flex-direction: column; justify-content: center; }
.lp-bento-quote { grid-area: quote; }
.lp-card--accent { background: var(--p-50); border-color: var(--p-200); }
.lp-card--dark { background: var(--c-secondary); color: #eaf1ec; border: none; }
.lp-bento-text { font-family: var(--display); font-size: var(--fs-h3); line-height: 1.45; color: var(--c-secondary); margin: 0; }
.lp-stat-num { font-family: var(--display); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 600; color: var(--c-primary); line-height: 1; }
.lp-stat-label { color: var(--muted); margin-top: .4rem; font-weight: 600; }
.lp-quote { font-family: var(--display); font-size: var(--fs-h3); margin: 0; color: #fff; }
@media (max-width: 760px) {
  .lp-bento { grid-template-columns: 1fr; grid-template-areas: "lead" "stat" "quote"; }
}

/* ---------- Prose (CMS-Bloecke) ---------- */
.lp-prose { max-width: 820px; }
.lp-prose h2 { font-size: var(--fs-h2); margin: 0 0 1rem; }
.lp-prose h3 { font-size: var(--fs-h3); margin: 2rem 0 .8rem; }
.lp-prose p { font-size: 1.1rem; color: #36433d; margin: 0 0 1.1rem; }
.lp-prose a { color: var(--c-primary); }
/* Eingebettete CMS-Block-Sections im Prose-Container neutralisieren. */
.lp-prose .site-hero,
.lp-prose .site-text,
.lp-prose .site-cta { padding: 0; background: none; }
.lp-prose .site-hero__titel { font-size: var(--fs-h2); }
.lp-prose .site-cta__btn {
  display: inline-flex; align-items: center; padding: .8rem 1.8rem; border-radius: 999px;
  background: var(--c-primary); color: #fff; text-decoration: none; font-weight: 600; margin-top: 1rem;
}

/* ---------- Timeline (Termine) ---------- */
.lp-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.lp-timeline::before {
  content: ""; position: absolute; left: 88px; top: 6px; bottom: 6px; width: 2px;
  background: var(--line);
}
.lp-tl-item {
  position: relative; display: grid; grid-template-columns: 78px 1fr; gap: 2rem;
  padding: 1.4rem 0; align-items: start;
  transition: transform .22s var(--ease);
}
.lp-tl-item:hover { transform: translateX(4px); }
.lp-tl-date { display: flex; flex-direction: column; align-items: flex-end; text-align: right; padding-top: .2rem; }
.lp-tl-day { font-family: var(--display); font-size: 2.4rem; font-weight: 600; line-height: 1; color: var(--c-secondary); font-variant-numeric: tabular-nums; }
.lp-tl-mon { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--c-primary); margin-top: .25rem; }
.lp-tl-node {
  position: absolute; left: 81px; top: 1.9rem; width: 16px; height: 16px; border-radius: 50%;
  background: var(--surface); border: 3px solid var(--c-primary); z-index: 1;
  transition: transform .22s var(--ease), background .22s;
}
.lp-tl-item:hover .lp-tl-node { transform: scale(1.25); background: var(--c-akzent); border-color: var(--c-akzent); }
.lp-tl-body { padding-left: 1.6rem; }
.lp-tl-body h3 { font-size: var(--fs-h3); margin: 0 0 .5rem; }
.lp-tl-body p { color: var(--muted); margin: .5rem 0 .7rem; }
.lp-badge {
  display: inline-block; font-size: .72rem; font-weight: 700; padding: .2rem .7rem; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .04em;
}
.lp-badge--ok { background: var(--p-100); color: var(--p-700); }
.lp-link { color: var(--c-primary); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; }
.lp-link:hover { text-decoration: underline; }
.lp-link-arrow { transition: transform .2s var(--ease); }
.lp-link:hover .lp-link-arrow { transform: translateX(3px); }
@media (max-width: 620px) {
  .lp-timeline::before { left: 8px; }
  .lp-tl-item { grid-template-columns: 1fr; gap: .6rem; padding-left: 2.2rem; }
  .lp-tl-date { flex-direction: row; gap: .5rem; align-items: baseline; text-align: left; }
  .lp-tl-day { font-size: 1.6rem; }
  .lp-tl-node { left: 1px; top: .4rem; }
  .lp-tl-body { padding-left: 0; }
}

/* ---------- Blog (Magazin-Bento) ---------- */
.lp-blog-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.6rem; align-items: start; }
.lp-blog-lead { display: flex; flex-direction: column; }
.lp-blog-lead:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.lp-blog-lead-title { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem); margin: .6rem 0 1rem; }
.lp-blog-lead-title a { color: inherit; text-decoration: none; }
.lp-blog-lead-title a:hover { color: var(--c-primary); }
.lp-blog-teaser { color: #36433d; font-size: 1.08rem; margin: 0 0 1.4rem; }
.lp-blog-meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--muted); font-size: .9rem; flex-wrap: wrap; }
.lp-blog-stack { display: flex; flex-direction: column; gap: 1.6rem; }
.lp-blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.lp-blog-card h4 { font-size: 1.18rem; margin: .5rem 0 .5rem; }
.lp-blog-card h4 a { color: inherit; text-decoration: none; }
.lp-blog-card h4 a:hover { color: var(--c-primary); }
.lp-blog-card p { color: var(--muted); font-size: .94rem; margin: 0 0 .6rem; }
.lp-tag {
  display: inline-block; background: var(--p-100); color: var(--p-700);
  font-size: .72rem; font-weight: 700; padding: .18rem .65rem; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .05em;
}
@media (max-width: 820px) { .lp-blog-grid { grid-template-columns: 1fr; } }

/* ---------- CTA ---------- */
.lp-cta {
  position: relative; overflow: hidden;
  background: var(--c-secondary); color: #fff;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.lp-atmo--cta { position: absolute; inset: 0; z-index: 0; opacity: .12; }
.lp-cta-inner { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }
.lp-cta h2 { color: #fff; font-size: var(--fs-h2); margin: 0 0 .7rem; }
.lp-cta p { color: rgba(255,255,255,.82); font-size: var(--fs-lead); margin: 0 0 2rem; }

/* ---------- Footer ---------- */
.lp-footer { background: #0f1a15; color: #c5d0ca; padding: clamp(3rem, 6vw, 4.5rem) 0 1.6rem; }
.lp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.2rem; }
.lp-footer h3 { color: #fff; margin: 0 0 .7rem; font-size: 1.4rem; }
.lp-footer h4 { color: #fff; margin: 0 0 .9rem; font-size: 1rem; font-family: var(--body); font-weight: 700; letter-spacing: .02em; }
.lp-footer a { color: #c5d0ca; text-decoration: none; transition: color .2s; }
.lp-footer a:hover { color: #fff; }
.lp-footer .lp-muted { color: #8a988f; }
.lp-address { font-style: normal; line-height: 1.9; }
.lp-social { display: flex; gap: 1rem; margin-top: 1.1rem; flex-wrap: wrap; }
.lp-social a { font-weight: 600; }
.lp-footer-links { list-style: none; padding: 0; margin: 0; line-height: 2.1; }
.lp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.4rem; padding-top: 1.3rem;
  font-size: .85rem; color: #7c8a83; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
@media (max-width: 880px) { .lp-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .lp-footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal-Motion (nur transform/opacity) ---------- */
.lp-reveal { opacity: 0; transform: translateY(20px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); transition-delay: var(--d, 0s); }
.lp-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .lp-reveal { opacity: 1; transform: none; }
}

/* Fallback für Browser ohne JS: Inhalt bleibt sichtbar (kein dauerhaftes opacity:0). */
.no-js .lp-reveal { opacity: 1; transform: none; }


/* ============================================================
   OEFFENTLICHE UNTERSEITEN (Termine, Termin-Detail, Beitritt, Danke)
   Diese nutzen die bestehenden site-*-Klassen der Core-Templates.
   ============================================================ */

/* Inhalts-Wrapper als zentrierte Seitenspalte mit grosszuegigem Rhythmus */
.site-text { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.site-text__inner {
  max-width: 760px; margin: 0 auto; padding: 0 1.6rem;
}
.site-text__inner > h1,
.site-termin-detail__titel { font-family: var(--display); font-size: var(--fs-h2); color: var(--c-secondary); margin: 0 0 1rem; line-height: 1.08; letter-spacing: -.012em; }
.site-text__inner > p { color: var(--muted); font-size: var(--fs-lead); }

/* ----- Termin-Detail ----- */
.site-termin-detail__zurueck { margin: 0 0 1.5rem; }
.site-termin-detail__zurueck a { color: var(--muted); text-decoration: none; font-weight: 500; font-size: .95rem; }
.site-termin-detail__zurueck a:hover { color: var(--c-primary); }
.site-termin-detail__datum {
  display: inline-block; font-weight: 700; color: var(--c-primary);
  background: var(--p-50); padding: .35rem .9rem; border-radius: 999px; font-size: .95rem; margin: 0 0 1.5rem;
}
.site-termin-detail__text { color: var(--ink); line-height: 1.75; margin-bottom: 2.5rem; }
.site-termin-detail__hinweis { color: var(--muted); background: var(--p-50); border-radius: var(--r-md); padding: 1.2rem 1.4rem; }

/* ----- Formulare (Beitritt + Termin-Anmeldung) ----- */
.site-termin-detail__anmeldung { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.site-termin-detail__anmeldung h2,
.site-form h1 + p + form, .site-form h1 { font-family: var(--display); }
.site-termin-detail__anmeldung h2 { font-family: var(--display); font-size: var(--fs-h3); color: var(--c-secondary); margin: 0 0 1.5rem; }

.site-form__form {
  display: flex; flex-direction: column; gap: 1.1rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow-1); margin-top: .5rem;
}
.site-form__row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.site-form__row--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .site-form__row--2 { grid-template-columns: 1fr; } }

/* Label umschliesst Input -> als Stack mit Abstand */
.site-form__form > .site-form__row label,
.site-form__form label:not(.site-form__check) {
  display: flex; flex-direction: column; gap: .4rem;
  font-size: .9rem; font-weight: 600; color: var(--c-secondary);
}
.site-form__form input[type="text"],
.site-form__form input[type="email"],
.site-form__form input[type="tel"],
.site-form__form input:not([type]) {
  width: 100%; padding: .8rem 1rem; font: inherit; font-weight: 400; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s;
}
.site-form__form input:hover { border-color: color-mix(in oklab, var(--c-primary), white 55%); }
.site-form__form input:focus {
  outline: none; border-color: var(--c-primary); background: var(--surface);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--c-primary), transparent 86%);
}
.site-form__form input::placeholder { color: color-mix(in oklab, var(--muted), white 25%); }

/* DSGVO-Checkbox */
.site-form__check {
  display: flex; align-items: flex-start; gap: .7rem; font-size: .92rem; color: var(--muted);
  font-weight: 400; line-height: 1.5; margin-top: .3rem; cursor: pointer;
}
.site-form__check input[type="checkbox"] {
  width: 20px; height: 20px; margin: 0; flex-shrink: 0; accent-color: var(--c-primary); cursor: pointer;
}

/* Submit als Primary-Pille */
.site-form__submit {
  align-self: flex-start; margin-top: .6rem;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 999px; font-weight: 600; font-size: 1rem; cursor: pointer;
  background: var(--c-primary); color: #fff; border: 2px solid var(--c-primary);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.site-form__submit:hover { transform: translateY(-2px); box-shadow: var(--glow); }
.site-form__submit:active { transform: translateY(0) scale(.98); }
.site-form__submit:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 3px; }

.site-form__fehler {
  background: color-mix(in oklab, #e53935, white 88%); color: #b3261e;
  border: 1px solid color-mix(in oklab, #e53935, white 70%); border-radius: var(--r-sm);
  padding: .8rem 1.1rem; font-size: .92rem; margin-bottom: 1rem;
}

/* Honeypot wirklich unsichtbar */
.ws-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ----- Termin-Liste ----- */
.site-termine__titel { font-family: var(--display); font-size: var(--fs-h2); color: var(--c-secondary); margin: 0 0 2rem; }
.site-termine__liste { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1rem; }
.site-termin__link {
  display: flex; align-items: center; gap: 1.2rem; text-decoration: none;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.1rem 1.4rem; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}
.site-termin__link:hover { transform: translateX(4px); box-shadow: var(--shadow-2); border-color: color-mix(in oklab, var(--c-primary), white 60%); }
.site-termin__datum {
  flex-shrink: 0; font-weight: 700; color: var(--c-primary); font-variant-numeric: tabular-nums;
  background: var(--p-50); padding: .4rem .8rem; border-radius: 999px; font-size: .9rem;
}
.site-termin__name { font-weight: 600; color: var(--c-secondary); font-size: 1.08rem; }
.site-termine__leer { color: var(--muted); background: var(--p-50); border-radius: var(--r-md); padding: 1.4rem 1.6rem; }


/* ---------- Funktionen-Sektion (Org-Manager-Features) ---------- */
.lp-section-sub { margin: .8rem 0 0; font-size: var(--fs-lead); }

/* Bento-Grid mit variierenden Kachelgroessen und -stilen (kein uniformes Raster) */
.lp-bentogrid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  grid-auto-flow: dense;
}
@media (max-width: 1000px) { .lp-bentogrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .lp-bentogrid { grid-template-columns: 1fr; } }

.lp-feat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.6rem;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s;
}
.lp-feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: color-mix(in oklab, var(--c-primary), white 55%); }

/* Größen-Variante: breite Highlight-Kachel über 2 Spalten */
.lp-feat--w2 { grid-column: span 2; }
@media (max-width: 560px) { .lp-feat--w2 { grid-column: span 1; } }
/* Highlight-Kacheln horizontal: großes Icon links, Text rechts */
.lp-feat--row { display: flex; align-items: flex-start; gap: 1.3rem; }
.lp-feat--row .lp-feat-ic { margin-bottom: 0; flex-shrink: 0; width: 60px; height: 60px; }
.lp-feat--row .lp-feat-ic svg { width: 30px; height: 30px; }
.lp-feat--row h3 { font-size: 1.4rem; }

.lp-feat-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 13px; margin-bottom: 1.1rem;
  background: var(--p-50); color: var(--c-primary);
}
.lp-feat-ic svg { width: 25px; height: 25px; }
.lp-feat h3 { font-size: 1.18rem; margin: 0 0 .45rem; color: var(--c-secondary); }
.lp-feat p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.6; }

/* Farb-Stile für Varianz */
.lp-feat--tint { background: var(--p-50); border-color: var(--p-200); }
.lp-feat--gold { background: color-mix(in oklab, var(--c-akzent), white 82%); border-color: color-mix(in oklab, var(--c-akzent), white 58%); }
.lp-feat--gold .lp-feat-ic { background: color-mix(in oklab, var(--c-akzent), white 62%); color: #6b5600; }
.lp-feat--accent { background: var(--c-secondary); border-color: var(--c-secondary); }
.lp-feat--accent h3 { color: #fff; }
.lp-feat--accent p { color: #c7d6cd; }
.lp-feat--accent .lp-feat-ic { background: color-mix(in oklab, var(--c-akzent), transparent 78%); color: var(--c-akzent); }

/* ---------- Bearbeiten-Umschalter (nur für Berechtigte sichtbar) ---------- */
.lp-editfab {
  position: fixed; left: 1.4rem; bottom: 1.4rem; z-index: 80;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.3rem; border-radius: 999px; text-decoration: none; font-weight: 600;
  background: var(--c-secondary); color: #fff; box-shadow: var(--shadow-2);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.lp-editfab:hover { transform: translateY(-2px); box-shadow: 0 16px 44px -12px rgba(20,32,28,.4); }
.lp-editfab svg { width: 18px; height: 18px; }
.lp-editbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  padding: .75rem 1.4rem; background: var(--c-secondary); color: #eaf1ec;
  box-shadow: 0 -4px 20px rgba(20,32,28,.25); font-size: .95rem;
}
.lp-editbar__label strong { color: var(--c-akzent); }
.lp-editbar__btn {
  background: var(--c-akzent); color: #2a2400; text-decoration: none; font-weight: 600;
  padding: .5rem 1.2rem; border-radius: 999px; transition: transform .2s var(--ease);
}
.lp-editbar__btn:hover { transform: translateY(-1px); }
body.lp--edit { padding-bottom: 64px; }

/* ---------- Blog-Liste (/blog) ---------- */
.lp-blog-list { display: grid; gap: 1.5rem; max-width: 860px; }
.lp-blogcard {
  display: grid; grid-template-columns: 240px 1fr; gap: 1.6rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.lp-blogcard:not(:has(.lp-blogcard-img)) { grid-template-columns: 1fr; }
.lp-blogcard:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.lp-blogcard-img { display: block; }
.lp-blogcard-img img { width: 100%; height: 100%; min-height: 170px; object-fit: cover; }
.lp-blogcard-body { padding: 1.5rem 1.7rem; }
.lp-blogcard:has(.lp-blogcard-img) .lp-blogcard-body { padding-left: 0; }
.lp-blogcard-title { font-size: 1.45rem; margin: .45rem 0; line-height: 1.15; }
.lp-blogcard-title a { color: var(--c-secondary); text-decoration: none; }
.lp-blogcard-title a:hover { color: var(--c-primary); }
.lp-blogcard p { color: var(--muted); margin: .6rem 0 1rem; }
@media (max-width: 620px) {
  .lp-blogcard { grid-template-columns: 1fr; }
  .lp-blogcard-img img { min-height: 200px; }
  .lp-blogcard:has(.lp-blogcard-img) .lp-blogcard-body { padding-left: 1.7rem; }
}

/* ---------- Blog-Artikel (/blog/<slug>) ---------- */
.lp-article { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.lp-article-inner { max-width: 760px; }
.lp-article-back a { color: var(--muted); text-decoration: none; font-weight: 500; }
.lp-article-back a:hover { color: var(--c-primary); }
.lp-article-title { font-size: clamp(2rem, 4vw, 3rem); margin: .8rem 0 .5rem; }
.lp-article-meta { color: var(--muted); margin: 0 0 1.5rem; }
.lp-article-img { width: 100%; border-radius: var(--r-md); margin: 1.5rem 0; }
.lp-article-lead { font-size: var(--fs-lead); color: var(--ink); font-weight: 500; margin: 0 0 1.4rem; }
.lp-article-body { line-height: 1.78; }
.lp-article-body h2 { font-size: var(--fs-h3); margin: 1.9rem 0 .6rem; }
.lp-article-body p { margin: 0 0 1.1rem; color: #36433d; }
.lp-article-body a { color: var(--c-primary); }

/* ---------- Newsletter-Anmeldung (Startseite) ---------- */
.lp-nl {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
}
.lp-nl-form { display: flex; flex-direction: column; gap: 1rem; }
.lp-nl-row { display: flex; gap: .7rem; flex-wrap: wrap; }
.lp-nl-row input[type=email] {
  flex: 1 1 240px; min-width: 0; padding: .85rem 1rem;
  border: 1px solid var(--line); border-radius: 12px; font: inherit;
  background: var(--surface); color: var(--ink);
}
.lp-nl-row input[type=email]:focus {
  outline: none; border-color: var(--c-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-primary) 18%, transparent);
}
.lp-nl-listen { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
.lp-nl-check { display: flex; align-items: flex-start; gap: .5rem; font-size: .95rem; color: #36433d; }
.lp-nl-check input { margin-top: .2rem; accent-color: var(--c-primary); }
.lp-nl-ds { font-size: .85rem; color: var(--muted-ink, #6b7770); }
@media (max-width: 760px) {
  .lp-nl { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ---------- Newsletter: Landing-Button + eigene Seite ---------- */
.lp-nl-action { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }
.lp-nl-page { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: start; }
.lp-nl-info-titel { font-size: var(--fs-h3); margin: 0 0 1.2rem; }
.lp-nl-cards { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.lp-nl-card { padding: 1.3rem 1.5rem; }
.lp-nl-card h3 { margin: 0 0 .35rem; font-size: 1.15rem; }
.lp-nl-card p { margin: 0; color: #36433d; }
.lp-nl-anmeldung { padding: 1.7rem 1.8rem; position: sticky; top: 96px; }
.lp-nl-anmeldung h2 { margin: 0 0 1rem; font-size: var(--fs-h3); }
.lp-nl-anmeldung input[type=text], .lp-nl-anmeldung input[type=email] {
  width: 100%; padding: .8rem 1rem; margin-bottom: .4rem;
  border: 1px solid var(--line); border-radius: 12px; font: inherit;
  background: var(--surface); color: var(--ink);
}
.lp-nl-anmeldung input:focus {
  outline: none; border-color: var(--c-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-primary) 18%, transparent);
}
.lp-nl-anmeldung .lp-btn { width: 100%; margin-top: 1rem; }
.lp-nl-label { display: block; font-weight: 600; margin: .9rem 0 .35rem; color: var(--c-secondary); }
@media (max-width: 820px) {
  .lp-nl-page { grid-template-columns: 1fr; gap: 1.6rem; }
  .lp-nl-anmeldung { position: static; }
}
