/* ============================================
   Villa Rumpelpumpel — Onepager
   Brand: Elterninitiative Rumpelpumpel Stuttgart e.V.
   ============================================ */

:root {
  /* Brand colors (from logo) */
  --green-dark:    #009127;
  --green-mid:     #47BB1C;
  --green-light:   #80D43F;
  --green-deep:    #006120;

  /* Neutrals */
  --white:         #FFFFFF;
  --cream:         #FBFBF7;
  --gray-50:       #F5F5F5;
  --gray-100:      #ECEEEA;
  --gray-200:      #D9DDD5;
  --gray-500:      #6B7268;
  --gray-700:      #3A3F38;
  --ink:           #1A1A1A;

  /* Tunables (exposed to tweaks panel) */
  --accent-wash:   0.18;        /* opacity for light-green section wash */
  --blob-density:  1;           /* multiplier for decorative blobs */
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-xl:     32px;

  --font-head:     "Nunito", system-ui, sans-serif;
  --font-body:     "Inter", system-ui, sans-serif;

  /* Layout */
  --container:     1200px;
  --gutter:        clamp(20px, 4vw, 48px);
  --section-pad:   clamp(72px, 9vw, 128px);
}

/* Reset-ish */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green-mid); }
button { font: inherit; cursor: pointer; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 5.8vw, 60px); letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 3.6vw, 40px); }
h3 { font-size: clamp(20px, 1.9vw, 24px); font-weight: 700; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--green-mid);
  border-radius: 2px;
}
.lede {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--gray-700);
  max-width: 56ch;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============================================
   Nav
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.is-scrolled { border-bottom-color: var(--gray-100); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}
.nav__brand img { height: 54px; width: auto; display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-700);
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--green-dark); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--green-mid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  border-radius: 2px;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--green-dark);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--green-dark);
  transition: transform .15s ease, background .2s ease;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--green-mid); border-color: var(--green-mid); color: white; transform: translateY(-1px); }
.nav__hamburger {
  display: none;
  background: none; border: none; padding: 6px;
  color: var(--ink);
  position: relative;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: background .15s ease;
}
.nav__hamburger:hover { background: var(--gray-100); }
.nav__hamburger svg { transition: opacity .15s ease, transform .2s ease; }
.nav__hamburger .ic-close { display: none; }
.nav.menu-open .nav__hamburger .ic-open { display: none; }
.nav.menu-open .nav__hamburger .ic-close { display: block; }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 64px 0 0 0;
  background: white;
  z-index: 45;
  display: none;
  flex-direction: column;
  padding: 24px var(--gutter, 24px) 32px;
  overflow-y: auto;
  border-top: 1px solid var(--gray-100);
  animation: mm-in .25s ease;
}
@keyframes mm-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
.nav.menu-open + .mobile-menu { display: flex; }

.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
}
.mobile-menu__list li {
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  text-decoration: none;
}
.mobile-menu__list a:hover { color: var(--green-dark); }
.mobile-menu__list a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--gray-200);
  border-right: 2px solid var(--gray-200);
  transform: rotate(45deg);
}
.mobile-menu__list a:hover::after {
  border-color: var(--green-dark);
}

.mobile-menu__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.mobile-menu__contact {
  background: var(--green-dark);
  color: white;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: background .2s ease;
}
.mobile-menu__contact:hover { background: var(--green-mid); color: white; }
.mobile-menu__info {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}
.mobile-menu__info a { color: var(--green-dark); font-weight: 600; }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: inline-flex; }
  body.menu-open-lock { overflow: hidden; }
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
}
.btn--primary {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
  box-shadow: 0 6px 20px -8px rgba(0,145,39,0.55);
}
.btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(71,187,28,0.65);
}
.btn--secondary {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn--secondary:hover {
  background: var(--green-dark);
  color: white;
}
.btn--ghost {
  background: transparent;
  color: var(--green-dark);
  padding: 14px 0;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}
.btn--ghost:hover { border-bottom-color: var(--green-mid); color: var(--green-mid); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================
   Sections
   ============================================ */
section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
  max-width: 720px;
}
.section-head.is-centered { margin-inline: auto; text-align: center; align-items: center; }

.section--alt { background: var(--gray-50); }
.section--wash {
  background:
    radial-gradient(circle at 80% 0%, rgba(128, 212, 63, var(--accent-wash)) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(128, 212, 63, calc(var(--accent-wash) * 0.7)) 0%, transparent 45%),
    var(--white);
}

/* Decorative blobs — driven by --blob-density */
.blob {
  position: absolute;
  opacity: calc(0.55 * var(--blob-density));
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
}
.blob path { fill: var(--green-light); }
.blob--mid path { fill: var(--green-mid); }

/* ============================================
   Hero
   ============================================ */
.hero {
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(80px, 9vw, 120px);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(128, 212, 63, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(71, 187, 28, 0.12) 0%, transparent 60%),
    var(--white);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--green-dark), var(--green-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero__meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__meta-item strong {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--green-dark);
}
.hero__meta-item span {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

/* Hero illustration */
.hero__art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
}
.hero__art-circle {
  position: absolute;
  border-radius: 50%;
}
.hero__art-circle--bg {
  inset: 0;
  background: var(--green-light);
}
.hero__art-circle--mid {
  width: 62%; height: 62%;
  bottom: -4%; right: -6%;
  background: var(--green-dark);
}
.hero__art-photo {
  position: absolute;
  inset: 14% 14% 14% 14%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 30px 60px -20px rgba(0,97,32,0.35);
}
.hero__art-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-placeholder-tag {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.92);
  color: var(--gray-500);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px dashed var(--gray-200);
  pointer-events: none;
  z-index: 3;
}
.img-placeholder-tag--inset {
  bottom: auto;
  top: 14px;
  left: auto;
  right: 14px;
  transform: none;
}
.hero__art-badge {
  position: absolute;
  top: 4%;
  left: -6%;
  background: white;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 16px 30px -12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}
.hero__art-badge .dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green-light);
  display: grid; place-items: center;
  color: var(--green-deep);
}
.hero__art-badge small {
  display: block;
  color: var(--gray-500);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { max-width: 380px; margin: 0 auto; }
}

/* ============================================
   Über uns
   ============================================ */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.values--five {
  grid-template-columns: repeat(6, 1fr);
}
.values--five .value-card:nth-child(-n+3) { grid-column: span 2; }
.values--five .value-card:nth-child(4),
.values--five .value-card:nth-child(5) { grid-column: span 3; }
.value-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0,97,32,0.18);
  border-color: var(--green-light);
}
.value-card__icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(128, 212, 63, 0.22);
  color: var(--green-dark);
  margin-bottom: 6px;
}
.value-card__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}
.value-card h3 { font-size: 20px; }
.value-card p { color: var(--gray-700); margin: 0; }

@media (max-width: 980px) {
  .values--five,
  .values--five .value-card:nth-child(-n+3),
  .values--five .value-card:nth-child(4),
  .values--five .value-card:nth-child(5) {
    grid-template-columns: repeat(2, 1fr);
    grid-column: auto;
  }
  .values--five { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .values, .values--five { grid-template-columns: 1fr; }
}

/* About lead row */
.about__lead {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
  margin-bottom: 64px;
}
.about__photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__photo-label {
  position: absolute;
  inset: auto auto 20px 20px;
  background: rgba(255,255,255,0.94);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  border: 1px dashed var(--gray-200);
  letter-spacing: 0.04em;
  font-family: var(--font-head);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 760px) {
  .about__lead { grid-template-columns: 1fr; }
}

/* ============================================
   Eckdaten — simple bulleted list
   ============================================ */
.eckdaten {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
  row-gap: 14px;
}
.eckdaten__item {
  display: grid;
  grid-template-columns: 14px 140px 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-100);
}
.eckdaten__bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-mid);
  display: inline-block;
  transform: translateY(-2px);
}
.eckdaten__k {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}
.eckdaten__v {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
@media (max-width: 760px) {
  .eckdaten { grid-template-columns: 1fr; column-gap: 0; }
  .eckdaten__item { grid-template-columns: 14px 120px 1fr; }
}
@media (max-width: 420px) {
  .eckdaten__item {
    grid-template-columns: 14px 1fr;
  }
  .eckdaten__v { grid-column: 2; }
}

/* ============================================
   Tagesablauf — schlichte Liste
   ============================================ */
.dayplan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  border-top: 1px solid var(--gray-100);
}
.dayplan-list__item {
  display: grid;
  grid-template-columns: 160px 1fr 1.2fr;
  align-items: baseline;
  gap: 24px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--gray-100);
  transition: background .15s ease;
}
.dayplan-list__item:hover {
  background: rgba(128, 212, 63, 0.06);
}
.dayplan-list__time {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
  color: var(--green-dark);
  font-variant-numeric: tabular-nums;
}
.dayplan-list__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.dayplan-list__note {
  color: var(--gray-500);
  font-size: 15px;
}
@media (max-width: 760px) {
  .dayplan-list__item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 4px;
  }
  .dayplan-list__time { font-size: 15px; }
  .dayplan-list__note { font-size: 14px; }
}

.timeline-note {
  margin-top: 32px;
  background: white;
  border: 1.5px dashed var(--green-light);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gray-700);
}
.timeline-note .pill {
  background: var(--green-dark);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ============================================
   Konzept — Card grid
   ============================================ */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.concept-grid--five .concept-card--wide {
  grid-column: span 2;
}
.concept-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.concept-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -22px rgba(0,97,32,0.22);
}
.concept-card__num {
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  color: var(--green-light);
  opacity: 0.35;
  letter-spacing: -0.04em;
}
.concept-card__icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: rgba(128, 212, 63, 0.22);
  display: grid; place-items: center;
  color: var(--green-dark);
  margin-bottom: 20px;
}
.concept-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}
.concept-card p {
  color: var(--gray-700);
  margin: 0;
}
@media (max-width: 760px) {
  .concept-grid { grid-template-columns: 1fr; }
  .concept-grid--five .concept-card--wide { grid-column: span 1; }
}

/* ============================================
   Eltern
   ============================================ */
.parents {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.parents__art {
  aspect-ratio: 1/1;
  position: relative;
  max-width: 460px;
}
.parents__art-blob {
  position: absolute;
  border-radius: 65% 35% 55% 45% / 45% 55% 45% 55%;
  background: var(--green-light);
}
.parents__art-blob.b1 { inset: 0 30% 30% 0; background: var(--green-light); }
.parents__art-blob.b2 { inset: 20% 0 0 25%; background: var(--green-dark); border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%; }
.parents__art-photo {
  position: absolute;
  inset: 18%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 24px 48px -20px rgba(0,97,32,0.3);
}
.parents__art-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.parents__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.parents__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.parents__col {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
}
.parents__col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 14px;
}
.parents__col-title .dot {
  width: 12px; height: 12px; border-radius: 50%; display: inline-block;
}
.parents__col-title .dot--light { background: var(--green-light); }
.parents__col-title .dot--dark { background: var(--green-dark); }
.parents__bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.parents__bullets li {
  position: relative;
  padding-left: 22px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.5;
}
.parents__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
}
@media (max-width: 620px) {
  .parents__columns { grid-template-columns: 1fr; }
}
.parents__list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}
.parents__list .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-dark);
  color: white;
  display: grid; place-items: center;
}
.parents__list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 17px;
  margin-bottom: 2px;
}
.parents__list span { color: var(--gray-700); font-size: 15px; }
@media (max-width: 860px) {
  .parents { grid-template-columns: 1fr; }
  .parents__art { margin: 0 auto; }
}

/* ============================================
   Aufnahme — Steps
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.steps--four {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1240px) {
  .steps--four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .steps--four { grid-template-columns: 1fr; }
}

.aufnahme__kosten {
  margin-top: 36px;
  background: white;
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--green-mid);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}
.aufnahme__kosten-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(128, 212, 63, 0.22);
  color: var(--green-dark);
  display: grid; place-items: center;
}
.aufnahme__kosten strong {
  font-family: var(--font-head);
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}
.aufnahme__kosten p {
  margin: 0;
  color: var(--gray-700);
  font-size: 15px;
}
.step {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--green-mid);
}
.step h3 { font-size: 20px; }
.step p { color: var(--gray-700); margin: 0; }

.aufnahme__cta {
  margin-top: 48px;
  background: var(--green-dark);
  color: white;
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.aufnahme__cta::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  right: -80px; bottom: -120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.aufnahme__cta::before {
  content: "";
  position: absolute;
  width: 180px; height: 180px;
  right: 160px; top: -90px;
  border-radius: 50%;
  background: rgba(128, 212, 63, 0.4);
}
.aufnahme__cta h3 {
  color: white;
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 6px;
}
.aufnahme__cta p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  max-width: 46ch;
}
.aufnahme__cta .btn {
  background: white;
  color: var(--green-dark);
  border-color: white;
  flex-shrink: 0;
  z-index: 1;
}
.aufnahme__cta .btn:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--green-deep);
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .aufnahme__cta { flex-direction: column; align-items: flex-start; padding: 32px; }
}

/* ============================================
   Jobs teaser
   ============================================ */
.jobs-teaser {
  background: white;
  border: 1.5px solid var(--green-light);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.jobs-teaser__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(128,212,63,0.22);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.jobs-teaser h3 { font-size: clamp(22px, 2.4vw, 28px); margin-bottom: 8px; }
.jobs-teaser p { color: var(--gray-700); margin: 0; max-width: 52ch; }
@media (max-width: 860px) {
  .jobs-teaser { flex-direction: column; align-items: flex-start; padding: 32px; }
}

/* ============================================
   Kontakt
   ============================================ */
.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
.contact__form {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-700);
}
.field input,
.field textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  background: white;
}
.field textarea { min-height: 130px; resize: vertical; }
.field--row { flex-direction: row; align-items: flex-start; gap: 12px; }
.field--row input[type="checkbox"] {
  margin-top: 4px;
  width: 18px; height: 18px; accent-color: var(--green-dark);
}
.field--row label { font-size: 13px; color: var(--gray-500); font-weight: 500; }

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}
.info-card .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(128, 212, 63, 0.22);
  color: var(--green-dark);
  display: grid; place-items: center;
}
.info-card strong {
  font-family: var(--font-head);
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}
.info-card span { color: var(--gray-700); font-size: 15px; }
.info-card a { font-weight: 600; }

@media (max-width: 860px) {
  .contact { grid-template-columns: 1fr; }
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.85);
  padding: 72px 0 28px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: rgba(128, 212, 63, 0.08);
  top: -180px; right: -120px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 340px;
}
/* Footer logo — s/w PNG already designed to be inverted for dark backgrounds */
.footer__brand-logo {
  height: 64px;
  width: auto;
  align-self: flex-start;
  object-fit: contain;
  filter: invert(1);
}
.footer__brand p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer__col h4 {
  color: white;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer__col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  transition: color .15s ease;
}
.footer__col a:hover { color: var(--green-light); }
.footer__col .line { font-size: 14px; color: rgba(255,255,255,0.7); }

.footer__base {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.footer__base a { color: rgba(255,255,255,0.6); }
.footer__base a:hover { color: var(--green-light); }

@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================
   Subpages (Jobs, Impressum, Datenschutz)
   ============================================ */
.subpage-hero {
  padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(128, 212, 63, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(71, 187, 28, 0.12) 0%, transparent 60%),
    var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.subpage-hero__crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 18px;
}
.subpage-hero__crumbs a { color: var(--green-dark); }
.subpage-hero__crumbs .sep { color: var(--gray-200); }
.subpage-hero h1 {
  font-size: clamp(36px, 4.6vw, 52px);
  letter-spacing: -0.015em;
  max-width: 22ch;
  margin-bottom: 16px;
}
.subpage-hero p {
  max-width: 60ch;
  color: var(--gray-700);
  font-size: clamp(16px, 1.4vw, 18px);
  margin: 0;
}

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) 0 clamp(80px, 9vw, 120px);
}
.prose .container { padding: 0; max-width: 100%; }
.prose h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  margin: 48px 0 14px;
  padding-top: 8px;
  scroll-margin-top: 100px;
}
.prose h2:first-of-type { margin-top: 0; }
.prose h3 {
  font-size: 18px;
  margin: 28px 0 8px;
}
.prose p,
.prose ul,
.prose ol {
  margin: 0 0 16px;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.7;
}
.prose ul, .prose ol {
  padding-left: 22px;
}
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose hr {
  border: none;
  height: 1px;
  background: var(--gray-100);
  margin: 40px 0;
}
.prose .key-pair {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.prose .key-pair dt {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.prose .key-pair dd {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
}
@media (max-width: 600px) {
  .prose .key-pair { grid-template-columns: 1fr; gap: 4px; }
}

/* TOC (datenschutz) */
.toc {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 0 0 48px;
}
.toc h4 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin: 0 0 12px;
  font-weight: 700;
}
.toc ol {
  list-style: none;
  padding: 0; margin: 0;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.toc ol li {
  counter-increment: toc;
  font-size: 15px;
}
.toc ol li::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--green-mid);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  margin-right: 10px;
}
.toc a {
  color: var(--gray-700);
  font-weight: 500;
}
.toc a:hover { color: var(--green-dark); }

/* ============================================
   Jobs page
   ============================================ */
.job {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) 0 clamp(80px, 9vw, 120px);
}
.job__main h2 {
  font-size: clamp(22px, 2.2vw, 26px);
  margin: 40px 0 14px;
}
.job__main h2:first-of-type { margin-top: 0; }
.job__main p {
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.job__bullets {
  list-style: none;
  padding: 0; margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.job__bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--gray-700);
  font-size: 16px;
  line-height: 1.55;
}
.job__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(128, 212, 63, 0.25);
  border: 2px solid var(--green-mid);
}
.job__sidebar {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.job__chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.job__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(128, 212, 63, 0.22);
  color: var(--green-deep);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.job__meta {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px 28px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  margin-top: 6px;
}
.job__meta li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
}
.job__meta dt, .job__meta .k {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gray-500);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.job__meta dd, .job__meta .v {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
}
.job__apply {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.subpage-css-section {} /* anchor */

/* ============================================
   Reveal animation — only kicks in once JS confirms support
   ============================================ */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.js-reveal .reveal.in {
  opacity: 1;
  transform: none;
}
