/* =====================================================================
   OXCamp - Young Living Münster
   Stylesheet
   Marken-System: frisches Lime-Grün + dunkles Navy, viel Weißraum.
   Light-Theme mit bewusst gesetzten Navy-Bändern (Fakten, Kontakt, Footer).
   ===================================================================== */

/* ----------------------------- Design Tokens ----------------------------- */
:root {
  /* Marke (aus dem Logo abgeleitet) */
  --green:        #8cc63f;   /* frisches Lime-Grün */
  --green-deep:   #6fa829;   /* dunkleres Grün für Text/Kontrast */
  --green-soft:   #f1f8e4;   /* zarte grüne Tönung */
  --navy:         #16233f;   /* dunkles Navy */
  --navy-700:     #1e3050;   /* etwas helleres Navy */
  --navy-900:     #0f1830;   /* sehr dunkles Navy */

  /* Neutrale Töne (leicht kühl/navy-getönt) */
  --ink:          #16233f;   /* primäre Schriftfarbe */
  --ink-soft:     #4a5468;   /* sekundäre Schrift */
  --paper:        #fbfcf9;   /* heller Hintergrund */
  --paper-2:      #f4f6f0;   /* alternierende Fläche */
  --line:         #e4e8de;   /* Trennlinien */
  --white:        #ffffff;

  /* Typografie */
  --font-display: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Radius-System (Lock): Buttons = pill, Karten = 22px, Inputs = 12px */
  --r-card: 22px;
  --r-input: 12px;
  --r-pill: 999px;

  /* Schatten (navy-getönt, nie reines Schwarz) */
  --shadow-sm: 0 2px 10px rgba(22, 35, 63, 0.06);
  --shadow-md: 0 14px 40px rgba(22, 35, 63, 0.10);
  --shadow-lg: 0 30px 70px rgba(22, 35, 63, 0.16);

  --container: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px; /* Platz für sticky nav bei Ankersprüngen */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

/* ----------------------------- Helpers ----------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section { padding-block: clamp(4.5rem, 9vw, 8rem); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 12px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* Eyebrow (sparsam eingesetzt: max. 1 pro 3 Sektionen) */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--green-deep); }

/* Überschriften */
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section__title--light { color: #fff; }

.section__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin-top: 1.25rem;
}
.section__lead--light { color: rgba(255, 255, 255, 0.78); }

.section__head { max-width: 56rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.hl { color: var(--green-deep); position: relative; white-space: nowrap; }

.dot { display: inline-block; width: 0.7rem; height: 0.7rem; border-radius: 50%; }
.dot--green { background: var(--green); }
.dot--navy { background: var(--navy); }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  white-space: nowrap;
  padding: 0.7rem 1.4rem;
  border-radius: var(--r-pill);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.btn--lg { padding: 0.95rem 1.9rem; font-size: 1.05rem; }

.btn--primary {
  background: var(--green);
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(140, 198, 63, 0.35);
}
.btn--primary:hover { background: #9bd24c; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(140, 198, 63, 0.45); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-2px); }

/* ============================== NAVIGATION ============================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(251, 252, 249, 0.78);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}
.nav__brand { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo { height: 46px; width: auto; }

.nav__links {
  display: flex;
  gap: 0.4rem;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--ink-soft);
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-pill);
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover { color: var(--ink); background: var(--green-soft); }
.nav__cta { flex-shrink: 0; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 26px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav__mobile[hidden] { display: none; }
.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.85rem 0.5rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.nav__mobile a:last-child { border-bottom: none; margin-top: 0.75rem; text-align: center; }

/* ============================== HERO ============================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 3rem;
  background:
    radial-gradient(120% 90% at 88% 8%, var(--green-soft) 0%, transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -10%; right: -5%;
  width: 45vw; height: 45vw;
  max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgba(140, 198, 63, 0.22), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  position: relative;
  z-index: 1;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hero__lead {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 46ch;
  margin-top: 1.5rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.hero__pills li {
  font-size: 0.95rem;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
}
.hero__pills strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* Hero-Visual */
.hero__visual { position: relative; }
.hero__photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(22, 35, 63, 0.10), rgba(140, 198, 63, 0.18));
  mix-blend-mode: multiply;
}
.hero__chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  border-radius: 18px;
  padding: 0.9rem 1.15rem;
}
.hero__chip--1 {
  left: -1.25rem; top: 12%;
  display: flex; flex-direction: column;
  text-align: center;
}
.hero__chip-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--green-deep);
  line-height: 1;
}
.hero__chip-label { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.2rem; }
.hero__chip--2 {
  right: -1rem; bottom: 9%;
  display: flex; align-items: center; gap: 0.65rem;
  max-width: 15rem;
  color: var(--green-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.25;
}
.hero__chip--2 span { color: var(--ink); }

/* ============================== VISION ============================== */
.vision { background: var(--paper); }
.vision__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.vision__note {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: var(--ink);
}
.vision__note strong { color: var(--green-deep); }

/* Mischungs-Balken */
.mix { margin-top: 2rem; }
.mix__bar {
  display: flex;
  height: 18px;
  border-radius: var(--r-pill);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.mix__azubi { background: var(--green); }
.mix__studi { background: var(--navy); }
.mix__legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.mix__legend span { display: inline-flex; align-items: center; gap: 0.5rem; }

/* Vision-Karten */
.vision__cards { display: grid; gap: 1rem; }
.vcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 1.5rem 1.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.vcard__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-deep);
  margin-bottom: 1rem;
}
.vcard h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.vcard p { color: var(--ink-soft); font-size: 0.98rem; }

/* ============================== FAKTEN (Navy-Band) ============================== */
.facts {
  position: relative;
  background:
    radial-gradient(90% 120% at 15% 0%, var(--navy-700) 0%, transparent 60%),
    var(--navy);
  color: #fff;
  overflow: hidden;
}
.facts__skyline {
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 40px,
    rgba(140, 198, 63, 0.06) 40px 42px
  );
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000);
          mask-image: linear-gradient(180deg, transparent, #000);
}
.facts .section__title { margin-bottom: 3rem; }
.facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.fact { border-top: 2px solid rgba(140, 198, 63, 0.4); padding-top: 1.25rem; }
.fact__num {
  display: flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.03em;
}
.fact__num i { font-style: normal; font-size: 0.5em; margin-left: 0.1em; }
.fact__label {
  display: block;
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

/* ============================== WOHNFORMEN (Bento) ============================== */
.living { background: var(--paper-2); }
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.bento__cell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.bento__cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Explizite Verteilung: oben breite Karte, rechts hohe Akzentkarte,
   unten zwei ausgewogene Zellen. Genau 4 Zellen, keine Lücken. */
.bento__cell--wide { grid-column: 1 / 3; flex-direction: row; }
.bento__cell--accent {
  grid-column: 3;
  grid-row: 1 / 3;
  background: linear-gradient(155deg, var(--navy-700), var(--navy));
  color: #fff;
  position: relative;
}

.bento__media { overflow: hidden; flex: 1 1 45%; min-height: 200px; }
.bento__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.bento__cell:hover .bento__media img { transform: scale(1.05); }
.bento__media--tall { min-height: 240px; height: 100%; }

.bento__body { padding: 1.6rem 1.7rem; flex: 1 1 55%; display: flex; flex-direction: column; }
.bento__tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-soft);
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.9rem;
}
.bento__tag--ondark { color: var(--navy-900); background: var(--green); }
.bento__body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.bento__body p { color: var(--ink-soft); font-size: 0.98rem; }
.bento__cell--accent .bento__body p { color: rgba(255, 255, 255, 0.78); }
.bento__big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  color: var(--green);
  margin-top: auto;
  align-self: flex-end;
}

/* ============================== TIMELINE / GEMEINSCHAFT ============================== */
.community { background: var(--paper); }
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}
/* horizontale Verbindungslinie (Desktop) */
.timeline::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 101px; /* trifft die vertikale Mitte der Nodes */
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-deep));
  border-radius: 2px;
  z-index: 0;
}
.tl {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}
.tl__icon {
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 22px;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transform: rotate(45deg);
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s;
}
.tl__icon svg { transform: rotate(-45deg); }
.tl:hover .tl__icon { transform: rotate(45deg) scale(1.08); background: var(--green); color: var(--navy-900); }
.tl__node {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--paper);
  margin-top: 14px; /* Abstand unter dem Icon, Mitte sitzt auf der Linie */
  position: relative;
}
.tl__card {
  margin-top: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 1.25rem 1.2rem;
  width: 100%;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tl:hover .tl__card { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tl__card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.tl__card p { font-size: 0.92rem; color: var(--ink-soft); }
.tl__badge {
  display: inline-block;
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--green);
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-pill);
}

/* ============================== STANDORT ============================== */
.location { background: var(--paper-2); overflow: hidden; }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.location__list { margin: 1.75rem 0 2.25rem; display: grid; gap: 0.85rem; }
.location__list li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink);
  font-size: 1.02rem;
}
.location__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 1.1rem; height: 0.55rem;
  border-left: 2.5px solid var(--green-deep);
  border-bottom: 2.5px solid var(--green-deep);
  transform: rotate(-45deg);
  border-radius: 1px;
}
.location__art {
  color: var(--navy);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  background: radial-gradient(120% 100% at 50% 100%, var(--green-soft), transparent 70%);
  border-radius: var(--r-card);
  min-height: 280px;
}
.skyline { width: 100%; height: auto; opacity: 0.92; }

/* ============================== KONTAKT (Navy-Band) ============================== */
.contact {
  background:
    radial-gradient(80% 120% at 85% 0%, var(--navy-700) 0%, transparent 55%),
    var(--navy);
  color: #fff;
}
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact__meta { margin-top: 2rem; display: grid; gap: 1rem; }
.contact__meta li { display: flex; align-items: center; gap: 0.75rem; color: rgba(255, 255, 255, 0.82); }
.contact__meta svg { color: var(--green); flex-shrink: 0; }
.contact__meta a { transition: color 0.2s; }
.contact__meta a:hover { color: var(--green); }

/* Formular */
.form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-card);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  gap: 1.1rem;
}
.field { display: grid; gap: 0.45rem; }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
}
.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid transparent;
  border-radius: var(--r-input);
  padding: 0.8rem 1rem;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder,
.field textarea::placeholder { color: #6b7488; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(140, 198, 63, 0.25);
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: #ff7a7a; box-shadow: 0 0 0 4px rgba(255, 122, 122, 0.2); }
.field__error {
  color: #ffb3b3;
  font-size: 0.85rem;
  min-height: 1rem;
}
.form__submit { margin-top: 0.5rem; width: 100%; }
.form__status {
  text-align: center;
  font-weight: 600;
  min-height: 1.4rem;
}
.form__status.is-success { color: var(--green); }
.form__status.is-error { color: #ffb3b3; }

/* Fokus-Sichtbarkeit global (a11y) */
:focus-visible {
  outline: 3px solid var(--green-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================== FOOTER ============================== */
.footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.75); padding-block: 3rem; }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.wordmark__ox { color: var(--green); }
.footer__brand p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); margin-top: 0.2rem; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; }
.footer__nav a { font-size: 0.95rem; transition: color 0.2s; }
.footer__nav a:hover { color: var(--green); }
.footer__legal { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); width: 100%; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer__legal a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s; }
.footer__legal a:hover { color: var(--green); }

/* Honeypot-Feld (Spam-Schutz, nie sichtbar) */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ============================== LEGAL (Impressum / Datenschutz) ============================== */
.legal { padding-top: calc(92px + clamp(2.5rem, 6vw, 4.5rem)); }
.legal__inner { max-width: 820px; }
.legal h1.section__title { margin-bottom: 2.5rem; }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.2;
  color: var(--ink);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
}
.legal p { color: var(--ink-soft); margin-bottom: 1rem; }
.legal a { color: var(--green-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--navy); }
.legal__updated { font-size: 0.9rem; color: var(--ink-soft); margin-top: 2.5rem; font-style: italic; }

/* ============================== SCROLL-REVEAL ============================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
/* gestaffelte Kinder */
.vision__cards .reveal:nth-child(2) { transition-delay: 0.08s; }
.vision__cards .reveal:nth-child(3) { transition-delay: 0.16s; }
.facts__grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.facts__grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.facts__grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.timeline .reveal:nth-child(2) { transition-delay: 0.08s; }
.timeline .reveal:nth-child(3) { transition-delay: 0.16s; }
.timeline .reveal:nth-child(4) { transition-delay: 0.24s; }
.timeline .reveal:nth-child(5) { transition-delay: 0.32s; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { min-height: auto; padding-top: 120px; }
  .hero__visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .hero__photo { aspect-ratio: 16 / 12; }

  .vision__grid { grid-template-columns: 1fr; }
  .vision__cards { grid-template-columns: repeat(3, 1fr); }

  .facts__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }

  .location__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .vision__cards { grid-template-columns: 1fr; }

  /* Bento -> einspaltig */
  .bento { grid-template-columns: 1fr; }
  .bento__cell--wide { grid-column: auto; flex-direction: column; }
  .bento__cell--accent { grid-column: auto; grid-row: auto; }
  .bento__media { min-height: 220px; }
  .bento__big { margin-top: 1.5rem; }

  /* Timeline -> vertikal */
  .timeline { grid-template-columns: 1fr; gap: 0; padding-left: 1.5rem; }
  .timeline::before {
    top: 0; bottom: 0; left: 38px; right: auto;
    width: 3px; height: auto;
    background: linear-gradient(180deg, var(--green), var(--green-deep));
  }
  .tl {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
    padding-bottom: 2rem;
  }
  .tl__icon { width: 60px; height: 60px; flex-shrink: 0; }
  .tl__icon svg { width: 24px; height: 24px; }
  .tl__node { display: none; }
  /* Karte füllt nur den Restplatz neben dem Icon (kein 100%-Overflow) */
  .tl__card { margin-top: 0; width: auto; flex: 1 1 auto; min-width: 0; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .hero__chip--1 { left: 0; }
  .hero__chip--2 { right: 0; max-width: 13rem; }
  .hero__pills { gap: 1.25rem; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =====================================================================
   REDUZIERTE TRANSPARENZ (Fallback für Glas-Effekte)
   ===================================================================== */
@media (prefers-reduced-transparency: reduce) {
  .nav { background: var(--paper); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .hero__chip { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }
}
