/* ==========================================================================
   BUBA LAND — Kindertagespflege Olesa Kifel, Grevenbroich
   Design: warm & edel — Creme, Terracotta, Honiggold
   ========================================================================== */

/* ---------- Schriften (lokal, DSGVO-sauber) ---------- */
@font-face {
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/figtree-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/figtree-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/fraunces-italic.woff2') format('woff2');
  font-optical-sizing: auto;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/fraunces-normal.woff2') format('woff2');
  font-optical-sizing: auto;
}

/* ---------- Design-Tokens ---------- */
:root {
  --bg:        #FBF7F0;
  --bg-soft:   #F4EADB;
  --white:     #FFFDF9;
  --ink:       #3D2C23;
  --ink-soft:  #7A6455;
  --ink-faint: #A8968A;
  --terra:     #C05F3C;
  --terra-deep:#A0492A;
  --honey:     #D99A2B;
  --honey-soft:#EBC27F;
  --sage:      #8FA37E;
  --blush:     #F0DCC8;
  --espresso:  #2C1F17;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Figtree', 'Segoe UI', system-ui, sans-serif;

  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
  --arch: 999px 999px 26px 26px;

  --shadow-soft: 0 18px 50px rgba(61, 44, 35, .10);
  --shadow-lift: 0 26px 70px rgba(61, 44, 35, .16);

  --container: 1200px;
  --header-h: 84px;

  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
ul, ol { padding: 0; margin: 0; list-style: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--terra); text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

::selection { background: var(--honey-soft); color: var(--espresso); }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -.015em;
  text-wrap: balance;
}

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

.skip-link {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 300;
  background: var(--espresso);
  color: var(--bg);
  padding: .6em 1.2em;
  border-radius: 0 0 12px 12px;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 0; }

/* ---------- Layout-Utilities ---------- */
.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}
.container-narrow { max-width: 860px; margin-inline: auto; }

.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.section-soft { background: var(--bg-soft); }

.eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 0 1.1em;
  display: flex;
  align-items: center;
  gap: .9em;
}
.eyebrow .sec-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
  color: var(--honey);
  font-size: 1.05rem;
}
.eyebrow .sec-num::after {
  content: "";
  display: inline-block;
  width: 42px; height: 1.5px;
  background: var(--honey);
  margin-left: .9em;
  vertical-align: middle;
  opacity: .7;
}
.eyebrow-light { color: var(--honey-soft); }

.h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  max-width: 18em;
}
.h2 em, .hero-title em {
  font-style: italic;
  font-weight: 480;
  color: var(--terra);
}
.h2-light { color: var(--bg); }
.h2-light em { color: var(--honey-soft); }

.section-head { margin-bottom: clamp(44px, 6vw, 72px); }
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.section-sub {
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-top: 1.2em;
}
.lead { font-size: 1.18rem; line-height: 1.65; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-weight: 650;
  font-size: 1rem;
  line-height: 1;
  padding: 1.02em 1.7em;
  border-radius: 999px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out),
              background-color .25s, color .25s, border-color .25s;
  will-change: transform;
  white-space: nowrap;
}
.btn-primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(192, 95, 60, .32);
}
.btn-primary:hover {
  background: var(--terra-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(192, 95, 60, .38);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.7px solid rgba(61, 44, 35, .28);
}
.btn-ghost:hover {
  border-color: var(--terra);
  color: var(--terra);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.15em 2.05em; font-size: 1.05rem; }
.btn-sm { padding: .75em 1.3em; font-size: .92rem; }
.btn-block { width: 100%; }

/* ---------- Körnung ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 250;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* ---------- Custom Cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 400;
  border-radius: 50%;
  opacity: 0;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--terra);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.6px solid rgba(192, 95, 60, .55);
  transition: width .25s, height .25s, border-color .25s;
}
.cursor-ring.is-hover {
  width: 58px; height: 58px;
  border-color: var(--honey);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity .6s var(--ease-out), visibility .6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-sun { animation: sunspin 6s linear infinite; margin-inline: auto; }
.preloader-word {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 560;
  margin-top: 14px;
  letter-spacing: .01em;
}
@keyframes sunspin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background-color .35s, box-shadow .35s, transform .45s var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(251, 247, 240, .86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(61, 44, 35, .07);
}
.site-header.is-hidden { transform: translateY(-110%); }

.header-inner {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  margin-right: auto;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 1.42rem;
  letter-spacing: -.01em;
}
.brand-sub {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}
.brand-mark { flex: 0 0 auto; }

.main-nav ul { display: flex; gap: clamp(14px, 2vw, 30px); }
.main-nav a {
  color: var(--ink);
  font-weight: 550;
  font-size: .98rem;
  position: relative;
  padding: 6px 2px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--terra);
  border-radius: 2px;
  transition: right .3s var(--ease-out);
}
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }

.header-cta { flex: 0 0 auto; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.6px solid rgba(61, 44, 35, .22);
  position: relative;
  z-index: 220;
  flex: 0 0 auto;
}
.nav-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2.2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease-out), top .35s var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 18px; }
.nav-toggle span:nth-child(2) { top: 26px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { top: 22px; transform: rotate(-45deg); }

.scroll-progress {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2.5px;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--honey), var(--terra));
  transform: scaleX(0);
  transform-origin: left;
}

/* ---------- Mobile Menü ---------- */
body.menu-open .site-header {
  z-index: 230;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
  transform: none !important;
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 32px 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease-out), visibility .4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 6.5vw, 2.4rem);
  color: var(--ink);
  display: inline-block;
  padding: .22em 0;
  transition: color .25s, transform .3s var(--ease-out);
}
.mobile-menu a:hover { color: var(--terra); transform: translateX(8px); }
.mobile-menu-foot {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 0 60px;
  overflow: clip;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 3; }
.hero-title {
  font-size: clamp(2.7rem, 6.2vw, 5.1rem);
  font-weight: 580;
  line-height: 1.06;
  margin-bottom: .45em;
}
.hero-title .word { display: inline-block; }
.hero-lead {
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 2em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.4em; }
.hero-facts {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: .95rem;
}
.hero-facts li { display: flex; flex-direction: column; line-height: 1.35; }
.hero-facts strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-visual { position: relative; z-index: 2; }
.hero-arch {
  border-radius: var(--arch);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 3 / 4;
  max-height: 76vh;
  margin-left: auto;
  width: min(100%, 480px);
  position: relative;
}
.hero-arch::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid rgba(255, 253, 249, .5);
  pointer-events: none;
}
.hero-arch img { width: 100%; height: 100%; object-fit: cover; }

.hero-bear {
  position: absolute;
  bottom: -14px;
  left: -34px;
  width: clamp(110px, 12vw, 170px);
  height: auto;
  filter: drop-shadow(0 14px 24px rgba(61, 44, 35, .25));
  z-index: 4;
}
.hero-badge {
  position: absolute;
  top: -34px;
  right: -22px;
  z-index: 4;
}
.badge-text {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  fill: var(--ink);
}
.hero-badge svg { animation: sunspin 26s linear infinite; }
.hero-badge .badge-sun { transform-origin: 60px 60px; animation: sunspin 26s linear infinite reverse; }

.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.blob-1 {
  width: 46vw; height: 46vw;
  max-width: 640px; max-height: 640px;
  background: rgba(235, 194, 127, .35);
  top: -12%; right: -10%;
}
.blob-2 {
  width: 34vw; height: 34vw;
  max-width: 480px; max-height: 480px;
  background: rgba(240, 220, 200, .5);
  bottom: -18%; left: -8%;
}
.hero-leaf {
  position: absolute;
  left: 6%;
  top: 22%;
  opacity: .5;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-16px) rotate(6deg); }
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-hint-line {
  width: 1.7px;
  height: 44px;
  background: linear-gradient(var(--terra), transparent);
  animation: hintdrop 2.2s var(--ease-out) infinite;
  border-radius: 2px;
}
@keyframes hintdrop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--terra);
  color: var(--bg);
  overflow: hidden;
  padding: 18px 0;
  transform: rotate(-1.1deg) scale(1.02);
  box-shadow: 0 14px 40px rgba(160, 73, 42, .25);
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.6em;
  width: max-content;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 500;
  letter-spacing: .02em;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track i { font-style: normal; color: var(--honey-soft); font-size: .8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Über uns ---------- */
.ueber-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.ueber-text .check-list { margin-top: 1.8em; display: grid; gap: .85em; }
.check-list li {
  position: relative;
  padding-left: 40px;
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blush);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 7px; top: 8px;
  width: 11px; height: 6px;
  border-left: 2.4px solid var(--terra);
  border-bottom: 2.4px solid var(--terra);
  transform: rotate(-45deg);
}

.ueber-quote {
  margin: 1.9em 0;
  padding: 1.4em 1.7em;
  border-left: 4px solid var(--honey);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-soft);
}
.ueber-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.5;
  margin-bottom: .45em;
}
.ueber-quote cite { font-style: normal; font-size: .9rem; color: var(--ink-soft); font-weight: 600; }

.ueber-illustration {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}
.ueber-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px 18px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--terra);
  line-height: 1;
  display: block;
}
.stat-label {
  display: block;
  margin-top: 8px;
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .06em;
  color: var(--ink-soft);
}

/* ---------- Konzept ---------- */
.konzept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.k-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.k-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--blush);
  opacity: 0;
  transform: scale(.5);
  transition: opacity .45s, transform .45s var(--ease-out);
}
.k-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.k-card:hover::before { opacity: .8; transform: scale(1); }
.k-card:hover .k-icon { transform: rotate(-8deg) scale(1.08); }
.k-icon {
  width: 58px; height: 58px;
  border-radius: 18px;
  background: var(--bg);
  color: var(--terra);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition: transform .45s var(--ease-out);
  position: relative;
  z-index: 1;
}
.k-icon svg { width: 32px; height: 32px; }
.k-card h3 { font-size: 1.22rem; position: relative; z-index: 1; }
.k-card p { font-size: .95rem; color: var(--ink-soft); line-height: 1.6; position: relative; z-index: 1; }

.konzept-note {
  margin-top: clamp(40px, 5vw, 64px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 26px;
  align-items: center;
}
.konzept-note img { flex: 0 0 auto; animation: floaty 6s ease-in-out infinite; }
.konzept-note p { color: var(--ink-soft); }
.konzept-note strong { color: var(--ink); }

/* ---------- Tagesablauf ---------- */
.sec-tag { overflow: clip; }
.tag-sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.tag-sky::before, .tag-sky::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity .3s linear;
}
.tag-sky::before {
  background: linear-gradient(180deg, rgba(235, 194, 127, .18), transparent 55%);
  opacity: calc(1 - var(--day, 0));
}
.tag-sky::after {
  background: linear-gradient(180deg, rgba(192, 95, 60, .12), rgba(235, 194, 127, .1) 60%, transparent);
  opacity: var(--day, 0);
}
.sec-tag .container { position: relative; z-index: 1; }

.timeline {
  position: relative;
  padding-left: clamp(64px, 9vw, 110px);
  max-width: 780px;
}
.timeline-rail {
  position: absolute;
  left: clamp(20px, 3.5vw, 40px);
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 3px;
  background: rgba(61, 44, 35, .12);
}
.timeline-rail-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--honey), var(--terra));
  border-radius: 3px;
  transform: scaleY(0);
  transform-origin: top;
}
.timeline-sun {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 6px 14px rgba(217, 154, 43, .45));
  z-index: 2;
}
.timeline-sun svg { display: block; animation: sunspin 14s linear infinite; }

.timeline-list { display: grid; gap: clamp(26px, 4vw, 40px); }
.t-item {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.t-item:hover { transform: translateX(6px); box-shadow: var(--shadow-lift); }
.t-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(44px, 5.5vw, 70px) - 7.5px);
  top: 38px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--bg);
  border: 3.2px solid var(--terra);
  box-shadow: 0 0 0 5px var(--bg);
}
.t-time {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 1.35rem;
  color: var(--terra);
  margin-bottom: 6px;
}
.t-time small { font-size: .95rem; color: var(--ink-faint); font-weight: 500; }
.t-body h3 { font-size: 1.28rem; margin-bottom: .3em; }
.t-body p { color: var(--ink-soft); font-size: .98rem; }
.t-item-sleep { background: linear-gradient(135deg, var(--white), #FDF3E3); }
.t-bear {
  float: right;
  width: 86px;
  margin: -8px -6px 6px 14px;
  animation: floaty 5s ease-in-out infinite;
}
.tag-note {
  margin-top: clamp(36px, 5vw, 56px);
  text-align: center;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.12rem;
}

/* ---------- Eingewöhnung / Stepper ---------- */
.stepper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(26px, 4vw, 52px);
}
.stepper-nav {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 34px;
}
.stepper-line {
  position: absolute;
  top: 26px;
  left: 12%; right: 12%;
  height: 3px;
  background: rgba(61, 44, 35, .1);
  border-radius: 3px;
  z-index: 0;
}
.stepper-line span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--honey), var(--terra));
  border-radius: 3px;
  transition: width .5s var(--ease-out);
}
.step-btn {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
  color: var(--ink-soft);
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg);
  border: 2.4px solid rgba(61, 44, 35, .14);
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 1.25rem;
  transition: all .35s var(--ease-out);
}
.step-name { font-size: .85rem; font-weight: 650; letter-spacing: .03em; }
.step-btn:hover .step-num { border-color: var(--honey); transform: translateY(-3px); }
.step-btn.is-active { color: var(--ink); }
.step-btn.is-active .step-num {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(192, 95, 60, .35);
}
.step-btn.is-done .step-num {
  background: var(--honey-soft);
  border-color: var(--honey);
  color: var(--espresso);
}

.step-panel h3 {
  font-size: 1.45rem;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.step-tag {
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--blush);
  color: var(--terra-deep);
  border-radius: 999px;
  padding: .45em 1em;
}
.step-panel p { color: var(--ink-soft); max-width: 62em; }

.stepper-controls {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 30px;
}
.eingew-hinweis {
  max-width: 760px;
  margin: clamp(36px, 5vw, 54px) auto 0;
  text-align: center;
  color: var(--ink-soft);
}
.eingew-hinweis strong { color: var(--ink); }

/* ---------- Räume / Galerie ---------- */
.gallery-arrows { display: flex; gap: 10px; }
.g-arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.7px solid rgba(61, 44, 35, .25);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: all .3s var(--ease-out);
}
.g-arrow:hover { background: var(--terra); border-color: var(--terra); color: var(--white); transform: translateY(-2px); }

.gallery {
  display: flex;
  gap: clamp(18px, 2.5vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 10px max(24px, calc((100vw - var(--container)) / 2)) 34px;
  scrollbar-width: none;
  cursor: grab;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.g-card {
  flex: 0 0 auto;
  width: min(400px, 76vw);
  scroll-snap-align: start;
}
.g-card img {
  width: 100%;
  height: clamp(340px, 46vw, 480px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.g-card:hover img { transform: scale(.985) rotate(-.5deg); box-shadow: var(--shadow-lift); }
.g-card figcaption { padding: 16px 6px 0; }
.g-card figcaption strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  display: block;
}
.g-card figcaption span { color: var(--ink-soft); font-size: .93rem; }

.raeume-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-weight: 550;
  font-size: .97rem;
}

/* ---------- Ernährung ---------- */
.ernaehrung-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.ernaehrung-img {
  position: relative;
  border-radius: var(--arch);
  overflow: visible;
}
.ernaehrung-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3.4;
}
.ernaehrung-sticker {
  position: absolute;
  top: -26px; right: -18px;
  width: 108px; height: 108px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--espresso);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 1.05rem;
  line-height: 1.15;
  transform: rotate(8deg);
  box-shadow: 0 14px 30px rgba(217, 154, 43, .4);
  animation: floaty 6s ease-in-out infinite;
}
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.6em;
}
.pill-list li {
  background: var(--white);
  border: 1.6px solid var(--blush);
  border-radius: 999px;
  padding: .6em 1.25em;
  font-weight: 600;
  font-size: .92rem;
  color: var(--terra-deep);
  box-shadow: var(--shadow-soft);
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1.6px solid transparent;
  transition: border-color .3s;
}
.faq-item[open] { border-color: var(--honey-soft); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 650;
  font-size: 1.06rem;
  font-family: var(--font-body);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--bg);
  position: relative;
  transition: background .3s, transform .4s var(--ease-out);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 13px; height: 2.4px;
  background: var(--terra);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .4s var(--ease-out);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon { background: var(--terra); transform: rotate(180deg); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: var(--white); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-body { padding: 0 26px 24px; color: var(--ink-soft); max-width: 68ch; }

/* ---------- Spielecke ---------- */
.spielecke {
  position: relative;
  background:
    radial-gradient(120% 120% at 15% 0%, rgba(217, 154, 43, .25), transparent 55%),
    linear-gradient(140deg, var(--terra), var(--terra-deep));
  color: var(--bg);
  padding: clamp(80px, 10vw, 130px) 0;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.spielecke-inner { position: relative; z-index: 2; pointer-events: none; }
.spielecke-copy { max-width: 560px; }
.spielecke-hint { color: rgba(251, 247, 240, .85); font-size: 1.05rem; }
#bubbleCount { font-weight: 700; color: var(--honey-soft); }

.bubble-field { position: absolute; inset: 0; z-index: 1; }
.bubble {
  position: absolute;
  bottom: -90px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, .85), rgba(255, 255, 255, .12) 42%, rgba(255, 255, 255, .05) 60%, rgba(255, 255, 255, .18));
  border: 1.4px solid rgba(255, 255, 255, .5);
  box-shadow: inset 0 -6px 14px rgba(255, 255, 255, .18);
  cursor: pointer;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
}
.bubble::after {
  content: "";
  position: absolute;
  top: 16%; left: 20%;
  width: 26%; height: 16%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .8);
  transform: rotate(-28deg);
}
.bubble.is-popped {
  animation: pop .32s var(--ease-out) forwards;
  pointer-events: none;
}
@keyframes pop {
  40% { transform: scale(1.25); opacity: .9; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------- Kontakt ---------- */
.kontakt-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: clamp(44px, 6vw, 64px);
  counter-reset: steps;
}
.kontakt-steps li {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.kontakt-steps li span {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--terra-deep);
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.kontakt-steps strong { display: block; font-size: 1.08rem; margin-bottom: .35em; }
.kontakt-steps p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.kontakt-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 650;
  font-size: .9rem;
  margin-bottom: 7px;
}
.form-field input, .form-field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1.7px solid rgba(61, 44, 35, .13);
  border-radius: var(--radius-sm);
  padding: .85em 1.05em;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--ink-faint); }
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--honey);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(217, 154, 43, .18);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-privacy { font-size: .82rem; color: var(--ink-faint); margin: 4px 0 18px; }
.form-status { margin-top: 14px; font-weight: 600; min-height: 1.4em; }
.form-status.is-ok { color: #4C7A43; }
.form-status.is-err { color: var(--terra-deep); }

.kontakt-card {
  background: var(--espresso);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 40px);
  box-shadow: var(--shadow-lift);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.kontakt-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(251, 247, 240, .16);
}
.kontakt-card-head img { animation: floaty 6s ease-in-out infinite; }
.kontakt-card-head p { margin: 0; line-height: 1.45; color: rgba(251, 247, 240, .75); }
.kontakt-card-head strong { color: var(--bg); font-size: 1.12rem; }
.kontakt-list { display: grid; gap: 16px; }
.kontakt-list li { display: grid; gap: 2px; }
.k-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--honey-soft);
}
.kontakt-list a { color: var(--bg); font-weight: 600; }
.kontakt-list a:hover { color: var(--honey-soft); }
.kontakt-map {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(251, 247, 240, .16);
  display: flex;
  gap: 14px;
  color: var(--honey-soft);
}
.kontakt-map p { color: rgba(251, 247, 240, .75); font-size: .9rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--espresso);
  color: rgba(251, 247, 240, .78);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr .8fr;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(60px, 8vw, 96px) 0 48px;
}
.brand-light, .brand-light .brand-name { color: var(--bg); }
.brand-light .brand-sub { color: rgba(251, 247, 240, .55); }
.footer-tagline { margin-top: 18px; font-size: .95rem; max-width: 34em; }
.footer-title {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--honey-soft);
  margin-bottom: 1.2em;
}
.footer-grid ul { display: grid; gap: .65em; font-size: .95rem; }
.footer-grid a { color: rgba(251, 247, 240, .78); }
.footer-grid a:hover { color: var(--honey-soft); }
.footer-bottom {
  border-top: 1px solid rgba(251, 247, 240, .12);
  padding: 22px 0;
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(251, 247, 240, .5);
}
.footer-bottom p { margin: 0; }

/* ---------- Maskottchen ---------- */
.mascot {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.mascot[hidden] { display: none; }
.mascot-btn {
  padding: 0;
  border-radius: 50%;
  transition: transform .35s var(--ease-out);
  animation: floaty 5s ease-in-out infinite;
}
.mascot-btn:hover { transform: scale(1.08) rotate(-4deg); }
.mascot-btn img {
  width: clamp(64px, 7vw, 92px);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(61, 44, 35, .3));
}
.mascot-bubble {
  background: var(--white);
  color: var(--ink);
  border-radius: 18px 18px 4px 18px;
  padding: 12px 16px;
  font-size: .9rem;
  font-weight: 550;
  box-shadow: var(--shadow-lift);
  max-width: 240px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(8px) scale(.92);
  transform-origin: bottom right;
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
  pointer-events: none;
}
.mascot.is-talking .mascot-bubble { opacity: 1; transform: none; }

/* „Drück mich!“-Schildchen — lädt zum Anklicken ein */
.mascot-hint {
  align-self: flex-end;
  margin-bottom: 10px;
  padding: .55em .9em;
  background: var(--terra);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  line-height: 1;
  white-space: nowrap;
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 10px 24px rgba(192, 95, 60, .38);
  position: relative;
  cursor: pointer;
  animation: mascotBob 1.6s ease-in-out infinite;
}
.mascot-hint::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: -5px;
  width: 13px; height: 13px;
  background: var(--terra);
  border-radius: 0 0 4px 0;
  transform: rotate(45deg);
}
.mascot-hint:hover { background: var(--terra-deep); }
.mascot.is-talking .mascot-hint,
.mascot.is-hint-off .mascot-hint { display: none; }
@keyframes mascotBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.mascot-close {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(61, 44, 35, .5);
  color: var(--bg);
  font-size: 15px;
  line-height: 1;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  opacity: 0;
  transition: opacity .25s;
}
.mascot:hover .mascot-close, .mascot-close:focus-visible { opacity: 1; }

/* ---------- Nach oben ---------- */
.totop {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 190;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--terra);
  box-shadow: var(--shadow-lift);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .35s, visibility .35s, transform .35s var(--ease-out), background .25s, color .25s;
}
.totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--terra); color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .konzept-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta { margin-left: auto; }
  .brand { margin-right: 0; }
  .header-inner { justify-content: space-between; }
}

@media (max-width: 960px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 440px; margin-inline: auto; width: 100%; }
  .hero-arch { margin-inline: auto; }
  .hero-bear { left: -16px; }
  .hero-badge { right: -8px; top: -26px; }
  .hero-badge svg { width: 96px; height: 96px; }
  .scroll-hint { display: none; }

  .ueber-grid, .ernaehrung-grid { grid-template-columns: 1fr; }
  .ernaehrung-img { max-width: 560px; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .kontakt-card { position: static; }
  .kontakt-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 1rem; }
  :root { --header-h: 72px; }
  .header-cta { display: none; }
  .konzept-grid { grid-template-columns: 1fr; }
  .konzept-note { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stepper-nav { grid-template-columns: repeat(2, 1fr); gap: 18px 10px; }
  .stepper-line { display: none; }
  .step-name { font-size: .78rem; }
  .ueber-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .t-bear { width: 64px; }
  .hero-facts strong { font-size: 1.3rem; }
  .mascot { right: 14px; bottom: 14px; }
  .totop { left: 14px; bottom: 14px; width: 46px; height: 46px; }
}

/* ---------- Rechtsseiten (Impressum / Datenschutz) ---------- */
.subpage .site-header { position: sticky; }
.subpage .header-inner { justify-content: space-between; }
.subpage .brand { margin-right: 0; }
.legal-main { padding-top: clamp(48px, 7vw, 90px); min-height: 60vh; }
.legal-content h1 { margin-bottom: 1em; }
.legal-content h2 {
  font-size: 1.28rem;
  margin: 2em 0 .55em;
  color: var(--ink);
}
.legal-content p { color: var(--ink-soft); max-width: 70ch; }
.legal-content strong { color: var(--ink); }
.subpage .site-footer { margin-top: clamp(48px, 7vw, 90px); }
.subpage .footer-bottom a { color: rgba(251, 247, 240, .7); }
.subpage .footer-bottom a:hover { color: var(--honey-soft); }

/* ---------- Bewegung reduzieren ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none; }
  .preloader { display: none; }
}

/* ==========================================================================
   NEUFASSUNG JULI 2026 — Ergänzungen zur neuen Konzeption
   (Inklusion, Lotusplan, Räume & Lage, Kinderrechte & Schutz)
   ========================================================================== */

:root {
  --sage-soft: #EBF0E4;
  --sage-deep: #5F7050;
  /* Blütenblatt-Farbwelt (aus dem Lotusplan der Konzeption) */
  --petal-terra-fill: #F0C9B4;
  --petal-honey-fill: #F4DBA9;
  --petal-sage-fill:  #CFDAC2;
  --petal-blush-fill: #F3E2D0;
}

/* ---------- Hero: Inklusions-Hinweis ---------- */
.hero-flag {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  background: var(--sage-soft);
  border: 1.6px solid rgba(143, 163, 126, .55);
  color: var(--sage-deep);
  border-radius: 999px;
  padding: .55em 1.15em;
  font-size: .92rem;
  font-weight: 600;
  margin: -0.6em 0 1.9em;
}
.hero-flag svg { color: var(--sage); flex: 0 0 auto; }
.hero-flag strong { color: var(--sage-deep); font-weight: 750; }

/* ---------- Über mich: echtes Foto ---------- */
.ueber-foto img { aspect-ratio: 4 / 5; object-fit: cover; }
.ueber-foto figcaption {
  padding: 12px 18px 14px;
  font-size: .88rem;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--font-display);
}

/* ---------- Check-Liste in Salbei (Inklusion) ---------- */
.check-list-sage li::before { background: var(--sage-soft); }
.check-list-sage li::after { border-color: var(--sage-deep); }

/* ---------- Konzept: Bildungsbereiche-Wolke ---------- */
.bildung-cloud {
  margin-top: clamp(36px, 5vw, 56px);
  text-align: center;
}
.bildung-cloud-title {
  color: var(--ink-soft);
  margin-bottom: 1.2em;
  font-size: 1.02rem;
}
.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.chip-cloud li {
  background: var(--white);
  border: 1.6px solid rgba(61, 44, 35, .12);
  border-radius: 999px;
  padding: .5em 1.1em;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: transform .3s var(--ease-out), border-color .3s, color .3s;
}
.chip-cloud li:hover {
  transform: translateY(-3px);
  border-color: var(--honey);
  color: var(--terra-deep);
}
.chip-cloud-left { justify-content: flex-start; }

/* ---------- Inklusion ---------- */
.sec-inklusion {
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(207, 218, 194, .38), transparent 60%),
    radial-gradient(70% 60% at 0% 100%, rgba(240, 220, 200, .5), transparent 65%),
    var(--bg);
  overflow: clip;
}
.inklusion-quote {
  margin: 0 auto clamp(44px, 6vw, 64px);
  max-width: 860px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 4vw, 46px) clamp(24px, 5vw, 64px);
  position: relative;
}
.inklusion-quote::before {
  content: "“";
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 10px 24px rgba(95, 112, 80, .35);
}
.inklusion-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  padding-top: .5em;
}
.inklusion-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.inklusion-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1em;
}
.inklusion-text .check-list { display: grid; gap: 1em; }
.inklusion-koop {
  margin-top: 1.8em;
  color: var(--ink-soft);
  font-size: .98rem;
  border-left: 3px solid var(--sage);
  padding-left: 1.2em;
}
.inklusion-card {
  background: var(--espresso);
  color: rgba(251, 247, 240, .85);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 42px);
  box-shadow: var(--shadow-lift);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.inklusion-badge {
  display: inline-block;
  background: var(--sage);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .5em 1.2em;
  margin-bottom: 1.4em;
}
.inklusion-card h3 { color: var(--bg); font-size: 1.45rem; }
.inklusion-card > p { font-size: .97rem; }
.inklusion-card em { color: var(--honey-soft); }
.modul-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1.4em 0;
}
.modul-chips li {
  background: rgba(251, 247, 240, .08);
  border: 1.3px solid rgba(251, 247, 240, .22);
  border-radius: 999px;
  padding: .42em .95em;
  font-size: .82rem;
  font-weight: 550;
}
.inklusion-card-foot {
  border-top: 1px solid rgba(251, 247, 240, .16);
  padding-top: 1.2em;
  font-size: .92rem;
  color: rgba(251, 247, 240, .68);
}

/* ---------- Lotusplan ---------- */
.sec-lotus { overflow: clip; }
.lotus-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(48% 40% at 12% 14%, rgba(240, 220, 200, .55), transparent 68%),
    radial-gradient(44% 38% at 88% 82%, rgba(207, 218, 194, .45), transparent 68%);
}
.sec-lotus .container { position: relative; z-index: 1; }
.lotus-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.lotus-stage {
  position: relative;
  padding-bottom: 54px;
}
.lotus-stage svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.lotus-petal { cursor: pointer; outline: none; }
.lotus-petal .petal-shape { transition: filter .3s; }
.lotus-petal:focus-visible .petal-shape {
  stroke-width: 5;
  filter: drop-shadow(0 0 6px rgba(217, 154, 43, .8));
}
.lotus-label { cursor: pointer; }
.lotus-label text {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .01em;
}
.lotus-center-q {
  font-family: var(--font-display);
  font-weight: 600;
}
.lotus-trigger {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: .7em;
  background: var(--white);
  color: var(--terra-deep);
  border: 1.7px solid rgba(192, 95, 60, .4);
  border-radius: 999px;
  padding: .85em 1.6em;
  font-weight: 700;
  font-size: .98rem;
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease-out), box-shadow .35s, background .25s, color .25s;
  white-space: nowrap;
}
.lotus-trigger:hover {
  background: var(--terra);
  color: var(--white);
  transform: translateX(-50%) translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.lotus-trigger-pulse {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--terra);
  position: relative;
  flex: 0 0 auto;
}
.lotus-trigger:hover .lotus-trigger-pulse { background: var(--white); }
.lotus-trigger-pulse::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid currentColor;
  color: var(--terra);
  animation: lotuspulse 1.9s var(--ease-out) infinite;
}
.lotus-trigger:hover .lotus-trigger-pulse::after { color: var(--white); }
@keyframes lotuspulse {
  0% { transform: scale(.55); opacity: .9; }
  70%, 100% { transform: scale(1.35); opacity: 0; }
}
.lotus-replay {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-size: .88rem;
  font-weight: 650;
  color: var(--ink-soft);
  border: 1.5px solid rgba(61, 44, 35, .2);
  border-radius: 999px;
  padding: .65em 1.3em;
  background: rgba(255, 253, 249, .8);
  transition: color .25s, border-color .25s, transform .3s var(--ease-out);
  white-space: nowrap;
}
.lotus-replay:hover {
  color: var(--terra);
  border-color: var(--terra);
  transform: translateX(-50%) translateY(-2px);
}
.lotus-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(26px, 3.5vw, 42px);
  border-top: 6px solid var(--petal-accent, var(--honey));
  transition: border-color .4s;
}
.lotus-panel-tag {
  display: inline-block;
  background: var(--petal-soft, var(--blush));
  color: var(--petal-deep, var(--terra-deep));
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .48em 1.1em;
  margin: 0 0 1em;
}
.lotus-panel-title {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: .4em;
}
.lotus-panel-text { color: var(--ink-soft); }
.lotus-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.3em;
}
.lotus-chips li {
  background: var(--bg);
  border: 1.5px solid var(--petal-soft, var(--blush));
  color: var(--petal-deep, var(--terra-deep));
  border-radius: 999px;
  padding: .45em 1em;
  font-size: .85rem;
  font-weight: 650;
}
.lotus-panel-hint {
  display: flex;
  align-items: center;
  gap: .6em;
  margin-top: 1.6em;
  color: var(--ink-faint);
  font-size: .9rem;
  font-weight: 550;
}
.lotus-panel-hint svg { flex: 0 0 auto; }
.lotus-panel-foot {
  margin-top: 1.6em;
  padding-top: 1.3em;
  border-top: 1px dashed rgba(61, 44, 35, .18);
  font-size: .88rem;
  color: var(--ink-soft);
}
.lotus-mobile-chips {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.lotus-mobile-chips button {
  border-radius: 999px;
  border: 1.6px solid var(--chip-edge, rgba(61, 44, 35, .2));
  color: var(--chip-deep, var(--ink));
  background: var(--white);
  padding: .5em 1.05em;
  font-size: .86rem;
  font-weight: 650;
  transition: background .25s, color .25s, transform .3s var(--ease-out);
}
.lotus-mobile-chips button:hover,
.lotus-mobile-chips button.is-active {
  background: var(--chip-edge, var(--terra));
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Eingewöhnung: Gelingens-Box ---------- */
.tip-box {
  max-width: 760px;
  margin: clamp(32px, 4vw, 48px) auto 0;
  background: linear-gradient(135deg, var(--white), #FBEFE2);
  border: 1.6px solid var(--blush);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 40px);
  box-shadow: var(--shadow-soft);
}
.tip-box h3 { font-size: 1.3rem; margin-bottom: .9em; }
.tip-box .check-list { display: grid; gap: .8em; font-size: .98rem; }

/* ---------- Räume & Lage ---------- */
.raeume-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.5vw, 40px);
  margin-top: clamp(32px, 4vw, 48px);
}
.raeume-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.2vw, 40px);
  box-shadow: var(--shadow-soft);
}
.raeume-block h3 { font-size: 1.42rem; }
.raeume-block p { color: var(--ink-soft); font-size: .98rem; }
.raeume-block strong, .raeume-block em { color: var(--ink); }
.ausflug-title { margin-top: 1.4em; }
.raeume-block .chip-cloud { margin-top: .8em; }
.raeume-block .chip-cloud li { background: var(--bg); }
.sec-raeume .raeume-facts { margin-top: 26px; }

/* ---------- Gesundheit: Mini-Karten ---------- */
.gesund-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(44px, 6vw, 72px);
}
.g-mini {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.g-mini:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.g-mini-icon {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  font-size: 1.5rem;
  border-radius: 16px;
  background: var(--bg-soft);
  margin-bottom: 14px;
}
.g-mini h3 { font-size: 1.16rem; }
.g-mini p { color: var(--ink-soft); font-size: .93rem; margin: 0; }

/* ---------- Kinderrechte & Schutz ---------- */
.schutz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.schutz-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--honey);
}
.schutz-card:nth-child(2) { border-left-color: var(--sage); }
.schutz-card:nth-child(3) { border-left-color: var(--terra); }
.schutz-card:nth-child(4) { border-left-color: var(--honey-soft); }
.schutz-card h3 { font-size: 1.26rem; }
.schutz-card p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.schutz-download {
  margin-top: clamp(36px, 5vw, 52px);
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.schutz-download p { color: var(--ink-soft); margin-bottom: 1.4em; }
.download-btn { gap: .6em; }

/* ---------- Mobile Menü: viele Punkte scrollbar ---------- */
.mobile-menu { overflow-y: auto; }
.mobile-menu nav { margin-block: auto; }

/* ---------- Responsive: neue Sektionen ---------- */
@media (max-width: 1024px) {
  .lotus-grid { grid-template-columns: 1fr; }
  .lotus-stage { max-width: 620px; margin-inline: auto; width: 100%; }
}
@media (max-width: 960px) {
  .inklusion-grid { grid-template-columns: 1fr; }
  .inklusion-card { position: static; }
  .raeume-grid { grid-template-columns: 1fr; }
  .gesund-trio { grid-template-columns: 1fr; }
  .schutz-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .lotus-mobile-chips { display: flex; }
}
@media (max-width: 640px) {
  .hero-flag { font-size: .82rem; padding: .55em 1em; }
  .lotus-panel-title { font-size: 1.5rem; }
  .lotus-trigger { font-size: .9rem; padding: .8em 1.35em; }
}

/* hidden-Attribut muss sich gegen display-Regeln durchsetzen */
.lotus-trigger[hidden], .lotus-replay[hidden],
.lotus-panel-hint[hidden], .lotus-panel-tag[hidden],
.lotus-chips[hidden] { display: none; }

/* Titelbild: Haus-Illustration — Ausschnitt aufs Haus ausrichten */
.hero-arch img { object-position: 74% center; }
