/* Lebensraum Chiemgau – mobile-first, ohne externe Abhängigkeiten */
:root {
  --color-navy: #27324f;
  --color-teal: #168dad;
  --color-teal-dark: #116d86;
  --color-sage: #99b795;
  --color-forest: #435f46;
  --color-cream: #f5f6ef;
  --color-white: #ffffff;
  --color-text: #26312c;
  --color-muted: #64706a;
  --color-border: #dbe2d8;
  --shadow-soft: 0 18px 48px rgba(39, 50, 79, 0.1);
  --shadow-card: 0 10px 30px rgba(39, 50, 79, 0.08);
  --radius-small: 0.75rem;
  --radius-medium: 1.25rem;
  --radius-large: 2rem;
  --container: 73.75rem;
  --header-height: 4.75rem;
  --space-section: clamp(4.5rem, 9vw, 8rem);
  --font-heading: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  color-scheme: light;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

.site-locked body> :not(.access-gate) {
  display: none;
}

.access-gate {
  min-height: 100svh;
  display: none;
  place-items: center;
  padding: 1.5rem;
  background:
    linear-gradient(rgba(39, 50, 79, 0.78), rgba(39, 50, 79, 0.86)),
    url("assets/20260629_095654.jpg") center / cover;
}

.site-locked .access-gate {
  display: grid;
}

.access-gate-card {
  width: min(100%, 34rem);
  padding: clamp(1.75rem, 6vw, 3rem);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-large);
  box-shadow: 0 28px 70px rgba(9, 16, 35, 0.28);
}

.access-gate-card>img {
  width: 11rem;
  margin-bottom: 2rem;
}

.access-gate-card h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 10vw, 4rem);
}

.access-gate-card>p:not(.eyebrow, .access-error) {
  color: var(--color-muted);
}

.access-gate-card label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-navy);
  font-weight: 800;
}

.access-input-row {
  display: grid;
  gap: 0.75rem;
}

.access-input-row input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid #aeb9b3;
  border-radius: 999px;
  font: inherit;
}

.access-error {
  min-height: 1.5rem;
  margin: 0.65rem 0 0;
  color: #a12d2d;
  font-weight: 700;
}

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

img {
  height: auto;
}

a {
  color: var(--color-teal-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-navy);
}

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

:focus-visible {
  outline: 3px solid #e7a928;
  outline-offset: 4px;
  border-radius: 0.25rem;
}

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

h1,
h2,
h3 {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 13.5vw, 5.75rem);
}

h1 span {
  display: block;
  color: var(--color-forest);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 9vw, 4.25rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 5vw, 1.85rem);
}

p {
  margin-bottom: 1.25rem;
}

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

.section {
  padding-block: var(--space-section);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--color-teal-dark);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.section-heading {
  max-width: 41rem;
}

.section-heading>p:last-child {
  color: var(--color-muted);
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.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: 999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: var(--radius-small);
  transform: translateY(-180%);
}

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

/* Header und Navigation */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 226, 216, 0.65);
  transition: min-height 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 6px 22px rgba(39, 50, 79, 0.09);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 10rem;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 2.875rem;
  height: 2.875rem;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  cursor: pointer;
}

.js .nav-toggle {
  display: inline-flex;
}

.nav-toggle-lines {
  display: grid;
  gap: 4px;
  width: 1.2rem;
}

.nav-toggle-lines span {
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  padding: 0.75rem 1rem 1.25rem;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.js .site-nav {
  display: none;
}

.js .site-nav.is-open {
  display: block;
}

.site-nav ul,
.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  min-height: 2.875rem;
  display: flex;
  align-items: center;
  padding: 0.55rem 0.75rem;
  color: var(--color-navy);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.5rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-teal-dark);
  background: var(--color-cream);
}

.site-header .header-cta {
  display: none;
}

/* Buttons */
.button-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.button {
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  color: var(--color-white);
  background: var(--color-teal-dark);
  border: 2px solid var(--color-teal-dark);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(17, 109, 134, 0.18);
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  color: var(--color-white);
  background: var(--color-navy);
  border-color: var(--color-navy);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--color-navy);
  background: transparent;
  border-color: var(--color-navy);
  box-shadow: none;
}

.button-small {
  min-height: 2.75rem;
  padding: 0.6rem 1rem;
  font-size: 0.84rem;
}

.button-light {
  color: var(--color-navy);
  background: var(--color-white);
  border-color: var(--color-white);
}

.button-light:hover {
  color: var(--color-white);
  background: transparent;
  border-color: var(--color-white);
}

.button-outline-light {
  color: var(--color-white);
  background: transparent;
  border-color: rgba(255, 255, 255, .72);
  box-shadow: none;
}

.button-outline-light:hover {
  color: var(--color-navy);
  background: var(--color-white);
  border-color: var(--color-white);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-height) + 3.5rem) 4.5rem;
  overflow: hidden;
  background: var(--color-cream);
}

.hero-decoration {
  position: absolute;
  right: -10rem;
  bottom: -14rem;
  width: 34rem;
  height: 24rem;
  background: rgba(153, 183, 149, 0.28);
  border-radius: 50% 50% 0 0;
  transform: rotate(-12deg);
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 3rem;
}

.hero-lead {
  max-width: 42rem;
  margin-bottom: 1.75rem;
  color: #3f4b45;
  font-size: clamp(1.1rem, 3.8vw, 1.3rem);
  line-height: 1.6;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin: 2rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--color-border);
  list-style: none;
}

.hero-facts li {
  min-width: 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 5vw, 1.75rem);
  line-height: 1;
}

.hero-facts span {
  margin-top: 0.35rem;
  color: var(--color-muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  width: min(100%, 40rem);
  margin-inline: auto;
}

.hero-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 7rem 1.5rem 7rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-logo-card {
  position: absolute;
  right: -0.5rem;
  bottom: 1.25rem;
  width: min(54%, 13rem);
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
}

/* Intro */
.intro {
  background: var(--color-white);
}

.intro-grid {
  display: grid;
  gap: 1.5rem;
}

.intro-copy {
  color: var(--color-muted);
}

.statement {
  position: relative;
  margin: 1.5rem 0 0;
  padding: 1.7rem 1.5rem 1.7rem 2rem;
  background: var(--color-cream);
  border-left: 5px solid var(--color-sage);
  border-radius: 0 var(--radius-medium) var(--radius-medium) 0;
}

.statement p {
  margin: 0;
  color: var(--color-forest);
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 6vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
}

/* Ziele */
.goals {
  background: var(--color-cream);
}

.goal-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.75rem;
}

.goal-card {
  padding: 1.6rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

.goal-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.line-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  color: var(--color-teal-dark);
  background: rgba(22, 141, 173, 0.09);
  border-radius: 50%;
}

.line-icon svg {
  width: 2.1rem;
}

.line-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Auftakt */
.kickoff {
  background: var(--color-white);
}

.kickoff-grid {
  display: grid;
  gap: 2.5rem;
}

figure {
  margin: 0;
}

.feature-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 1.5rem 6rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

figcaption {
  margin-top: 0.75rem;
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  margin-bottom: 1.5rem;
  color: var(--color-forest);
  font-weight: 750;
}

.kickoff-copy>p:not(.eyebrow, .meta) {
  color: var(--color-muted);
}

.activity-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--color-cream);
  border-radius: var(--radius-medium);
}

.activity-box h3 {
  font-size: 1.4rem;
}

.check-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.65rem;
}

.check-list li::before {
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--color-sage);
  border-radius: 50% 50% 50% 0;
  content: "";
  transform: rotate(-45deg);
}

/* Zahlen */
.number-band {
  padding-block: 3rem;
  color: var(--color-white);
  background: var(--color-navy);
}

.number-grid {
  display: grid;
  gap: 1.75rem;
  text-align: center;
}

.number-item {
  padding-block: 0.5rem;
}

.number-item+.number-item {
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: 2rem;
}

.number-item strong,
.number-item span {
  display: block;
}

.number-item strong {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(3.6rem, 14vw, 5.5rem);
  line-height: 0.9;
}

.number-item span {
  margin-top: 0.6rem;
  color: #d9e8e3;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Zusammenarbeit */
.collaboration {
  background: var(--color-cream);
}

.collaboration-intro,
.outlook-intro {
  display: grid;
  gap: 1rem;
}

.collaboration-intro>div:last-child,
.outlook-intro>p {
  color: var(--color-muted);
}

.partner-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.75rem;
}

.partner-card {
  position: relative;
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
}

.partner-card h3 {
  max-width: 24rem;
  padding-right: 2rem;
}

.partner-card>p {
  color: var(--color-muted);
}

.partner-card .partner-lead {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 1.5rem;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
}

.partner-number {
  position: absolute;
  top: 0.65rem;
  right: 1rem;
  color: rgba(153, 183, 149, .28);
  font-family: var(--font-heading);
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1;
}

.support-note {
  max-width: 56rem;
  margin: 2rem auto;
  color: var(--color-forest);
  font-weight: 650;
  text-align: center;
}

.wide-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 55%;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

/* Redaktionelle Aussage */
.voices {
  color: var(--color-white);
  background: var(--color-forest);
}

.voices-grid {
  max-width: 50rem;
}

.voices h2 {
  color: var(--color-white);
}

.voices-copy>p {
  margin: 0;
  color: #ecf3ea;
  font-size: 1.08rem;
}

.quote-mark {
  display: block;
  height: 4rem;
  color: var(--color-sage);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

/* Presse */
.press {
  background: var(--color-white);
}

.press-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.press-card {
  position: relative;
  padding: 1.75rem;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

.press-label {
  margin-bottom: 1rem;
  color: var(--color-teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.press-meta {
  padding-block: 1rem;
  color: var(--color-forest);
  font-size: 0.88rem;
  font-weight: 700;
  border-block: 1px solid var(--color-border);
}

.press-card>p:not(.press-label, .press-meta) {
  color: var(--color-muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  font-weight: 800;
}

/* Ausblick */
.outlook {
  background: var(--color-cream);
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.25rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 2.5rem;
  bottom: 2.5rem;
  left: 1.55rem;
  width: 2px;
  background: var(--color-border);
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.1rem;
  padding: 1.35rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
}

.timeline-number {
  position: relative;
  z-index: 1;
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: var(--color-teal-dark);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
}

.timeline h3 {
  margin: 0.35rem 0 0.45rem;
}

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

/* Unterstützen */
.supporters {
  background: var(--color-white);
}

.supporters-intro {
  display: grid;
  gap: 1rem;
}

.supporters-intro>p {
  color: var(--color-muted);
}

.supporter-grid {
  display: flex;
  gap: 1rem;
  margin-top: 2.75rem;
  padding: 0.25rem 0 1rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--color-sage) var(--color-cream);
}

.supporter-card {
  min-width: min(78vw, 18rem);
  min-height: 16rem;
  display: flex;
  flex: 0 0 min(78vw, 18rem);
  flex-direction: column;
  padding: 1.75rem;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
}

.supporter-caption {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.supporter-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.supporter-logo-placeholder,
.supporter-logo {
  width: 100%;
  height: 7.5rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  color: var(--color-muted);
  background: var(--color-white);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-small);
}

.supporter-logo-placeholder span {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.supporter-logo img {
  max-width: 80%;
  max-height: 5rem;
  object-fit: contain;
}

.supporter-card h3 {
  font-size: 1.5rem;
}

.supporter-cta {
  margin: 1.25rem 0 0;
  color: var(--color-muted);
}

.support {
  padding-block: var(--space-section);
  background: var(--color-white);
}

.support-panel {
  position: relative;
  padding: clamp(2rem, 7vw, 4.5rem);
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-teal-dark);
  border-radius: var(--radius-large);
  box-shadow: 0 24px 54px rgba(17, 109, 134, .2);
}

.support-panel::after {
  position: absolute;
  right: -8rem;
  bottom: -8rem;
  width: 22rem;
  height: 16rem;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
}

.support-panel>* {
  position: relative;
  z-index: 1;
}

.support-panel .eyebrow,
.support-panel h2 {
  color: var(--color-white);
}

.support-panel p:not(.eyebrow) {
  max-width: 47rem;
  color: #eaf7fa;
}

.support-actions {
  margin-top: 2rem;
}

/* Kontakt */
.contact {
  background: var(--color-cream);
}

.contact-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.75rem;
}

.general-contact {
  max-width: 48rem;
  margin: 2.75rem auto 0;
  padding: 1.6rem;
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

.general-contact-label {
  margin-bottom: 0.35rem;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.general-contact>a {
  display: inline-block;
  overflow-wrap: anywhere;
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
}

.general-contact>p:last-child {
  margin: 0.75rem 0 0;
  color: var(--color-muted);
}

.contact-card {
  padding: 1.6rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
}

.contact-card dl {
  margin: 1.5rem 0 0;
}

.contact-card dl>div {
  display: grid;
  gap: 0.15rem;
  padding-block: 0.75rem;
  border-top: 1px solid var(--color-border);
}

.contact-card dt {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-card dd {
  margin: 0;
}

.contact-team-figure {
  max-width: 34rem;
  margin: 2.75rem auto 0;
}

.contact-team-image {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  border-radius: 5rem 1.25rem 1.25rem 1.25rem;
  box-shadow: var(--shadow-soft);
}

.contact-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.placeholder {
  color: #7a5821;
  font-weight: 750;
}

/* Footer */
.site-footer {
  padding-block: 4rem 1.5rem;
  color: #dfe6e2;
  background: #202941;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.footer-brand {
  max-width: 40rem;
}

.footer-brand img {
  width: 10rem;
  margin-bottom: 1.5rem;
  padding: 0.45rem;
  background: var(--color-white);
  border-radius: 0.4rem;
}

.footer-brand p {
  margin-bottom: 0.65rem;
}

.footer-brand strong {
  color: var(--color-white);
}

.footer-nav h2 {
  margin-bottom: 1rem;
  color: var(--color-white);
  font-size: 1.35rem;
}

.footer-nav ul {
  display: grid;
  gap: 0.55rem;
}

.footer-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: #e7edeb;
}

.footer-nav a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  color: #bac5c0;
  border-top: 1px solid rgba(255, 255, 255, .13);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--color-white);
}

/* Rechtliche Unterseiten */
.legal-page {
  min-height: 100svh;
  padding-block: calc(var(--header-height) + 3rem) var(--space-section);
  background: var(--color-cream);
}

.legal-container {
  max-width: 52rem;
}

.legal-intro {
  margin-bottom: 2.5rem;
}

.legal-intro>p:not(.eyebrow) {
  max-width: 46rem;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.legal-notice {
  margin-bottom: 2rem;
  padding: 1.25rem 1.4rem;
  color: #6b4b16;
  background: #fff8e6;
  border: 1px solid #e8d29b;
  border-radius: var(--radius-small);
}

.legal-section {
  margin-top: 1rem;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-medium);
}

.legal-section h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 5vw, 2.45rem);
}

.legal-section h3 {
  margin-top: 1.6rem;
  font-size: 1.35rem;
}

.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  padding-left: 1.25rem;
}

.legal-placeholder {
  color: #7a5821;
  font-weight: 750;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  margin-top: 2rem;
  font-weight: 800;
}

/* Einblendungen: Inhalte bleiben ohne JS und bei reduzierter Bewegung sichtbar. */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 650ms ease, transform 650ms ease;
  }

  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Tablet */
@media (min-width: 40rem) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .button-row {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .button {
    width: auto;
  }

  .access-input-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero-facts span {
    font-size: 0.78rem;
  }

  .goal-grid,
  .partner-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .number-item+.number-item {
    padding-top: 0.5rem;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, .18);
  }

  .press-card,
  .contact-card {
    padding: 2rem;
  }

  .timeline li {
    padding: 1.75rem;
  }
}

/* Tablet quer / kleiner Desktop */
@media (min-width: 48rem) {
  :root {
    --header-height: 5.25rem;
  }

  .brand img {
    width: 11rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, .9fr) minmax(22rem, 1.1fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
  }

  .hero-visual {
    width: 100%;
  }

  .intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 4rem;
  }

  .statement {
    grid-column: 1 / -1;
  }

  .kickoff-grid {
    grid-template-columns: minmax(17rem, .8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: clamp(2.5rem, 6vw, 5.5rem);
  }

  .feature-figure {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  .collaboration-intro,
  .outlook-intro,
  .supporters-intro,
  .press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .timeline::before {
    top: 3.3rem;
    right: 2rem;
    bottom: auto;
    left: 2rem;
    width: auto;
    height: 2px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .support-actions {
    align-items: center;
  }

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

  .footer-nav {
    min-width: 12rem;
  }
}

/* Desktop-Navigation und großzügigere Komposition */
@media (min-width: 64rem) {
  :root {
    --header-height: 6rem;
  }

  .site-header {
    background: rgba(245, 246, 239, 0.86);
    backdrop-filter: blur(14px);
  }

  .site-header.is-scrolled {
    min-height: 5rem;
    background: rgba(255, 255, 255, .96);
  }

  .site-header.is-scrolled .header-inner {
    min-height: 5rem;
  }

  .header-inner {
    gap: 1.25rem;
  }

  .brand img {
    width: 10.75rem;
  }

  .js .nav-toggle,
  .nav-toggle {
    display: none;
  }

  .site-nav,
  .js .site-nav {
    position: static;
    width: auto;
    display: block;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 0.15rem;
  }

  .site-nav a {
    min-height: 2.75rem;
    padding-inline: 0.42rem;
    font-size: 0.78rem;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, .62);
  }

  .site-header .header-cta {
    display: inline-flex;
    white-space: nowrap;
  }

  .hero {
    padding-block: calc(var(--header-height) + 3rem) 5rem;
  }

  .hero-copy {
    padding-top: 1rem;
  }

  .intro-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 2rem 7rem;
  }

  .statement {
    margin-top: 2.5rem;
    padding: 2.2rem 3rem;
  }

  .goal-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .goal-card {
    min-height: 25rem;
    padding: 1.75rem;
  }

  .number-band {
    padding-block: 4rem;
  }

  .partner-card {
    padding: 2.25rem;
  }

  .supporter-card {
    min-width: 19rem;
    flex-basis: 19rem;
    padding: 2.25rem;
  }

  .press-grid {
    gap: 7rem;
  }

  .support-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) auto;
    align-items: end;
    gap: 3rem;
  }

  .support-actions {
    max-width: 22rem;
    justify-content: flex-end;
  }
}

@media (min-width: 78rem) {
  .site-nav ul {
    gap: 0.25rem;
  }

  .site-nav a {
    padding-inline: 0.75rem;
    font-size: 0.86rem;
  }

  .brand img {
    width: 11.5rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, .82fr) minmax(30rem, 1.18fr);
  }
}

@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;
  }
}
