:root {
  color-scheme: light;
  --bg: #faf8f5;
  --surface: #ffffff;
  --surface-soft: #f3efe8;
  --accent-soft: #ffe2c7;
  --text: #2d3d36;
  --muted: #5a6b63;
  --accent: #5a8f72;
  --accent-hover: #467a5f;
  --footer-bg: #3d5c4a;
  --footer-text: #f4f7f5;
  --border: rgba(45, 61, 54, 0.1);
  --border-subtle: rgba(45, 61, 54, 0.06);
  --bg-soft: #f3efe8;
  --accent-dim: rgba(90, 143, 114, 0.12);
  --shadow: 0 4px 20px rgba(45, 61, 54, 0.08);
  --font: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --max: 920px;
  --header-h: 4.25rem;
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--accent-hover); }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}
.brand:hover { color: var(--accent); }
.brand img {
  width: 52px;
  height: auto;
}
.brand-text {
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.2;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 1.25rem;
  margin-inline: auto;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.site-nav.is-open { display: flex; }
.site-nav a {
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}
.site-nav a:hover { background: var(--surface-soft); color: var(--accent); }
.site-nav a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--accent-hover);
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-header { position: sticky; }
  .header-inner { flex-wrap: nowrap; }
  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    gap: 0.15rem;
  }
  .site-nav a {
    font-size: 0.95rem;
    padding: 0.4rem 0.55rem;
  }
}

/* Hero — Bild, darunter Titel im Main */
.hero {
  background: #c5d9cc;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: clamp(220px, 38vw, 340px);
  object-fit: cover;
  object-position: 42% 49%;
}
.hero-head {
  margin-bottom: 2.75rem;
  padding-top: 1.75rem;
}
.hero-head .page-title {
  margin: 0 0 0.35rem;
}
.hero-head .page-intro {
  margin: 0;
}

/* Main */
main { padding-bottom: 3rem; }

.page-main {
  padding: 2rem 0 3rem;
}

.page-header {
  margin-bottom: 1.75rem;
}

.page-header .page-title {
  margin: 0 0 0.5rem;
}

.page-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
}

.page-intro {
  margin: 0;
  max-width: 42rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--muted);
}

.page-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.panel-note {
  margin: -0.35rem 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

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

.leitbild {
  display: grid;
  gap: 1.5rem;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 640px) {
  .leitbild {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
}
.leitbild-icon {
  width: 72px;
  justify-self: center;
}
.leitbild h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}
.leitbild p { margin: 0; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff !important;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff !important;
}
.btn-secondary {
  background: var(--surface);
  color: var(--accent) !important;
  border-color: var(--accent);
}
.btn-secondary:hover {
  background: var(--accent-soft);
}

/* Info sections with icons */
.info-cards { display: grid; gap: 1.25rem; }
.info-item {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
@media (min-width: 560px) {
  .info-item {
    grid-template-columns: 56px 1fr;
    align-items: start;
  }
}
.info-item img {
  width: 48px;
  height: auto;
  justify-self: center;
}
.info-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}
.info-item p { margin: 0 0 0.65rem; }
.info-item p:last-child { margin-bottom: 0; }

/* Team */
.team-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.team-list .team-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.team-list .team-card__media {
  flex: 0 0 min(38%, 240px);
  max-width: 240px;
}

.team-list .team-card__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: top center;
}

.team-list .team-card__body {
  flex: 1;
  min-width: 0;
  padding: 1.25rem 1.35rem 1.35rem;
}

@media (max-width: 559px) {
  .team-list .team-card {
    flex-direction: column;
  }
  .team-list .team-card__media {
    flex: none;
    max-width: none;
  }
  .team-list .team-card__media img {
    aspect-ratio: 5 / 3;
    min-height: 0;
  }
}

.team-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}
.team-badge {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent-hover);
  font-size: 0.82rem;
  font-weight: 600;
}
.team-days {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.team-contact {
  margin: 0 0 1rem;
  font-size: 0.92rem;
}
.team-contact a { font-weight: 500; }
.team-teaser {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
}
.team-details {
  margin-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.65rem;
}
.team-details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--accent);
  list-style: none;
}
.team-details summary::-webkit-details-marker { display: none; }
.team-details summary::after { content: " ›"; }
.team-details[open] summary { margin-bottom: 0.65rem; }
.team-details p {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.team-details p:last-child { margin-bottom: 0; }

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 1rem 0 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
table.data-table th,
table.data-table td {
  padding: 0.65rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
table.data-table thead th {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-soft);
}
table.data-table tbody tr:nth-child(even) { background: var(--surface-soft); }
table.data-table tbody tr:last-child td { border-bottom: none; }

.section-title {
  margin: 2rem 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
}
.page-stack .section-title,
.page-stack > .section-title {
  margin: 0 0 0.75rem;
}
.section-title:first-child { margin-top: 0; }

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.price-list li:last-child { border-bottom: none; }

.download-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.wald-block {
  margin-bottom: 1.5rem;
}
.wald-block h3 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}
.wald-block h3 img { width: 40px; flex-shrink: 0; }

.date-columns {
  display: grid;
  gap: 0.5rem 2rem;
  margin: 1rem 0;
}
@media (min-width: 480px) {
  .date-columns { grid-template-columns: 1fr 1fr; }
}

/* Anfahrt / Karte */
.section-anfahrt {
  padding: 2.5rem 0 3rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-subtle);
}
.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 800px) {
  .split { grid-template-columns: 1fr 1fr; }
}
.map-stack { display: flex; flex-direction: column; gap: 0.85rem; }
.map-stack__actions { margin: 0; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 260px;
  background: var(--bg-soft);
}
.map-wrap iframe {
  width: 100%;
  height: min(380px, 52vw);
  border: 0;
  display: block;
}
.map-consent-stack {
  padding: 0.5rem 0.65rem 0.65rem;
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
}
.map-consent-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.map-consent-actions { margin: 0.5rem 0 0; }
.map-consent__reopen {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
}
.btn-block { display: block; text-align: center; width: 100%; }

/* Datenschutz */
.section-legal {
  padding: 2rem 0 3rem;
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
}
.legal-accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.legal-accordion__summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-size: 1.12rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.legal-accordion__summary::after {
  content: "⌄";
  color: var(--muted);
  transition: transform 0.2s;
}
.legal-accordion__summary::-webkit-details-marker { display: none; }
.legal-accordion[open] .legal-accordion__summary::after { transform: rotate(180deg); }
.legal-accordion__panel { padding: 0 1.25rem 1.5rem; }
.privacy-policy {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52rem;
}
.privacy-policy h4 {
  font-size: 1.05rem;
  color: var(--text);
  margin: 1.5rem 0 0.5rem;
}
.privacy-policy h4:first-of-type { margin-top: 0.5rem; }
.privacy-policy h5 {
  font-size: 0.95rem;
  color: var(--text);
  margin: 1rem 0 0.35rem;
}
.privacy-policy p { margin: 0 0 0.75rem; }
.privacy-policy .privacy-lead { margin-bottom: 1rem; }
.privacy-meta {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
}

/* Cookie-Banner */
body.has-cookie-banner { padding-bottom: 11rem; }
@media (min-width: 720px) {
  body.has-cookie-banner { padding-bottom: 8.5rem; }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 1.1rem 0 1.25rem;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--border-subtle);
  box-shadow: 0 -8px 32px rgba(45, 61, 54, 0.09);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.cookie-banner.cookie-banner--dismissed {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__inner { display: grid; gap: 0.85rem; }
@media (min-width: 720px) {
  .cookie-banner__inner {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 0.65rem 1.25rem;
  }
  .cookie-banner__title { grid-column: 1 / -1; }
  .cookie-banner__text { grid-column: 1; }
  .cookie-banner__actions { grid-column: 2; justify-self: end; }
}
.cookie-banner__title { margin: 0; font-size: 1.1rem; font-weight: 600; }
.cookie-banner__text {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 52rem;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.cookie-banner__link { font-size: 0.88rem; font-weight: 500; }

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 2.5rem 0 1.25rem;
}
.site-footer a { color: #d4ebe0; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 560px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-col__title {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.85;
}
.footer-address { font-style: normal; margin: 0; line-height: 1.6; }
.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  margin: 1.75rem 0 0;
  opacity: 0.9;
}
.footer-cookie-link {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: inherit;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.prose p { margin: 0 0 1rem; }
.prose p:last-child { margin-bottom: 0; }

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

/* Legacy aliases — use container-page on new markup */
.container-form,
.container-content,
.container-page {
  width: min(800px, calc(100% - 2rem));
  margin-inline: auto;
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.page-stack > .page-cta {
  margin-top: 0.25rem;
  padding-top: 0;
  border-top: none;
}
.page-cta--divider {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Preise */
.price-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.price-panel__header {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--border);
}
.price-panel__title {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 700;
}
.price-panel__meta {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.price-grid {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem 1.5rem;
}
@media (min-width: 520px) {
  .price-grid { grid-template-columns: 1fr 1fr; }
}
.price-card {
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fafafa;
}
.price-card--wide {
  grid-column: 1 / -1;
}
@media (min-width: 520px) {
  .price-card--wide {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 1rem;
  }
  .price-card--wide .price-card__amount {
    grid-row: 1 / span 2;
    grid-column: 2;
    text-align: right;
  }
}
.price-card__label {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}
.price-card__amount {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent-hover);
  line-height: 1.2;
}
.price-card__hint {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.content-panel {
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.content-panel__title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}
.content-panel__title--icon {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.content-panel__title--icon img {
  width: 40px;
  flex-shrink: 0;
}
.content-panel > p:last-child {
  margin-bottom: 0;
}
.content-panel > p + .content-list {
  margin-top: 0;
}
.content-panel > .content-list:last-child {
  margin-bottom: 0;
}
.content-panel .table-wrap {
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}
.content-list {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.6;
}
.content-list li { margin-bottom: 0.65rem; }
.content-list li:last-child { margin-bottom: 0; }
.content-list--checks {
  list-style: none;
  padding: 0;
}
.content-list--checks li {
  position: relative;
  padding-left: 1.65rem;
}
.content-list--checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-weight: 700;
  color: var(--accent);
}

.content-panel + .section-title {
  margin-top: 2.5rem;
}

.wald-dates {
  display: grid;
  gap: 0.35rem 2rem;
  margin: 1rem 0 0;
  padding: 1rem 1.25rem;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-soft);
}
@media (min-width: 480px) {
  .wald-dates { grid-template-columns: 1fr 1fr; }
}
.wald-dates li {
  font-size: 0.98rem;
  line-height: 1.5;
}

.calendar-note {
  margin: -0.35rem 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.data-table td:last-child:nth-child(2) {
  font-weight: 500;
}
.data-table .range-sep {
  color: var(--muted);
  font-size: 0.88rem;
  padding-inline: 0.35rem;
}

/* Kurzinfo Anmeldung */
.reg-info {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.reg-info__header {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--border);
}
.reg-info__title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
}
.reg-info__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}
.reg-info__cards {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem;
}
@media (min-width: 640px) {
  .reg-info__cards { grid-template-columns: repeat(3, 1fr); }
}
.reg-info__card {
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fafafa;
}
.reg-info__card--price {
  background: var(--accent-soft);
  border-color: rgba(90, 143, 114, 0.2);
}
.reg-info__card-title {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.reg-info__card-desc {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
}
.reg-facts {
  margin: 0;
}
.reg-facts div {
  margin-bottom: 0.65rem;
}
.reg-facts div:last-child { margin-bottom: 0; }
.reg-facts dt {
  margin: 0 0 0.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
}
.reg-facts dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text);
}
.reg-info__price {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-hover);
}
.reg-info__link {
  font-size: 0.92rem;
  font-weight: 600;
}
.reg-info__rules {
  padding: 1.15rem 1.5rem;
  border-top: 1px solid var(--border);
  background: #fafafa;
}
.reg-info__rules-title {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
}
.reg-info__rules-desc {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.reg-info__rules-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  line-height: 1.6;
}
.reg-info__rules-list li { margin-bottom: 0.4rem; }
.reg-info__rules-list li:last-child { margin-bottom: 0; }
.reg-info__contact {
  margin: 0;
  padding: 0.85rem 1.5rem 1.15rem;
  font-size: 0.92rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.reg-info__contact a { font-weight: 600; }

.reg-form-intro {
  padding-top: 0.25rem;
}
.reg-form-intro__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.reg-form-intro__lead {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.fine-print {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.download-fallback { margin-top: 2rem; }

/* Anmeldeformular */
.reg-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.reg-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-fieldset {
  margin: 0;
  padding: 1.35rem 1.4rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.form-fieldset--confirm {
  background: var(--surface-soft);
  border-color: rgba(90, 143, 114, 0.25);
}

.form-fieldset legend {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.form-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.form-sublegend {
  margin: 0 0 0.65rem;
  font-weight: 600;
  font-size: 0.92rem;
}
.form-field-hint {
  margin: -0.35rem 0 1rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.field {
  display: block;
  margin-bottom: 1rem;
}
.field--top { margin-top: 1rem; }
.field:last-child { margin-bottom: 0; }
.field__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}
.field__optional {
  font-weight: 400;
  color: var(--muted);
  opacity: 0.85;
}

.reg-form abbr[title="Pflichtfeld"] {
  color: #b54545;
  text-decoration: none;
  font-weight: 700;
  margin-left: 0.1rem;
}

.reg-form input[type="text"],
.reg-form input[type="email"],
.reg-form input[type="tel"],
.reg-form input[type="date"],
.reg-form textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.reg-form textarea {
  resize: vertical;
  min-height: 5.5rem;
}
.reg-form input:focus-visible,
.reg-form textarea:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-row.two {
  display: grid;
  gap: 0 1rem;
}
@media (min-width: 560px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}

.field-group--phones {
  margin-top: 0.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fafafa;
}
.field-group--phones .form-sublegend {
  margin-top: 0;
}
.field-group--phones .form-field-hint {
  margin-bottom: 0.85rem;
}
.phone-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.phone-row {
  display: grid;
  gap: 0.85rem;
  align-items: end;
}
@media (min-width: 560px) {
  .phone-row {
    grid-template-columns: 1fr 1.2fr auto;
  }
}
.phone-row__remove {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.phone-row__remove:hover {
  border-color: #b54545;
  color: #b54545;
  background: #fff5f5;
}
.phone-row__remove:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.phone-list__add {
  width: 100%;
  font-size: 0.92rem;
}
@media (min-width: 560px) {
  .phone-list__add { width: auto; }
}
.phone-list__add:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Radio pills */
.choice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.choice-pill {
  cursor: pointer;
}
.choice-pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.choice-pill span {
  display: inline-block;
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.choice-pill input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.choice-pill input:checked + span {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent-hover);
  font-weight: 600;
}

/* Checkbox cards */
.choice-list {
  display: grid;
  gap: 0.55rem;
}
@media (min-width: 540px) {
  .choice-list { grid-template-columns: 1fr 1fr; }
}
.choice-grid {
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 480px) {
  .choice-grid { grid-template-columns: 1fr 1fr; }
}

.choice-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.choice-card--full { margin-bottom: 0; }
.choice-card--legal { align-items: flex-start; }
.choice-card input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.choice-card__text {
  font-size: 0.95rem;
  line-height: 1.5;
}
.choice-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1.4;
}
.choice-card__body strong {
  font-size: 1rem;
  font-weight: 600;
}
.choice-card__body span {
  font-size: 0.88rem;
  color: var(--muted);
}
.choice-card:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-dim);
  box-shadow: 0 0 0 1px rgba(90, 143, 114, 0.15);
}
.choice-card:has(input:focus-visible) {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.choice-card a {
  color: var(--accent-hover);
  font-weight: 600;
}

.form-submit {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border);
}
.form-submit .fine-print { margin-bottom: 1.1rem; }
.form-submit .btn { padding: 0.85rem 1.5rem; font-size: 1.05rem; }

.form-feedback {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  line-height: 1.5;
  min-height: 0;
}
.form-feedback.ok {
  color: var(--accent-hover);
  background: var(--accent-dim);
}
.form-feedback.err {
  color: #8b2e2e;
  background: #fdeeee;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cookie-banner { transition: none; }
}
