@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/roboto-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/roboto-500.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/roboto-700.woff2") format("woff2");
}

@font-face {
  font-family: "Dosis";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/dosis-700.woff2") format("woff2");
}

:root {
  --accent: #8babb4;
  --accent-dark: #5a7881;
  --accent-soft: #eaf1f2;
  --ink: #353c3f;
  --ink-soft: #5f686b;
  --paper: #ffffff;
  --canvas: #fbfaf7;
  --line: #e4e6e3;
  --shadow-sm: 0 10px 32px rgb(35 54 59 / 8%);
  --shadow-md: 0 16px 48px rgb(35 54 59 / 11%);
  --shadow-lg: 0 24px 70px rgb(35 54 59 / 15%);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 156px;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink-soft);
  background: var(--canvas);
  font: 400 16px/1.75 "Roboto", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Die Scroll-Sperre gilt nur dort, wo es das Mobilmenü überhaupt gibt.
   Wechselt die Breite auf Desktop, hebt der Browser sie von selbst auf –
   ohne das zu brauchen, bliebe die Seite unscrollbar zurück. */
@media (max-width: 1120px) {
  body.menu-open {
    overflow: hidden;
  }
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  hyphens: auto;
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.55rem;
}

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

:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 4px;
}

.identity-bar :focus-visible,
.site-footer :focus-visible,
.contact-details :focus-visible,
.cta-card :focus-visible,
.hero :focus-visible,
.page-hero :focus-visible {
  outline-color: #fff;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 5000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: #fff;
  background: var(--accent-dark);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.noscript {
  padding: 20px;
  text-align: center;
  color: #fff;
  background: #9e2828;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.header-stack {
  position: sticky;
  z-index: 1000;
  top: 0;
}

.identity-bar {
  height: 36px;
  color: #fff;
  background: var(--accent-dark);
}

.identity-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.parent-brand {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  gap: 6px;
  white-space: nowrap;
}

.parent-brand strong {
  font-weight: 700;
}

.parent-brand__context {
  font-weight: 500;
}

.parent-brand__context::after {
  margin-left: 6px;
  content: "·";
  opacity: 0.65;
}

.parent-brand--current .parent-brand__context::before {
  margin-right: 6px;
  content: "·";
  opacity: 0.65;
}

.parent-brand--current .parent-brand__context::after {
  display: none;
}

.parent-brand__icon {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
}

.identity-bar__meta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
}

.identity-bar__meta i {
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
}

.brand-dots {
  display: inline-grid;
  grid-template-columns: repeat(4, 7px);
  gap: 3px;
  align-items: end;
}

.brand-dots i {
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
}

.brand-dots i:nth-child(1) {
  opacity: 0.5;
  transform: translateY(2px);
}

.brand-dots i:nth-child(2) {
  opacity: 0.7;
  transform: translateY(-2px);
}

.brand-dots i:nth-child(3) {
  transform: translateY(1px);
}

.brand-dots i:nth-child(4) {
  opacity: 0.65;
  transform: translateY(-3px);
}

.site-header {
  position: relative;
  min-height: 104px;
  background: #fff;
  border-bottom: 1px solid rgb(35 54 59 / 7%);
  box-shadow: 0 10px 30px rgb(35 54 59 / 5%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
  min-height: 104px;
}

.site-logo {
  display: flex;
  flex: 0 0 210px;
  align-items: center;
  height: 84px;
  padding-block: 7px;
}

.site-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

body[data-site="kitazirkel"] .site-logo {
  flex-basis: 238px;
}

/* These two source SVGs contain more internal whitespace than the other logos. */
body[data-site="wimmelburg"] .site-logo img,
body[data-site="wichtelhagen"] .site-logo img {
  transform: scale(1.46);
  transform-origin: left center;
}

.desktop-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(2px, 0.7vw, 12px);
  min-width: 0;
  margin-left: auto;
}

.nav-item {
  position: relative;
  flex: 0 0 auto;
}

.nav-link,
.nav-submenu-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 clamp(10px, 0.9vw, 14px);
  color: #3e474a;
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.86rem, 0.98vw, 0.94rem);
  font-weight: 700;
  letter-spacing: 0.008em;
  line-height: 1.2;
  border: 0;
  border-radius: 13px;
  white-space: nowrap;
}

.nav-submenu-toggle {
  gap: 7px;
  width: auto;
  height: auto;
  cursor: pointer;
  background: transparent;
}

.nav-link:hover,
.nav-submenu-toggle:hover,
.nav-submenu-toggle:focus-visible {
  color: var(--accent-dark);
  background: color-mix(in srgb, var(--accent) 9%, transparent);
}

.nav-link.is-active,
.nav-submenu-toggle.is-active {
  color: var(--accent-dark);
}

.nav-link--emphasis {
  color: #3e474a;
  background: transparent;
}

.nav-link--emphasis:hover,
.nav-link--emphasis.is-active {
  color: var(--accent-dark);
  background: color-mix(in srgb, var(--accent) 9%, transparent);
}

.nav-link::after,
.nav-submenu-toggle::after {
  position: absolute;
  right: 14px;
  bottom: 6px;
  left: 14px;
  height: 2px;
  content: "";
  background: var(--accent);
  border-radius: 2px;
  opacity: 0;
}

.nav-link.is-active::after,
.nav-submenu-toggle.is-active::after,
.nav-submenu-toggle[aria-expanded="true"]::after {
  opacity: 1;
}

.nav-submenu-toggle[aria-expanded="true"] {
  color: var(--accent-dark);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}

.nav-submenu-toggle:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 1px;
}

.nav-submenu-toggle__icon {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  opacity: 0.68;
}

.nav-item--group.is-open .nav-submenu-toggle__icon {
  transform: rotate(180deg);
}

.nav-submenu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 15px);
  left: 50%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  width: max-content;
  min-width: 280px;
  max-width: 390px;
  padding: 12px;
  pointer-events: none;
  visibility: hidden;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--accent) 13%, var(--line));
  border-radius: 20px;
  box-shadow: 0 28px 75px rgb(35 54 59 / 17%), 0 4px 14px rgb(35 54 59 / 7%);
  opacity: 0;
  transform: translateX(-50%);
}

.nav-item--group.is-open .nav-submenu {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%);
}

.nav-submenu--wide {
  right: 0;
  left: auto;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  min-width: 430px;
  max-width: 490px;
  transform: none;
}

.nav-item--group.is-open .nav-submenu--wide {
  transform: none;
}

.desktop-nav > .nav-item--group:last-child .nav-submenu {
  right: 0;
  left: auto;
  transform: none;
}

.desktop-nav > .nav-item--group:last-child.is-open .nav-submenu {
  transform: none;
}

.nav-submenu a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 13px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
  border-radius: 11px;
}

.nav-submenu a:not(.nav-submenu__overview)::after {
  margin-left: auto;
  padding-left: 12px;
  color: var(--accent-dark);
  font-size: 1.1rem;
  line-height: 1;
  content: "›";
  opacity: 0.48;
}

.nav-submenu a.nav-submenu__overview {
  flex-direction: column;
  grid-column: 1 / -1;
  align-items: flex-start;
  justify-content: center;
  min-height: 68px;
  margin-bottom: 6px;
  padding: 12px 14px;
  background: color-mix(in srgb, var(--accent-soft) 68%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 16%, white);
}

.nav-submenu a small {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav-submenu a:hover,
.nav-submenu a.is-active {
  color: var(--accent-dark);
  background: color-mix(in srgb, var(--accent-soft) 72%, white);
}

.nav-submenu a:hover::after,
.nav-submenu a.is-active::after {
  opacity: 1;
}

.header-actions {
  position: relative;
  z-index: 20;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 104px;
  height: 48px;
  padding: 0 16px;
  cursor: pointer;
  color: var(--ink);
  background: color-mix(in srgb, var(--accent-soft) 46%, #f7f8f6);
  border: 1px solid color-mix(in srgb, var(--accent) 15%, var(--line));
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 80%);
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
}

.menu-toggle__label {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.menu-toggle__close,
.menu-toggle[aria-expanded="true"] .menu-toggle__open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
  display: block;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(610px, calc(100svh - 178px), 750px);
  overflow: hidden;
  overflow: clip;
  color: #fff;
  background: var(--accent-soft);
}

.hero__media-stack,
.hero__media,
.hero__wash {
  position: absolute;
  inset: 0;
}

.hero__media-stack {
  z-index: 0;
}

.hero__media {
  z-index: 0;
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-position: var(--hero-position);
  background-size: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1s ease, transform 8s ease;
}

.hero__media.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__media--illustration {
  background-color: #faf7f2;
  background-size: min(54vw, 680px) auto;
}

.hero__wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(27 39 41 / 72%) 0%, rgb(27 39 41 / 38%) 45%, transparent 76%),
    linear-gradient(180deg, transparent 68%, rgb(15 27 30 / 22%));
}

.hero--illustration .hero__wash {
  background: linear-gradient(90deg, rgb(49 42 38 / 70%) 0%, rgb(49 42 38 / 42%) 43%, rgb(255 255 255 / 8%) 68%);
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-block: 80px 100px;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 20px;
  padding: 7px 13px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgb(0 0 0 / 32%);
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero__title-wrap {
  max-width: 920px;
}

.hero h1,
.hero__subtitle {
  margin: 0;
  color: #fff;
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(4rem, 7vw, 6.5rem);
  letter-spacing: -0.035em;
}

.hero__subtitle {
  margin-top: 12px;
  font-size: clamp(2.35rem, 4vw, 4rem);
}

.hero h1 span,
.hero__subtitle span {
  display: inline;
  /* Waagerechter Einzug bewusst als feste Länge, nicht in em: sonst richtet er
     sich nach der Schriftgröße, und die beiden gestapelten Bänder beginnen
     unterschiedlich weit links (gemessen 112px gegen 104px bei 1440px Breite).
     Senkrecht bleibt es bei em, damit die Bandhöhe zur Schrift passt. */
  padding: 0.02em clamp(9px, 1.4vw, 20px) 0.1em;
  color: #fff;
  background: color-mix(in srgb, var(--accent) 72%, #22363b);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: 10px 0 0 color-mix(in srgb, var(--accent) 72%, #22363b), -10px 0 0 color-mix(in srgb, var(--accent) 72%, #22363b);
}

.hero__subtitle span {
  background: var(--accent-dark);
  box-shadow: 10px 0 0 var(--accent-dark), -10px 0 0 var(--accent-dark);
}

.hero__actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__actions {
  margin-top: 38px;
}

.button-row {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  border: 1px solid transparent;
  border-radius: 13px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: var(--accent-dark);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--accent-dark) 25%, transparent);
}

.button--primary:hover {
  box-shadow: 0 16px 32px color-mix(in srgb, var(--accent-dark) 34%, transparent);
}

.button--outline {
  color: var(--accent-dark);
  background: transparent;
  /* Voller Akzentton: mit 38 % erreichte der Rahmen nur 1,65–2,21 : 1 und war
     bei Sonnenlicht nicht als Schaltfläche erkennbar (WCAG 1.4.11). */
  border-color: var(--accent-dark);
}

.button--outline:hover {
  background: var(--accent-soft);
}

.button--light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 32px rgb(0 0 0 / 15%);
}

.button--glass {
  color: #fff;
  /* Dunkler Schleier statt hellem. Weiße Schrift auf 12 % Weiß hing über hellen
     Bildstellen völlig vom Foto dahinter ab und wirkte neben dem weißen Button
     ausgegraut. Gleiches Muster wie .hero__kicker, der das schon richtig macht. */
  background: rgb(0 0 0 / 42%);
  border-color: rgb(255 255 255 / 55%);
  backdrop-filter: blur(10px);
}

.button--disabled {
  color: var(--ink-soft);
  cursor: not-allowed;
  background: #eef0ed;
  border-color: #e4e6e2;
}

.hero__dots {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 58px;
  display: flex;
  gap: 8px;
}

.hero__dot {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 999px;
  place-items: center;
}

.hero__dot::before {
  width: 32px;
  height: 5px;
  content: "";
  background: rgb(255 255 255 / 45%);
  border-radius: inherit;
}

.hero__dot.is-active::before {
  background: #fff;
}

.hero__edge {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 32px;
  background: var(--canvas);
  clip-path: polygon(0 70%, 12% 40%, 24% 72%, 39% 34%, 54% 70%, 69% 38%, 83% 65%, 100% 30%, 100% 100%, 0 100%);
}

.section {
  padding-block: clamp(76px, 8vw, 112px);
  background: var(--paper);
}

.section--soft {
  /* Heller Start: auf dem vollen Akzent-Soft lag die Kicker-Zeile bei drei
     Auftritten unter 4,5 : 1 – genau dort steht sie. */
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-soft) 62%, white), color-mix(in srgb, var(--accent-soft) 40%, white));
}

.intro-section {
  background: var(--canvas);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

.intro-grid--kita {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.03rem;
}

.section-heading--center {
  margin-inline: auto;
  margin-bottom: 52px;
  text-align: center;
}

.section-heading--center > p:last-child {
  margin-inline: auto;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.lead {
  color: var(--ink);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  line-height: 1.62;
}

.principle-card {
  position: relative;
  min-height: 360px;
  padding: 70px 44px 44px;
  overflow: hidden;
  color: #fff;
  background: var(--accent-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.principle-card::after {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 210px;
  height: 210px;
  content: "";
  border: 36px solid rgb(255 255 255 / 9%);
  border-radius: 50%;
}

.principle-card__mark {
  position: absolute;
  top: 5px;
  left: 32px;
  color: rgb(255 255 255 / 24%);
  font: 700 8rem/1 "Dosis", sans-serif;
}

.principle-card p {
  margin-bottom: 20px;
  color: #fff;
  font: 700 clamp(2.6rem, 5vw, 4.5rem)/1 "Dosis", sans-serif;
}

.principle-card > span:last-child {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 270px;
}

.image-frame {
  position: relative;
  min-height: 470px;
  padding: 14px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.3deg);
}

.image-frame::before {
  position: absolute;
  z-index: -1;
  inset: -18px 34px 28px -18px;
  content: "";
  background: var(--accent);
  border-radius: var(--radius-lg);
  transform: rotate(-3.5deg);
}

.image-frame img {
  width: 100%;
  height: 442px;
  object-fit: cover;
  object-position: var(--hero-position, center);
  border-radius: 23px;
}

.image-frame__label {
  position: absolute;
  right: 30px;
  bottom: 28px;
  padding: 10px 16px;
  color: #fff;
  font: 700 1.1rem "Dosis", sans-serif;
  background: var(--accent-dark);
  border-radius: 999px;
}

.fact-wrap {
  margin-top: 78px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fact-card {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  padding: 30px;
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--accent) 22%, white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.fact-card strong {
  margin-bottom: 3px;
  color: var(--accent-dark);
  font: 700 clamp(2rem, 3.2vw, 3rem)/1.1 "Dosis", sans-serif;
}

.fact-card span {
  font-size: 0.88rem;
}

.kita-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.kita-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgb(44 58 61 / 8%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kita-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-7px);
}

.kita-card__topline {
  height: 7px;
  background: var(--card-accent);
}

.kita-card__logo {
  display: grid;
  height: 170px;
  padding: 25px;
  place-items: center;
  background: linear-gradient(145deg, #fff, var(--card-soft));
}

.kita-card__logo img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

.kita-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.kita-card__tag {
  margin-bottom: 6px;
  color: var(--card-accent-dark, var(--accent-dark));
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kita-card h3 {
  margin-bottom: 8px;
}

.kita-card p {
  flex: 1;
  margin-bottom: 22px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

.kita-card .text-link {
  color: var(--card-accent-dark, var(--accent-dark));
}

.text-link svg {
  width: 17px;
  transition: transform 0.2s ease;
}

.text-link:hover svg,
.kita-card:hover .text-link svg {
  transform: translateX(4px);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.path-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 34px;
  background: #fff;
  border: 1px solid rgb(44 58 61 / 8%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.path-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
}

.path-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 38px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 17px;
  place-items: center;
}

.path-card__icon svg {
  width: 28px;
  height: 28px;
}

.path-card h3 {
  margin-bottom: 10px;
}

.path-card p {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.news-card__image {
  position: relative;
  height: 245px;
  overflow: hidden;
}

.news-card__image::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  content: "";
  background: linear-gradient(transparent, rgb(0 0 0 / 36%));
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.035);
}

.news-card__image span {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  padding: 6px 10px;
  color: #fff;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--accent-dark);
  border-radius: 999px;
}

.news-card__body {
  padding: 26px;
}

.news-card time {
  display: block;
  margin-bottom: 9px;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.news-card h3 {
  margin-bottom: 10px;
}

.news-card p {
  min-height: 77px;
  font-size: 0.9rem;
  line-height: 1.65;
}

.news-archive {
  display: grid;
  gap: 74px;
}

.news-year__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.news-year__heading h2,
.news-year__heading p {
  margin: 0;
}

.news-year__heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.news-year__heading > span {
  padding: 8px 13px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 700;
  background: var(--accent-soft);
  border-radius: 999px;
}

.content-note {
  margin: 36px 0 0;
  padding: 16px 20px;
  color: #566063;
  font-size: 0.82rem;
  background: #f2f3f0;
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
}

.content-note--wide {
  max-width: 900px;
  margin: 46px auto 0;
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 410px;
  overflow: hidden;
  color: #fff;
  place-items: center;
}

.page-hero--flat {
  min-height: 300px;
  background:
    radial-gradient(circle at 82% 42%, rgb(255 255 255 / 9%) 0 88px, transparent 89px),
    radial-gradient(circle at 12% 74%, rgb(255 255 255 / 7%) 0 62px, transparent 63px),
    linear-gradient(135deg, var(--accent-dark), color-mix(in srgb, var(--accent-dark) 76%, var(--accent)));
}

.page-hero--flat .page-hero__content {
  padding-block: 58px;
}

.page-hero--flat h1 {
  font-size: clamp(2.7rem, 5.2vw, 4.6rem);
}

.page-hero__media,
.page-hero__shade {
  position: absolute;
  inset: 0;
}

.page-hero__media {
  z-index: 0;
  background-image: var(--hero-image);
  background-repeat: no-repeat;
  background-position: var(--hero-position);
  background-size: cover;
}

.page-hero--illustration .page-hero__media {
  background-color: #faf7f2;
  background-size: min(56vw, 650px) auto;
  background-position: 80% center;
}

.page-hero__shade {
  z-index: 1;
  background: linear-gradient(90deg, rgb(25 36 39 / 82%), rgb(25 36 39 / 45%) 55%, rgb(25 36 39 / 18%));
}

.page-hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-block: 72px;
}

.page-hero__content > p {
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(3.5rem, 7vw, 6.6rem);
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}

.page-hero__content > span {
  display: block;
  max-width: 680px;
  font-size: 1.08rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: start;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}

.content-grid > *,
.article-layout > * {
  min-width: 0;
}

.article-image {
  position: sticky;
  top: 178px;
  margin: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.article-image img {
  width: 100%;
  min-height: 360px;
  max-height: 560px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
}

.article-image figcaption {
  padding: 12px 8px 5px;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.article-files {
  display: grid;
  gap: 10px;
  margin: 42px 0 24px;
  padding: 26px;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, white);
  border-radius: var(--radius);
}

.article-status {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 28px 0 34px;
  padding: 17px 19px;
  color: #544329;
  background: #fff7e9;
  border: 1px solid #ead8b5;
  border-radius: 12px;
}

.article-status svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  margin-top: 2px;
}

.article-status p,
.article-status strong {
  display: block;
  margin: 0;
}

.article-status strong {
  margin-bottom: 3px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-files h3 {
  margin: 0 0 8px;
}

.article-files a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  color: var(--ink);
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.article-files a:hover {
  color: var(--accent-dark);
  border-color: var(--accent);
}

.article-files svg {
  width: 20px;
  height: 20px;
}

.article-files span,
.article-files small {
  display: block;
}

.article-files span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.article-files small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 500;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-gallery figure {
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

/* Personenfotos: Gesichter liegen meist im oberen Bereich — Zuschnitt entsprechend ausrichten */
.news-card__image img {
  object-position: center 12%;
}

.article-image img {
  object-position: center 20%;
}

.article-gallery img {
  object-position: center 24%;
}

.article-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-gallery figcaption {
  padding: 11px 14px 13px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.prose {
  max-width: 780px;
  overflow-wrap: anywhere;
}

.prose h2 {
  margin-bottom: 24px;
}

.prose h3 {
  margin: 36px 0 10px;
}

.prose .button {
  margin-top: 20px;
}

.info-panel {
  position: sticky;
  top: 178px;
  padding: 36px;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, white);
  border-radius: var(--radius);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list svg {
  margin-top: 3px;
  color: var(--accent-dark);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.principle-tile {
  min-height: 230px;
  padding: 30px;
  background: #fff;
  border-top: 6px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.principle-tile p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.education-card {
  min-height: 280px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.education-card > span {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 30px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 19px;
  place-items: center;
}

.education-card svg {
  width: 30px;
  height: 30px;
}

.education-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.team-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.team-card__portrait {
  position: relative;
  display: grid;
  height: 300px;
  color: var(--accent-dark);
  background:
    radial-gradient(circle at 28% 30%, color-mix(in srgb, var(--accent) 40%, white) 0 14%, transparent 14.5%),
    radial-gradient(circle at 74% 70%, color-mix(in srgb, var(--accent) 24%, white) 0 19%, transparent 19.5%),
    linear-gradient(145deg, var(--accent-soft), #fff);
  place-items: center;
}

.team-card__portrait > span {
  display: grid;
  width: 112px;
  height: 112px;
  color: #fff;
  background: var(--accent-dark);
  border: 8px solid rgb(255 255 255 / 78%);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font: 700 2.35rem "Dosis", sans-serif;
  place-items: center;
}

.team-card__portrait--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.team-card__portrait small {
  position: absolute;
  bottom: 18px;
  padding: 4px 9px;
  color: var(--ink-soft);
  background: rgb(255 255 255 / 85%);
  border-radius: 999px;
}

.team-card__body {
  min-height: 145px;
  padding: 26px;
}

.section--facts {
  padding-block: 34px 0;
}

.plan-card__preview {
  display: block;
  /* Feste Höhe reserviert den Platz, solange das Bild noch lädt (kein Springen). */
  height: 240px;
  margin: 12px 0 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.plan-card__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.team-bios {
  max-width: 760px;
  margin: 26px auto 0;
}

.team-bios h3 {
  margin: 18px 0 4px;
  font-size: 1.05rem;
}

.download-block {
  max-width: 860px;
  margin: 0 auto 34px;
}

.download-block h3 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.download-block--archive {
  overflow: hidden;
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
  border-radius: 18px;
}

.download-block--archive summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.download-block--archive summary:hover {
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}

.download-block--archive summary:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px var(--accent-dark);
}

.download-block--archive summary::-webkit-details-marker {
  display: none;
}

.download-block--archive summary span {
  display: grid;
  gap: 2px;
}

.download-block--archive summary strong {
  font-size: 1.15rem;
}

.download-block--archive summary small {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.download-block__chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.18s ease;
}

.download-block--archive[open] .download-block__chevron {
  transform: rotate(180deg);
}

.download-block__content {
  padding: 16px 20px 20px;
}

.download-block--archive .download-block__note {
  margin: 0 0 12px;
}

.download-block__note {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.download-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.download-list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.download-list a:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.download-list__icon {
  width: 18px;
  height: 18px;
  color: var(--accent-dark);
  flex: 0 0 auto;
}

.download-list__title {
  font-weight: 600;
  overflow-wrap: anywhere;
}

.download-list__meta {
  color: var(--ink-soft);
  font-size: 0.82rem;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .download-list a {
    grid-template-columns: auto 1fr;
  }

  .download-list__meta {
    grid-column: 2;
    justify-self: start;
  }
}

.team-card__note {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.team-card__note a {
  color: var(--accent-dark);
  text-decoration: none;
}

.team-card__note a:hover {
  text-decoration: underline;
}

.team-card__body h3 {
  margin-bottom: 6px;
}

.team-card__body p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.team-card--featured {
  border-color: var(--accent);
}

.room-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: repeat(2, 250px);
  /* Die Galerien haben bis zu 23 Kacheln. Ohne diese Zeile bekommen alle
     Reihen ab der dritten eine vom Bildformat diktierte Höhe. */
  grid-auto-rows: 250px;
  gap: 18px;
}

.room-card,
.room-placeholder {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.room-card--large {
  grid-row: 1 / span 2;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card figcaption,
.room-placeholder > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 14px;
  color: #fff;
  font: 700 1.18rem "Dosis", sans-serif;
  background: rgb(35 46 48 / 72%);
  border-radius: 11px;
  backdrop-filter: blur(8px);
}

.room-placeholder {
  display: grid;
  min-height: 220px;
  background:
    radial-gradient(circle at calc(24% + var(--placeholder-index) * 7%) 32%, color-mix(in srgb, var(--accent) 44%, white) 0 15%, transparent 15.5%),
    linear-gradient(calc(125deg + var(--placeholder-index) * 7deg), var(--accent-soft), color-mix(in srgb, var(--accent) 35%, white));
  place-items: center;
}

.room-placeholder small {
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding: 28px 32px;
  background: var(--accent-soft);
  border-radius: var(--radius);
}

.archive-strip h3,
.archive-strip p {
  margin-bottom: 0;
}

.archive-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.archive-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 13px;
  color: var(--accent-dark);
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, white);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.archive-strip--current {
  margin-bottom: 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
}

.report-news-divider {
  margin: 70px 0 28px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.report-news-divider h2 {
  margin-bottom: 0;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.plan-card {
  position: relative;
  min-height: 420px;
  padding: 36px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.plan-card__month,
.plan-card__year {
  display: grid;
  width: 88px;
  height: 88px;
  margin-bottom: 54px;
  color: #fff;
  background: var(--accent-dark);
  border-radius: 22px;
  box-shadow: 14px 14px 0 var(--accent-soft);
  font: 700 1.45rem "Dosis", sans-serif;
  place-items: center;
}

.plan-card__year {
  width: 112px;
  background: var(--ink);
}

.plan-card p:not(.eyebrow) {
  min-height: 102px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: start;
}

.contact-details {
  padding: 44px;
  color: #fff;
  background: var(--accent-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-details .eyebrow,
.contact-details h2,
.contact-details .lead {
  color: #fff;
}

.contact-details .eyebrow,
.contact-details .lead {
  color: rgb(255 255 255 / 100%);
}

.contact-list {
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.contact-list > a,
.contact-list > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 62px;
  padding: 11px 13px;
  /* Leicht abdunkeln statt aufhellen – ein weisser Schleier senkt den
     Kontrast der weissen Schrift darauf. */
  background: rgb(0 0 0 / 10%);
  border-radius: 12px;
}

.contact-list svg {
  width: 22px;
}

.contact-list span {
  min-width: 0;
  overflow-wrap: anywhere;
}

/* Keine Deckkraft-Reduktion auf Akzentflächen – die Abstufung entsteht über
   Schriftgröße, Versalien und Sperrung. Mit opacity lag der Kontrast bei 2,67:1. */
.contact-list small {
  display: block;
  margin-bottom: 1px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-route-card {
  position: relative;
  padding: clamp(34px, 5vw, 56px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-route-card::after {
  position: absolute;
  right: -55px;
  bottom: -75px;
  width: 210px;
  height: 210px;
  content: "";
  background: var(--accent-soft);
  border-radius: 50%;
}

.contact-route-card > * {
  position: relative;
  z-index: 1;
}

.contact-route-card__icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 28px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 20px;
  place-items: center;
}

.contact-route-card__icon svg {
  width: 30px;
  height: 30px;
}

.contact-route-card h2 {
  margin-bottom: 16px;
}

.contact-route-card p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 26px;
}

.contact-route-card > small {
  display: block;
  margin-top: 18px;
  color: var(--ink-soft);
}

.contact-form {
  padding: clamp(28px, 5vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form h2 {
  margin-bottom: 30px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fbfbf9;
  border: 1px solid #d9dcd8;
  border-radius: 11px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 30%, white);
}

.contact-form label.checkbox {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.form-note {
  margin: 18px 0 0;
  font-size: 0.72rem;
  line-height: 1.5;
}

.steps {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.steps > li > span {
  display: grid;
  width: 72px;
  height: 72px;
  color: #fff;
  background: var(--accent-dark);
  border-radius: 22px;
  font: 700 1.5rem "Dosis", sans-serif;
  place-items: center;
}

.steps h3 {
  margin-bottom: 8px;
}

.steps p {
  margin-bottom: 10px;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-mini {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
  background: #fff;
  border-top: 6px solid var(--mini-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-mini img {
  width: 100%;
  height: 76px;
  margin-bottom: 20px;
  object-fit: contain;
  object-position: left center;
}

.contact-mini h3 {
  margin-bottom: 5px;
}

.contact-mini p,
.contact-mini a,
.contact-mini small {
  overflow-wrap: anywhere;
  font-size: 0.8rem;
  line-height: 1.5;
}

.contact-mini p {
  margin-bottom: 9px;
}

.contact-mini a {
  color: var(--accent-dark);
  font-weight: 700;
}

.contact-mini small {
  margin-top: 10px;
}

.contact-mini__actions {
  display: grid;
  gap: 5px;
  margin-top: 16px;
}

.contact-mini__actions a {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 9px;
  background: color-mix(in srgb, var(--mini-accent) 9%, white);
  border-radius: 8px;
}

.contact-mini__actions svg {
  width: 16px;
  height: 16px;
}

.contact-mini > strong {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.45;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 980px;
  margin-inline: auto;
}

.download-card {
  min-height: 330px;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.download-card__icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 32px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 18px;
  place-items: center;
}

.download-card button {
  min-height: 44px;
  padding: 8px 12px;
  color: #778083;
  background: #f2f3f1;
  border: 0;
  border-radius: 9px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 70px;
  align-items: start;
}

.legal-note {
  padding: 28px;
  background: #fff5dd;
  border: 1px solid #f0d9a6;
  border-radius: var(--radius);
}

.legal-note strong {
  display: block;
  margin-bottom: 9px;
  color: #71510b;
}

.legal-note p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.empty-state {
  max-width: 780px;
  margin-inline: auto;
  padding: 64px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.empty-state > span {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 26px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 22px;
  place-items: center;
}

.empty-state > span svg {
  width: 34px;
  height: 34px;
}

.cta-section {
  position: relative;
  padding: 0 0 clamp(78px, 8vw, 110px);
  background: var(--paper);
}

.cta-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  min-height: 260px;
  padding: clamp(40px, 6vw, 74px);
  overflow: hidden;
  color: #fff;
  background: var(--accent-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-card::after {
  position: absolute;
  right: -60px;
  bottom: -95px;
  width: 300px;
  height: 300px;
  content: "";
  border: 50px solid rgb(255 255 255 / 8%);
  border-radius: 50%;
}

.cta-card > * {
  position: relative;
  z-index: 2;
}

.cta-card h2,
.cta-card .eyebrow {
  color: #fff;
}

.cta-card h2 {
  margin-bottom: 12px;
}

.cta-card p:last-child {
  max-width: 660px;
  margin-bottom: 0;
}

.cta-card .button {
  flex: 0 0 auto;
}

.site-footer {
  color: rgb(255 255 255 / 72%);
  background: #29383c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 0.85fr);
  gap: clamp(32px, 5vw, 70px);
  padding-block: 78px 70px;
}

.footer-grid h2 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.3rem;
}

.footer-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li,
.footer-grid a,
.footer-brand p {
  font-size: 0.82rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-grid a,
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

.footer-brand img {
  width: 220px;
  height: 90px;
  margin-bottom: 20px;
  padding: 12px;
  object-fit: contain;
  background: #fff;
  border-radius: 15px;
}

.footer-brand p {
  max-width: 330px;
}

.footer-brand > span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font: 700 1rem "Dosis", sans-serif;
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  font-size: 0.75rem;
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 1px;
  }

  .nav-link,
  .nav-submenu-toggle {
    padding-inline: 10px;
    font-size: 0.84rem;
  }

  .kita-grid,
  .contact-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1120px) {
  html {
    scroll-padding-top: 122px;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .identity-bar {
    height: 34px;
  }

  .identity-bar__inner {
    font-size: 0.8rem;
  }

  .parent-brand {
    min-height: 34px;
  }

  .parent-brand__icon {
    width: 15px;
    height: 15px;
  }

  .identity-bar__meta {
    display: none;
  }

  .site-header,
  .site-header__inner {
    min-height: 88px;
  }

  .site-logo,
  body[data-site="kitazirkel"] .site-logo {
    flex-basis: 175px;
    height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: absolute;
    z-index: 10;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    overflow: hidden;
    visibility: hidden;
    background: color-mix(in srgb, var(--accent-soft) 28%, #f7f8f6);
    border-top: 1px solid var(--line);
    box-shadow: 0 28px 65px rgb(35 54 59 / 16%);
    opacity: 0;
  }

  .mobile-menu.is-open {
    min-height: calc(100svh - 122px);
    visibility: visible;
    opacity: 1;
  }

  .mobile-menu__inner {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 2px;
    width: min(calc(100% - 40px), 620px);
    /* 122px Kopfbereich + 18px margin-top + 26px margin-bottom */
    max-height: calc(100svh - 166px);
    margin: 18px max(20px, calc((100vw - var(--container)) / 2)) 26px auto;
    padding: 7px;
    overflow: auto;
    /* Ohne dies scrollt am Listenende die Seite hinter dem Menü weiter. */
    overscroll-behavior: contain;
    background: #fff;
    border: 1px solid color-mix(in srgb, var(--accent) 13%, var(--line));
    border-radius: 20px;
    box-shadow: 0 18px 48px rgb(35 54 59 / 9%);
  }

  .mobile-menu .nav-link {
    min-height: 58px;
    padding: 13px 16px;
    color: var(--ink);
    font-family: "Roboto", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    background: transparent;
    border: 0;
    border-radius: 14px;
  }

  .mobile-menu .nav-link:hover,
  .mobile-menu .nav-link.is-active {
    color: var(--accent-dark);
    background: color-mix(in srgb, var(--accent-soft) 72%, white);
    box-shadow: none;
  }

  .mobile-menu .nav-link::after {
    right: 16px;
    bottom: 9px;
    left: 16px;
  }

  .mobile-nav-group {
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 14px;
  }

  .mobile-nav-group[open] {
    background: color-mix(in srgb, var(--accent-soft) 54%, white);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 17%, transparent);
  }

  .mobile-nav-group > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 13px 16px;
    cursor: pointer;
    list-style: none;
    color: var(--ink);
    font-family: "Roboto", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
  }

  .mobile-nav-group > summary::-webkit-details-marker {
    display: none;
  }

  /* Die Gruppe kappt per overflow den nach aussen versetzten Fokusring –
     deshalb hier ein Innenschatten, wie beim Download-Archiv. */
  .mobile-nav-group > summary:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 3px var(--accent-dark);
  }

  .mobile-nav-group__chevron {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    color: var(--accent-dark);
    opacity: 0.72;
  }

  .mobile-nav-group[open] > summary .mobile-nav-group__chevron {
    transform: rotate(180deg);
  }

  .mobile-nav-group__links {
    display: grid;
    gap: 1px;
    padding: 1px 8px 10px;
    border-top: 0;
  }

  .mobile-nav-group__links a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 14px 10px 26px;
    color: var(--ink-soft);
    font-size: 0.88rem;
    border-radius: 11px;
  }

  .mobile-nav-group__links a::before {
    position: absolute;
    left: 11px;
    width: 5px;
    height: 5px;
    content: "";
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.56;
  }

  .mobile-nav-group__links a:hover,
  .mobile-nav-group__links a.is-active {
    color: var(--accent-dark);
    background: rgb(255 255 255 / 82%);
  }

  .hero {
    min-height: min(700px, calc(100svh - 122px));
  }

  .hero__media--illustration {
    background-size: min(70vw, 620px) auto;
    background-position: 90% 55%;
  }

  .hero__wash {
    background: linear-gradient(90deg, rgb(27 39 41 / 75%) 0%, rgb(27 39 41 / 45%) 57%, rgb(27 39 41 / 8%));
  }

  .intro-grid,
  .intro-grid--kita,
  .content-grid,
  .article-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .article-image {
    position: static;
    max-width: 720px;
  }

  .intro-grid > div:first-child,
  .prose {
    max-width: 760px;
  }

  .principle-card {
    min-height: 310px;
  }

  .image-frame {
    max-width: 700px;
  }

  .path-grid,
  .principle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid,
  .education-grid,
  .team-grid,
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-card:last-child,
  .plan-card:last-child {
    grid-column: 1 / -1;
  }

  .news-year .news-card:last-child {
    grid-column: auto;
  }

  .article-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-panel {
    position: static;
  }

  .room-grid {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: repeat(3, 230px);
    grid-auto-rows: 230px;
  }

  .room-card--large {
    grid-row: 1 / span 2;
  }

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

  .contact-details {
    max-width: 680px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-note {
    max-width: 640px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(2, 1fr);
  }

  /* Die Einrichtungs-Spalte ist der einzige Weg zwischen den neun Auftritten –
     sie darf auf Handy und Tablet nicht verschwinden, sondern rückt in eine
     eigene volle Zeile. */
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 22px;
  }

  .footer-grid a,
  .footer-bottom a {
    min-height: 44px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 112px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .identity-bar__inner {
    justify-content: flex-start;
    font-size: 0.76rem;
  }

  .parent-brand__context {
    display: none;
  }

  .site-header,
  .site-header__inner {
    min-height: 78px;
  }

  .site-logo,
  body[data-site="kitazirkel"] .site-logo {
    flex-basis: 148px;
    height: 66px;
  }

  .menu-toggle {
    width: auto;
    min-width: 96px;
    height: 46px;
  }

  .mobile-menu__inner {
    width: min(calc(100% - 32px), 620px);
    /* 112px Kopfbereich + 14px margin-top + 20px margin-bottom */
    max-height: calc(100svh - 146px);
    margin-block: 14px 20px;
    margin-inline: auto;
  }

  .mobile-menu.is-open {
    min-height: calc(100svh - 112px);
  }

  .hero {
    min-height: 610px;
  }

  .hero__content {
    align-self: end;
    padding-block: 72px 102px;
  }

  .hero__wash,
  .hero--illustration .hero__wash {
    background: linear-gradient(180deg, rgb(25 35 38 / 12%) 5%, rgb(25 35 38 / 72%) 58%, rgb(25 35 38 / 90%) 100%);
  }

  .hero__media--illustration {
    background-position: 50% 20%;
    background-size: min(100vw, 560px) auto;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }

  .hero__subtitle {
    font-size: clamp(1.72rem, 7.2vw, 2.6rem);
  }

  .hero h1 span,
  .hero__subtitle span {
    box-shadow: 6px 0 0 color-mix(in srgb, var(--accent) 72%, #22363b), -6px 0 0 color-mix(in srgb, var(--accent) 72%, #22363b);
  }

  .hero__subtitle span {
    box-shadow: 6px 0 0 var(--accent-dark), -6px 0 0 var(--accent-dark);
  }

  .hero__actions {
    align-items: stretch;
    margin-top: 30px;
  }

  .hero__actions .button {
    flex: 1 1 100%;
  }

  .hero__dots {
    right: 16px;
    bottom: 54px;
  }

  .hero__edge {
    height: 21px;
  }

  .page-hero {
    min-height: 340px;
  }

  .page-hero__media,
  .page-hero--illustration .page-hero__media {
    background-position: center;
  }

  .page-hero__shade {
    background: linear-gradient(180deg, rgb(25 36 39 / 45%), rgb(25 36 39 / 83%));
  }

  .page-hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.5rem);
  }

  .section {
    padding-block: 74px;
  }

  .section-heading--center {
    margin-bottom: 36px;
    text-align: left;
  }

  .section-heading--center > p:last-child {
    margin-inline: 0;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 36px;
  }

  .principle-card {
    min-height: 290px;
    padding: 62px 30px 36px;
  }

  .image-frame {
    min-height: 360px;
    padding: 10px;
  }

  .image-frame img {
    height: 340px;
  }

  .fact-wrap {
    margin-top: 52px;
  }

  .fact-grid,
  .kita-grid,
  .path-grid,
  .news-grid,
  .principle-grid,
  .education-grid,
  .team-grid,
  .plan-grid,
  .contact-card-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .news-card:last-child,
  .plan-card:last-child {
    grid-column: auto;
  }

  .news-archive {
    gap: 56px;
  }

  .news-year__heading {
    align-items: flex-start;
  }

  .article-gallery {
    grid-template-columns: 1fr;
  }

  .fact-card {
    min-height: 115px;
  }

  .kita-card__logo {
    height: 190px;
  }

  .path-card {
    min-height: 250px;
  }

  .path-card__icon {
    margin-bottom: 25px;
  }

  .news-card__image {
    height: 225px;
  }

  .news-card p {
    min-height: 0;
  }

  .room-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    /* Ohne diese Zeile bleibt grid-auto-rows: 230px aus dem 1120er-Block
       stehen, während die Kacheln unten min-height: 260px fordern. Die Zeile
       ist dann 12px zu flach und jede Kachel überlappt die nächste. */
    grid-auto-rows: auto;
  }

  .room-card,
  .room-placeholder,
  .room-card--large {
    grid-row: auto;
    min-height: 260px;
  }

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

  .plan-card {
    min-height: 390px;
  }

  .contact-details,
  .contact-form,
  .contact-route-card {
    padding: 28px;
    border-radius: var(--radius);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .steps li {
    grid-template-columns: 66px 1fr;
    gap: 16px;
  }

  .steps > li > span {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .empty-state {
    padding: 42px 24px;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 40px 28px;
  }

  .cta-card .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom .container {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    min-height: 82px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .parent-brand span:last-child {
    max-width: 255px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-logo,
  body[data-site="kitazirkel"] .site-logo {
    flex-basis: 132px;
  }

  .hero {
    min-height: 620px;
  }

  .hero__kicker {
    font-size: 0.66rem;
  }

  .button-row {
    align-items: stretch;
  }

  .button-row .button {
    flex: 1 1 100%;
  }

  .news-card__image {
    height: 200px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero,
  .page-hero,
  .hero h1,
  .page-hero h1,
  .hero__subtitle {
    color: #000;
  }

  .hero h1 span,
  .hero__subtitle span {
    color: #000;
    background: none;
    box-shadow: none;
  }

  .header-stack,
  .hero__dots,
  .menu-toggle,
  .cta-section {
    display: none;
  }

  /* Browser drucken Hintergrundfarben standardmässig nicht – weisse Schrift
     auf farbiger Fläche käme sonst leer aus dem Drucker. Betrifft vor allem
     die Kontaktdaten im Fussbereich und die Monatskacheln der Terminseite,
     also genau das, was Eltern ausdrucken. */
  .site-footer,
  .site-footer a,
  .site-footer h2,
  .contact-details,
  .contact-details .eyebrow,
  .contact-details .lead,
  .contact-list a,
  .contact-list small,
  .room-card figcaption,
  .team-card__portrait > span,
  .button--primary,
  .plan-card__month,
  .plan-card__year {
    color: #000 !important;
    background: none !important;
    box-shadow: none !important;
  }

  .plan-card__month,
  .plan-card__year,
  .button--primary,
  .contact-list a {
    border: 1px solid #000;
  }

  /* Sonst stehen 340–610 px leere Fläche am Blattanfang. */
  .hero,
  .page-hero {
    min-height: auto;
  }

  .hero__media-stack,
  .hero__wash,
  .hero__edge {
    display: none;
  }

  /* Ziel-Adressen sichtbar machen, damit ein Ausdruck ohne Bildschirm nutzbar ist. */
  .prose a[href^="http"]::after,
  .download-list a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    word-break: break-all;
  }

  .section {
    padding-block: 18px;
  }

  .room-grid,
  .article-gallery {
    display: none;
  }
}
