:root {
  --bg: #eef2ea;
  --surface: #fdfcf8;
  --surface-strong: #ffffff;
  --ink: #11281d;
  --muted: #59675f;
  --line: rgba(17, 40, 29, 0.1);
  --green: #1a7445;
  --green-dark: #0b3d24;
  --orange: #ea7a1a;
  --sand: #dcc49c;
  --shadow: 0 24px 70px rgba(17, 40, 29, 0.1);
  --shadow-soft: 0 14px 35px rgba(17, 40, 29, 0.08);
  --radius: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(234, 122, 26, 0.16), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(26, 116, 69, 0.12), transparent 22%),
    linear-gradient(180deg, #f5f7f1 0%, #eef2ea 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 40, 29, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 40, 29, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 55%);
}

main {
  overflow: clip;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1rem 0 0;
  border-bottom: 0;
  backdrop-filter: none;
  background: transparent;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0.6rem;
  height: calc(100% - 0.6rem);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  background: rgba(253, 252, 248, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: var(--shadow-soft);
  z-index: -1;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.6rem;
  padding: 0 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand img {
  width: 4.2rem;
  height: 4.2rem;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1vw, 1.2rem);
  margin-left: auto;
}

.site-nav a {
  font-size: clamp(0.72rem, 0.8vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav a[aria-current="page"],
.site-nav a:focus-visible {
  color: var(--green);
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 1.65rem;
  height: 2px;
  background: var(--ink);
  margin: 0.28rem 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  display: grid;
  align-items: center;
  overflow: clip;
}

.hero-backdrop,
.hero-backdrop img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(0.9) brightness(0.48);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 19, 14, 0.86) 0%, rgba(7, 19, 14, 0.52) 42%, rgba(7, 19, 14, 0.16) 100%),
    radial-gradient(circle at 20% 20%, rgba(234, 122, 26, 0.24), transparent 25%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -10rem;
  bottom: -10rem;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(234, 122, 26, 0.22), rgba(234, 122, 26, 0));
  filter: blur(10px);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.75;
  pointer-events: none;
}

.hero-orb-left {
  left: -6rem;
  top: 16%;
  width: 15rem;
  height: 15rem;
  background: radial-gradient(circle, rgba(26, 116, 69, 0.36), rgba(26, 116, 69, 0));
  animation: floatOrb 10s ease-in-out infinite;
}

.hero-orb-right {
  right: 8%;
  top: 12%;
  width: 10rem;
  height: 10rem;
  background: radial-gradient(circle, rgba(234, 122, 26, 0.32), rgba(234, 122, 26, 0));
  animation: floatOrb 12s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 6rem;
  color: #fff;
  transform: translateY(calc(var(--hero-shift, 0) * 1px));
  will-change: transform;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: #ffd5b0;
}

.section-kicker {
  color: var(--orange);
}

.hero h1,
.section h2,
.mail-form h3,
.cta-panel h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 0.96;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
}

.hero-copy,
.lead,
.section-head p,
.image-copy p,
.info-card p,
.value-card p,
.contact-list p,
.contact-people a,
.contact-people span,
.mail-form p,
.cta-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.hero-copy {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  font-size: 1.12rem;
  line-height: 1.8;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(17, 40, 29, 0.14);
}

.button-primary {
  background: var(--orange);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d96d13;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.button-outline {
  border-color: rgba(26, 116, 69, 0.22);
  color: var(--green);
  background: rgba(255, 255, 255, 0.84);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(26, 116, 69, 0.08);
}

.contact-section .button-secondary {
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}

.contact-section .button-secondary:hover,
.contact-section .button-secondary:focus-visible {
  background: rgba(28, 107, 66, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 52rem;
  margin-top: 3rem;
}

.hero-stats article {
  padding: 1rem 1.2rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  font-size: 1.6rem;
}

.hero-stats span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  padding: 8.5rem 0 3.5rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 60%;
  background:
    radial-gradient(circle at 12% 0%, rgba(234, 122, 26, 0.1), transparent 28%),
    radial-gradient(circle at 86% 0%, rgba(26, 116, 69, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.page-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.page-hero-shell > :first-child {
  grid-column: 1 / -1;
}

.page-hero-shell > * {
  min-width: 0;
}

.page-hero h1,
.step-card h3,
.cta-card h3,
.page-cta-banner h2 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 0.98;
}

.page-hero h1 {
  max-width: none;
  font-size: clamp(2.9rem, 5vw, 5rem);
  overflow-wrap: break-word;
}

.page-lead {
  max-width: 42rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.04rem;
}

.page-hero-panel {
  grid-column: 2;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-grid,
.contact-layout,
.image-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.section h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 1rem;
}

.lead,
.section-head p,
.image-copy p,
.info-card p,
.value-card p,
.contact-list p,
.contact-people span,
.contact-people a,
.mail-form p,
.cta-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.value-stack,
.card-grid,
.training-grid,
.news-grid,
.logo-grid,
.sponsor-grid,
.contact-list,
.contact-people,
.landing-cta-grid,
.step-grid {
  display: grid;
  gap: 1rem;
}

.value-card,
.info-card,
.training-card,
.news-card,
.contact-panel,
.action-panel,
.mail-form,
.cta-panel,
.cta-card,
.step-card,
.page-cta-banner,
.logo-grid a,
.sponsor-grid a,
.sponsor-grid div {
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-card,
.info-card,
.training-card,
.news-card,
.contact-panel,
.action-panel,
.mail-form,
.cta-panel,
.cta-card,
.step-card,
.page-cta-banner {
  padding: 1.5rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.value-card:hover,
.info-card:hover,
.training-card:hover,
.news-card:hover,
.cta-card:hover,
.step-card:hover,
.logo-grid a:hover,
.sponsor-grid a:hover,
.sponsor-grid div:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(17, 40, 29, 0.12);
  border-color: rgba(26, 116, 69, 0.18);
}

.is-interactive {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.is-interactive::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(
      240px circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
      rgba(255, 255, 255, 0.36),
      rgba(255, 255, 255, 0) 60%
    );
  transition: opacity 0.25s ease;
}

.is-interactive:hover::before,
.is-interactive:focus-within::before {
  opacity: 1;
}

.is-interactive > * {
  position: relative;
  z-index: 1;
}

.value-card h3,
.info-card h3,
.training-card h3,
.news-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.08rem;
}

.image-panel {
  padding: 1.5rem;
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(145deg, rgba(26, 116, 69, 0.09), rgba(255, 255, 255, 0.65)),
    rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(26, 116, 69, 0.14);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.4rem;
  background: #fff;
  display: block;
}

.section-head {
  margin-bottom: 2rem;
}

.js .section-head,
.js .value-card,
.js .info-card,
.js .training-card,
.js .news-card,
.js .image-panel,
.js .halle-image-wrap,
.js .contact-panel,
.js .action-panel,
.js .cta-card,
.js .step-card,
.js .page-cta-banner,
.js .halle-feature-card,
.js .spenden-card,
.js .logo-grid a,
.js .sponsor-grid a,
.js .sponsor-grid div,
.js .footer-shell {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .is-visible,
.js .logo-grid a.is-visible,
.js .sponsor-grid a.is-visible,
.js .sponsor-grid div.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-head-split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

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

.info-card {
  min-height: 14rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.info-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.accent-green {
  background: linear-gradient(180deg, rgba(28, 107, 66, 0.14), rgba(255, 253, 248, 0.94));
}

.accent-orange {
  background: linear-gradient(180deg, rgba(235, 127, 37, 0.16), rgba(255, 253, 248, 0.94));
}

.accent-sand {
  background: linear-gradient(180deg, rgba(216, 192, 156, 0.22), rgba(255, 253, 248, 0.94));
}

.info-card .text-button {
  margin-top: auto;
}

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

.training-card ul {
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.training-card h3,
.news-card h3 {
  line-height: 1.3;
}

.training-card li {
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-button {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.86);
  color: var(--muted);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.filter-button:hover,
.filter-button:focus-visible {
  transform: translateY(-1px);
}

.filter-button.is-active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

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

.news-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-card-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.news-image-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(22, 51, 39, 0.06);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.text-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
  text-align: left;
  position: relative;
  width: fit-content;
}

.text-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.18rem;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.text-button:hover::after,
.text-button:focus-visible::after {
  transform: scaleX(1);
}

.logo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1rem;
}

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

.logo-grid a,
.sponsor-grid a,
.sponsor-grid div {
  min-height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.logo-grid img,
.sponsor-grid img {
  max-height: 5rem;
  object-fit: contain;
}

.contact-list,
.contact-people {
  margin-top: 1.5rem;
}

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

.cta-card,
.page-cta-banner {
  background:
    linear-gradient(145deg, rgba(26, 116, 69, 0.08), rgba(255, 255, 255, 0.88)),
    rgba(255, 255, 255, 0.88);
}

.cta-card p,
.page-cta-banner p {
  color: var(--muted);
  line-height: 1.75;
}

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

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(26, 116, 69, 0.1);
  color: var(--green);
  font-weight: 800;
}

.step-card h3 {
  margin-top: 1rem;
  font-size: 1.5rem;
}

.step-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.page-cta-section {
  padding-top: 0;
}

.page-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.sponsor-head {
  margin-top: 3rem;
}

.contact-list article,
.contact-people article {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.contact-list h3,
.contact-people strong {
  display: block;
  margin-bottom: 0.25rem;
}

.action-panel {
  display: grid;
  gap: 1rem;
}

.mail-form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}

.mail-form input,
.mail-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.mail-form input:focus,
.mail-form textarea:focus {
  outline: none;
  border-color: rgba(26, 116, 69, 0.34);
  box-shadow: 0 0 0 4px rgba(26, 116, 69, 0.08);
}

code {
  padding: 0.1rem 0.35rem;
  border-radius: 0.4rem;
  background: rgba(22, 51, 39, 0.08);
  font-size: 0.92em;
}

.mail-form textarea {
  resize: vertical;
}

.mail-form .button {
  margin-top: 1.2rem;
  width: 100%;
}

.cta-panel {
  background: linear-gradient(180deg, rgba(26, 116, 69, 0.1), rgba(255, 253, 248, 0.94));
}

.site-footer {
  padding: 1.25rem 0 2.5rem;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-shell div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.news-modal[hidden] {
  display: none;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.news-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 17, 0.62);
}

.news-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: 90vh;
  overflow: auto;
  padding: 2rem;
  border-radius: 2rem;
  background: #fffdf8;
  box-shadow: 0 30px 70px rgba(10, 22, 17, 0.28);
  border: 1px solid rgba(17, 40, 29, 0.08);
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -16px, 0) scale(1.05);
  }
}

@keyframes wiggle {
  0%, 14%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  2%  { transform: translateY(-5px) rotate(-4deg) scale(1.05); }
  4%  { transform: translateY(-3px) rotate(4deg)  scale(1.04); }
  6%  { transform: translateY(-5px) rotate(-3deg) scale(1.05); }
  8%  { transform: translateY(-2px) rotate(3deg)  scale(1.03); }
  10% { transform: translateY(-3px) rotate(-1.5deg) scale(1.02); }
  12% { transform: translateY(-1px) rotate(1deg)  scale(1.01); }
}

.button-wiggle {
  animation: wiggle 5s ease-in-out 3s infinite;
}

.button-wiggle:hover,
.button-wiggle:focus-visible {
  animation-play-state: paused;
}

@keyframes sparkle-fly {
  0%   { transform: translate(0, 0) scale(1);   opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0); opacity: 0; }
}

.sparkle-particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: sparkle-fly 0.75s ease-out forwards;
}

/* ── Spendenbereich ───────────────────────────────────────── */
.spenden-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 2rem;
}

.spenden-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.2rem;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.spenden-card h2 {
  margin: 0;
  font-size: 1.4rem;
  font-family: "Source Serif 4", Georgia, serif;
}

.spenden-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.spenden-card-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.spenden-card-icon img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  display: block;
}

.iban-block {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(22, 51, 39, 0.04);
  border-radius: calc(var(--radius) - 0.5rem);
  padding: 1.2rem 1.4rem;
}

.iban-block > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.iban-block dt {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.iban-block dd {
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.iban-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.iban-number {
  font-family: "Courier New", monospace;
  font-size: 1rem;
  letter-spacing: 0.06em;
  user-select: all;
}

.copy-button {
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.copy-button:hover {
  background: var(--green);
  color: #fff;
}

.copy-button.is-copied {
  background: var(--green);
  color: #fff;
}

.spenden-info-section .info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.halle-image-wrap {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  background: rgba(26, 116, 69, 0.06);
  border: 1px solid rgba(26, 116, 69, 0.14);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.halle-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Sporthalle ─────────────────────────────────────────── */
.halle-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.halle-feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.halle-feature-icon {
  font-size: 2rem;
  line-height: 1;
}

.halle-feature-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.halle-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.halle-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 3.5rem;
}

.halle-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.halle-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--muted);
  line-height: 1.6;
}

.halle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--green);
  border-radius: 50%;
}

.image-panel--placeholder {
  background: rgba(22, 51, 39, 0.06);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-panel--placeholder::after {
  content: "Foto folgt";
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.image-panel--placeholder img {
  display: none;
}

/* ── News-Bildergalerie im Modal ────────────────────────── */
.news-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.news-gallery-item {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(22, 51, 39, 0.05);
}

.news-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.news-gallery-item:hover img {
  transform: scale(1.04);
}

.modal-meta {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── Foto-Lightbox ───────────────────────────────────────── */
#news-lightbox[hidden] {
  display: none;
}

#news-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.9);
  display: grid;
  place-items: center;
  padding: 1rem;
  cursor: zoom-out;
}

@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-img {
  max-width: min(100%, 1200px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  cursor: default;
  animation: lightbox-in 0.2s ease;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

body.lightbox-open {
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 51, 39, 0.08);
  cursor: pointer;
  font-size: 1.4rem;
}

.modal-body h3 {
  margin: 0.3rem 0 1rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1.02;
}

.modal-body p {
  color: var(--muted);
  line-height: 1.8;
  white-space: pre-line;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .page-hero-shell,
  .section-grid,
  .contact-layout,
  .image-panel {
    grid-template-columns: 1fr;
  }

  .page-hero-shell > :first-child,
  .page-hero-panel {
    grid-column: auto;
  }

  .page-cta-banner {
    display: grid;
    justify-content: stretch;
  }

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

  .card-grid,
  .landing-cta-grid,
  .step-grid,
  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .nav-shell {
    min-height: 5rem;
  }

  .brand {
    gap: 0.8rem;
    font-size: 1rem;
  }

  .brand img {
    width: 3.5rem;
    height: 3.5rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 253, 248, 0.98);
    border-radius: 1.25rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 5rem 0 4rem;
    transform: none;
  }

  .page-hero {
    padding: 7rem 0 2.5rem;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-stats,
  .card-grid,
  .landing-cta-grid,
  .step-grid,
  .training-grid,
  .news-grid,
  .logo-grid,
  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .section-head-split,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero-content,
  .hero-orb,
  .section-head,
  .value-card,
  .info-card,
  .training-card,
  .news-card,
  .image-panel,
  .halle-image-wrap,
  .contact-panel,
  .action-panel,
  .cta-card,
  .step-card,
  .page-cta-banner,
  .halle-feature-card,
  .spenden-card,
  .logo-grid a,
  .sponsor-grid a,
  .sponsor-grid div,
  .footer-shell,
  .button-wiggle {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
