@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/anton.woff2') format('woff2');
}

:root {
  color-scheme: light;
  --ground: #F7F3F1;
  --surface: #FFFFFF;
  --ink: #261616;
  --muted: #6E5B58;
  --forest: #A62B32;
  --forest-deep: #832126;
  --on-forest: #F9EFEC;
  --on-forest-muted: #DCAFA8;
  --accent: #CE353C;
  --gold: #C2952F;
  --gold-soft: #F6ECD6;
  --line: #E7DBD7;
  --chip: #F2E6E2;
  --shadow: 0 1px 2px rgba(45, 20, 18, .05), 0 8px 24px rgba(45, 20, 18, .06);
}

:root[data-theme="light"] {
  --ground: #F7F3F1;
  --surface: #FFFFFF;
  --ink: #261616;
  --muted: #6E5B58;
  --forest: #A62B32;
  --forest-deep: #832126;
  --on-forest: #F9EFEC;
  --on-forest-muted: #DCAFA8;
  --accent: #CE353C;
  --gold: #C2952F;
  --gold-soft: #F6ECD6;
  --line: #E7DBD7;
  --chip: #F2E6E2;
  --shadow: 0 1px 2px rgba(45, 20, 18, .05), 0 8px 24px rgba(45, 20, 18, .06);
}


* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ground);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.display {
  font-family: 'Anton', 'Arial Narrow', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: 1.02;
  text-wrap: balance;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--ground) 82%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  height: 64px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 700; font-size: 15px;
  white-space: nowrap;
}
.brand:hover { text-decoration: none; }
.wappen-img {
  display: block;
  background: url(/img/wappen-tsv.png) center / contain no-repeat;
}
.crest { width: 34px; height: 42px; flex: none; }
.footer-wappen { width: 26px; height: 32px; flex: none; }
.nav-links {
  display: flex; gap: 4px; margin-left: auto;
  overflow-x: auto; scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  color: var(--muted); font-size: 14.5px; font-weight: 600;
  padding: 7px 12px; border-radius: 999px; white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: var(--chip); text-decoration: none; }
.nav-cta {
  flex: none;
  background: var(--forest); color: var(--on-forest) !important;
  padding: 9px 18px !important; border-radius: 999px;
  font-size: 14.5px; font-weight: 700;
}
.nav-cta:hover { background: var(--forest-deep) !important; color: var(--on-forest) !important; }
.nav-burger {
  display: none; position: relative; flex: none;
  width: 42px; height: 42px;
  border: none; border-radius: 10px;
  background: var(--chip); cursor: pointer;
}
.nav-burger span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 20px; }
.nav-burger span:nth-child(3) { top: 26px; }
.nav.open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: var(--forest);
  color: var(--on-forest);
  position: relative;
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  background: url(/img/vereinsheim.jpg) center 28% / cover no-repeat;
  opacity: .5;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .45));
}
.hero-inner {
  position: relative;
  padding: 88px 0 0;
}
.hero-top {
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.hero-copy { min-width: 0; }
.hero-wappen {
  flex: none;
  width: clamp(170px, 21vw, 280px);
  aspect-ratio: 452 / 560;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, .38));
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--on-forest-muted);
}
.hero-eyebrow::before {
  content: ""; width: 28px; height: 2px; background: var(--gold);
}
.hero h1 {
  margin: 20px 0 0;
  /* Flacher Anstieg, weil das Wappen die Textspalte schmaler macht —
     sonst kippt "der unser Dorf" bei mittleren Breiten in eine vierte Zeile. */
  font-size: clamp(38px, 8.5vw, 100px);
  color: var(--on-forest);
}
.hero h1 .thin { color: var(--gold); }
.hero-sub {
  max-width: 60ch; margin: 22px 0 0;
  font-size: clamp(17px, 2vw, 20px); line-height: 1.55;
  color: var(--on-forest-muted);
}
.hero-sub strong { color: var(--on-forest); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 0; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  font-size: 15.5px; font-weight: 700; cursor: pointer;
  border: none; transition: transform .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #1E1706; }
.btn-ghost {
  background: transparent; color: var(--on-forest);
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--on-forest) 40%, transparent);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--on-forest); }

.hero-stats {
  position: relative;
  margin-top: 72px;
  border-top: 1px solid color-mix(in srgb, var(--on-forest) 18%, transparent);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat { padding: 26px 24px 34px 0; }
.stat + .stat { border-left: 1px solid color-mix(in srgb, var(--on-forest) 18%, transparent); padding-left: 24px; }
.stat b {
  display: block;
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(30px, 4vw, 44px); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat span { font-size: 13.5px; color: var(--on-forest-muted); display: block; margin-top: 6px; }

/* ---------- Sections ---------- */
section { padding: 88px 0 0; }
section:last-of-type { padding-bottom: 0; }
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 18px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--accent); }
h2 {
  margin: 0;
  font-size: clamp(30px, 8vw, 52px);
}
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; }
.section-head p:not(.eyebrow) { margin: 10px 0 0; color: var(--muted); max-width: 62ch; }

/* ---------- News ---------- */
.news-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; margin-top: 36px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.news-card { padding: 34px; display: flex; flex-direction: column; gap: 14px; }
.badge {
  align-self: flex-start;
  font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.badge-gold { background: var(--gold-soft); color: var(--gold); }
.badge-green { background: var(--chip); color: var(--accent); }
.news-card h3 { margin: 0; font-size: clamp(24px, 3vw, 34px); }
.news-card p { margin: 0; color: var(--muted); }
.news-meister {
  background: linear-gradient(135deg, var(--surface) 55%, var(--gold-soft));
}

/* ---------- Angebote ---------- */
.angebot-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px;
}
.angebot {
  padding: 28px; display: flex; flex-direction: column; gap: 12px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.angebot:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(45,20,18,.06), 0 16px 36px rgba(45,20,18,.1); }
.angebot h3 { margin: 0; font-size: 24px; letter-spacing: .02em; }
.angebot .desc { margin: 0; color: var(--muted); font-size: 15px; flex: 1; }
.zeiten { display: flex; flex-direction: column; gap: 6px; margin: 4px 0 0; padding: 0; list-style: none; }
.zeiten li {
  display: flex; gap: 10px; align-items: baseline;
  font-size: 14.5px; border-top: 1px dashed var(--line); padding-top: 6px;
}
.zeiten .tag {
  flex: none; width: 34px; font-weight: 800; font-size: 12.5px;
  color: var(--accent); text-transform: uppercase; letter-spacing: .06em;
}
.zeiten .zeit { font-variant-numeric: tabular-nums; color: var(--ink); white-space: nowrap; }
.zeiten .was { color: var(--muted); }
.kontakt-zeile {
  font-size: 13.5px; color: var(--muted);
  border-top: 1px solid var(--line); padding-top: 12px; margin-top: 4px;
}
.kontakt-zeile b { color: var(--ink); font-weight: 600; }

/* ---------- Wochenplan ---------- */
.plan { margin-top: 36px; display: flex; flex-direction: column; }
.plan-row {
  display: grid; grid-template-columns: 130px 1fr; gap: 18px;
  padding: 20px 0; border-top: 1px solid var(--line);
}
.plan-row:last-child { border-bottom: 1px solid var(--line); }
.plan-day {
  font-family: 'Anton', sans-serif; text-transform: uppercase;
  font-size: 22px; letter-spacing: .03em; padding-top: 3px;
}
.plan-items { display: flex; flex-wrap: wrap; gap: 10px; }
.slot {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 10px; padding: 8px 14px; font-size: 14.5px;
}
.slot time { font-weight: 700; font-variant-numeric: tabular-nums; color: var(--accent); }
.slot .hinweis { color: var(--muted); font-size: 13px; }

/* ---------- Mitgliedschaft ---------- */
.mitglied { background: var(--forest); color: var(--on-forest); margin-top: 88px; padding: 88px 0; }
.mitglied .eyebrow { color: var(--gold); }
.mitglied .eyebrow::before { background: var(--gold); }
.mitglied .section-head p:not(.eyebrow) { color: var(--on-forest-muted); }
.preis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.preis {
  background: color-mix(in srgb, var(--on-forest) 7%, transparent);
  border: 1px solid color-mix(in srgb, var(--on-forest) 16%, transparent);
  border-radius: 14px; padding: 30px;
}
.preis .gruppe { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--on-forest-muted); }
.preis .betrag {
  font-family: 'Anton', sans-serif; font-size: 52px; line-height: 1;
  margin: 14px 0 4px; font-variant-numeric: tabular-nums;
}
.preis .betrag small { font-size: 18px; font-family: inherit; color: var(--on-forest-muted); }
.preis p { margin: 10px 0 0; font-size: 14.5px; color: var(--on-forest-muted); }
.mitglied-fuss { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 34px; }
.mitglied-hinweis { font-size: 13.5px; color: var(--on-forest-muted); max-width: 46ch; }

/* ---------- Förderverein ---------- */
.ffv-card {
  margin-top: 36px; padding: 38px;
  display: flex; gap: 38px; align-items: center;
}
.ffv-wappen { width: clamp(120px, 16vw, 180px); height: auto; flex: none; }
.ffv-body { min-width: 0; }
.ffv-body h3 { margin: 0 0 14px; font-size: clamp(24px, 3vw, 32px); }
.ffv-liste { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ffv-liste li {
  padding-left: 28px; position: relative; color: var(--muted);
}
.ffv-liste li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 800;
}
.ffv-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.btn-rot { background: var(--accent); color: #FFF; }
.btn-rot:hover { background: var(--forest); color: #FFF; }
.btn-ghost-dunkel {
  background: transparent; color: var(--accent);
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--accent) 45%, transparent);
}
.btn-ghost-dunkel:hover { box-shadow: inset 0 0 0 1.5px var(--accent); }
.ffv-hinweis { margin: 18px 0 0; font-size: 13.5px; color: var(--muted); }
/* Sehr schmale Displays: Vereinsname ausblenden, Wappen bleibt sichtbar.
   Sonst passen Wappen + Name + Button + Menue nicht nebeneinander und der
   Menue-Button wird am rechten Rand abgeschnitten. */
@media (max-width: 430px) {
  .brand-text { display: none; }
  .nav-inner { gap: 10px; }
  .nav-cta { padding: 8px 13px !important; font-size: 13px; }
}

@media (max-width: 760px) {
  .ffv-card { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* ---------- Vorstand ---------- */
.vorstand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.person { padding: 24px 28px; display: flex; align-items: center; gap: 16px; }
.avatar {
  width: 52px; height: 52px; flex: none; border-radius: 50%;
  background: var(--chip); color: var(--accent);
  display: grid; place-items: center;
  font-family: 'Anton', sans-serif; font-size: 18px; letter-spacing: .02em;
}
.person b { display: block; font-size: 16.5px; }
.person span { font-size: 13.5px; color: var(--muted); }
.vorstand-weitere { margin-top: 28px; }
.vorstand-weitere summary {
  cursor: pointer; font-weight: 700; color: var(--accent); font-size: 15px;
  list-style: none; display: inline-flex; align-items: center; gap: 8px;
}
.vorstand-weitere summary::-webkit-details-marker { display: none; }
.vorstand-weitere summary::after { content: "↓"; transition: transform .2s; }
.vorstand-weitere[open] summary::after { transform: rotate(180deg); }
.rollen {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px 40px;
  margin: 18px 0 0; padding: 0; list-style: none; font-size: 15px;
}
.rollen li { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px dashed var(--line); }
.rollen span { color: var(--muted); text-align: right; }

/* ---------- Kontakt / Footer ---------- */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.kontakt-card { padding: 34px; }
.kontakt-card h3 { margin: 0 0 16px; font-size: 22px; }
.kontakt-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.ffv-logo { width: 72px; height: auto; flex: none; margin-top: -6px; }
.kontakt-liste { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.kontakt-liste li { display: flex; gap: 12px; align-items: baseline; font-size: 15.5px; }
.kontakt-liste .icon { flex: none; width: 22px; text-align: center; color: var(--accent); }
footer {
  margin-top: 88px; border-top: 1px solid var(--line);
  padding: 34px 0 44px; font-size: 14px; color: var(--muted);
}
.footer-inner { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--ink); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .angebot { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .angebot-grid, .vorstand-grid, .preis-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
  .stat { border-top: 1px solid color-mix(in srgb, var(--on-forest) 12%, transparent); }
  .stat:nth-child(-n+2) { border-top: none; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  section, .hero-inner { padding-top: 64px; }
  .mitglied { padding: 64px 0; margin-top: 64px; }
  .angebot-grid, .vorstand-grid, .preis-grid, .kontakt-grid { grid-template-columns: 1fr; }
  .rollen { grid-template-columns: 1fr; }
  .plan-row { grid-template-columns: 1fr; gap: 10px; padding: 16px 0; }
  .hero-stats { margin-top: 48px; }
  .wrap { padding: 0 20px; }
  .nav-inner { gap: 12px; }
  .nav-burger { display: block; }
  .nav-cta { margin-left: auto; }
  .nav-links {
    position: absolute; top: 64px; left: 0; right: 0;
    display: none; flex-direction: column; gap: 2px;
    margin: 0; padding: 10px 20px 16px;
    background: color-mix(in srgb, var(--ground) 96%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .12);
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a { font-size: 16.5px; padding: 12px; }
  .brand { font-size: 14px; gap: 8px; }
  .nav-cta { padding: 8px 14px !important; font-size: 13.5px; }
  /* Der Umbruch nach "Sport" ersetzt das Komma — auch mobil beibehalten. */
  .hero h1 { font-size: clamp(34px, 11.5vw, 56px); }
  .btn { padding: 12px 20px; font-size: 14.5px; }
}
@media (max-width: 760px) {
  .hero-top { flex-direction: column; align-items: flex-start; gap: 0; }
  /* Wappen steht mobil schon in der Kopfzeile — im Hero waere es doppelt. */
  .hero-wappen { display: none; }
  .hero-photo {
    background-position: 26% 30%;
    opacity: .8;
  }
}

/* ---------- Rechtsseiten (Impressum, Datenschutz, 404) ---------- */
.legal-head {
background: var(--forest);
color: var(--on-forest);
padding: 40px 0 44px;
}
.legal-head .brand { color: var(--on-forest); margin-bottom: 22px; }
.legal-head h1 { margin: 0; font-size: clamp(32px, 7vw, 52px); }
.legal-back {
display: inline-block; margin-top: 14px;
color: var(--on-forest-muted); font-size: 15px; font-weight: 600;
}
.legal-back:hover { color: var(--on-forest); }
.legal {
max-width: 68ch; margin: 0 auto; padding: 48px 24px 24px;
}
.legal h2 {
font-family: 'Anton', 'Arial Narrow', sans-serif;
text-transform: uppercase; letter-spacing: .015em;
font-size: 24px; margin: 40px 0 12px;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 17px; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--muted); }
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal address { font-style: normal; color: var(--muted); margin-bottom: 14px; }
.legal strong { color: var(--ink); }
.placeholder {
background: #FFF2A8; color: #4A3C00;
padding: 1px 6px; border-radius: 4px; font-weight: 600;
}
.legal-updated {
margin-top: 40px; padding-top: 18px;
border-top: 1px solid var(--line);
font-size: 14px; color: var(--muted);
}
.notfound { text-align: center; padding: 80px 24px; }
.notfound h1 { font-size: clamp(60px, 16vw, 120px); margin: 0 0 8px; }
.notfound p { color: var(--muted); margin: 0 0 26px; }
@media (max-width: 640px) {
.legal { padding: 36px 20px 16px; }
.legal-head { padding: 32px 0 34px; }
}

/* ---------- Zeltkirmes ---------- */
.kirmes-fakten {
display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
margin-top: 32px; border-radius: 14px; overflow: hidden;
background: var(--line);
}
.faktum {
background: var(--forest); color: var(--on-forest);
padding: 22px 24px;
display: flex; flex-direction: column; gap: 6px;
}
.faktum-label {
font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
color: var(--gold);
}
.faktum b { font-size: 16.5px; font-weight: 600; line-height: 1.35; }

.kirmes-tage {
display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px;
}
.kirmes-tag { padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.tag-kopf { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.tag-datum {
flex: none;
display: inline-flex; align-items: baseline; gap: 6px;
background: var(--forest); color: var(--on-forest);
padding: 6px 12px; border-radius: 999px;
font-size: 13.5px; font-weight: 700;
font-variant-numeric: tabular-nums;
}
.tag-datum b { font-family: 'Anton', sans-serif; font-weight: 400; letter-spacing: .04em; }
.tag-kopf h3 { margin: 0; font-size: 24px; }
.tag-intro { margin: 0; color: var(--muted); font-size: 15px; }
.tag-fuss {
margin: 0; padding-top: 14px; border-top: 1px solid var(--line);
font-size: 14px; color: var(--muted);
}
.programm { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.programm li {
display: flex; gap: 14px; align-items: baseline;
padding: 10px 0; border-top: 1px dashed var(--line);
font-size: 15.5px;
}
.programm li:first-child { border-top: none; padding-top: 0; }
.programm time {
flex: none; min-width: 104px;
font-weight: 700; font-variant-numeric: tabular-nums;
color: var(--accent);
}
.programm .hoehepunkt {
border-top: 1px solid var(--gold);
margin-top: 4px; padding-top: 14px;
}
.programm .hoehepunkt time { color: var(--gold); }
.programm .hoehepunkt strong { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 19px; letter-spacing: .03em; }

.kirmes-service { display: grid; grid-template-columns: 1fr 1.4fr; gap: 20px; margin-top: 20px; }
.service-karte { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.service-karte h3 { margin: 0; font-size: 24px; }
.service-text { margin: 0; color: var(--muted); font-size: 15px; flex: 1; }
.preise { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.preise li {
display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
padding: 11px 0; border-top: 1px dashed var(--line); font-size: 15.5px;
}
.preise li:first-child { border-top: none; padding-top: 0; }
.preise b { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 22px; font-variant-numeric: tabular-nums; }
.preise .kombi { border-top: 1px solid var(--gold); }
.preise .kombi b { color: var(--gold); }
.service-hinweis { margin: 0; font-size: 13.5px; color: var(--muted); }
.service-karte .btn { align-self: flex-start; }

.hausordnung { padding: 30px; margin-top: 20px; }
.hausordnung h3 { margin: 0 0 10px; font-size: 24px; }
.hausordnung-intro { margin: 0 0 20px; color: var(--muted); max-width: 62ch; }
.regeln {
list-style: none; margin: 0; padding: 0;
display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 32px;
}
.regeln li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.regel-icon {
flex: none; width: 34px; height: 34px; border-radius: 10px;
background: var(--chip); display: grid; place-items: center; font-size: 16px;
}
.regeln strong { font-weight: 600; }
.hausordnung-fuss {
margin: 22px 0 0; padding-top: 16px; border-top: 1px solid var(--line);
font-size: 14px; color: var(--muted);
}

@media (max-width: 920px) {
.kirmes-tage { grid-template-columns: 1fr; }
.kirmes-service { grid-template-columns: 1fr; }
.regeln { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
.kirmes-fakten { grid-template-columns: 1fr; }
.faktum { padding: 18px 20px; }
.kirmes-tag, .service-karte, .hausordnung { padding: 24px 20px; }
.programm li { flex-direction: column; gap: 2px; }
.programm time { min-width: 0; }
.tag-kopf h3 { font-size: 21px; }
}
