/* ============================================================
   DE VEEDEL'S CUP 2026 — style.css
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --green-dark:   #1f3a2e;
  --green-mid:    #2d5a3d;
  --yellow-warm:  #f4c430;
  --orange-burnt: #e8833a;
  --cream:        #f5e9c8;
  --red-accent:   #c43d2e;
  --ink:          #2a2520;
  --white:        #ffffff;

  --font-head: 'Bungee', cursive;
  --font-hand: 'Caveat', cursive;
  --font-body: 'Inter', sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.75rem;
  --space-lg:  3rem;
  --space-xl:  5rem;

  --radius:    12px;
  --radius-sm: 6px;
  --max-w:     1100px;
  --px:        1.25rem;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol { list-style: none; }

/* ---- Container ---- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* ---- Typography helpers ---- */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  color: var(--ink);
  text-align: center;
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}
.section-title--light { color: var(--cream); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s;
  text-align: center;
  line-height: 1.2;
}
.btn:focus-visible {
  outline: 3px solid var(--yellow-warm);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--yellow-warm);
  color: var(--ink);
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.28);
}
.btn--primary:hover {
  background: #f0ba1c;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.28);
}
.btn--lg { padding: 1.1rem 2.5rem; font-size: 1.2rem; }
.btn--nav {
  background: var(--yellow-warm);
  color: var(--ink);
  padding: 0.5rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 700;
}

/* ---- Link style ---- */
.link-text {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--yellow-warm);
  text-underline-offset: 3px;
}
.link-text:hover { color: var(--ink); }

/* Button that looks like a link */
.link-btn {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--yellow-warm);
  text-underline-offset: 3px;
  padding: 0;
}
.link-btn:hover { color: var(--ink); }
.link-btn:focus-visible {
  outline: 2px solid var(--yellow-warm);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--px);
  max-width: var(--max-w);
  margin-inline: auto;
}
.nav__logo {
  font-family: var(--font-head);
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.nav__logo:focus-visible { outline: 2px solid var(--yellow-warm); border-radius: 2px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background-color: var(--green-dark);
  position: relative;
  overflow: hidden;
  padding-bottom: var(--space-xl);
}

/* Decorative background doodles */
.hero__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.deco {
  position: absolute;
  user-select: none;
  opacity: 0.12;
  font-size: 3rem;
}
.d1 { top: 12%; left: 6%;  font-size: 3.5rem; transform: rotate(-18deg); }
.d2 { top: 22%; right: 8%; font-size: 2.5rem; transform: rotate(22deg);  }
.d3 { bottom: 22%; left: 12%; font-size: 2rem; transform: rotate(8deg);  }
.d4 { bottom: 35%; right: 6%; font-size: 4.5rem; transform: rotate(-12deg); }
.d5 { top: 55%; left: 40%; font-size: 2rem; transform: rotate(5deg); opacity: 0.08; }

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: var(--space-md);
  padding-bottom: var(--space-lg);
}
.hero__content--cta {
  padding-top: var(--space-md);
}

.hero__eyebrow {
  color: var(--orange-burnt);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 13vw, 6.5rem);
  color: var(--cream);
  line-height: 1.02;
  margin-bottom: var(--space-sm);
  text-shadow: 3px 4px 0 rgba(0,0,0,0.35);
  letter-spacing: 0.01em;
}

.hero__subtitle {
  font-family: var(--font-hand);
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  color: var(--yellow-warm);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.hero__content .btn--lg {
  margin-top: var(--space-md);
}

.hero__location-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(232,131,58,0.6);
  text-underline-offset: 2px;
}
.hero__location-link:hover { text-decoration-color: var(--orange-burnt); }

.hero__spots {
  margin-top: var(--space-sm);
  font-size: 0.9rem;
}
.spots-badge {
  display: inline-block;
  background: rgba(196, 61, 46, 0.88);
  color: var(--white);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
}
.hero__footnote {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--cream);
  opacity: 0.75;
  font-style: italic;
}

.hero__share {
  margin-top: var(--space-md);
}
.hero__share-label {
  font-size: 0.8rem;
  color: var(--cream);
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.share-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform 0.15s, opacity 0.15s;
  white-space: nowrap;
  line-height: 1;
}
.share-btn:hover  { transform: translateY(-2px); opacity: 0.9; }
.share-btn:focus-visible { outline: 2px solid var(--yellow-warm); outline-offset: 2px; }

.share-btn--wa   { background: #25D366; color: #fff; }
.share-btn--tg   { background: #2AABEE; color: #fff; }
.share-btn--fb   { background: #1877F2; color: #fff; }
.share-btn--x    { background: #000;    color: #fff; }
.share-btn--more { background: rgba(255,255,255,0.15); color: var(--cream); border: 1px solid rgba(255,255,255,0.3); }

/* ============================================================
   POLAROID-GALERIE
   ============================================================ */
.polaroids {
  overflow: hidden;
  position: relative;
  padding: var(--space-md) 0;
}

/* Arrow buttons */
.polaroids__arrow {
  display: none; /* nur auf Desktop */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  line-height: 1;
  backdrop-filter: blur(4px);
}
.polaroids__arrow:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
}
.polaroids__arrow[hidden] { display: none !important; }
.polaroids__arrow--prev { left: 0.75rem; }
.polaroids__arrow--next { right: 0.75rem; }

@media (min-width: 600px) {
  .polaroids__arrow { display: flex; align-items: center; justify-content: center; }
}

/* Scrollable strip */
.polaroids__track {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 2.5rem 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* slight center-align on wide screens */
  justify-content: safe center;
}
.polaroids__track::-webkit-scrollbar { display: none; }

/* Polaroid card */
.polaroid {
  flex: 0 0 160px;
  scroll-snap-align: start;
  background: #fff;
  padding: 10px 10px 36px;   /* thick bottom border = Polaroid look */
  box-shadow: 3px 4px 18px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.3);
  cursor: default;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-origin: center bottom;
  position: relative;
}
.polaroid:hover {
  box-shadow: 6px 8px 28px rgba(0,0,0,0.65);
  z-index: 2;
}
.polaroid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Rotation classes */
.p-rot-n3  { transform: rotate(-3deg);   }
.p-rot-p2  { transform: rotate(2deg);    }
.p-rot-n1  { transform: rotate(-1deg);   }
.p-rot-p3  { transform: rotate(3deg);    }
.p-rot-n2  { transform: rotate(-2deg);   }
.p-rot-p15 { transform: rotate(1.5deg);  }
.p-rot-n25 { transform: rotate(-2.5deg); }
.p-rot-p1  { transform: rotate(1deg);    }

.p-rot-n3:hover,
.p-rot-p2:hover,
.p-rot-n1:hover,
.p-rot-p3:hover,
.p-rot-n2:hover,
.p-rot-p15:hover,
.p-rot-n25:hover,
.p-rot-p1:hover { transform: rotate(0deg) scale(1.05); }

/* On wider screens: bigger cards */
@media (min-width: 600px) {
  .polaroid { flex: 0 0 200px; }
}
@media (min-width: 900px) {
  .polaroid { flex: 0 0 220px; padding: 12px 12px 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .polaroid { transition: none; }
}

/* ============================================================
   PITCH
   ============================================================ */
.pitch {
  background: var(--cream);
  padding: var(--space-xl) 0;
  border-top: 6px solid var(--yellow-warm);
  border-bottom: 6px solid var(--yellow-warm);
}
.pitch__text {
  font-family: var(--font-hand);
  font-size: clamp(1.35rem, 4.5vw, 2rem);
  line-height: 1.55;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  color: var(--ink);
}

/* ============================================================
   INSTAGRAM VIDEOS
   ============================================================ */
.videos {
  background: var(--green-dark);
  padding: var(--space-xl) 0;
  overflow: hidden;
}
.videos .container {
  text-align: center;
  margin-bottom: var(--space-md);
}
.videos .section-title {
  color: var(--yellow-warm);
}
.videos__desc {
  color: var(--cream);
  font-size: 1.05rem;
  margin-top: var(--space-xs);
  opacity: 0.85;
}

/* Scrollable belt */
.videos__belt {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;          /* Firefox */
  padding: 0 var(--px) var(--space-sm);
}
.videos__belt::-webkit-scrollbar { display: none; }

.videos__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0.5rem var(--px);
}

/* Individual embed card */
.video-embed {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  /* 9:16 aspect ratio for vertical Reels */
  aspect-ratio: 9 / 16;
  max-height: 565px;
  position: relative;
}

.video-embed__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Center the track when there's room (≥ 5 × 320 + gaps) */
@media (min-width: 1720px) {
  .videos__track {
    margin-inline: auto;
  }
}

/* On smaller screens, slightly smaller cards */
@media (max-width: 400px) {
  .video-embed {
    flex: 0 0 260px;
  }
}

/* ============================================================
   CARDS
   ============================================================ */
.cards-section {
  background: var(--white);
  padding: var(--space-xl) 0;
}
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--cream);
  border: 3px solid var(--green-dark);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  box-shadow: 5px 5px 0 var(--green-dark);
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--green-dark);
}
.card__icon {
  font-size: 2.6rem;
  margin-bottom: var(--space-sm);
  display: block;
}
.card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.03em;
}
.card__text {
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ============================================================
   FAMILY
   ============================================================ */
.family {
  background: var(--orange-burnt);
  padding: var(--space-xl) 0;
}
.family .section-title { color: var(--ink); }

.family__lead {
  font-size: 1.1rem;
  max-width: 740px;
  margin: 0 auto var(--space-md);
  text-align: center;
  line-height: 1.75;
  color: var(--ink);
}

.family__list {
  max-width: 680px;
  margin: 0 auto var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.family__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(255,255,255,0.45);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.97rem;
  line-height: 1.5;
  color: var(--ink);
}
.family__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.05rem;
}

.family__callout {
  max-width: 680px;
  margin: 0 auto;
  background: var(--yellow-warm);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--ink);
  padding: var(--space-sm) var(--space-md);
  text-align: center;
  font-size: 0.97rem;
  line-height: 1.65;
}

/* ============================================================
   TIMELINE / SCHEDULE
   ============================================================ */
.schedule {
  background: var(--green-mid);
  padding: var(--space-xl) 0;
}

.timeline {
  max-width: 600px;
  margin: 0 auto;
}

.timeline__item {
  display: grid;
  grid-template-columns: 3.5rem 1.1rem 1fr;
  gap: 0 1rem;
  position: relative;
  padding-bottom: 2rem;
}
.timeline__item:last-child { padding-bottom: 0; }

/* Vertical line between dots */
.timeline__item:not(:last-child) .timeline__dot::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 2px;
  background: rgba(244, 196, 48, 0.35);
  /* height = padding-bottom of item = 2rem */
  height: 2rem;
}

.timeline__time {
  font-family: var(--font-head);
  font-size: 0.92rem;
  color: var(--yellow-warm);
  text-align: right;
  padding-top: 0.15rem;
  grid-column: 1;
  line-height: 1.3;
}

.timeline__dot {
  grid-column: 2;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--yellow-warm);
  margin-top: 0.1rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.timeline__dot--gold {
  background: var(--yellow-warm);
  border-color: var(--orange-burnt);
  width: 1.25rem;
  height: 1.25rem;
}
.timeline__dot--break {
  background: var(--orange-burnt);
  border-color: var(--cream);
}

.timeline__content {
  grid-column: 3;
  color: var(--cream);
  line-height: 1.5;
}
.timeline__content strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.timeline__content p {
  font-size: 0.87rem;
  opacity: 0.82;
  line-height: 1.5;
}

/* ============================================================
   RULES
   ============================================================ */
.rules {
  background: var(--cream);
  padding: var(--space-xl) 0;
}

.rules__list {
  max-width: 680px;
  margin: 0 auto var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.rules__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--green-mid);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.rules__icon { font-size: 1.2rem; flex-shrink: 0; }

.rules__pdf { text-align: center; font-size: 0.97rem; }

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.faq {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.accordion {
  max-width: 720px;
  margin: 0 auto;
  border-top: 2px solid #ede4ce;
}

.accordion__item { border-bottom: 2px solid #ede4ce; }

.accordion__btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0.4rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
  transition: color 0.15s;
}
.accordion__btn:hover,
.accordion__btn[aria-expanded="true"] { color: var(--green-mid); }
.accordion__btn:focus-visible {
  outline: 3px solid var(--yellow-warm);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Plus/minus icon via CSS */
.accordion__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--green-mid);
  position: relative;
  transition: transform 0.25s, background-color 0.15s;
}
.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--green-mid);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
/* Horizontal bar */
.accordion__icon::before {
  width: 10px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
/* Vertical bar */
.accordion__icon::after {
  width: 2px; height: 10px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.accordion__btn[aria-expanded="true"] .accordion__icon {
  background: var(--green-mid);
  transform: rotate(45deg);
}
.accordion__btn[aria-expanded="true"] .accordion__icon::before,
.accordion__btn[aria-expanded="true"] .accordion__icon::after {
  background: var(--white);
}

.accordion__panel {
  padding: 0 0.4rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink);
}
.accordion__panel[hidden] { display: none; }
.accordion__panel.open { animation: panelIn 0.2s ease-out; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CHARITY
   ============================================================ */
.charity {
  background: var(--green-mid);
  padding: var(--space-xl) 0;
}
.charity__box {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  max-width: 660px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--yellow-warm);
  border-radius: var(--radius);
  padding: var(--space-md);
}
.charity__emoji { font-size: 2.5rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }
.charity__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--yellow-warm);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.charity__text { color: var(--cream); font-size: 0.97rem; line-height: 1.7; }

/* ============================================================
   SPONSOREN-TICKER
   ============================================================ */
.sponsors {
  background: var(--cream);
  padding: var(--space-lg) 0;
  border-top: 4px solid var(--yellow-warm);
  border-bottom: 4px solid var(--yellow-warm);
}

.sponsors__heading {
  font-family: var(--font-head);
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-mid);
  margin-bottom: var(--space-md);
}

/* Maske: links/rechts ausblenden */
.sponsors__belt {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

/* Track läuft endlos durch */
.sponsors__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: ticker 40s linear infinite;
}

/* Pause bei Hover */
.sponsors__belt:hover .sponsors__track {
  animation-play-state: paused;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Einzelne Sponsor-Kachel */
.sponsor {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  background: var(--white);
  border: 2px solid #d8cdb0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #aaa;
  letter-spacing: 0.03em;
  /* Wenn echte Logos: img drin, font-size: 0 */
}

/* Kein Ticker bei reduzierter Bewegung — statisch scrollen */
@media (prefers-reduced-motion: reduce) {
  .sponsors__track { animation: none; }
  .sponsors__belt {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    padding-bottom: 0.5rem;
  }
}

/* ============================================================
   REGISTRATION
   ============================================================ */
.registration {
  background: var(--cream);
  padding: var(--space-xl) 0;
}

.registration__lead {
  text-align: center;
  font-size: 1rem;
  margin-bottom: var(--space-md);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.65;
}

/* Form */
.form {
  max-width: 680px;
  margin: 0 auto var(--space-lg);
  background: var(--white);
  border: 3px solid var(--green-dark);
  border-radius: var(--radius);
  padding: var(--space-md);
  box-shadow: 6px 6px 0 var(--green-dark);
}

.form__group { margin-bottom: var(--space-sm); }

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
@media (min-width: 520px) {
  .form__row { grid-template-columns: 1fr 1fr; }
}
.form__row .form__group { margin-bottom: 0; }

.form__label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.req { color: var(--red-accent); font-weight: 700; }
.optional { font-weight: 400; color: #888; }

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 2px solid #cfc5aa;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,90,61,0.15);
}
.form__input.invalid,
.form__select.invalid,
.form__textarea.invalid {
  border-color: var(--red-accent);
  box-shadow: 0 0 0 3px rgba(196,61,46,0.12);
}

/* Custom select arrow */
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232a2520' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}

.form__textarea { resize: vertical; min-height: 80px; }

.form__hint {
  display: block;
  font-size: 0.8rem;
  color: var(--red-accent);
  margin-top: 0.25rem;
  min-height: 1.1em;
}

/* Checkboxes */
.form__checks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: var(--space-sm);
}
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.55;
}
.form__check-input {
  width: 20px; height: 20px; min-width: 20px;
  margin-top: 0.1rem;
  accent-color: var(--green-mid);
  cursor: pointer;
}

.form__error {
  background: #fde8e5;
  border: 1px solid var(--red-accent);
  color: var(--red-accent);
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.form__submit { width: 100%; margin-top: 0.5rem; }

/* Success */
.form-success {
  max-width: 680px;
  margin: 0 auto var(--space-lg);
  background: var(--white);
  border: 3px solid var(--green-mid);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: 6px 6px 0 var(--green-mid);
}
.form-success[hidden] { display: none; }
.form-success__icon { font-size: 3.5rem; margin-bottom: var(--space-sm); }
.form-success__title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--green-mid);
  margin-bottom: var(--space-xs);
}

/* Payment */
.payment {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 3px solid var(--green-dark);
  border-radius: var(--radius);
  padding: var(--space-md);
}
.payment__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}
.payment__intro {
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}
.payment__table {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 0.25rem var(--space-sm);
  margin-bottom: var(--space-sm);
}
.payment__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  font-size: 0.93rem;
}
.payment__row:last-child { border-bottom: none; }
.payment__label { font-weight: 700; color: var(--green-dark); min-width: 130px; }
.payment__val { color: var(--ink); word-break: break-all; }

.payment__paypal { font-size: 0.93rem; margin-bottom: var(--space-xs); }

/* Payment options */
.payment__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
}

.payment-option {
  border: 2px solid #cfc5aa;
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-sm);
}
.payment-option--paypal { border-color: #003087; background: #f0f4ff; }
.payment-option--stripe { border-color: #635bff; background: #f5f4ff; }
.payment-option--transfer { border-color: #cfc5aa; background: var(--cream); }

.payment-option__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.payment-option__icon { font-size: 1.3rem; }
.payment-option__name { font-size: 1rem; }

.payment-option__desc {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.payment-option__hint {
  font-size: 0.8rem;
  color: #555;
  margin-top: 0.5rem;
}

/* Überweisung als <details> */
.payment-option--transfer { padding: 0; }
.payment-option__summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--space-sm);
  cursor: pointer;
  font-size: 0.95rem;
  list-style: none;
}
.payment-option__summary::-webkit-details-marker { display: none; }
.payment-option__summary::after {
  content: '▸';
  margin-left: auto;
  color: #888;
  transition: transform 0.2s;
}
details[open] .payment-option__summary::after { transform: rotate(90deg); }

.payment-option__transfer-details {
  padding: 0 var(--space-sm) var(--space-sm);
}

.payment__note {
  background: #fef9ec;
  border-left: 4px solid var(--yellow-warm);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.93rem;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-dark);
  color: var(--cream);
  padding: var(--space-xl) 0 var(--space-sm);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
}

.footer__logo {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--yellow-warm);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.footer__veranstalter { margin-top: 0.5rem; font-size: 0.87rem; opacity: 0.75; }

.footer__heading {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--yellow-warm);
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}

.footer__link {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-color: var(--yellow-warm);
  text-underline-offset: 3px;
  font-size: 0.93rem;
}
.footer__link:hover { color: var(--yellow-warm); }

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-xs);
}
.footer__links .link-btn {
  color: var(--cream);
  text-decoration-color: var(--yellow-warm);
  font-size: 0.93rem;
}
.footer__links .link-btn:hover { color: var(--yellow-warm); }

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.footer__social-link {
  color: var(--cream);
  opacity: 0.75;
  transition: opacity 0.15s, color 0.15s;
  text-decoration: none;
}
.footer__social-link:hover { opacity: 1; color: var(--yellow-warm); }
.footer__social-link:focus-visible {
  outline: 2px solid var(--yellow-warm);
  border-radius: 4px;
}

.footer__privacy-note {
  font-size: 0.8rem;
  opacity: 0.55;
  font-style: italic;
  margin-top: var(--space-sm);
}

.footer__bottom {
  border-top: 1px solid rgba(245,233,200,0.18);
  padding-top: var(--space-sm);
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.55;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal {
  border: 3px solid var(--green-dark);
  border-radius: var(--radius);
  padding: 0;
  max-width: min(90vw, 580px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.modal::backdrop { background: rgba(0,0,0,0.55); }

.modal__inner {
  padding: var(--space-md);
  position: relative;
}
.modal__inner h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: var(--space-sm);
}
.modal__inner p {
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: var(--space-xs);
}

.modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: none;
  border: 2px solid var(--ink);
  border-radius: 50%;
  width: 32px; height: 32px;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s;
  line-height: 1;
}
.modal__close:hover { background: var(--cream); }
.modal__close:focus-visible { outline: 2px solid var(--yellow-warm); }

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

/* Focus-visible ring for all interactive elements */
*:focus-visible {
  outline: 3px solid var(--yellow-warm);
  outline-offset: 2px;
}
/* Override for elements that handle focus-visible themselves */
.btn:focus-visible,
.accordion__btn:focus-visible,
.modal__close:focus-visible,
.link-btn:focus-visible { outline-offset: 3px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
