/* =========================================================
   Wald-Schreiner · Wood Wide Web Tour
   Aesthetik: "Editorial Nature" – warm, organisch, ruhig
   ========================================================= */

:root {
  /* Marken-Palette (aus wald-schreiner.de extrahiert) */
  --bg:          #f4f8f1;   /* Mint-Weiß, Haupt-Hintergrund */
  --bg-tint:     #eef5e9;   /* leichter Grün-Tint */
  --ink:         #16241a;   /* tiefes Waldgrün-Schwarz */
  --ink-soft:    #2c3d30;
  --forest:      #4a7c59;   /* Primärgrün */
  --forest-deep: #355e41;
  --sage:        #647758;   /* gedämpftes Salbei */
  --mist:        #8ea87e;   /* helles Sage */
  --sage-strong: #4c5d40;   /* dunkleres Sage – lesbare Labels auf hellem Grund */

  /* behutsam ergänzte Wärme (nicht im Original, für Editorial-Touch) */
  --cream:       #efe7d6;   /* warmes Papier */
  --ember:       #b07a45;   /* erdiger Akzent, sparsam */
  --ember-soft:  #c79a6e;   /* hellerer Erd-Ton */

  --paper:       #ffffff;
  --line:        rgba(22, 36, 26, 0.12);
  --line-light:  rgba(244, 248, 241, 0.16);

  /* Typo */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Hanken Grotesk", system-ui, sans-serif;
  --mono:    "Spline Sans Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 4px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
/* <picture> soll im Layout transparent sein – bestehende img-Regeln greifen unverändert */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
em { font-style: italic; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}

::selection { background: var(--forest); color: #fff; }

/* Sichtbarer Tastatur-Fokus (Barrierefreiheit) */
:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2.5px solid var(--forest);
  outline-offset: 3px;
  border-radius: 3px;
}
.hero :focus-visible,
.invite :focus-visible,
.story--feature :focus-visible,
.footer :focus-visible { outline-color: #f1f7ec; }

/* Skip-Link – springt per Tastatur direkt zum Hauptinhalt */
.skip-link {
  position: fixed; left: 1rem; top: -120%; z-index: 200;
  background: var(--forest); color: #f6fbf3;
  padding: 0.7em 1.2em; border-radius: 999px;
  font-family: var(--body); font-weight: 600; font-size: 0.95rem;
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.55);
  transition: top 0.25s var(--ease);
}
.skip-link:focus-visible { top: 1rem; outline: 2.5px solid #f1f7ec; outline-offset: 3px; }

/* ---------- Grain Overlay ---------- */
.grain {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 3;
  opacity: 0.045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Eyebrow / Labels ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-strong);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-weight: 500;
}
.eyebrow--light { color: rgba(247, 251, 244, 0.95); text-shadow: 0 1px 12px rgba(0,0,0,0.55); }
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.18);
}
.eyebrow--light .eyebrow__dot { background: var(--mist); box-shadow: 0 0 0 3px rgba(142, 168, 126, 0.25); }

.section-title {
  font-size: clamp(2rem, 1.4rem + 3vw, 3.6rem);
  margin-top: 0.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.78em; --pad-x: 1.5em;
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.btn--lg { --pad-y: 0.95em; --pad-x: 1.9em; font-size: 1rem; }

.btn--solid {
  background: var(--forest);
  color: #f6fbf3;
  box-shadow: 0 8px 24px -10px rgba(53, 94, 65, 0.7);
}
.btn--solid:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -12px rgba(53, 94, 65, 0.8);
}
.btn--ghost {
  background: transparent;
  color: #f4f8f1;
  border-color: rgba(244, 248, 241, 0.45);
}
.btn--ghost:hover {
  background: rgba(244, 248, 241, 0.1);
  border-color: rgba(244, 248, 241, 0.8);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--forest-deep);
  border-color: rgba(74, 124, 89, 0.45);
}
.btn--outline:hover {
  background: var(--forest);
  color: #f6fbf3;
  border-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -14px rgba(53, 94, 65, 0.7);
}
.intro__more { margin-top: 1.8rem; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  padding: clamp(1rem, 2vw, 1.6rem) 0;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), padding 0.45s var(--ease);
}
.site-header.is-stuck {
  background: rgba(244, 248, 241, 0.86);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px rgba(22, 36, 26, 0.5);
  padding: 0.7rem 0;
}

.nav-wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--ink); }
.brand__mark {
  width: 38px; height: 38px; color: var(--forest);
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: transform 0.5s var(--ease), color 0.4s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(-8deg); color: var(--forest-deep); }
.brand__mark svg { width: 24px; height: 24px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--display); font-size: 1.18rem; font-weight: 500; letter-spacing: -0.01em; }
.brand__sub { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--sage-strong); }

/* Hero ist dunkel → Header-Text hell solange nicht gestuck */
.site-header:not(.is-stuck) .brand,
.site-header:not(.is-stuck) .nav > a:not(.nav__cta) { color: #f3f7ef; text-shadow: 0 1px 10px rgba(13,24,16,0.4); }
.site-header:not(.is-stuck) .brand__mark { color: #f3f7ef; border-color: rgba(244,248,241,0.3); background: rgba(255,255,255,0.06); }
.site-header:not(.is-stuck) .brand__sub { color: rgba(243,247,239,0.7); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav > a:not(.btn) {
  font-size: 0.95rem; font-weight: 500; position: relative; padding: 0.3em 0;
  transition: color 0.3s var(--ease);
}
.nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease);
}
.nav > a:not(.btn):hover::after,
.nav > a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav > a.is-active { color: var(--forest); }
.site-header:not(.is-stuck) .nav > a.is-active { color: #fff; }
.nav__cta { margin-left: 0.5rem; }
.site-header:not(.is-stuck) .nav__cta { background: rgba(246,250,243,0.96); color: var(--ink); text-shadow: none; box-shadow: 0 10px 26px -12px rgba(0,0,0,0.45); }
.site-header:not(.is-stuck) .nav__cta:hover { background: #fff; transform: translateY(-2px); }

/* Mobile toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110;
}
.nav-toggle span { width: 26px; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s var(--ease); }
.site-header:not(.is-stuck) .nav-toggle { color: #f3f7ef; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5)); }
.site-header.is-stuck .nav-toggle, .nav-toggle { color: var(--ink); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 clamp(2rem, 5vh, 4rem);
  overflow: hidden;
  color: #f4f8f1;
}
.hero__media { position: absolute; inset: -8% 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,20,14,0.62) 0%, rgba(11,20,14,0.18) 26%, rgba(11,20,14,0.5) 60%, rgba(11,20,14,0.86) 86%, rgba(11,20,14,0.96) 100%),
    radial-gradient(130% 80% at 18% 88%, rgba(11,20,14,0.62), transparent 58%),
    radial-gradient(120% 80% at 50% 0%, transparent 45%, rgba(11,20,14,0.5) 100%);
}
.hero .grain { z-index: 2; opacity: 0.06; mix-blend-mode: overlay; }

.hero__inner {
  position: relative; z-index: 4;
  max-width: var(--maxw); width: 100%;
  margin-inline: auto; padding-inline: var(--gutter);
}
.hero__title {
  font-size: clamp(2.9rem, 1.5rem + 6.6vw, 7rem);
  font-weight: 300;
  margin: 1.1rem 0 1.4rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero__title span { display: block; }
.hero__title em { font-style: italic; color: #d9e8cf; font-weight: 400; }
.hero__lede {
  max-width: 46ch; font-size: clamp(1.05rem, 1rem + 0.5vw, 1.4rem);
  color: rgba(247,251,244,0.97); font-weight: 400;
  text-shadow: 0 1px 18px rgba(0,0,0,0.5);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.hero__foot {
  position: relative; z-index: 4;
  max-width: var(--maxw); width: 100%;
  margin: clamp(2rem,5vh,3.5rem) auto 0; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.hero__coords { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,251,244,0.82); text-shadow: 0 1px 8px rgba(0,0,0,0.5); }

/* =========================================================
   INTRO / WILLKOMMEN
   ========================================================= */
.intro { padding: clamp(5rem, 12vh, 9rem) 0; }
.intro__grid {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas: "lead media" "body media";
  column-gap: clamp(2rem, 5vw, 5rem); row-gap: 2rem;
  align-items: start;
}
.intro__lead { grid-area: lead; }
.intro__body { grid-area: body; max-width: 42ch; }
.intro__media { grid-area: media; position: relative; align-self: stretch; }

.intro__quote {
  font-size: clamp(2.2rem, 1.4rem + 3.6vw, 4.4rem);
  font-weight: 300; margin-top: 1rem; max-width: 14ch;
}
.intro__quote em { color: var(--forest); }
.intro__body p + p { margin-top: 1.1rem; }
.intro__body strong { font-weight: 600; color: var(--forest-deep); }
.intro__sign { font-family: var(--display); font-style: italic; font-size: 1.2rem; color: var(--ink-soft); margin-top: 1.3rem !important; }

.signature { margin-top: 1.6rem !important; display: flex; flex-direction: column; }
.signature__name { font-family: var(--display); font-style: italic; font-size: 1.5rem; color: var(--ink); }
.signature__role { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-strong); margin-top: 0.2rem; }

/* ---------- Framed image ---------- */
.framed {
  position: relative; overflow: hidden; border-radius: var(--radius);
  box-shadow: 0 40px 80px -40px rgba(22, 36, 26, 0.55);
}
.framed::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
  border-radius: inherit; pointer-events: none;
}
.framed img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.framed:hover img { transform: scale(1.04); }
.intro__media .framed { height: 100%; min-height: 420px; }
.framed--tall { aspect-ratio: 4 / 5; }

.framed__tag {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; background: rgba(22,36,26,0.55); backdrop-filter: blur(6px);
  padding: 0.5em 0.9em; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2);
}
.framed__tag--right { left: auto; right: 1rem; }

/* =========================================================
   TIEFE NATURERFAHRUNG
   ========================================================= */
.nature { background: var(--bg-tint); padding: clamp(5rem, 12vh, 9rem) 0; position: relative; }
.nature__inner {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.nature__para { font-size: clamp(1.15rem, 1rem + 0.8vw, 1.6rem); line-height: 1.55; margin-top: 1.4rem; max-width: 30ch; }
.dropcap {
  float: left; font-family: var(--display); font-weight: 300;
  font-size: 4.4em; line-height: 0.74; padding: 0.05em 0.12em 0 0; color: var(--forest);
}
.nature__highlight {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2.3rem); line-height: 1.25;
  color: var(--forest-deep); margin-top: 1.8rem; max-width: 24ch;
}
.nature__ask { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage-strong); margin-top: 1.6rem; }
.nature__media .framed { height: 100%; }

/* =========================================================
   SERIES / STORIES
   ========================================================= */
.series { padding: clamp(5rem, 12vh, 9rem) 0 0; }
.series__head { max-width: var(--maxw); margin: 0 auto clamp(2.5rem, 6vh, 4.5rem); padding-inline: var(--gutter); }

.story {
  max-width: var(--maxw); margin-inline: auto; padding: clamp(2.5rem, 6vh, 5rem) var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.story--reverse .story__media { order: 2; }
.story__media .framed { aspect-ratio: 5 / 4; }

.story__index {
  font-family: var(--mono); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.1em; color: var(--sage-strong);
  display: inline-block; padding-bottom: 0.6rem; margin-bottom: 0.4rem;
  border-bottom: 1px solid var(--line); min-width: 3.5rem;
}
.story__index--ember { color: var(--ember); border-color: rgba(176,122,69,0.3); }
.story__title { font-size: clamp(1.7rem, 1.3rem + 2vw, 2.9rem); margin-bottom: 1.1rem; }
.story__title em { color: var(--forest); }
.story__text p + p { margin-top: 1rem; }
.story__text strong { color: var(--forest-deep); font-weight: 600; }

/* --- 02 Feature (dark + network) --- */
.story--feature {
  grid-template-columns: 1fr; max-width: none; padding: 0;
  background: var(--ink);
  color: #e6efe1; position: relative; overflow: hidden;
  margin: clamp(2.5rem, 6vh, 5rem) 0;
}
.story--feature::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 80% 10%, rgba(74,124,89,0.28), transparent 60%),
              radial-gradient(70% 100% at 0% 100%, rgba(53,94,65,0.35), transparent 55%);
}
.story__feature-inner {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin-inline: auto; padding: clamp(3.5rem, 9vh, 7rem) var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.story--feature .story__index--light { color: var(--mist); border-color: var(--line-light); }
.story--feature .story__title { color: #f1f7ec; }
.story--feature .story__lede { font-family: var(--display); font-style: italic; font-size: 1.3rem; color: var(--mist); margin-bottom: 1.2rem; }
.story--feature p { color: rgba(230,239,225,0.82); }

/* Network graphic */
.network { position: relative; display: flex; flex-direction: column; gap: 1.5rem; }
.network svg { width: 100%; height: auto; color: var(--mist); overflow: visible; }
.network__links path {
  fill: none; stroke-linecap: round;
  stroke-dasharray: var(--len, 600); stroke-dashoffset: var(--len, 600);
  opacity: 0.55;
}
.is-visible .network__links path { animation: draw 1.6s var(--ease) forwards; }
.is-visible .network__links path:nth-child(2){ animation-delay: .12s }
.is-visible .network__links path:nth-child(3){ animation-delay: .24s }
.is-visible .network__links path:nth-child(4){ animation-delay: .36s }
.is-visible .network__links path:nth-child(5){ animation-delay: .48s }
.is-visible .network__links path:nth-child(6){ animation-delay: .60s }
.is-visible .network__links path:nth-child(7){ animation-delay: .72s }
.is-visible .network__links path:nth-child(8){ animation-delay: .84s }
@keyframes draw { to { stroke-dashoffset: 0; } }

.node { fill: var(--mist); opacity: 0; transform-box: fill-box; transform-origin: center; }
.is-visible .node { animation: pop 0.5s var(--ease) forwards; animation-delay: 0.9s; }
.is-visible .node--core { animation-delay: 0.2s; }
@keyframes pop { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
.node--core { fill: #f1f7ec; }
.node--core { filter: drop-shadow(0 0 8px rgba(241,247,236,0.7)); }
.network .node--core { animation: pulse 3s ease-in-out infinite 1.4s; }
@keyframes pulse { 0%,100% { r: 9; } 50% { r: 11; } }

.network__legend { display: flex; flex-wrap: wrap; gap: 1.2rem; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(232,241,227,0.85); }
.network__legend li { display: inline-flex; align-items: center; gap: 0.5em; }
.network__legend .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mist); }
.network__legend .dot--core { background: #f1f7ec; box-shadow: 0 0 6px rgba(241,247,236,0.8); }
.network__legend .line { width: 16px; height: 1px; background: var(--mist); }

/* =========================================================
   DIE TOUR
   ========================================================= */
.tour { padding: clamp(5rem, 12vh, 9rem) 0; }
.tour__inner {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.tour__desc { margin-top: 1.4rem; max-width: 42ch; color: var(--ink-soft); }

.facts {
  margin-top: 2.4rem; display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
}
.fact {
  padding: 1.3rem 1.4rem; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.25rem;
}
.fact__label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-strong); }
.fact__value { font-family: var(--display); font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.3rem); line-height: 1; color: var(--ink); }
.fact__value small { font-size: 0.9rem; font-family: var(--body); color: var(--sage-strong); margin-left: 0.2em; }
.fact__note { font-size: 0.85rem; color: var(--ink-soft); }

.tour__cta { margin-top: 2.4rem; display: flex; flex-direction: column; gap: 0.8rem; align-items: flex-start; }
.tour__hint { font-size: 0.85rem; color: var(--sage-strong); }
.tour__media .framed { height: 100%; }

.tour__includes { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.55rem; }
.tour__includes li { position: relative; padding-left: 1.7rem; color: var(--ink-soft); }
.tour__includes li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--forest); box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.16);
}

/* Checkliste */
.checklist {
  width: min(var(--maxw), calc(100% - 2 * var(--gutter)));
  margin: clamp(3rem, 7vh, 5rem) auto 0;
  padding: clamp(1.8rem, 4vw, 3rem);
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 3);
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center;
}
.checklist__title { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.2rem); margin: 0.5rem 0 0.8rem; }
.checklist__lead { color: var(--ink-soft); max-width: 38ch; }
.checklist__items { display: flex; flex-direction: column; }
.checklist__items li {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.85rem 0; border-bottom: 1px solid var(--line);
  font-size: 1.02rem; color: var(--ink);
}
.checklist__items li:first-child { padding-top: 0; }
.checklist__ico { font-size: 1.25rem; line-height: 1; filter: saturate(0.85); }
.checklist__note {
  margin-top: 1.1rem; font-family: var(--display); font-style: italic;
  font-size: 1.05rem; color: var(--sage-strong);
}

/* =========================================================
   INVITE / CTA BAND
   ========================================================= */
.invite {
  position: relative; overflow: hidden; color: #f4f8f1;
  padding: clamp(5rem, 14vh, 10rem) 0;
  text-align: center;
}
.invite__media { position: absolute; inset: -10% 0; z-index: 0; }
.invite__media img { width: 100%; height: 100%; object-fit: cover; }
.invite__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,24,16,0.82), rgba(13,24,16,0.7)),
              radial-gradient(90% 90% at 50% 50%, rgba(53,94,65,0.4), transparent 70%);
}
.invite .grain { z-index: 2; mix-blend-mode: overlay; opacity: 0.07; }
.invite__inner { position: relative; z-index: 3; max-width: 760px; margin-inline: auto; padding-inline: var(--gutter); }
.invite__title { font-size: clamp(2rem, 1.3rem + 3.6vw, 4rem); font-weight: 300; }
.invite__lede { margin: 1.4rem auto 0; max-width: 52ch; color: rgba(244,248,241,0.88); font-weight: 300; font-size: 1.15rem; }
.invite__list { margin: 2.2rem auto; display: inline-flex; flex-direction: column; gap: 0.7rem; text-align: left; }
.invite__list li { display: flex; align-items: baseline; gap: 0.8rem; font-size: 1.1rem; }
.invite__list span { color: var(--mist); font-family: var(--mono); }
.invite__ask { font-family: var(--display); font-style: italic; font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2.1rem); margin-bottom: 2rem; color: #e6efe1; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: #d8e3d2; padding: clamp(3.5rem, 8vh, 6rem) 0 0; position: relative; }
.footer__inner {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2.5rem, 6vw, 6rem);
  padding-bottom: clamp(3rem, 7vh, 5rem);
}
.footer .eyebrow { color: var(--mist); }
.footer .eyebrow__dot { background: var(--mist); }
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer__brand .brand__mark--lg { width: 52px; height: 52px; color: var(--mist); border-color: var(--line-light); background: rgba(255,255,255,0.04); }
.footer__brand .brand__mark--lg svg { width: 32px; height: 32px; }
.footer__name { font-family: var(--display); font-size: 1.55rem; line-height: 1.1; color: #eaf2e5; margin-top: 1.1rem; }
.footer__sub { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--mist); margin-top: 0.35rem; }
.footer__tag { margin-top: 1.3rem; max-width: 38ch; color: rgba(222,233,216,0.85); font-size: 1rem; line-height: 1.65; }

.contact-list { margin-top: 1.3rem; display: flex; flex-direction: column; gap: 0.9rem; }
.contact-list li { display: grid; grid-template-columns: 6rem 1fr; gap: 1rem; align-items: baseline; padding-bottom: 0.9rem; border-bottom: 1px solid var(--line-light); }
.contact-list span { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist); }
.contact-list a, .contact-list address { font-style: normal; color: #eaf2e5; overflow-wrap: anywhere; transition: color 0.3s var(--ease); }
.contact-list a:hover { color: var(--mist); }

.footer__bar {
  border-top: 1px solid var(--line-light);
  padding: 1.5rem var(--gutter);
  max-width: var(--maxw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.84rem; color: rgba(220,231,214,0.72);
}
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a:hover { color: var(--mist); }

/* =========================================================
   BUCHUNGS-OVERLAY (SimplyBook)
   ========================================================= */
body.sb-modal-open { overflow: hidden; }
.sb-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(0.75rem, 3vw, 2.5rem);
}
.sb-modal[hidden] { display: none; }
.sb-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 20, 14, 0.62);
  backdrop-filter: blur(5px);
  animation: sbFade 0.25s var(--ease);
}
.sb-modal__panel {
  position: relative; z-index: 1;
  width: min(940px, 100%); max-height: 92vh; overflow-y: auto;
  background: var(--bg); color: var(--ink);
  border-radius: calc(var(--radius) * 3);
  box-shadow: 0 50px 110px -30px rgba(0, 0, 0, 0.6);
  padding: clamp(1.4rem, 4vw, 2.6rem);
  animation: sbRise 0.35s var(--ease);
}
.sb-modal__close {
  position: absolute; top: 0.8rem; right: 0.9rem;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 1px solid var(--line); background: var(--paper);
  font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--ink);
  display: grid; place-items: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.sb-modal__close:hover { background: var(--bg-tint); transform: rotate(90deg); }
.sb-modal__head { margin-bottom: 1.4rem; padding-right: 2.5rem; }
.sb-modal__title { font-family: var(--display); font-weight: 300; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); margin-top: 0.4rem; }
.sb-modal__body { min-height: 340px; }
.sb-modal__loading { color: var(--sage-strong); font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 0.8rem; padding: 3.5rem 0; }
.sb-modal__loading::before { content: ""; width: 1.1rem; height: 1.1rem; border-radius: 50%; border: 2px solid rgba(74,124,89,0.28); border-top-color: var(--forest); animation: sbSpin 0.8s linear infinite; }
@keyframes sbSpin { to { transform: rotate(360deg); } }
.sb-modal__fallback { margin-top: 1rem; font-size: 0.9rem; color: var(--ink-soft); }
.sb-modal__fallback a { color: var(--forest-deep); text-decoration: underline; }
/* Bei Verzoegerung/Fehler: Fallback als prominenter Button statt Kleingedrucktes */
.sb-modal.is-slow .sb-modal__fallback { margin-top: 1.4rem; font-size: 0.95rem; text-align: center; }
.sb-modal.is-slow .sb-modal__fallback a { display: inline-block; padding: 0.7rem 1.3rem; border-radius: 999px; background: var(--forest); color: #f6fbf3; text-decoration: none; font-weight: 600; }
.sb-modal.is-slow .sb-modal__fallback a:hover { background: var(--forest-deep); }
#sbw_box iframe { width: 100% !important; border: 0; display: block; }
@keyframes sbFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes sbRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .sb-modal__backdrop, .sb-modal__panel { animation: none; }
  .sb-modal__loading::before { animation: none; }
}

/* =========================================================
   PAGE HERO (Unterseiten) + ABOUT
   ========================================================= */
.page-hero {
  position: relative; overflow: hidden; color: #f4f8f1;
  min-height: 64svh; display: flex; align-items: flex-end;
  padding: 0 0 clamp(2.5rem, 6vh, 4.5rem);
}
.page-hero__media { position: absolute; inset: -8% 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,20,14,0.6) 0%, rgba(11,20,14,0.28) 38%, rgba(11,20,14,0.7) 78%, rgba(11,20,14,0.95) 100%),
    radial-gradient(130% 80% at 15% 90%, rgba(11,20,14,0.55), transparent 60%);
}
.page-hero .grain { z-index: 2; opacity: 0.06; mix-blend-mode: overlay; }
.page-hero__inner { position: relative; z-index: 3; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); width: 100%; }
.page-hero__title { font-size: clamp(2.6rem, 1.6rem + 4vw, 5.2rem); font-weight: 300; margin-top: 1rem; text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.page-hero__title em { font-style: italic; color: #d9e8cf; }
.page-hero__lede { max-width: 50ch; margin-top: 1.2rem; font-size: clamp(1.05rem, 1rem + 0.5vw, 1.35rem); font-weight: 400; color: rgba(247,251,244,0.96); text-shadow: 0 1px 16px rgba(0,0,0,0.5); }

.about-lead { padding: clamp(4rem, 10vh, 8rem) 0 0; }
.about-quote {
  max-width: 22ch; font-family: var(--display); font-weight: 300;
  font-size: clamp(1.8rem, 1.2rem + 3vw, 3.6rem); line-height: 1.12;
}
.about-quote em { color: var(--forest); }

/* Werte / Prinzipien */
.values { padding: clamp(4rem, 9vh, 7rem) 0; }
.values__grid {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem);
}
.value {
  padding: 2rem 1.8rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: calc(var(--radius) * 2);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.value:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -36px rgba(22,36,26,0.5); }
.value__num { font-family: var(--mono); font-size: 0.8rem; color: var(--sage-strong); }
.value__title { font-family: var(--display); font-size: 1.4rem; margin: 0.6rem 0 0.6rem; }
.value__text { color: var(--ink-soft); font-size: 0.98rem; }

/* Ausbildung / Zertifikat */
.credential__inner {
  max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  margin-top: clamp(2rem, 5vh, 3.5rem);
  display: grid; grid-template-columns: 0.82fr 1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.credential__cert {
  margin: 0; padding: clamp(0.7rem, 1.6vw, 1.2rem);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 40px 80px -50px rgba(22,36,26,0.55);
}
.credential__cert img {
  width: 100%; height: auto; display: block; border-radius: calc(var(--radius) - 2px);
}
.credential__lede {
  font-family: var(--display); font-style: italic; font-weight: 300;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.65rem); line-height: 1.28;
  color: var(--forest-deep); margin-bottom: 1.2rem;
}
.credential__text p + p { margin-top: 1rem; }
.credential__text strong { color: var(--forest-deep); font-weight: 600; }
.cred-facts { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.cred-facts li {
  display: grid; grid-template-columns: 8.5rem 1fr; gap: 0.8rem; align-items: baseline;
  padding-bottom: 0.7rem; border-bottom: 1px solid var(--line);
  font-size: 0.97rem; color: var(--ink-soft);
}
.cred-facts li span {
  font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--sage-strong);
}
.credential__close {
  margin-top: 1.6rem; font-family: var(--display); font-style: italic;
  font-size: 1.1rem; color: var(--ink-soft);
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
/* Nur ausblenden, wenn JS aktiv ist – sonst bleibt alles sichtbar (No-JS / SEO) */
html.js [data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: calc(var(--d, 0) * 110ms);
}
html.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 920px) {
  .nav { position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: var(--ink); color: #f3f7ef; padding: 2rem var(--gutter);
    transform: translateX(100%); transition: transform 0.5s var(--ease);
    box-shadow: -30px 0 60px -30px rgba(0,0,0,0.6);
  }
  .nav.is-open { transform: translateX(0); }
  .nav > a:not(.btn) { font-size: 1.3rem; font-family: var(--display); }
  .site-header:not(.is-stuck) .nav > a:not(.nav__cta) { color: #f3f7ef; }
  .nav__cta { margin-left: 0; }
  .site-header:not(.is-stuck) .nav__cta { background: var(--forest); color: #f6fbf3; }
  .nav-toggle { display: flex; }
  body.nav-open { overflow: hidden; }
  .nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-toggle.is-active { color: #f3f7ef; }

  .intro__grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "lead" "media" "body"; }
  .intro__media .framed { width: 100%; min-height: 340px; aspect-ratio: 4 / 3; }
  .nature__inner, .tour__inner, .story, .story__feature-inner { grid-template-columns: 1fr; }
  .story--reverse .story__media { order: 0; }
  .story__media { order: -1; }
  .nature__media { order: -1; }
  .network { margin-top: 1rem; }
  .checklist { grid-template-columns: 1fr; gap: 1.5rem; }
  .values__grid { grid-template-columns: 1fr; }
  .credential__inner { grid-template-columns: 1fr; gap: 2rem; }
  .credential__cert { max-width: 440px; margin-inline: auto; order: -1; }
}

@media (max-width: 560px) {
  .facts { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__foot { flex-direction: column-reverse; align-items: flex-start; gap: 1.4rem; }
  .contact-list li { grid-template-columns: 5rem 1fr; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .network__links path { stroke-dashoffset: 0 !important; }
  .node { opacity: 1 !important; }
}
