:root {
  --bg: #fffdf9;
  --surface: #ffffff;
  --surface-soft: #fff4df;
  --text: #213547;
  --text-soft: #5b6770;
  --primary: #f0a93d;
  --primary-dark: #d88d20;
  --secondary: #2d5b73;
  --secondary-dark: #204457;
  --border: #e8dcc8;
  --shadow: 0 12px 30px rgba(33, 53, 71, 0.08);
  --radius: 18px;
  --container: 1180px;
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

a {
  color: var(--secondary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 220, 200, 0.8);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text);
  min-width: 0;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0.25rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  font-weight: 800;
  font-size: 1.02rem;
}

.brand-subtitle {
  color: var(--text-soft);
  font-size: 0.95rem;
}

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

.site-nav a {
  font-weight: 600;
  color: var(--text);
  position: relative;
}

.site-nav a:hover {
  text-decoration: none;
  color: var(--secondary);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 999px;
  margin: 5px 0;
}

.hero {
  padding: 4.5rem 0 3rem;
  background:
    linear-gradient(180deg, rgba(255, 244, 223, 0.75), rgba(255, 253, 249, 0.95)),
    radial-gradient(circle at top right, rgba(240, 169, 61, 0.12), transparent 30%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--secondary);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.12;
}

.hero-text {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 62ch;
  margin: 1.25rem 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-facts li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}

.hero-image-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.section {
  padding: 5rem 0;
}

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

.section-heading {
  margin-bottom: 2rem;
  max-width: 760px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
}

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

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

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

.card,
.feature-card,
.download-card,
.highlight-box,
.donation-card,
.bank-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.feature-card,
.download-card,
.highlight-box,
.bank-box {
  padding: 1.4rem;
}

.feature-card h3,
.download-card h3,
.highlight-box h3,
.bank-box h3,
.contact-info h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.check-list {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
}

.check-list li + li {
  margin-top: 0.4rem;
}

.donation-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  padding: 1.5rem;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-row label {
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #cdbfa7;
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(45, 91, 115, 0.15);
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  margin: 1rem 0 1.2rem;
}

.checkbox-row input {
  margin-top: 0.28rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.form-note {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin: 0.9rem 0 0;
}

.form-status {
  margin-top: 1rem;
  font-weight: 700;
}

.form-status.success {
  color: #1f7a35;
}

.form-status.error {
  color: #b42318;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #1f2328;
  box-shadow: 0 10px 25px rgba(240, 169, 61, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(45, 91, 115, 0.25);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
}

.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

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

.legal-page {
  padding: 3rem 0 5rem;
}

.legal-page h1 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-page section + section {
  margin-top: 2rem;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.small-note {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.qr-box {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
  text-align: center;
}

.qr-image {
  width: 200px;
  max-width: 100%;
  border-radius: 12px;
  background: #fff;
  padding: 0.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.qr-caption {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.qr-link {
  display: inline-block;
}

.qr-link:hover .qr-image {
  transform: scale(1.02);
}

	
.beitrag-options {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.beitrag-option input {
	display: none;
}

.beitrag-option span {
	display: inline-block;
	padding: 0.7rem 1.2rem;
	border-radius: 999px;
	border: 2px solid #e5e7eb;
	cursor: pointer;
	font-weight: 600;
	background: #fff;
	transition: all 0.2s ease;
}

.beitrag-option input:checked + span {
	background: #f7b548;
	border-color: #f7b548;
	color: #000;
}


@media (max-width: 980px) {
  .hero-grid,
  .two-columns,
  .cards-grid,
  .donation-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-image {
    min-height: 320px;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-height) + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fffdf9;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 0.5rem 1rem 1rem;
  }

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

  .site-nav a {
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid rgba(232, 220, 200, 0.7);
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .brand-subtitle {
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 3rem;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}