/* =========================================================
   OGV Marbach — Vereinswebseite
   Design: "Heritage garden community, seit 1891"
   Local fonts (DSGVO), mobile-first, no external requests
   ========================================================= */

/* ---------- Local fonts ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('assets/fonts/mulish-latin.woff2') format('woff2');
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* palette — drawn from the vereinslogo (tree green, apple, pear) */
  --ink:        #1d2817;
  --ink-soft:   #47543b;
  --forest:     #2f5233;
  --forest-700: #26421f;
  --leaf:       #4c7a34;
  --leaf-600:   #5a8a3c;
  --leaf-700:   #3d6b2b;
  --moss:       #e9efdf;
  --moss-line:  #dbe3cc;
  --cream:      #f7f4ec;
  --paper:      #fdfcf7;
  --surface:    #ffffff;
  --apricot:    #d98a3d;
  --apricot-d:  #b96f28;
  --berry:      #b23a2e;
  --white:      #ffffff;

  /* semantic */
  --bg:         var(--cream);
  --text:       var(--ink);
  --text-muted: var(--ink-soft);
  --primary:    var(--forest);
  --accent:     var(--apricot);

  /* type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Mulish', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  /* layout */
  --maxw: 1160px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  /* shadows */
  --shadow-sm: 0 2px 6px rgba(29, 40, 23, .06);
  --shadow-md: 0 14px 34px -18px rgba(29, 40, 23, .28);
  --shadow-lg: 0 30px 70px -30px rgba(29, 40, 23, .38);

  --header-h: 68px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--leaf); text-decoration: none; }
a:hover { color: var(--forest); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }

:focus-visible {
  outline: 3px solid var(--leaf-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--forest); color: #fff; padding: .7rem 1.1rem;
  border-radius: 10px; z-index: 200; transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--forest);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .98rem;
  line-height: 1;
  padding: .85rem 1.4rem;
  min-height: 48px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  text-align: center;
  transition: transform .18s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }
.btn:active { transform: translateY(0); }
.btn__ico { display: inline-flex; }

.btn--primary { background: var(--forest); color: #fff; box-shadow: 0 10px 24px -14px rgba(47,82,51,.9); }
.btn--primary:hover { background: var(--forest-700); }

.btn--ghost { background: transparent; color: var(--forest); border-color: rgba(47,82,51,.28); }
.btn--ghost:hover { background: rgba(47,82,51,.06); color: var(--forest); border-color: var(--forest); box-shadow: none; }

.btn--light { background: #fff; color: var(--forest); }
.btn--light:hover { background: #fff; color: var(--forest-700); }

.btn--lg { padding: 1rem 1.7rem; min-height: 54px; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- Section rhythm ---------- */
.section { padding-block: clamp(3.6rem, 8vw, 6.5rem); }
.section--muted { background: var(--moss); }
.section--forest { background: var(--forest); color: #eef1e6; }
.section--forest h2 { color: #fff; }

.section__head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head h2 { margin-top: .35rem; }
.section__intro { color: var(--text-muted); font-size: 1.08rem; margin-top: .9rem; }
.section--forest .section__intro { color: #d6e0cc; }

h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body);
  font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--leaf-700);
}
.eyebrow--light { color: #c7d8b3; }
.eyebrow__leaf { color: var(--leaf-700); display: inline-flex; }
.eyebrow__line { width: 26px; height: 2px; background: currentColor; opacity: .6; border-radius: 2px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 244, 236, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 244, 236, .94);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--moss-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { width: 42px; height: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--forest); }
.brand__place { font-size: .72rem; color: var(--text-muted); letter-spacing: .02em; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav__list { display: flex; align-items: center; gap: 1.35rem; list-style: none; padding: 0; }
.nav__link {
  position: relative; color: var(--ink-soft); font-weight: 600; font-size: .95rem;
  padding: .35rem 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--leaf-600); border-radius: 2px; transition: width .22s ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--forest); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__cta { padding-inline: 1.25rem; }

/* Burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--moss-line); border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  padding: 0; place-items: center;
}
.burger__bar {
  display: block; width: 22px; height: 2px; margin: 2.5px auto;
  background: var(--forest); border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
}
.burger.is-open .burger__bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.is-open .burger__bar:nth-child(2) { opacity: 0; }
.burger.is-open .burger__bar:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.nav-scrim {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(29, 40, 23, .45);
  backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .28s ease;
}
.nav-scrim.is-visible { opacity: 1; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding-block: clamp(2.4rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5.5rem); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 85% 0%, rgba(76,122,52,.14), transparent 70%),
    radial-gradient(50% 45% at 0% 100%, rgba(217,138,61,.10), transparent 70%);
}
.hero__grid {
  display: grid; gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
.hero__title {
  font-size: clamp(2.3rem, 8vw, 4rem);
  font-weight: 600;
  margin-top: 1rem;
  letter-spacing: -.02em;
}
.hero__lead {
  margin-top: 1.25rem; font-size: 1.12rem; color: var(--text-muted);
  max-width: 34em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 5vw, 2.6rem);
  list-style: none; padding: 0; margin-top: 2.4rem;
  border-top: 1px solid var(--moss-line); padding-top: 1.5rem;
}
.hero__stats li { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-display); font-weight: 600; font-size: 1.8rem; color: var(--forest); line-height: 1; }
.stat__label { font-size: .82rem; color: var(--text-muted); margin-top: .3rem; letter-spacing: .02em; }

.hero__media { position: relative; }
.hero__figure {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  transform: rotate(-1.2deg);
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transform: scale(1.02); }
.hero__figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(47,82,51,.16));
}

/* heritage seal */
.seal {
  position: absolute; right: -6px; bottom: -18px;
  width: clamp(84px, 22vw, 116px); height: auto;
  color: var(--forest);
  background: var(--cream); border-radius: 50%;
  padding: 6px; box-shadow: var(--shadow-md);
  animation: seal-in .8s .3s ease both;
}
.seal__ring { fill: none; stroke: var(--forest); stroke-width: 2; }
.seal__ring--thin { stroke: var(--apricot); stroke-width: 1; }
.seal__text { fill: var(--forest); font-family: var(--font-body); font-size: 7px; font-weight: 700; letter-spacing: 1.2px; }
.seal__year { fill: var(--forest); font-family: var(--font-display); font-weight: 600; font-size: 26px; }
.seal__sub { fill: var(--apricot-d); font-family: var(--font-body); font-weight: 700; font-size: 8px; letter-spacing: 2px; }
@keyframes seal-in { from { transform: scale(.6) rotate(-30deg); opacity: 0; } to { transform: none; opacity: 1; } }

/* =========================================================
   TRUST BAND
   ========================================================= */
.trust { background: var(--paper); border-block: 1px solid var(--moss-line); padding-block: clamp(2.6rem, 6vw, 4rem); }
.trust__grid {
  display: grid; gap: clamp(1.2rem, 3vw, 2rem);
  grid-template-columns: 1fr;
}
.trust__item { }
.trust__ico {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--moss); color: var(--forest);
  margin-bottom: .9rem;
}
.trust__item h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.trust__item p { color: var(--text-muted); font-size: .96rem; }

/* =========================================================
   VEREIN / ABOUT
   ========================================================= */
.verein__grid, .warum__grid, .vh__grid, .standort__grid, .kontakt__grid {
  display: grid; gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
.illus {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 5 / 4;
}
.illus svg { width: 100%; height: 100%; }
.illus__tag, .mapph__tag {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(29,40,23,.72); color: #fff;
  font-size: .68rem; font-weight: 600; letter-spacing: .04em;
  padding: .3rem .6rem; border-radius: 999px; text-transform: uppercase;
}
.verein__copy h2 { margin-top: .35rem; }
.verein__copy p { color: var(--text-muted); margin-top: 1rem; }

.factbox {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .6rem; margin-top: 1.8rem;
  border-top: 1px solid var(--moss-line); padding-top: 1.4rem;
}
.factbox dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--leaf-700); font-weight: 700; }
.factbox dd { font-family: var(--font-display); font-size: 1.02rem; color: var(--ink); margin-top: .2rem; }

/* =========================================================
   LEISTUNGEN — cards
   ========================================================= */
.cards {
  display: grid; gap: clamp(1rem, 2.4vw, 1.5rem);
  grid-template-columns: 1fr;
}
.card {
  background: var(--surface); border: 1px solid var(--moss-line);
  border-radius: var(--radius); padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cdd9bd; }
.card__ico {
  display: inline-grid; place-items: center;
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(150deg, var(--moss), #dbe8c6);
  color: var(--forest); margin-bottom: 1rem;
}
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--text-muted); font-size: .96rem; }

/* =========================================================
   WARUM / VORTEILE + PRICE CARD
   ========================================================= */
.warum__grid { align-items: start; }
.checklist { list-style: none; padding: 0; margin-top: 1.6rem; display: grid; gap: .85rem; }
.checklist li { display: flex; align-items: flex-start; gap: .75rem; font-weight: 500; }
.check {
  flex: none; display: inline-grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--forest); color: #fff; margin-top: 1px;
}

.pricecard {
  background: var(--surface); border: 1px solid var(--moss-line);
  border-radius: var(--radius-lg); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.pricecard::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--forest), var(--leaf-600), var(--apricot));
}
.pricecard__kicker { font-weight: 700; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; color: var(--leaf-700); }
.pricecard__price { display: flex; align-items: baseline; gap: .4rem; margin-top: .6rem; }
.pricecard__amount { font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--forest); line-height: 1; }
.pricecard__per { color: var(--text-muted); font-weight: 600; }
.pricecard__note { color: var(--text-muted); font-size: .92rem; margin-top: .5rem; }
.steps { list-style: none; padding: 0; margin: 1.6rem 0; display: grid; gap: .9rem; }
.steps li { display: flex; align-items: center; gap: .8rem; font-size: .96rem; }
.steps__n {
  flex: none; display: inline-grid; place-items: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--moss); color: var(--forest); font-weight: 800; font-family: var(--font-display);
}
.pricecard__hint { font-size: .84rem; color: var(--text-muted); margin-top: 1rem; text-align: center; }

/* =========================================================
   VEREINSHEIM
   ========================================================= */
.vh__grid { align-items: center; }
.vh__copy p { color: #d6e0cc; margin-top: 1rem; }
.vh__copy h2 { margin-top: .35rem; }
.vh__features { list-style: none; padding: 0; margin: 1.6rem 0; display: grid; gap: .7rem; }
.vh__features li { position: relative; padding-left: 1.7rem; color: #e6ecdd; }
.vh__features li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--apricot);
}
.vh__contactline { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-sm); padding: 1rem 1.1rem; margin-bottom: 1.6rem; }
.vh__contactline p { color: #e9efe0; font-size: .92rem; margin: 0; }
.vh__contactline strong { color: #fff; }
.illus--house { box-shadow: var(--shadow-lg); }

/* =========================================================
   TERMINE
   ========================================================= */
.termine { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.termin {
  display: flex; gap: 1.1rem; align-items: stretch;
  background: var(--surface); border: 1px solid var(--moss-line);
  border-radius: var(--radius); padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.termin:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.termin__date {
  flex: none; display: grid; place-content: center; text-align: center;
  width: 66px; border-radius: 14px;
  background: linear-gradient(160deg, var(--forest), var(--leaf-600)); color: #fff;
  padding: .5rem;
}
.termin__day { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; line-height: 1; }
.termin__mon { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; margin-top: .2rem; }
.termin__body h3 { margin-bottom: .25rem; }
.termin__body p { color: var(--text-muted); font-size: .94rem; }

/* =========================================================
   STANDORT
   ========================================================= */
.standort__grid { align-items: center; }
.standort__copy p { color: var(--text-muted); margin-top: 1rem; }
.standort__copy h2 { margin-top: .35rem; }
.mapph { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5 / 4; border: 1px solid var(--moss-line); }
.mapph svg { width: 100%; height: 100%; }
.standort__address { font-style: normal; margin-top: 1.1rem; color: var(--text-muted); font-size: .96rem; line-height: 1.6; }
.standort__address strong { color: var(--ink); }

/* accordion */
.accordion { margin: 1.6rem 0; border-top: 1px solid var(--moss-line); }
.acc__item { border-bottom: 1px solid var(--moss-line); }
.acc__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: 0; cursor: pointer;
  padding: 1.05rem 0; font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  color: var(--ink); text-align: left;
}
.acc__icon { position: relative; flex: none; width: 20px; height: 20px; }
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--leaf-600); border-radius: 2px;
}
.acc__icon::before { width: 14px; height: 2px; }
.acc__icon::after { width: 2px; height: 14px; transition: transform .28s ease; }
.acc__trigger[aria-expanded="true"] .acc__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.acc__panel { overflow: hidden; height: 0; transition: height .3s ease; }
.acc__inner { padding-bottom: 1.1rem; color: var(--text-muted); font-size: .95rem; }

/* =========================================================
   KONTAKT + FORM
   ========================================================= */
.kontakt__grid { align-items: start; }
.contactlist { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 1rem; }
.contactlist li { display: flex; align-items: center; gap: .8rem; }
.contactlist__ico {
  flex: none; display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--moss-line); color: var(--forest);
}
.kontakt__vorstand { margin-top: 1.4rem; color: var(--text-muted); font-size: .92rem; }

.form {
  background: var(--surface); border: 1px solid var(--moss-line);
  border-radius: var(--radius-lg); padding: clamp(1.4rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-md);
  display: grid; gap: 1.05rem;
}
.form__grid2 { display: grid; gap: 1.05rem; grid-template-columns: 1fr; }
.field { display: grid; gap: .4rem; }
.field__label { font-weight: 700; font-size: .88rem; color: var(--ink); }
.field__opt { font-weight: 500; color: var(--text-muted); }
.req { color: var(--berry); }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--moss-line); border-radius: 12px;
  padding: .8rem .9rem; min-height: 48px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--leaf-600); background: #fff;
  box-shadow: 0 0 0 4px rgba(76,122,52,.14);
}
.field__error { color: var(--berry); font-size: .82rem; font-weight: 600; display: none; }
.field.has-error input, .field.has-error textarea { border-color: var(--berry); }
.field.has-error .field__error { display: block; }

.consent {
  display: grid; grid-template-columns: auto 1fr; gap: .7rem .7rem;
  align-items: start; background: var(--moss); border-radius: 12px; padding: .9rem 1rem;
}
.consent input { width: 22px; height: 22px; margin-top: 1px; accent-color: var(--forest); flex: none; }
.consent__text { font-size: .9rem; color: var(--ink-soft); line-height: 1.5; }
.consent .field__error { grid-column: 1 / -1; }
.consent.has-error { outline: 1.5px solid var(--berry); }

.form__status { font-size: .95rem; font-weight: 600; text-align: center; min-height: 1.2em; }
.form__status.is-success { color: var(--forest); }
.form__status.is-error { color: var(--berry); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--forest-700); color: #d3ddc7; padding-top: clamp(2.6rem, 6vw, 4rem); }
.footer__grid {
  display: grid; gap: 2rem; grid-template-columns: 1fr;
  padding-bottom: 2.4rem;
}
.footer__brandhead { display: flex; align-items: center; gap: .7rem; color: #fff; font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
.footer__brandhead img { width: 40px; height: auto; background: #fff; border-radius: 10px; padding: 4px; }
.footer__tag { margin-top: .9rem; color: #b9c8a9; font-size: .92rem; }
.footer__nav h4, .footer__social h4 { color: #fff; font-family: var(--font-body); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .9rem; }
.footer__nav ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer__nav a { color: #cdd8bd; font-size: .95rem; }
.footer__nav a:hover { color: #fff; }
.social { display: flex; gap: .6rem; }
.social__link {
  display: inline-grid; place-items: center; width: 44px; height: 44px;
  border-radius: 12px; background: rgba(255,255,255,.08); color: #dbe6cc;
  border: 1px solid rgba(255,255,255,.12); transition: background-color .2s ease, color .2s ease;
}
.social__link:hover { background: rgba(255,255,255,.16); color: #fff; }
.footer__socialnote { font-size: .74rem; color: #8ea07b; margin-top: .7rem; max-width: 22ch; }

.footer__bottom {
  display: flex; flex-direction: column; gap: .6rem; text-align: center;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.4rem;
}
.footer__copy { font-size: .86rem; color: #a9ba97; }
.footer__powered { font-size: .9rem; color: #cdd8bd; }
.wowobot { color: #22b8e0; font-weight: 700; }
.wowobot:hover { color: #22b8e0; text-decoration: underline; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; z-index: 95;
    width: min(84vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    background: var(--paper);
    padding: calc(var(--header-h) + 1.4rem) 1.6rem 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(105%);
    transition: transform .32s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav__list li { border-bottom: 1px solid var(--moss-line); }
  .nav__link { display: block; padding: 1rem 0; font-size: 1.06rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 1.4rem; width: 100%; }
  .burger { display: grid; }
}

@media (min-width: 620px) {
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .form__grid2 { grid-template-columns: 1fr 1fr; }
  .termine { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 861px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .verein__grid { grid-template-columns: .95fr 1.05fr; }
  .warum__grid { grid-template-columns: 1.15fr .85fr; }
  .vh__grid { grid-template-columns: 1fr 1fr; }
  .standort__grid { grid-template-columns: 1fr 1fr; }
  .kontakt__grid { grid-template-columns: .9fr 1.1fr; }
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .termine { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 861px) {
  /* keep verein illustration first on desktop */
  .verein__media { order: 0; }
}

/* =========================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ========================================================= */
.legal-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,244,236,.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--moss-line);
}
.legal-header .header-inner { min-height: var(--header-h); }
.legal-header .back {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .92rem; color: var(--forest);
}
.legal-main { padding-block: clamp(2.4rem, 6vw, 4.5rem); }
.legal { max-width: 780px; }
.legal .eyebrow { margin-bottom: .5rem; }
.legal h1 { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 1.2rem; }
.legal h2 { font-size: clamp(1.3rem, 3.5vw, 1.7rem); margin-top: 2.4rem; margin-bottom: .6rem; }
.legal h3 { font-size: 1.05rem; margin-top: 1.4rem; margin-bottom: .3rem; }
.legal p, .legal li { color: var(--text-muted); }
.legal p { margin-bottom: 1rem; }
.legal ul { margin: 0 0 1rem 1.1rem; display: grid; gap: .4rem; }
.legal address { font-style: normal; }
.legal .lead { font-size: 1.08rem; }
.notice {
  display: flex; gap: .8rem; align-items: flex-start;
  background: #fff7ea; border: 1px solid #f0d9b3; border-left: 4px solid var(--apricot);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-bottom: 2.2rem;
}
.notice svg { flex: none; color: var(--apricot-d); margin-top: 2px; }
.notice p { margin: 0; color: #7a5a26; font-size: .92rem; }
.notice strong { color: #5f4519; }
.ph {
  background: var(--moss); color: var(--forest-700);
  border-radius: 6px; padding: .05em .5em; font-weight: 700; font-size: .92em;
  border: 1px dashed var(--leaf-600);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .seal { animation: none; }
  .btn, .card, .termin { transition: none; }
  * { scroll-behavior: auto !important; }
}
