:root {
  --orange: #ED7403;
  --dark-green: #30562A;
  --mid-green: #80AE88;
  --mint: #B1D9C1;
  --mint-tint: #D9EDE1;
  --off-white: #F0F0EE;
  --gray: #929589;
  --text: #1a1a17;
  --headline-font: 'Rift Soft Demi', 'Oswald', sans-serif;
  --body-font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--off-white);
  color: var(--text);
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--dark-green); text-decoration: underline; }
a:hover { color: var(--orange); }

h1, h2 { font-family: var(--headline-font); font-weight: 700; margin: 0; }

.btn {
  display: inline-block;
  font-family: var(--headline-font);
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-dark { background: var(--dark-green); color: #fff; font-size: clamp(17px,2.4vw,20px); padding: 16px 40px; box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.btn-orange { background: var(--orange); color: #fff; font-size: 17px; padding: 16px; width: 100%; border-radius: 12px; }
.btn-orange:disabled { background: #ccc; cursor: not-allowed; opacity: .7; }
.btn-white-pill { background: #fff; color: var(--dark-green); font-weight: 600; font-size: 14px; padding: 10px 18px; }

/* HERO */
.hero { display: flex; flex-direction: column; align-items: center; background: var(--orange); padding: clamp(32px,6vw,48px) clamp(20px,6vw,32px); }
.hero-inner { width: 100%; max-width: 900px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.hero-inner h1 { color: #fff; font-size: clamp(32px,5vw,52px); line-height: 1.3; max-width: 760px; }
.hero-orte { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; font-family: var(--headline-font); font-weight: 600; color: #fff; font-size: clamp(15px,2vw,18px); }
.hero-image { width: 100%; max-width: 360px; display: block; border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.15); margin-top: 8px; }

/* INTRO */
.intro { max-width: 1000px; margin: 0 auto; padding: clamp(48px,8vw,80px) clamp(20px,6vw,32px); display: flex; flex-wrap: wrap-reverse; align-items: center; gap: clamp(28px,5vw,48px); }
.intro-text { flex: 1 1 340px; min-width: 280px; }
.intro-text h2 { color: var(--dark-green); font-size: clamp(28px,4vw,38px); margin-bottom: 18px; line-height: 1.15; }
.intro-text p { font-size: clamp(17px,2vw,19px); line-height: 1.7; margin: 0 0 14px; color: #333; }
.intro-image { flex: 1 1 320px; min-width: 260px; }
.intro-image img { width: 100%; display: block; border-radius: 12px; }

/* ABLAUF */
.ablauf { background: var(--mint-tint); padding: clamp(48px,8vw,80px) clamp(20px,6vw,32px); }
.ablauf-inner { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; }
.ablauf-inner h2 { color: var(--dark-green); font-size: clamp(28px,4vw,38px); }
.ablauf-image { width: 100%; max-width: 480px; display: block; }
.ablauf-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; max-width: 800px; }
.ablauf-card { flex: 1 1 220px; background: #fff; border-radius: 12px; padding: 20px 18px; text-align: left; }
.ablauf-card-label { font-family: var(--headline-font); font-weight: 600; color: var(--orange); font-size: 15px; margin-bottom: 6px; }
.ablauf-card p { margin: 0; font-size: 16px; line-height: 1.5; color: #333; }

/* ANMELDUNG */
.anmeldung { max-width: 720px; margin: 0 auto; padding: clamp(48px,8vw,80px) clamp(20px,6vw,32px); }
.anmeldung h2 { color: var(--dark-green); font-size: clamp(28px,4vw,38px); text-align: center; margin-bottom: 12px; }
.anmeldung-highlight { text-align: center; font-size: 17px; font-weight: 600; color: var(--orange); margin: 0 0 24px; }
.anmeldung-sub { text-align: center; font-size: 17px; color: #555; margin: 0 0 12px; }
.anmeldung-note { text-align: center; font-size: 16px; color: #555; margin: 0 0 32px; }
.anmeldung-card { background: #fff; border-radius: 16px; padding: clamp(20px,4vw,32px); box-shadow: 0 4px 24px rgba(0,0,0,.06); display: flex; flex-direction: column; gap: 24px; }

.field label { display: block; font-weight: 600; font-size: 15px; color: var(--dark-green); margin-bottom: 8px; }
.field select, .field input[type="text"], .field input[type="email"], .field input[type="tel"] {
  width: 100%; padding: 12px 14px; font-size: 15px; border: 1px solid #ccc; border-radius: 8px; background: var(--off-white); color: var(--text);
}
#startort { padding: 14px 16px; font-size: 16px; border-radius: 10px; }
.row-2 { display: flex; flex-wrap: wrap; gap: 10px; }
.row-2 input { flex: 1 1 140px; }
.hint { font-size: 13px; color: var(--gray); margin: 8px 0 0; }

.counters { display: flex; flex-wrap: wrap; gap: 20px; }
.counter-box { flex: 1 1 200px; display: flex; align-items: center; justify-content: space-between; background: var(--off-white); border-radius: 10px; padding: 14px 16px; }
.counter-label { font-weight: 600; font-size: 15px; color: var(--text); }
.counter-sub { font-size: 13px; color: var(--gray); }
.counter-controls { display: flex; align-items: center; gap: 10px; }
.stepper { width: 36px; height: 36px; border-radius: 8px; border: 1px solid #ccc; background: #fff; font-size: 18px; cursor: pointer; color: var(--dark-green); }
.counter-value { min-width: 24px; text-align: center; font-size: 17px; font-weight: 600; }

.shirt-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(120px,1fr)); gap: 12px; }
.shirt-box { background: var(--off-white); border-radius: 10px; padding: 10px 14px; display: flex; align-items: center; justify-content: space-between; }
.shirt-box span { font-weight: 600; font-size: 15px; }
.shirt-input { width: 52px; padding: 6px 8px; border: 1px solid #ccc; border-radius: 6px; font-size: 15px; text-align: center; }

.total-row { border-top: 1px solid #eee; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; }
.total-label { font-family: var(--headline-font); font-weight: 700; font-size: 20px; color: var(--dark-green); }
.total-value { font-family: var(--headline-font); font-weight: 700; font-size: 28px; color: var(--orange); }

.consents { display: flex; flex-direction: column; gap: 14px; border-top: 1px solid #eee; padding-top: 20px; }
.checkbox-row, .radio-row { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.5; color: #333; cursor: pointer; }
.checkbox-row input, .radio-row input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--orange); }
.req { color: var(--orange); }
.notice-box { font-size: 14px; line-height: 1.5; color: #555; margin: 0; background: var(--off-white); border-radius: 10px; padding: 12px 14px; }
.fineprint { font-size: 13px; color: var(--gray); margin: 0; }
.fineprint.center { text-align: center; font-size: 14px; }

.newsletter-box { background: var(--mint-tint); border-radius: 10px; padding: 14px 16px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; }
.newsletter-box span { font-size: 14.5px; color: var(--dark-green); max-width: 480px; }

.payment-options { display: flex; flex-direction: column; gap: 10px; }
.radio-row { background: var(--off-white); border-radius: 10px; padding: 14px 16px; align-items: center; }
.payment-detail { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; background: var(--mint-tint); border-radius: 10px; padding: 16px 18px; font-size: 14px; color: var(--dark-green); line-height: 1.7; }
.payment-detail .bold { font-weight: 600; margin: 0 0 4px; }
.payment-detail p { margin: 0 0 8px; }
.payment-detail p:last-child { margin-bottom: 0; }
.bank-info { flex: 1 1 240px; }
.qr-placeholder { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.qr-box { width: 96px; height: 96px; border-radius: 8px; background: repeating-linear-gradient(45deg, #ccc 0 6px, #ddd 6px 12px); display: flex; align-items: center; justify-content: center; font-family: monospace; font-size: 11px; color: var(--dark-green); text-align: center; }
.qr-placeholder span { font-size: 11px; color: var(--dark-green); }

/* Honeypot: aus dem sichtbaren/fokussierbaren Bereich entfernt, aber im DOM vorhanden */
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.error-message { color: #c0392b; font-size: 14px; text-align: center; margin: -8px 0 0; }
.success-message { color: var(--dark-green); font-weight: 600; font-size: 14px; text-align: center; margin: -8px 0 0; }

/* SPONSORING */
.sponsoring { background: var(--dark-green); padding: clamp(48px,8vw,80px) clamp(20px,6vw,32px); }
.sponsoring-inner { max-width: 1000px; margin: 0 auto; }
.sponsoring-inner h2 { color: #fff; font-size: clamp(28px,4vw,38px); text-align: center; margin-bottom: 32px; }
.sponsoring-cards { display: flex; flex-wrap: wrap; gap: 24px; }
.sponsor-card { flex: 1 1 320px; border-radius: 16px; padding: clamp(24px,4vw,32px); }
.sponsor-card-white { background: #fff; color: #333; }
.sponsor-card-mint { background: var(--mint); color: var(--text); }
.sponsor-card p { font-size: 17px; line-height: 1.6; margin: 0 0 14px; }
.sponsor-card ul { margin: 0; padding-left: 20px; font-size: 16px; line-height: 1.7; }
.badge { display: inline-block; font-family: var(--headline-font); font-weight: 600; font-size: 14px; padding: 6px 14px; border-radius: 999px; margin-bottom: 14px; }
.badge-orange { background: var(--orange); color: #fff; }
.badge-white { background: #fff; color: var(--dark-green); }
.sponsor-fineprint { font-size: 12.5px; line-height: 1.6; color: var(--mint); margin: 24px 0 0; max-width: 800px; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; padding: clamp(48px,8vw,80px) clamp(20px,6vw,32px); }
.faq h2 { color: var(--dark-green); font-size: clamp(28px,4vw,38px); text-align: center; margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #eee; }
.faq-question { width: 100%; text-align: left; padding: 18px 20px; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq-question span:first-child { font-weight: 600; font-size: 16.5px; color: var(--text); }
.faq-icon { font-size: 20px; color: var(--orange); flex-shrink: 0; }
.faq-answer { display: none; padding: 0 20px 18px; font-size: 15.5px; line-height: 1.65; color: #444; }
.faq-item.open .faq-answer { display: block; }

/* DANKE */
.danke { background: var(--mint-tint); padding: clamp(48px,8vw,80px) clamp(20px,6vw,32px); display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.danke img { width: 100%; max-width: 320px; display: block; }
.danke p { max-width: 600px; font-size: 17px; line-height: 1.7; color: var(--dark-green); margin: 0; }

/* FOOTER */
.footer { background: #1a1a17; color: var(--off-white); padding: clamp(40px,6vw,56px) clamp(20px,6vw,32px) 28px; }
.footer-inner { max-width: 1000px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 32px; align-items: flex-start; justify-content: space-between; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; min-width: 220px; }
.footer-logo { background: #fff; border-radius: 10px; padding: 12px 16px; display: inline-block; width: fit-content; }
.footer-logo img { width: 180px; display: block; }
.footer-brand p { font-size: 13.5px; color: var(--gray); margin: 0; max-width: 260px; }
.footer-links-row { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--off-white); opacity: .85; font-size: 14.5px; text-decoration: none; }
.footer-links a:hover { opacity: 1; color: var(--orange); }
.footer-qr { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.qr-box-dark { background: repeating-linear-gradient(45deg, #333 0 6px, #444 6px 12px); color: var(--off-white); }
.footer-qr span { font-size: 11.5px; color: var(--gray); }
.footer-copy { max-width: 1000px; margin: 28px auto 0; border-top: 1px solid #333; padding-top: 18px; font-size: 12.5px; color: #666; }
