:root {
  color-scheme: light;
  --bg: #f4f6ef;
  --surface: #ffffff;
  --surface-soft: #e9eee5;
  --ink: #17231e;
  --muted: #637069;
  --line: #d7ded4;
  --accent: #c7f45a;
  --accent-strong: #98cb2a;
  --forest: #153f32;
  --forest-deep: #0b2c23;
  --gold: #f0c761;
  --coral: #ff8e73;
  --danger: #a33a2b;
  --focus: #155fd6;
  --shadow-sm: 0 10px 30px rgba(19, 45, 36, 0.08);
  --shadow-lg: 0 32px 90px rgba(12, 37, 29, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --shell: min(1180px, calc(100% - 40px));
  --header-height: 82px;
  --admin-offset: 0px;
  --transition: 180ms ease;
}

html.plus-theme-dark {
  color-scheme: dark;
  --bg: #101a17;
  --surface: #182621;
  --surface-soft: #20332c;
  --ink: #edf5ef;
  --muted: #a7b7ae;
  --line: #33483f;
  --accent: #b8e952;
  --accent-strong: #d0fa70;
  --forest: #245a46;
  --forest-deep: #0b1512;
  --gold: #ebc663;
  --coral: #ff9f89;
  --danger: #ffac9b;
  --focus: #86baff;
  --shadow-sm: 0 12px 36px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 32px 90px rgba(0, 0, 0, 0.38);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--accent);
  color: #102119;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
input {
  font: inherit;
}

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

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

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--accent);
  color: #102119;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform var(--transition);
}

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

.site-header {
  position: sticky !important;
  z-index: 50;
  top: var(--admin-offset) !important;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(16, 35, 28, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: clamp(180px, 18vw, 240px);
  height: auto;
  max-height: 58px;
  padding: 5px 9px;
  border-radius: 10px;
  background: #fff;
  object-fit: contain;
}

html.plus-theme-dark .hero h1 em {
  color: var(--accent);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 38px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--accent-strong);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.icon-button {
  display: inline-grid;
  min-width: 46px;
  min-height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.icon-button:hover {
  border-color: var(--accent-strong);
  transform: translateY(-2px);
}

.icon-button svg {
  width: 24px;
  height: 24px;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-inline: 13px 16px;
  font-size: 0.88rem;
  font-weight: 800;
}

.menu-modal {
  width: min(760px, calc(100% - 30px));
  max-width: none;
  max-height: min(90vh, 800px);
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.menu-modal::backdrop {
  background: rgba(6, 20, 15, 0.74);
  backdrop-filter: blur(8px);
}

.menu-modal__surface {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 5vw, 52px);
}

.menu-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-modal__nav {
  display: grid;
}

.menu-modal__nav a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.35rem, 4vw, 2.5rem);
  font-weight: 790;
  letter-spacing: -0.04em;
  line-height: 1.15;
  text-decoration: none;
  transition: padding-left var(--transition), color var(--transition);
}

.menu-modal__nav a:hover {
  padding-left: 8px;
  color: var(--accent-strong);
}

.menu-modal__nav a span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.menu-modal__feature {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2px 16px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  background: var(--forest-deep);
  color: #fff;
  text-decoration: none;
}

.menu-modal__feature img {
  width: 128px;
  height: 52px;
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  padding: 5px;
  border-radius: 9px;
  background: #fff;
  object-fit: contain;
}

.menu-modal__feature span {
  grid-column: 2;
  color: #b9cdc4;
  font-size: 0.78rem;
  font-weight: 700;
}

.menu-modal__feature strong {
  grid-column: 2;
}

.menu-modal__feature svg {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.menu-is-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: min(860px, 100svh);
  padding-top: calc(var(--header-height) + clamp(55px, 9vw, 130px));
  overflow: hidden;
  background: var(--bg);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.hero__copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.newsletter-card h1,
.newsletter-card h2,
.current-card h2 {
  margin: 0;
  font-size: clamp(3.3rem, 8vw, 7.4rem);
  font-weight: 820;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.hero h1 em {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero__lead {
  max-width: 650px;
  margin: clamp(26px, 4vw, 44px) 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.button svg,
.text-link svg,
.workgroup-card a svg,
.back-to-top svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

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

.button--primary {
  background: var(--accent);
  color: #102119;
  box-shadow: 0 10px 28px rgba(128, 172, 33, 0.18);
}

.button--primary:hover {
  background: var(--accent-strong);
}

.button--quiet {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button--light {
  background: #fff;
  color: #153f32;
}

.hero__dashboard {
  position: relative;
  display: grid;
  gap: 16px;
  transform: rotate(2deg);
}

.hero__mark-card {
  position: relative;
  display: grid;
  min-height: 330px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
  color: var(--forest);
}

.hero__mark-card::before {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(102, 121, 109, 0.18);
  border-radius: 50%;
  content: "";
}

.hero__agenda-logo {
  position: relative;
  z-index: 1;
  width: min(86%, 360px);
  height: auto;
  object-fit: contain;
}

.hero__mark-card span {
  position: absolute;
  right: 22px;
  bottom: 8px;
  color: rgba(101, 128, 112, 0.12);
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.stats-card div {
  display: flex;
  flex-direction: column-reverse;
  gap: 2px;
  padding-inline: 12px;
  border-right: 1px solid var(--line);
}

.stats-card div:last-child {
  border-right: 0;
}

.stats-card dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.25;
}

.stats-card dd {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
}

.hero__orb--one {
  top: 11%;
  right: 24%;
  width: 150px;
  height: 150px;
  background: var(--gold);
}

.hero__orb--two {
  right: -120px;
  bottom: 12%;
  width: 320px;
  height: 320px;
  background: var(--accent);
  opacity: 0.25;
}

.hero__ticker {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.hero__ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  padding: 14px 20px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__ticker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-strong);
}

.section {
  padding-block: clamp(85px, 12vw, 160px);
}

.section--tinted {
  background: var(--surface-soft);
}

.section--dark {
  background: var(--forest-deep);
  color: #eff8f2;
}

.section-heading {
  margin-bottom: clamp(44px, 7vw, 86px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: clamp(40px, 10vw, 140px);
}

.section-heading--actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading h2,
.newsletter-card h1,
.newsletter-card h2,
.current-card h2 {
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.96;
}

.prose {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.prose p {
  margin: 0 0 1.1em;
}

.prose p:last-child {
  margin-bottom: 0;
}

.text-link,
.workgroup-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 820;
  text-decoration-thickness: 1px;
}

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

.pillar-card {
  position: relative;
  min-height: 360px;
  padding: clamp(25px, 4vw, 40px);
  overflow: hidden;
  border-radius: var(--radius-md);
  color: #17231e;
}

.pillar-card--green { background: var(--accent); }
.pillar-card--gold { background: var(--gold); }
.pillar-card--coral { background: var(--coral); }

.pillar-card__icon {
  width: 64px;
  height: 64px;
}

.pillar-card__number {
  position: absolute;
  top: 28px;
  right: 30px;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 850;
}

.pillar-card h3 {
  margin: 70px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.pillar-card p:last-child {
  max-width: 31ch;
  margin: 0;
  font-weight: 560;
  line-height: 1.55;
}

.statement {
  display: grid;
  grid-template-columns: auto minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: center;
  gap: clamp(25px, 6vw, 74px);
  margin-top: 18px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.statement > svg {
  width: 56px;
  height: 56px;
  color: var(--accent-strong);
}

.statement blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.75rem);
  line-height: 1.16;
}

.statement p {
  margin: 0;
  color: var(--muted);
}

.timeline-controls {
  display: flex;
  gap: 8px;
}

.timeline-wrap {
  margin-right: calc((100vw - min(1180px, calc(100vw - 40px))) / -2);
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: 10px !important;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--accent-strong) var(--line);
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 10px;
}

.timeline {
  position: relative;
  display: grid;
  width: max-content;
  grid-auto-columns: minmax(255px, 310px);
  grid-auto-flow: column;
  gap: 22px;
  padding: 10px 0 30px !important;
  padding-left: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  text-indent: 0 !important;
}

.timeline::before {
  position: absolute;
  top: 41px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.timeline__item {
  position: relative;
  padding: 0 18px 0 0;
  scroll-snap-align: start;
  margin: 0 !important;
  list-style: none !important;
  text-indent: 0 !important;
}

.timeline__item::marker {
  content: "" !important;
  font-size: 0 !important;
}

/* Entfernt zusätzlich CMS-eigene, per ::before erzeugte Listennummern. */
.timeline__item::before {
  display: none !important;
  content: none !important;
}

.timeline__marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  place-items: center;
  border: 8px solid var(--surface-soft);
  border-radius: 50%;
  background: var(--forest);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 850;
}

html.plus-theme-dark .timeline__marker {
  background: var(--accent);
  color: #153f32;
}

.timeline time {
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 9px 0 9px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.workgroup-card {
  display: grid;
  min-height: 330px;
  grid-template-columns: 1fr auto;
  align-content: start;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition);
}

.workgroup-card:hover {
  border-color: var(--accent-strong);
  transform: translateY(-4px);
}

.workgroup-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  grid-column: 2;
  grid-row: 1;
  place-items: center;
  border-radius: 20px;
  background: var(--surface-soft);
  color: var(--forest);
}

.workgroup-card__icon svg {
  width: 34px;
  height: 34px;
}

.workgroup-card h3 {
  grid-column: 1;
  margin: 2px 20px 30px 0;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.workgroup-card p {
  grid-column: 1 / -1;
  max-width: 52ch;
  margin: 0 0 28px;
  color: var(--muted);
}

.workgroup-card a {
  align-self: end;
}

.project-band {
  margin-top: 16px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius-md);
  background: var(--forest);
  color: #fff;
}

.project-band .eyebrow {
  color: var(--accent);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-list li {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #e9f2ee;
  font-size: 0.86rem;
  font-weight: 700;
}

.section--dark .eyebrow {
  color: var(--accent);
}

.section--dark .prose {
  color: #b8c9c1;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-card {
  display: grid;
  min-height: 220px;
  align-content: space-between;
  gap: 18px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
}

.contact-card__label {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.reveal-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  cursor: pointer;
}

.reveal-button svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.reveal-button[aria-busy="true"] {
  opacity: 0.55;
}

.contact-data {
  min-height: 1px;
  color: #c9d8d1;
  font-size: 0.9rem;
}

.contact-data p {
  margin: 3px 0;
}

.contact-data strong {
  color: #fff;
}

.contact-data a {
  color: var(--accent);
  overflow-wrap: anywhere;
}

.partner-panel {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.partner-panel > h3 {
  margin: 0 0 26px;
  font-size: 1rem;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.partner-list li {
  border-top: 1px solid var(--line);
}

.partner-list li:nth-child(odd) {
  padding-right: 22px;
}

.partner-list li:nth-child(even) {
  padding-left: 22px;
}

.partner-list a {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration: none;
}

.partner-list a:hover span:first-child {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.partner-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--accent-strong);
}

.supporter-disclosure {
  margin-top: 12px;
  padding: 0 clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.supporter-disclosure summary {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 800;
  cursor: pointer;
}

.supporter-disclosure summary span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.supporter-disclosure > p {
  color: var(--muted);
}

.partner-list--compact {
  padding-bottom: 30px;
}

.newsletter-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(46px, 9vw, 120px);
  padding: clamp(35px, 7vw, 90px);
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: #14251d;
}

.newsletter-card__icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.52);
}

.newsletter-card__icon svg {
  width: 34px;
  height: 34px;
}

.newsletter-card .eyebrow {
  color: #476817;
}

.newsletter-card__copy > p:last-child {
  max-width: 45ch;
  margin: 25px 0 0;
}

.newsletter-confirm > p {
  margin: 0 0 12px;
}

.newsletter-confirm > p:first-of-type {
  font-size: 1.25rem;
}

.newsletter-confirm .button {
  margin-top: 12px;
}

.newsletter-form {
  align-self: center;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-md);
  background: #fff;
  color: #17231e;
  box-shadow: 0 20px 54px rgba(63, 88, 22, 0.16);
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.8rem;
  font-weight: 800;
}

.form-field input {
  width: 100%;
  min-height: 54px;
  padding: 12px 15px;
  border: 1px solid #bdc9c1;
  border-radius: 13px;
  background: #fff;
  color: #17231e;
}

.form-field input::placeholder {
  color: #79867f;
}

.check-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin: 18px 0;
  color: #5c6a63;
  font-size: 0.76rem;
  line-height: 1.5;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #497618;
}

.newsletter-form .button {
  width: 100%;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-note {
  margin: 13px 0 0;
  color: #69776f;
  font-size: 0.72rem;
}

.form-status {
  min-height: 1.5em;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 720;
}

.form-status:empty {
  margin-top: 0;
}

.form-status--success {
  color: #2f641f;
}

.form-status--error {
  color: #9d2d22;
}

.current-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--forest-deep);
  color: #fff;
}

.current-card__visual {
  position: relative;
  display: grid;
  min-height: 450px;
  place-items: center;
  overflow: hidden;
  background: var(--gold);
  color: #193b2f;
}

.current-card__visual::before,
.current-card__visual::after {
  position: absolute;
  border: 1px solid rgba(25, 59, 47, 0.28);
  border-radius: 50%;
  content: "";
}

.current-card__visual::before {
  width: 280px;
  height: 280px;
}

.current-card__visual::after {
  width: 390px;
  height: 390px;
}

.current-card__visual svg {
  position: absolute;
  width: 160px;
  height: 160px;
}

.current-card__partner-logo {
  position: relative;
  z-index: 1;
  width: min(82%, 330px);
  height: auto;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  object-fit: contain;
}

.current-card__visual span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.current-card__copy {
  align-self: center;
  padding: clamp(36px, 7vw, 86px);
}

.current-card .eyebrow {
  color: var(--accent);
}

.current-card h2 {
  max-width: 14ch;
}

.current-card__copy p:not(.eyebrow) {
  max-width: 54ch;
  margin: 26px 0 30px;
  color: #b9cbc3;
}

.site-footer {
  padding: 50px 0 24px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding-bottom: 45px;
}

.site-footer__top > p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.4;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 800;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/*
 * Icons werden direkt aus dieser CSS-Datei gerendert.
 * Externe SVG-Sprites sind damit nicht mehr erforderlich.
 */
.menu-button svg,
.menu-modal [data-close-menu] svg,
.menu-modal__feature svg,
.button svg,
.text-link svg,
.workgroup-card a svg,
.partner-list svg,
.pillar-card__icon,
.statement > svg,
.timeline-controls svg,
.workgroup-card__icon svg,
.reveal-button svg,
.newsletter-card__icon svg,
.back-to-top svg {
  display: block !important;
  background-color: currentColor !important;
  -webkit-mask-image: var(--agenda-icon) !important;
  mask-image: var(--agenda-icon) !important;
  -webkit-mask-position: center !important;
  mask-position: center !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-size: contain !important;
  mask-size: contain !important;
  mask-mode: alpha;
}

.menu-button svg use,
.menu-modal svg use,
.button svg use,
.text-link svg use,
.workgroup-card svg use,
.partner-list svg use,
.pillar-card svg use,
.statement svg use,
.timeline-controls svg use,
.reveal-button svg use,
.newsletter-card__icon svg use,
.back-to-top svg use {
  display: none !important;
}

.menu-button svg {
  --agenda-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6h18v2H3zm0 5h18v2H3zm6 5h12v2H9z'/%3E%3C/svg%3E");
}

.menu-modal [data-close-menu] svg {
  --agenda-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m5.3 6.7 1.4-1.4 12 12-1.4 1.4z'/%3E%3Cpath d='m17.3 5.3 1.4 1.4-12 12-1.4-1.4z'/%3E%3C/svg%3E");
}

.menu-modal__feature svg,
.button svg,
.text-link svg,
.workgroup-card a svg,
.partner-list svg {
  --agenda-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 16.2 15.2 8H9V6h10v10h-2V9.8L8.8 18z'/%3E%3C/svg%3E");
}

.timeline-controls button:first-child svg {
  --agenda-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m11.4 5-7 7 7 7 1.4-1.4L8.2 13H20v-2H8.2l4.6-4.6z'/%3E%3C/svg%3E");
}

.timeline-controls button:last-child svg {
  --agenda-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12.6 5-1.4 1.4 4.6 4.6H4v2h11.8l-4.6 4.6 1.4 1.4 7-7z'/%3E%3C/svg%3E");
}

.back-to-top svg {
  --agenda-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m12 4-7 7 1.4 1.4L11 7.8V21h2V7.8l4.6 4.6L19 11z'/%3E%3C/svg%3E");
}

.pillar-card--green .pillar-card__icon,
.workgroup-card--leaf .workgroup-card__icon svg {
  --agenda-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19.9 2.6C12.7 3.4 7.7 6.2 5.2 11c-1.7 3.2-1.2 6.4.7 8.2L3 22l1.4 1.4 3-3c1 .5 2.1.7 3.3.5 5.8-.9 9.3-7.2 9.2-18.3ZM9.6 18.9c-.3 0-.6-.1-.9-.2 2.2-4.4 5-7.7 8.3-10-2.3 2.8-4.4 6.1-6 9.9-.5.2-.9.3-1.4.3Z'/%3E%3C/svg%3E");
}

.pillar-card--gold .pillar-card__icon {
  --agenda-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3a9 9 0 0 1 8.7 6.7l-1.9.5A7 7 0 0 0 6.7 7.4L9 9.7H3V3.8l2.3 2.3A8.9 8.9 0 0 1 12 3Zm9 11.9v5.9l-2.3-2.3A9 9 0 0 1 3.3 14.9l1.9-.5a7 7 0 0 0 12.1 2.8L15 14.9z'/%3E%3C/svg%3E");
}

.pillar-card--coral .pillar-card__icon,
.workgroup-card--people .workgroup-card__icon svg {
  --agenda-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 11a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm8.5 1a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7ZM8 13c-4.3 0-7 2.7-7 7v1h14v-1c0-4.3-2.7-7-7-7Zm8.5 1c-.8 0-1.6.1-2.2.4 1.5 1.5 2.4 3.7 2.4 6.6H23v-1c0-3.7-2.5-6-6.5-6Z'/%3E%3C/svg%3E");
}

.workgroup-card--climate .workgroup-card__icon svg {
  --agenda-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M11 1h2v4h-2zM11 19h2v4h-2zM1 11h4v2H1zM19 11h4v2h-4zM4.2 5.6l1.4-1.4 2.8 2.9L7 8.5zm11.4 11.3 1.4-1.4 2.8 2.9-1.4 1.4zM4.2 18.4 7 15.5l1.4 1.4-2.8 2.9zm11.4-11.3 2.8-2.9 1.4 1.4L17 8.5zM12 7a5 5 0 1 0 0 10 5 5 0 0 0 0-10Z'/%3E%3C/svg%3E");
}

.workgroup-card--bike .workgroup-card__icon svg {
  --agenda-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5.5 12a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Zm0 2a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7Zm13-2a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11Zm0 2a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7ZM8 5v2h2.2l1.2 2H9.7l-4.9 8.8 1.7 1 4.4-7.8h3.7l3 7.3 1.9-.8L15.2 7H18V5h-5.8L11 5Z'/%3E%3C/svg%3E");
}

.statement > svg {
  --agenda-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.7 6.5 5.5 11.3 12 12-6.5.7-11.3 5.5-12 12C11.3 17.5 6.5 12.7 0 12 6.5 11.3 11.3 6.5 12 0Z'/%3E%3C/svg%3E");
}

.reveal-button svg {
  --agenda-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5C6.5 5 2.6 9.1 1.4 11.3a1.5 1.5 0 0 0 0 1.4C2.6 14.9 6.5 19 12 19s9.4-4.1 10.6-6.3a1.5 1.5 0 0 0 0-1.4C21.4 9.1 17.5 5 12 5Zm0 12c-4.2 0-7.4-3.1-8.6-5 1.2-1.9 4.4-5 8.6-5s7.4 3.1 8.6 5c-1.2 1.9-4.4 5-8.6 5Zm0-8a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E");
}

.newsletter-card__icon svg {
  --agenda-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 4h20a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm10 9L2 6v12h20V6z'/%3E%3C/svg%3E");
}

/* CMS-Überschriftenregeln zuverlässig überschreiben. */
#main-content h1,
#main-content h2,
#main-content h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  color: var(--ink) !important;
  font-style: normal !important;
  text-transform: none !important;
}

#main-content .hero h1 {
  margin: 0 !important;
  font-size: clamp(3.3rem, 8vw, 7.4rem) !important;
  font-weight: 820 !important;
  letter-spacing: -0.075em !important;
  line-height: 0.91 !important;
}

#main-content .hero h1 em {
  color: var(--forest) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 400 !important;
  font-style: italic !important;
}

#main-content .section-heading h2,
#main-content .newsletter-card h1,
#main-content .newsletter-card h2,
#main-content .current-card h2 {
  margin: 0 !important;
  font-size: clamp(2.7rem, 6vw, 5.7rem) !important;
  font-weight: 820 !important;
  letter-spacing: -0.065em !important;
  line-height: 0.96 !important;
}

#main-content .pillar-card h3,
#main-content .workgroup-card h3,
#main-content .timeline h3,
#main-content .contact-card h3,
#main-content .partner-panel h3 {
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.15 !important;
}

#main-content .pillar-card h3 {
  margin: 70px 0 12px !important;
  font-size: clamp(1.8rem, 3vw, 2.7rem) !important;
}

#main-content .workgroup-card h3 {
  margin: 2px 20px 30px 0 !important;
  font-size: clamp(1.65rem, 3vw, 2.5rem) !important;
}

#main-content .timeline h3 {
  margin: 9px 0 !important;
  font-size: 1.35rem !important;
}

#main-content .contact-card h3 {
  margin: 0 !important;
  font-size: clamp(1.25rem, 2.5vw, 1.9rem) !important;
}

#main-content .section--dark h2,
#main-content .section--dark h3,
#main-content .current-card h2 {
  color: #fff !important;
}

#main-content .pillar-card h3,
#main-content .newsletter-card h1,
#main-content .newsletter-card h2 {
  color: #17231e !important;
}

html.plus-theme-dark #main-content .hero h1 em {
  color: var(--accent) !important;
}

.timeline-controls .icon-button {
  border-color: #c9cfc9 !important;
  background: #fff !important;
  color: #111 !important;
}

html:has(#admincontainer),
html:has(.admincontainer) {
  --admin-offset: 60px;
}

@media (max-width: 960px) {
  :root {
    --header-height: 74px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 120px;
  }

  .hero__inner,
  .section-heading--split,
  .newsletter-card,
  .current-card {
    grid-template-columns: 1fr;
  }

  .hero__dashboard {
    width: min(560px, 100%);
    margin-inline: auto;
    transform: none;
  }

  .hero__mark-card {
    min-height: 280px;
  }

  .statement {
    grid-template-columns: auto 1fr;
  }

  .statement p {
    grid-column: 2;
  }

  .current-card__visual {
    min-height: 310px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 1180px);
    --radius-lg: 28px;
  }

  .brand__logo {
    width: 170px;
    max-height: 48px;
    padding: 4px 7px;
  }

  .menu-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .menu-button {
    width: 46px;
    padding: 0;
    justify-content: center;
  }

  .menu-modal {
    width: calc(100% - 18px);
    max-height: calc(100svh - 18px);
    border-radius: 24px;
  }

  .menu-modal__surface {
    padding: 20px;
  }

  .menu-modal__nav a {
    font-size: 1.34rem;
  }

  .menu-modal__feature {
    grid-template-columns: 1fr auto;
  }

  .menu-modal__feature img {
    width: 150px;
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 8px;
  }

  .menu-modal__feature span,
  .menu-modal__feature strong {
    grid-column: 1;
  }

  .menu-modal__feature svg {
    grid-column: 2;
    grid-row: 2 / 4;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.5rem) !important;
  }

  .hero__orb--one {
    right: -35px;
  }

  .hero__ticker > div {
    gap: 16px;
    padding-inline: 14px;
    font-size: 0.61rem;
  }

  .pillar-grid,
  .workgroup-grid,
  .contact-grid,
  .partner-list {
    grid-template-columns: 1fr;
  }

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

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

  .statement p {
    grid-column: 1;
  }

  .section-heading--actions {
    align-items: center;
  }

  .timeline-controls {
    align-self: end;
  }

  .timeline-wrap {
    margin-right: -14px;
    padding-right: 14px;
  }

  .workgroup-card {
    min-height: 300px;
  }

  .partner-list li:nth-child(odd),
  .partner-list li:nth-child(even) {
    padding: 0;
  }

  .partner-list li:nth-child(even) {
    border-top: 1px solid var(--line);
  }

  .supporter-disclosure summary {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 1px;
  }

  .newsletter-card {
    padding: 28px 18px 18px;
  }

  .newsletter-form {
    padding: 22px;
  }

  .current-card__visual {
    min-height: 260px;
  }

  .site-footer__top {
    grid-template-columns: 1fr auto;
  }

  .site-footer__top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

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

@media (max-width: 440px) {
  .button-row,
  .button-row .button {
    width: 100%;
  }

  .stats-card {
    padding: 14px 8px;
  }

  .stats-card div {
    padding-inline: 7px;
  }

  .stats-card dd {
    font-size: 1.5rem;
  }

  .stats-card dt {
    font-size: 0.62rem;
  }

  .section-heading--actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  .hero__orb,
  .hero__mark-card::before,
  .current-card__visual::before,
  .current-card__visual::after {
    display: none;
  }

  .button,
  .icon-button,
  .pillar-card,
  .workgroup-card,
  .contact-card {
    border: 1px solid CanvasText;
  }
}
