/* =====================================================================
   CSC Niedersachsen – Design System (main.css)
   Aufbau: 1) Design-Tokens  2) Reset/Base  3) Typografie  4) Layout
           5) Buttons  6) Header/Nav  7) Hero  8) Sektionen/Cards
           9) Mitgliedschaften 10) FAQ 11) Footer 12) Utilities 13) Motion
   Farben & visuelle Identität abgeleitet aus dem Vereins-PDF
   (Logo-Grün, Senfgold, Creme).
   ===================================================================== */

/* 1) ---------------------------- DESIGN TOKENS ---------------------- */
:root {
  /* Markenfarben – abgeleitet aus dem Vereinslogo (Kräftiges Grün #009129) */
  --green-900: #062611;   /* tiefstes Grün – Footer/Hero-Grund */
  --green-800: #0a3618;   /* dunkle Sektionen, Seitenkopf */
  --green-700: #0d461f;   /* Karten auf Dunkel, Tags */
  --green-600: #0f5a27;   /* Buttons, Links */
  --green-500: #009129;   /* Markengrün (Logo) – Akzente, Icons, Häkchen */
  --green-400: #2fae52;   /* helles Akzentgrün */
  --green-300: #77d492;   /* Grün-Tönung */

  --gold-700: #a97d1c;
  --gold-600: #c1901f;
  --gold-500: #d6a52c;   /* Hauptakzent */
  --gold-400: #e3ba45;
  --gold-200: #f0d9a0;

  --cream-50:  #faf7ef;
  --cream-100: #f4efe1;
  --cream-200: #e9e1cd;
  --cream-300: #ddd2b6;

  --ink:       #16211a;
  --ink-700:   #2f3d34;
  --muted:     #5d6d62;
  --line:      #e3ddcc;

  --white: #ffffff;
  --danger: #b3261e;
  --success: #2e7d46;

  /* Semantische Tokens (Light – Standard) */
  --bg:            var(--cream-50);
  --bg-alt:        var(--cream-100);
  --surface:       var(--white);
  --surface-2:     var(--cream-100);
  --text:          var(--ink);
  --text-muted:    var(--muted);
  --heading:       var(--green-800);
  --border:        var(--line);
  --accent:        var(--gold-600);
  --accent-strong: var(--gold-700);
  --brand:         var(--green-700);
  --brand-contrast:#ffffff;
  --focus:         var(--gold-600);
  --link:          var(--green-600);
  --link-hover:    var(--green-800);

  /* Typografie */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-display: "Poppins", "Segoe UI", var(--font-sans);
  --fs-100: 0.8125rem;   /* 13px */
  --fs-200: 0.9375rem;   /* 15px */
  --fs-300: 1rem;        /* 16px */
  --fs-400: 1.125rem;    /* 18px */
  --fs-500: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-600: clamp(1.5rem, 1.25rem + 1.1vw, 2rem);
  --fs-700: clamp(1.9rem, 1.4rem + 2.2vw, 2.9rem);
  --fs-800: clamp(2.4rem, 1.6rem + 3.6vw, 4rem);
  --lh-tight: 1.12;
  --lh-snug: 1.3;
  --lh-normal: 1.65;

  /* Abstände (konsistente Skala) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Radius, Schatten, Container */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(16,40,26,.06), 0 1px 3px rgba(16,40,26,.08);
  --shadow: 0 6px 22px -8px rgba(16,40,26,.18);
  --shadow-lg: 0 24px 60px -20px rgba(16,40,26,.34);
  --container: 1180px;
  --container-narrow: 780px;
  --header-h: 92px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* 2) ------------------------------- RESET/BASE --------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-300);
  line-height: var(--lh-normal);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video, canvas { max-width: 100%; height: auto; display: block; }
img { border-style: none; }
a { color: var(--link); text-decoration-color: color-mix(in srgb, var(--link) 40%, transparent); text-underline-offset: 3px; }
a:hover { color: var(--link-hover); }
ul, ol { padding-left: 1.2em; }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--space-6) 0; }
:target { scroll-margin-top: calc(var(--header-h) + 1rem); }

/* Sichtbarer Fokus – Barrierefreiheit */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip-Link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--green-800); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
}

/* 3) ------------------------------- TYPOGRAFIE -------------------- */
/* Greedy-Umbruch (Standard) statt balance: obere Zeilen werden gefüllt, die
   letzte Zeile ist immer die kürzeste – so steht in der Mitte nie weniger als
   unten. */
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--heading); line-height: var(--lh-tight); font-weight: 700; margin: 0 0 .5em; letter-spacing: -0.01em; text-wrap: wrap; }
h1 { font-size: var(--fs-800); }
h2 { font-size: var(--fs-700); }
h3 { font-size: var(--fs-500); }
h4 { font-size: var(--fs-400); }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 700; color: var(--ink); }
small { font-size: var(--fs-100); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: var(--fs-100); font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent-strong);
  margin: 0 0 var(--space-3);
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
}
.section-title { margin-bottom: var(--space-3); }
.lead { font-size: var(--fs-400); color: var(--text-muted); max-width: 60ch; }

/* 4) ------------------------------- LAYOUT ----------------------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2.5rem, var(--container-narrow)); margin-inline: auto; }
.section { padding-block: clamp(3rem, 2rem + 5vw, 6rem); }
.section--tight { padding-block: clamp(2.25rem, 1.5rem + 3vw, 3.5rem); }
.section--dark { background: var(--green-800); color: var(--cream-100); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .lead, .section--dark p { color: color-mix(in srgb, var(--cream-100) 88%, transparent); }
.section--dark .eyebrow { color: var(--gold-400); }
/* Auf dunklen Flächen darf <strong> nicht die dunkle Tinte erben. */
.section--dark strong, .section--dark b,
.page-hero strong, .page-hero b { color: inherit; }
.section--cream { background: var(--bg-alt); }
.section-head { max-width: 62ch; margin-bottom: var(--space-6); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.grid { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* 5) ------------------------------- BUTTONS ---------------------- */
.btn {
  --btn-bg: var(--green-700);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-300);
  line-height: 1; text-decoration: none; cursor: pointer;
  padding: .95rem 1.6rem; border-radius: var(--radius-pill);
  border: 2px solid transparent; background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn--primary { --btn-bg: var(--gold-500); --btn-fg: #1c1400; }
.btn--primary:hover { --btn-bg: var(--gold-400); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--green-800); border-color: color-mix(in srgb, var(--green-700) 30%, transparent); box-shadow: none; }
.btn--ghost:hover { --btn-bg: color-mix(in srgb, var(--green-700) 8%, transparent); }
.btn--on-dark { --btn-bg: transparent; --btn-fg: #fff; border-color: color-mix(in srgb, #fff 45%, transparent); box-shadow: none; }
.btn--on-dark:hover { --btn-bg: rgba(255,255,255,.1); }
.btn--lg { padding: 1.1rem 2rem; font-size: var(--fs-400); }
.btn--block { display: flex; width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.btn-row--center { justify-content: center; }

/* Pills / Badges */
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: var(--fs-100); font-weight: 700; letter-spacing: .02em;
  padding: .35rem .8rem; border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--gold-500) 18%, transparent); color: var(--accent-strong);
}
.badge--green { background: color-mix(in srgb, var(--green-500) 16%, transparent); color: var(--green-700); }
.badge--outline { background: transparent; border: 1px solid var(--border); color: var(--text-muted); }
.badge--lg { font-size: var(--fs-200); padding: .55rem 1.1rem; gap: .55rem; }
.badge--lg svg { flex: 0 0 auto; }

/* 6) ------------------------------- HEADER / NAV ----------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream-50) 82%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-scrolled { background: color-mix(in srgb, var(--cream-50) 94%, transparent); border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--green-800); font-family: var(--font-display); font-weight: 700; }
.brand img { height: 64px; width: auto; }
.brand__mark { width: 42px; height: 42px; flex: 0 0 auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text b { font-size: 1.05rem; letter-spacing: -.01em; }
.brand__text span { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-strong); }

.primary-nav { display: flex; align-items: center; gap: var(--space-5); }
.primary-nav ul { list-style: none; display: flex; align-items: center; gap: var(--space-5); margin: 0; padding: 0; }
.primary-nav a { text-decoration: none; color: var(--ink-700); font-weight: 600; font-size: var(--fs-200); padding: .4rem 0; position: relative; }
.primary-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--gold-500); transition: width .2s var(--ease); }
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--green-800); }
.primary-nav a:hover::after, .primary-nav .current-menu-item > a::after { width: 100%; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--border);
  background: var(--surface); border-radius: var(--radius-sm); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--green-800); border-radius: 2px; position: relative; transition: transform .2s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

.header-cta { display: inline-flex; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--cream-50); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: var(--space-4) var(--space-5) var(--space-6);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .primary-nav li { border-bottom: 1px solid var(--border); }
  .primary-nav a { display: block; padding: .95rem .25rem; font-size: var(--fs-400); }
  .primary-nav a::after { display: none; }
  .primary-nav .header-cta { margin-top: var(--space-4); }
  .header-cta.desktop-only { display: none; }
}
@media (min-width: 981px) { .primary-nav .header-cta { display: none; } }

/* 7) ------------------------------- HERO ------------------------- */
.hero { position: relative; color: #fff; isolation: isolate; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,25,16,.55) 0%, rgba(10,25,16,.35) 40%, rgba(10,25,16,.82) 100%),
    radial-gradient(120% 90% at 15% 20%, rgba(16,40,26,.35), transparent 60%);
}
.hero__inner { position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: min(88vh, 760px); padding-block: clamp(4rem, 3rem + 8vw, 8rem) clamp(3rem, 2rem + 4vw, 5rem); }
.hero__content { max-width: 760px; }
.hero h1 { color: #fff; text-wrap: wrap; text-shadow: 0 2px 24px rgba(0,0,0,.28); }
.hero .lead { color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 1rem + .5vw, 1.35rem); max-width: 56ch; }
.hero .eyebrow { color: var(--gold-400); }
.hero__cta { margin-top: var(--space-6); }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(1.25rem, 1rem + 2vw, 3rem); margin-top: var(--space-7); padding-top: var(--space-6); border-top: 1px solid rgba(255,255,255,.18); }
.hero__stat b { display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem); color: var(--gold-400); line-height: 1; }
.hero__stat span { font-size: var(--fs-200); color: rgba(255,255,255,.82); }
.hero__scroll { position: absolute; left: 50%; bottom: 1.25rem; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: var(--fs-100); letter-spacing: .12em; text-transform: uppercase; }

/* 8) ------------------------------- CARDS / SEKTIONEN ------------ */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-6); box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--gold-500) 40%, var(--border)); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: #dcefe4; color: #07552b;
  margin-bottom: var(--space-4);
}
.card__icon svg { width: 25px; height: 25px; }
.card h3 { margin-bottom: var(--space-2); }
.card p { color: var(--text-muted); }

/* Feature-Liste mit Häkchen */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.check-list li { display: flex; gap: .65rem; align-items: flex-start; color: var(--text-muted); }
.check-list li::before {
  content: ""; flex: 0 0 auto; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%;
  background: color-mix(in srgb, var(--green-500) 16%, transparent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f5a27' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.section--dark .check-list li { color: color-mix(in srgb, var(--cream-100) 85%, transparent); }
.section--dark .check-list li::before { background-color: rgba(255,255,255,.14); }

/* Split media/text */
.media-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: center; }
.media-split--reverse .media-split__media { order: 2; }
.media-split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 820px) { .media-split { grid-template-columns: 1fr; } .media-split--reverse .media-split__media { order: 0; } }

/* Bild-Raster / Galerie */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-3); }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery img { aspect-ratio: 1/1; object-fit: cover; width: 100%; transition: transform .4s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; inset: auto 0 0 0; padding: .8rem 1rem; color: #fff; font-weight: 600;
  background: linear-gradient(180deg, transparent, rgba(10,25,16,.8)); }

/* Info/Hinweis-Box (analog PDF „HINWEIS") */
.notice {
  display: flex; gap: var(--space-4); align-items: flex-start;
  background: var(--green-800); color: var(--cream-100);
  border-radius: var(--radius-lg); padding: var(--space-5) var(--space-6);
}
.notice__icon { flex: 0 0 auto; color: var(--gold-400); }
.notice--light { background: var(--cream-100); color: var(--ink-700); border: 1px solid var(--border); }
.notice--light .notice__icon { color: var(--green-600); }
.notice b, .notice strong { color: inherit; }
.notice .notice__title { display: block; font-family: var(--font-display); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: var(--fs-100); color: var(--gold-400); margin-bottom: .35rem; }
.notice--light .notice__title { color: var(--accent-strong); }

/* Prozess-Schritte (Ablauf) */
.steps { display: grid; gap: var(--space-5); grid-template-columns: repeat(4, 1fr); counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: var(--space-6); }
.step__num { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green-700); color: #fff; font-family: var(--font-display); font-weight: 700; margin-bottom: var(--space-4); }
.step h4 { margin-bottom: .35rem; }
.step p { color: var(--text-muted); font-size: var(--fs-200); }
/* Ablauf auf dunklem Grund: Titel & Texte in Weiß, Nummern abgesetzt. */
.section--dark .steps { margin-top: var(--space-6); }
.section--dark .step__num { background: var(--gold-500); color: #1c1400; }
.section--dark .step h4 { color: #fff; }
.section--dark .step p { color: rgba(255,255,255,.85); }

/* CTA-Banner */
.cta-band { background: linear-gradient(135deg, var(--green-800), var(--green-600)); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 1.5rem + 3vw, 3.5rem); position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); }
.cta-band__leaf { position: absolute; right: -30px; bottom: -40px; width: 220px; opacity: .12; pointer-events: none; }

/* 9) ------------------------------- MITGLIEDSCHAFTEN ------------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); align-items: stretch; }
@media (max-width: 940px) { .plans { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.plan {
  display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--space-6); position: relative; box-shadow: var(--shadow-sm);
}
.plan--featured { border-color: var(--gold-500); box-shadow: var(--shadow-lg); }
.plan--featured::before { content: "Beliebteste Wahl"; position: absolute; top: 0; left: 50%; transform: translate(-50%,-50%);
  background: var(--gold-500); color: #1c1400; font-size: var(--fs-100); font-weight: 700; padding: .3rem 1rem; border-radius: var(--radius-pill); white-space: nowrap; }
.plan__tag { width: 44px; height: 44px; border-radius: 50%; background: var(--green-700); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; margin-bottom: var(--space-4); }
.plan__name { margin-bottom: .25rem; }
.plan__desc { color: var(--text-muted); font-size: var(--fs-200); min-height: 2.6em; }
.plan__price { display: flex; align-items: baseline; gap: .35rem; margin: var(--space-4) 0; }
.plan__price b { font-family: var(--font-display); font-size: 2.4rem; color: var(--green-800); line-height: 1; }
.plan__price span { color: var(--text-muted); font-size: var(--fs-200); }
.plan .check-list { margin: var(--space-4) 0 var(--space-6); }
.plan__cta { margin-top: auto; }

/* Vergleichstabelle */
.compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
table.compare th, table.compare td { padding: .95rem 1.1rem; text-align: left; border-bottom: 1px solid var(--border); font-size: var(--fs-200); }
table.compare thead th { background: var(--green-800); color: #fff; font-family: var(--font-display); position: sticky; top: 0; }
table.compare tbody th { font-weight: 600; color: var(--ink-700); }
table.compare tr:last-child td, table.compare tr:last-child th { border-bottom: 0; }
table.compare td[data-v="yes"]::before { content: "✓"; color: var(--success); font-weight: 700; }
table.compare td[data-v="no"]::before { content: "–"; color: var(--muted); }

/* Sorten-Karten */
.strain { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.strain__head { padding: var(--space-5) var(--space-5) var(--space-3); }
.strain__name { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.strain__body { padding: 0 var(--space-5) var(--space-5); color: var(--text-muted); font-size: var(--fs-200); }
.strain__stats { display: flex; gap: .5rem; padding: var(--space-4) var(--space-5); margin-top: auto; border-top: 1px solid var(--border); background: var(--surface-2); }
.strain__stat { flex: 1; text-align: center; }
.strain__stat b { display: block; color: var(--green-800); font-family: var(--font-display); }
.strain__stat span { font-size: var(--fs-100); color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* 10) ------------------------------- FAQ ------------------------- */
.faq { display: grid; gap: var(--space-3); max-width: var(--container-narrow); margin-inline: auto; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 1.35rem; font-family: var(--font-display); font-weight: 600; color: var(--green-800);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: 0 0 auto; width: 20px; height: 20px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f5a27' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat; transition: transform .2s var(--ease); }
.faq details[open] summary::after { transform: rotate(180deg); }
.faq .faq__a { padding: 0 1.35rem 1.2rem; color: var(--text-muted); }

/* 11) ------------------------------- FOOTER --------------------- */
.site-footer { position: relative; overflow: hidden; background: var(--green-900); color: color-mix(in srgb, var(--cream-100) 82%, transparent); padding-block: var(--space-8) var(--space-6); }
/* Dezente Pattern-Illustrationen im Footer (hell auf dunklem Grün). */
.footer-deco { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.footer-deco__item { position: absolute; opacity: .12; filter: brightness(0) invert(1); height: auto; }
.footer-deco__item--l { left: -22px; bottom: 6px; width: 170px; }
.footer-deco__item--r { right: -26px; top: 10px; width: 190px; }
.footer-deco__item--c { right: 30%; bottom: -18px; width: 130px; opacity: .09; }
.site-footer .container { position: relative; z-index: 1; }
@media (max-width: 700px) { .footer-deco__item--c, .footer-deco__item--r { display: none; } }
.site-footer a { color: color-mix(in srgb, var(--cream-100) 82%, transparent); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-6); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: var(--fs-300); margin-bottom: var(--space-3); }
.footer-menu { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer-brand__mark { width: 44px; margin-bottom: var(--space-3); }
.footer-contact { display: grid; gap: .5rem; font-size: var(--fs-200); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); align-items: center; justify-content: space-between;
  margin-top: var(--space-7); padding-top: var(--space-5); border-top: 1px solid rgba(255,255,255,.12); font-size: var(--fs-100); color: rgba(255,255,255,.6); }
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.footer-disclaimer { font-size: var(--fs-100); color: rgba(255,255,255,.55); margin-top: var(--space-4); max-width: 90ch; }

/* Breadcrumbs / Seitentitel-Header */
.page-hero { background: var(--green-800); color: #fff; padding-block: clamp(3rem, 2.5rem + 3vw, 5rem) clamp(3.25rem, 2.75rem + 2.5vw, 4.75rem); position: relative; overflow: hidden; }
.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero .lead { color: rgba(255,255,255,.9); }
/* Altes Ecken-Blatt aus – ersetzt durch die 3 einzeln gesetzten Blätter unten. */
.page-hero__leaf { display: none; }
/* Drei dezente Cannabis-Blätter (weiß, transparent) – einzeln positioniert,
   unterschiedlich groß und geneigt, bewusst KEIN flächiges Muster. */
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    url("../img/hemp-leaf-white.svg"),
    url("../img/hemp-leaf-white-2.svg"),
    url("../img/hemp-leaf-white.svg");
  background-repeat: no-repeat;
  background-size: 360px auto, 220px auto, 130px auto;
  background-position:
    calc(100% + 70px) -60px,   /* groß, oben rechts angeschnitten   */
    -55px calc(100% + 45px),   /* mittel, unten links angeschnitten */
    68% 24%;                   /* klein, mittig-rechts frei         */
  opacity: .06;
}
.breadcrumbs { font-size: var(--fs-100); color: rgba(255,255,255,.72); margin-bottom: var(--space-3); }
.breadcrumbs a { color: rgba(255,255,255,.72); }
.breadcrumbs a:hover { color: #fff; }

/* Beitrag/Seiteninhalt (Prosa) */
.prose { max-width: 72ch; }
.prose :where(h2,h3) { margin-top: 1.8em; }
.prose img { border-radius: var(--radius); margin-block: 1.5em; }
.prose blockquote { border-left: 4px solid var(--gold-500); margin: 1.5em 0; padding: .5em 0 .5em 1.25em; color: var(--ink-700); font-style: italic; }
.entry-meta { color: var(--text-muted); font-size: var(--fs-200); margin-bottom: var(--space-4); }

/* Blog-Karten */
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-5); }
@media (max-width: 900px){ .post-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 600px){ .post-grid { grid-template-columns: 1fr;} }
.post-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.post-card__media { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.post-card__body { padding: var(--space-5); display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-card__body h3 { font-size: var(--fs-400); }
.post-card__body .btn { margin-top: auto; align-self: flex-start; }

/* 12) ------------------------------- UTILITIES ------------------ */
.text-center { text-align: center; }
.mt-0{margin-top:0}.mt-4{margin-top:var(--space-4)}.mt-6{margin-top:var(--space-6)}
.mb-0{margin-bottom:0}.mb-4{margin-bottom:var(--space-4)}
.maxw-narrow{max-width:var(--container-narrow);margin-inline:auto}
.hidden{display:none!important}
.leaf-divider { display:flex; align-items:center; justify-content:center; gap:1rem; color:var(--gold-500); margin-block:var(--space-5); }
.leaf-divider::before, .leaf-divider::after { content:""; height:1px; width:min(120px,20vw); background:var(--border); }

/* 13) ------------------------------- MOTION --------------------- */
/* Reveal-Animation NUR wenn JavaScript aktiv ist (.js an <html>).
   Ohne JS bleiben alle Inhalte sichtbar (Progressive Enhancement). */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); will-change: opacity, transform; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js [data-reveal][data-reveal-delay="1"]{ transition-delay:.08s }
.js [data-reveal][data-reveal-delay="2"]{ transition-delay:.16s }
.js [data-reveal][data-reveal-delay="3"]{ transition-delay:.24s }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* 14) ----------------------- LOGO / MEDIA / EMBLEM (v1.1) --------- */
.brand--img { gap: .6rem; }
/* Höhere Spezifität als '.brand img', damit das große Logo wirklich greift. */
.brand--img .brand__logo { height: 74px; width: auto; display: block; filter: drop-shadow(0 2px 6px rgba(16,40,26,.14)); }
.brand--img picture { display: inline-flex; }
@media (max-width: 720px) { .brand--img .brand__logo { height: 58px; } .brand img { height: 56px; } }
@media (max-width: 400px) { .brand--img .brand__logo { height: 50px; } }

.footer-brand__logo { height: 72px; width: auto; }
.footer-brand .custom-logo { height: 68px; width: auto; }
.footer-brand__desc { margin: var(--space-4) 0 0; max-width: 40ch; font-size: var(--fs-200); }

/* Hero: Scroll-Hinweis */
.hero__scrollcue {
  position: absolute; left: 50%; bottom: 1.1rem; transform: translateX(-50%);
  width: 30px; height: 46px; border: 2px solid rgba(255,255,255,.55); border-radius: 16px;
  display: none; align-items: flex-start; justify-content: center; padding-top: 7px; z-index: 1;
}
@media (min-width: 720px) { .hero__scrollcue { display: inline-flex; } }
.hero__scrollcue span { width: 4px; height: 9px; border-radius: 2px; background: rgba(255,255,255,.8); animation: cscScroll 1.6s var(--ease) infinite; }
@keyframes cscScroll { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* Bilder in Media-Split & Karten */
.media-split__media img,
.media-split__media picture { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); display: block; }
.media-split__media img { aspect-ratio: 4/3; object-fit: cover; }

/* Video-Showcase-Band (grow.mp4, lazy) */
.showcase { position: relative; overflow: hidden; color: #fff; isolation: isolate; border-radius: 0; }
.showcase__media { position: absolute; inset: 0; z-index: -2; }
.showcase__media img, .showcase__media video { width: 100%; height: 100%; object-fit: cover; }
.showcase__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(6,38,17,.92) 0%, rgba(6,38,17,.72) 45%, rgba(6,38,17,.45) 100%); }
.showcase__inner { padding-block: clamp(3.5rem, 3rem + 5vw, 6.5rem); max-width: 620px; }
.showcase h2 { color: #fff; }
.showcase p { color: rgba(255,255,255,.9); }
.showcase .eyebrow { color: var(--gold-400); }

/* Bild-Karten mit Overlay (Farm-Galerie) */
.imgcard { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 3/2; }
.imgcard img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.imgcard:hover img { transform: scale(1.05); }
.imgcard__cap { position: absolute; inset: auto 0 0 0; padding: 1.4rem 1.25rem .95rem; color: #fff; font-family: var(--font-display); font-weight: 600;
  background: linear-gradient(180deg, transparent, rgba(6,38,17,.85)); }

/* Emblem-Wasserzeichen */
.emblem-watermark { position: absolute; opacity: .06; pointer-events: none; z-index: 0; }

/* Count-Zahlen: feste Breite verhindert Layout-Shift beim Zählen */
.count { font-variant-numeric: tabular-nums; }

/* Vertrauens-/Kennzahlen-Band */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); text-align: center; }
/* Als eigene Ebene deutlich von den Schritt-Texten abgesetzt:
   großzügiger Abstand + Hairline-Trennlinie. */
.stat-band--spaced {
  margin-top: clamp(3.5rem, 2.75rem + 4vw, 6rem);
  padding-top: clamp(2rem, 1.5rem + 2vw, 3rem);
  border-top: 1px solid rgba(255,255,255,.14);
}
@media (max-width: 760px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }
.stat-band__item b { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 1.3rem + 1.8vw, 2.8rem); color: var(--gold-500); line-height: 1; }
.stat-band__item span { font-size: var(--fs-200); color: rgba(255,255,255,.82); }

/* Gemeinschaftliches Handwerk: freigestellte Bilder im Editorial-Aufbau */
.product-rows { display: grid; gap: clamp(2.75rem, 2rem + 4vw, 5.5rem); margin-top: clamp(2rem, 1.4rem + 2.4vw, 3.5rem); }
.product-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(1.5rem, 1rem + 3vw, 4.5rem); }
.product-row:nth-child(even) .product-row__media { order: 2; }
.product-row__media {
  margin: 0; position: relative; aspect-ratio: 16 / 10;
  display: grid; place-items: center;
}
/* Bei <picture>-Fallback bleibt das <img> das eingespannte Grid-Element. */
.product-row__media picture { display: contents; }
.product-row__img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain;
  /* Kein CSS-Schatten: Die freigestellten Bilder bringen ihren natürlichen
     Schatten bereits mit – zusätzliche Schatten wirken doppelt. */
  transition: transform .6s cubic-bezier(.2,.7,.2,1); will-change: transform;
}
.product-row__name { margin: 0 0 .6rem; font-size: var(--fs-600); }
.product-row__text p { margin: 0; color: var(--text-muted); font-size: var(--fs-400); max-width: 46ch; }
.product-note { margin-top: clamp(2.5rem, 2rem + 3vw, 4rem); }

@media (max-width: 820px) {
  .product-row { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
  .product-row:nth-child(even) .product-row__media { order: 0; }
  .product-row__media { aspect-ratio: 16 / 11; max-width: 420px; margin-inline: auto; }
  .product-row__text p { margin-inline: auto; }
}

/* Gestaffeltes Erscheinen von Bild / Name / Erklärung (nach is-visible) */
.js .product-row[data-reveal] .product-row__img,
.js .product-row[data-reveal] .product-row__name,
.js .product-row[data-reveal] .product-row__text p {
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js .product-row[data-reveal].is-visible .product-row__img { opacity: 1; transform: none; transition-delay: .04s; }
.js .product-row[data-reveal].is-visible .product-row__name { opacity: 1; transform: none; transition-delay: .16s; }
.js .product-row[data-reveal].is-visible .product-row__text p { opacity: 1; transform: none; transition-delay: .26s; }

@media (hover: hover) {
  /* Nur dezente Skalierung – bewusst ohne Schatten. Spezifität hoch genug,
     um die .is-visible-Regel (transform:none) zu schlagen. */
  .js .product-row[data-reveal].is-visible:hover .product-row__img,
  .product-row:hover .product-row__img {
    transform: translateY(-4px) scale(1.04);
  }
}
@media (prefers-reduced-motion: reduce) {
  .js .product-row[data-reveal] .product-row__img,
  .js .product-row[data-reveal] .product-row__name,
  .js .product-row[data-reveal] .product-row__text p { opacity: 1 !important; transform: none !important; transition: none; }
  .product-row__img, .product-row:hover .product-row__img { transition: none; transform: none; }
}

/* 15) ------------------- KACHEL-BALANCE, PATTERN, PARALLAX (v1.3) ---- */

/* Ausgewogenes Raster für 5 Kacheln: 3 oben, 2 (breiter) zentriert unten */
.req-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-5); }
.req-grid > * { grid-column: span 2; }
.req-grid > :nth-child(4), .req-grid > :nth-child(5) { grid-column: span 3; }
@media (max-width: 900px) {
  .req-grid { grid-template-columns: repeat(2, 1fr); }
  .req-grid > *, .req-grid > :nth-child(4), .req-grid > :nth-child(5) { grid-column: span 1; }
}
@media (max-width: 620px) { .req-grid { grid-template-columns: 1fr; } .req-grid > * { grid-column: 1 / -1; } }

/* Dezentes „Samen"-Textur-Pattern (thematisch, sehr performant) */
.pattern-seeds { position: relative; }
.pattern-seeds::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--green-600) 20%, transparent) 1.4px, transparent 1.6px);
  background-size: 26px 26px; opacity: .5;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}
.pattern-seeds > * { position: relative; z-index: 1; }

/* Dekorative Hanfblätter (Wasserzeichen / Parallax) */
.deco-leaf { position: absolute; z-index: 0; pointer-events: none; opacity: .10; will-change: translate; }
.section--dark .deco-leaf { opacity: .14; }
.deco-leaf img, .deco-leaf svg { display: block; width: 100%; height: auto; }
.deco-leaf--tr { top: -40px; right: -30px; width: clamp(160px, 22vw, 320px); transform: rotate(18deg); }
.deco-leaf--bl { bottom: -50px; left: -40px; width: clamp(150px, 20vw, 300px); transform: rotate(-24deg); }
.section, .hero, .showcase, .page-hero, .cta-band { position: relative; }
/* Dekorierte Sektionen abklemmen, damit die Blätter keinen horizontalen
   Überlauf erzeugen (verhindert seitliches Scrollen/Abschneiden auf Mobil). */
.section:has(.deco-leaf), .section:has(.deco-art), .page-hero, .leaf-stage { overflow: hidden; }

/* Vereinzelte Deko-Illustrationen (freigestellte WebP) an Sektionsrändern.
   Sichtbar, aber dezent hinter den Inhalten (z-index 0, Container z-index 1). */
.deco-art { position: absolute; z-index: 0; pointer-events: none; user-select: none; height: auto; will-change: translate; }
.deco-art--tr { top: 14px; right: 8px; }
.deco-art--tl { top: 14px; left: 8px; }
.deco-art--br { bottom: 14px; right: 8px; }
.deco-art--bl { bottom: 14px; left: 8px; }
@media (max-width: 1100px) { .deco-art { width: min(22vw, 150px) !important; } }
@media (max-width: 700px) { .deco-art { display: none; } } /* Mobil: Ruhe bewahren */

/* Zahlungsmethoden – Icon-Kacheln */
.payments { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.75rem, .5rem + 1.5vw, 1.25rem); max-width: 720px; margin-inline: auto; }
.payment {
  display: flex; flex-direction: column; align-items: center; gap: .65rem; text-align: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.15rem .75rem; box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
@media (hover: hover) { .payment:hover { transform: translateY(-3px); box-shadow: var(--shadow); } }
.payment__icon { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: color-mix(in srgb, var(--green-500) 12%, transparent); color: var(--green-700); }
.payment__label { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-200); color: var(--ink); }
@media (max-width: 760px) { .payments { grid-template-columns: repeat(3, 1fr); max-width: 460px; } }
@media (max-width: 440px) { .payments { grid-template-columns: repeat(2, 1fr); max-width: 320px; } }

/* App-CTA: Mitgliedschaft verwalten (Text + klickbares Badge) */
.appcta {
  display: grid; grid-template-columns: 1.5fr auto; align-items: center;
  gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: clamp(1.5rem, 1rem + 2.5vw, 2.75rem);
}
.appcta__text .section-title { margin-bottom: .6rem; }
.appcta__text p { margin: 0; color: var(--text-muted); max-width: 54ch; }
/* Cannanas-Badge: weißes Logo auf dunkelgrünem Pill (Logo ist einfarbig weiß) */
.cannanas-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-800); border-radius: 16px;
  padding: 1.15rem clamp(1.4rem, 1rem + 2vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease); will-change: transform;
}
.cannanas-badge img { display: block; width: clamp(180px, 150px + 8vw, 240px); height: auto; }
@media (hover: hover) { .cannanas-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow); } }
.cannanas-badge:focus-visible { outline: 3px solid var(--green-500); outline-offset: 4px; }
@media (max-width: 760px) {
  .appcta { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .appcta__text p { margin-inline: auto; }
}

/* Blüh-Pflanze als zentrierter Trenner am Ende der Sorten-Sektion:
   ragt bewusst über die Sektionsgrenze in die folgende Sektion hinein. */
.strains-section { z-index: 2; padding-bottom: clamp(1.25rem, 1rem + 1vw, 2rem); }
.strain-divider {
  display: flex; justify-content: center; align-items: flex-end;
  position: relative; z-index: 2; pointer-events: none;
  margin-top: clamp(1.75rem, 1.25rem + 2vw, 2.75rem);
  margin-bottom: calc(-1 * clamp(70px, 6vw + 40px, 120px));
}
.strain-divider img {
  display: block;
  width: clamp(230px, 150px + 14vw, 340px); height: auto;
  filter: drop-shadow(0 18px 30px rgba(20,37,26,.22));
}

/* ------------------- MARKEN-FINALE (Seitenende) ------------------- */
.brand-finale {
  position: relative; overflow: hidden; isolation: isolate; text-align: center;
  /* Moderner, dezent grüner Aurora-Grund (kein Schwarz) – hebt sich lebendig
     vom flachen grünen Footer ab. Blobs + mausreaktiver Schein darüber. */
  background:
    radial-gradient(120% 90% at 50% 0%, #0d271d 0%, #0a1f18 55%, #081a15 100%);
  padding-block: clamp(4.75rem, 3.5rem + 6vw, 8.5rem);
  border-bottom: 1px solid rgba(255,255,255,.05);
  --mx: 50%; --my: 42%;
}
.brand-finale__aurora { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.brand-finale__blob {
  position: absolute; display: block; border-radius: 50%;
  filter: blur(60px); opacity: .55; mix-blend-mode: screen; will-change: transform;
}
.brand-finale__blob--1 { width: 46vw; height: 46vw; max-width: 640px; max-height: 640px;
  left: 8%; top: -14%; background: radial-gradient(circle, #12c05a, transparent 66%);
  animation: bf-drift-1 18s ease-in-out infinite; }
.brand-finale__blob--2 { width: 40vw; height: 40vw; max-width: 560px; max-height: 560px;
  right: 4%; top: 6%; background: radial-gradient(circle, #10b98c, transparent 66%);
  animation: bf-drift-2 22s ease-in-out infinite; }
.brand-finale__blob--3 { width: 34vw; height: 34vw; max-width: 480px; max-height: 480px;
  left: 34%; bottom: -22%; background: radial-gradient(circle, color-mix(in srgb, var(--gold-500) 60%, #0a1f18), transparent 68%);
  opacity: .32; animation: bf-drift-3 26s ease-in-out infinite; }
/* Mausreaktiver Schein – folgt dem Cursor (JS setzt --mx/--my). */
.brand-finale__pointer {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(300px 300px at var(--mx) var(--my),
    rgba(60,201,120,.30), rgba(24,185,140,.14) 40%, transparent 62%);
  transition: background-position .2s ease;
}
@keyframes bf-drift-1 { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(6%, 8%) scale(1.12);} }
@keyframes bf-drift-2 { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(-7%, 5%) scale(1.08);} }
@keyframes bf-drift-3 { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(4%, -9%) scale(1.15);} }

.brand-finale__inner { position: relative; z-index: 2; }
.brand-finale__stage { position: relative; display: inline-block; }
.brand-finale__glow {
  position: absolute; inset: -38%; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(60,191,99,.30), color-mix(in srgb, var(--gold-500) 12%, transparent) 42%, transparent 66%);
  filter: blur(6px);
}
@media (prefers-reduced-motion: reduce) {
  .brand-finale__blob { animation: none !important; }
  .brand-finale__pointer { display: none; }
}
.brand-finale__logo {
  position: relative; display: block;
  width: clamp(180px, 132px + 13vw, 290px); height: auto;
  filter: drop-shadow(0 20px 44px rgba(0,0,0,.5));
}
.brand-finale__claim {
  margin: clamp(1.75rem, 1.25rem + 2vw, 2.75rem) auto 0;
  max-width: 28ch;
  font-family: var(--font-display); font-weight: 700; line-height: 1.25;
  font-size: clamp(1.35rem, 1rem + 1.9vw, 2.15rem);
  color: #fff; text-wrap: balance;
}

/* Scroll-gekoppelte Anreise des Logos (moderne Browser). Läuft ZUSÄTZLICH
   zur Reveal-Basis der Wrapper – animiert werden nur die inneren Elemente. */
@supports (animation-timeline: view()) {
  .js .brand-finale__logo {
    animation: brand-finale-in linear both;
    animation-timeline: view();
    animation-range: entry 5% entry 80%;
  }
  .js .brand-finale__glow {
    animation: brand-finale-glow linear both;
    animation-timeline: view();
    animation-range: entry 25% entry 100%;
  }
}
@keyframes brand-finale-in {
  from { transform: scale(.55) rotate(-9deg); opacity: 0; }
  55%  { opacity: 1; }
  to   { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes brand-finale-glow {
  from { opacity: 0; transform: scale(.55); }
  to   { opacity: 1; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-finale__logo, .brand-finale__glow { animation: none !important; opacity: 1 !important; transform: none !important; }
}
.section > .container, .page-hero > .container { position: relative; z-index: 1; }

/* Parallax-Bühne: großes Hanfblatt hinter einer Sektion */
.leaf-stage { position: relative; overflow: hidden; }
/* Zentrierung via transform, damit die JS-Parallax (CSS-Property 'translate') komponiert. */
.leaf-stage__leaf { position: absolute; z-index: 0; pointer-events: none; opacity: .08;
  width: clamp(280px, 42vw, 620px); top: 50%; left: 50%; transform: translate(-50%, -50%); will-change: translate; }
.section--dark .leaf-stage__leaf { opacity: .12; }

/* Bei reduced-motion nur die Parallax-Verschiebung (translate) zurücksetzen,
   Zentrierung/Rotation (transform) bleiben erhalten. */
@media (prefers-reduced-motion: reduce) {
  .deco-leaf, .leaf-stage__leaf, .deco-art { translate: none !important; }
}

/* ---------- Responsive-Feinschliff ---------- */
@media (max-width: 720px) {
  :root { --header-h: 76px; }
  .hero__inner { min-height: min(84vh, 620px); }
  .hero .lead { font-size: 1.05rem; }
  .btn--lg { padding: .95rem 1.4rem; font-size: var(--fs-300); }
  .hero__cta.btn-row { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__stats { gap: 1.25rem 1.75rem; }
  .plan--featured::before { font-size: .72rem; }
}
@media (max-width: 480px) {
  .container, .container-narrow { width: min(100% - 1.75rem, var(--container)); }
  .card, .plan { padding: var(--space-5); }
  .hero__stat b { font-size: 1.5rem; }
  .cta-band { padding: 1.5rem; }
}
/* Touch-Targets: Mindesthöhe für Buttons/Links auf Touch */
@media (pointer: coarse) {
  .btn { min-height: 46px; }
  .primary-nav a, .nav-doc { display: inline-flex; align-items: center; min-height: 44px; }
}

/* 16) ------------------- KARTE (Klick-zum-Laden) & KONTAKT (v1.4) ---- */
.csc-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4/3; background: var(--green-800); display: grid; place-items: center; }
.csc-map__consent { text-align: center; padding: clamp(1.25rem, 1rem + 2vw, 2.5rem); color: var(--cream-100); max-width: 42ch; }
.csc-map__icon { display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 50%;
  background: color-mix(in srgb, #fff 12%, transparent); color: var(--gold-400); margin-bottom: .75rem; }
.csc-map__title { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: var(--fs-400); margin: 0 0 .35rem; }
.csc-map__text { color: color-mix(in srgb, var(--cream-100) 85%, transparent); font-size: var(--fs-200); margin: 0 0 1rem; }
.csc-map__text a { color: var(--gold-400); }
.csc-map__frame { width: 100%; height: 100%; border: 0; display: block; }
.csc-map.is-loaded { background: none; }

.contact-list { display: grid; gap: .85rem; margin: var(--space-4) 0; }
.contact-list p { display: flex; gap: .7rem; align-items: flex-start; margin: 0; color: var(--ink-700); }
.contact-list a { color: var(--link); }
.contact-list__ico { flex: 0 0 auto; display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
  background: color-mix(in srgb, var(--green-500) 14%, transparent); color: var(--green-700); }
