/*
Theme Name: KMF 2027 – Kreismusikfest Zapfendorf
Theme URI: https://musikverein-zapfendorf.de/kmf/
Author: Musikverein Zapfendorf (Umsetzung nach Design-Prototyp)
Author URI: https://musikverein-zapfendorf.de/
Description: Event-Landingpage-Theme für das Kreismusikfest 2027 des Musikvereins Zapfendorf. Reproduziert den Design-Prototyp originalgetreu als Full-Width-Startseite mit Countdown, Programmuebersicht, Vereinsbereich, Besucherinfos, dynamischem Aktuelles-Bereich, FAQ und Newsletter-Sektion.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kmf2027
Tags: event, landing-page, one-page, custom-colors, custom-menu, translation-ready
*/

:root {
  --navy-950: #042a4b;
  --navy-900: #06365f;
  --navy-800: #0d4c79;
  --navy-700: #1c5f8c;
  --orange: #f6a019;
  --orange-deep: #ef7f20;
  --red-orange: #ed4f20;
  --ice: #f2f5f9;
  --ice-2: #e7edf4;
  --white: #ffffff;
  --ink: #082f51;
  --text: #203548;
  --muted: #607386;
  --line: #dbe3eb;
  --shadow: 0 22px 55px rgba(4, 42, 75, .13);
  --shadow-soft: 0 12px 32px rgba(4, 42, 75, .09);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, "Lato", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 14px; transform: translateY(-150%); background: var(--white); color: var(--navy-950); border-radius: 8px; font-weight: 800; }
.skip-link:focus { transform: none; }

.notice-bar { background: var(--orange); color: var(--navy-950); font-size: .85rem; letter-spacing: .02em; }
.notice-bar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.notice-bar__extra { font-weight: 800; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.93); border-bottom: 1px solid rgba(4,42,75,.08); backdrop-filter: blur(16px); transition: box-shadow .25s ease; }
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(4,42,75,.10); }
.site-header__inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--navy-950); }
.brand__badge { width: 47px; height: 47px; display: grid; place-items: center; flex: none; background: var(--orange); border-radius: 50%; color: var(--navy-950); font-weight: 950; letter-spacing: -.06em; transform: rotate(-5deg); box-shadow: inset 0 0 0 4px rgba(255,255,255,.35); }
.brand__copy { display: grid; line-height: 1.12; }
.brand__copy strong { font-size: .98rem; text-transform: uppercase; letter-spacing: .02em; }
.brand__copy small { margin-top: 3px; font-size: .76rem; color: var(--muted); }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: .92rem; font-weight: 800; color: var(--navy-950); }
.main-nav > a:not(.button) { position: relative; padding-block: 26px; }
.main-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 3px; background: var(--orange); transition: right .2s ease; }
.main-nav > a:not(.button):hover::after, .main-nav > a:not(.button):focus-visible::after { right: 0; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 12px; background: var(--ice); color: var(--navy-950); padding: 11px; cursor: pointer; }
.nav-toggle__line { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: .2s ease; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 22px; border: 2px solid transparent; border-radius: 999px; font-weight: 900; line-height: 1; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button--small { min-height: 42px; padding-inline: 17px; font-size: .86rem; }
.button--orange { color: var(--navy-950); background: var(--orange); box-shadow: 0 10px 28px rgba(246,160,25,.25); }
.button--orange:hover, .button--orange:focus-visible { background: #ffb22a; }
.button--navy { color: var(--white); background: var(--navy-950); box-shadow: 0 10px 28px rgba(4,42,75,.20); }
.button--navy:hover, .button--navy:focus-visible { background: var(--navy-800); }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }
.button--ghost:hover, .button--ghost:focus-visible { border-color: var(--white); background: rgba(255,255,255,.12); }
.button--full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--navy-950); font-weight: 900; }
.text-link span { color: var(--orange-deep); font-size: 1.2em; }

.hero { position: relative; min-height: 750px; display: grid; align-items: center; overflow: hidden; isolation: isolate; color: var(--white); background: linear-gradient(125deg, var(--navy-950) 0%, var(--navy-900) 55%, #0b4773 100%); }
.hero__rays { position: absolute; z-index: -2; inset: 0; opacity: .75; background: repeating-conic-gradient(from -22deg at 72% 55%, rgba(255,255,255,.07) 0deg 7deg, transparent 7deg 15deg); transform: scale(1.35); }
.hero::before { content: ""; position: absolute; z-index: -1; width: 520px; height: 520px; right: -140px; top: -150px; border-radius: 50%; background: rgba(246,160,25,.08); box-shadow: 0 0 0 95px rgba(255,255,255,.025), 0 0 0 195px rgba(255,255,255,.02); }
.hero::after { content: ""; position: absolute; z-index: -1; inset: auto 0 0; height: 110px; background: linear-gradient(to bottom, transparent, rgba(0,0,0,.08)); }
.hero__note { position: absolute; z-index: -1; right: -5%; bottom: -22%; color: rgba(255,255,255,.055); font-family: Georgia, serif; font-size: 560px; line-height: 1; transform: rotate(9deg); }
.hero__inner { min-height: 750px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(370px, .9fr); gap: 80px; align-items: center; padding-block: 72px 84px; }
.hero__content { max-width: 700px; }
.eyebrow { margin: 0 0 14px; color: var(--orange); font-size: .83rem; font-weight: 950; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow--orange { color: var(--orange-deep); }
.hero h1 { margin: 0; color: var(--white); font-family: "Arial Narrow", "Noto Sans Display", Inter, sans-serif; font-size: clamp(4.4rem, 8vw, 8.2rem); font-weight: 950; line-height: .74; letter-spacing: -.065em; text-transform: uppercase; }
.hero h1 span { display: block; }
.hero h1 em { color: var(--orange); font-size: .42em; font-style: normal; letter-spacing: -.02em; vertical-align: .18em; }
.hero__lead { max-width: 660px; margin: 30px 0 25px; color: rgba(255,255,255,.88); font-size: 1.22rem; line-height: 1.55; }
.hero__facts { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-block: 26px; }
.hero__facts > div { min-width: 0; display: flex; align-items: center; gap: 10px; padding: 12px 13px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.07); }
.hero__facts svg { width: 25px; height: 25px; flex: none; color: var(--orange); }
.hero__facts span { min-width: 0; display: grid; line-height: 1.2; }
.hero__facts strong { font-size: .88rem; white-space: nowrap; }
.hero__facts small { margin-top: 4px; color: rgba(255,255,255,.58); font-size: .68rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.countdown { width: fit-content; display: flex; align-items: center; gap: 5px; margin-top: 32px; padding: 7px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(0,0,0,.12); }
.countdown__label { padding: 0 12px; color: rgba(255,255,255,.65); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.countdown > div { min-width: 62px; display: grid; place-items: center; padding: 7px 10px; border-radius: 10px; background: rgba(255,255,255,.08); line-height: 1; }
.countdown strong { font-size: 1.15rem; color: var(--white); }
.countdown span:not(.countdown__label) { margin-top: 5px; color: rgba(255,255,255,.57); font-size: .61rem; text-transform: uppercase; }
.countdown.is-complete > div { display: none; }
.countdown.is-complete .countdown__label { color: var(--white); font-size: .85rem; }
.hero__visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.event-mark { position: relative; width: min(440px, 100%); aspect-ratio: 1; display: grid; place-items: center; transform: rotate(-3deg); filter: drop-shadow(0 28px 30px rgba(0,0,0,.27)); }
.event-mark::before { content: ""; position: absolute; inset: 1%; border-radius: 50%; background: rgba(255,255,255,.07); box-shadow: 0 0 0 28px rgba(255,255,255,.035); }
.event-mark__disc { position: relative; z-index: 2; width: 72%; aspect-ratio: 1; display: grid; align-content: center; justify-items: center; border-radius: 50%; background: var(--orange); box-shadow: inset 0 0 0 7px rgba(255,255,255,.24); color: var(--navy-950); font-family: Impact, "Arial Black", "Noto Sans Display", sans-serif; font-size: clamp(3rem, 6.3vw, 5.7rem); font-weight: 950; line-height: .72; letter-spacing: -.06em; text-transform: uppercase; }
.event-mark__disc span:nth-child(2) { color: var(--white); }
.event-mark__date, .event-mark__place { position: absolute; z-index: 3; color: var(--white); font-weight: 950; letter-spacing: .07em; text-transform: uppercase; }
.event-mark__date { top: 7%; color: var(--orange); font-size: clamp(.9rem, 1.8vw, 1.25rem); transform: rotate(-4deg); }
.event-mark__place { bottom: 6%; font-size: clamp(1rem, 2.2vw, 1.55rem); transform: rotate(7deg); }
.free-sticker { position: absolute; right: -2%; bottom: 17%; z-index: 5; padding: 14px 18px; color: var(--white); background: var(--navy-950); border: 3px solid var(--white); box-shadow: 8px 9px 0 var(--orange); font-weight: 950; line-height: .9; letter-spacing: .06em; text-transform: uppercase; transform: rotate(-6deg); }
.hero__visual-caption { position: absolute; bottom: 2%; margin: 0; color: rgba(255,255,255,.54); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.quicklinks { position: relative; z-index: 5; margin-top: -35px; }
.quicklinks__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: var(--radius-md); box-shadow: var(--shadow); overflow: hidden; background: var(--white); }
.quicklink { min-height: 132px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 23px; border-right: 1px solid var(--line); transition: background .2s ease; }
.quicklink:last-child { border-right: 0; }
.quicklink:hover, .quicklink:focus-visible { background: var(--ice); }
.icon-tile { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: var(--navy-950); background: rgba(246,160,25,.18); }
.icon-tile svg { width: 25px; height: 25px; }
.quicklink > span:nth-child(2) { min-width: 0; display: grid; line-height: 1.25; }
.quicklink strong { color: var(--navy-950); font-size: .95rem; }
.quicklink small { margin-top: 6px; color: var(--muted); font-size: .74rem; }
.arrow { color: var(--orange-deep); font-size: 1.35rem; }

.section { padding-block: 110px; }
.section-heading { margin-bottom: 42px; }
.section-heading--split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .55fr); align-items: end; gap: 80px; }
.section-heading h2, .clubs-intro h2, .jubilee-copy h2, .faq-grid h2, .support-grid h2, .cta h2 { margin: 0; color: var(--navy-950); font-size: clamp(2.3rem, 5vw, 4.5rem); line-height: .98; letter-spacing: -.05em; }
.section-heading > p, .clubs-intro > p:not(.eyebrow), .jubilee-copy > p:not(.eyebrow), .faq-grid > div > p:not(.eyebrow), .support-grid > div > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 1.06rem; }
.section--program { background: linear-gradient(180deg, var(--white), #f8fafc); }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.day-card { min-height: 530px; display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.day-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; padding: 27px 28px 16px; border-bottom: 1px solid currentColor; border-color: rgba(255,255,255,.15); }
.day-card__weekday { font-size: 1.65rem; font-weight: 950; }
.day-card time { font-weight: 950; letter-spacing: .04em; }
.day-card__body { flex: 1; padding: 32px 28px; }
.day-card__body h3 { margin: 0; font-size: 1.65rem; line-height: 1.05; }
.day-card__body p { margin: 12px 0 0; }
.day-card__time { font-size: .85rem; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.day-card__divider { height: 1px; margin-block: 26px; background: currentColor; opacity: .18; }
.day-card__footer { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 18px 28px 24px; }
.day-card__footer a { font-weight: 900; }
.day-card--dark { color: var(--white); background: var(--navy-950); }
.day-card--dark .day-card__body p { color: rgba(255,255,255,.68); }
.day-card--orange { color: var(--navy-950); background: var(--orange); }
.day-card--orange .day-card__top { border-color: rgba(4,42,75,.18); }
.day-card--light { color: var(--navy-950); background: var(--white); border: 1px solid var(--line); }
.day-card--light .day-card__top { border-color: var(--line); }
.program-kicker { margin: 0 0 10px !important; color: var(--navy-950); font-size: 1.2rem; font-weight: 950; letter-spacing: .02em; text-transform: uppercase; }
.band { margin-top: 8px !important; font-weight: 950; text-transform: uppercase; }
.band--volxx { color: var(--white); font-size: 2.5rem !important; font-style: italic; letter-spacing: -.06em; text-shadow: 3px 3px 0 var(--red-orange); }
.band--blech { max-width: 280px; color: var(--red-orange); font-size: 2.55rem !important; line-height: .79 !important; letter-spacing: -.055em; transform: rotate(-2deg); }
.band--stadel { display: inline-block; padding: 8px 12px; color: var(--white); background: var(--navy-950); border-left: 5px solid #e5232d; font-size: 1.65rem !important; letter-spacing: -.035em; }
.program-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; font-size: 1.14rem; font-weight: 800; }
.program-list li { display: flex; gap: 10px; }
.program-list li::before { content: "•"; color: var(--orange-deep); }
.pill { display: inline-flex; align-items: center; min-height: 29px; padding: 0 11px; border-radius: 999px; font-size: .66rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.pill--light { color: var(--navy-950); background: var(--white); }
.pill--navy { color: var(--white); background: var(--navy-950); }
.pill--orange { color: var(--navy-950); background: var(--orange); }
.program-note { display: flex; gap: 15px; align-items: flex-start; margin-top: 25px; padding: 18px 21px; border-radius: 15px; color: var(--muted); background: var(--ice); }
.program-note > span { width: 28px; height: 28px; display: grid; place-items: center; flex: none; border-radius: 50%; color: var(--white); background: var(--navy-950); font-weight: 950; }
.program-note p { margin: 0; }

.section--clubs { position: relative; overflow: hidden; color: var(--white); background: var(--navy-950); }
.section--clubs::before { content: ""; position: absolute; inset: 0; opacity: .6; background: repeating-conic-gradient(from 5deg at 10% 100%, rgba(255,255,255,.045) 0 8deg, transparent 8deg 17deg); }
.clubs-grid { position: relative; display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: 80px; align-items: start; }
.clubs-intro { position: sticky; top: 130px; }
.clubs-intro h2 { color: var(--white); }
.clubs-intro > p:not(.eyebrow) { margin: 25px 0 30px; color: rgba(255,255,255,.68); }
.clubs-panels { display: grid; gap: 18px; }
.info-panel { display: grid; grid-template-columns: 75px 1fr; gap: 24px; padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.info-panel__number { color: var(--orange); font-size: 2rem; font-weight: 950; line-height: 1; }
.info-panel h3 { margin: 0 0 18px; color: var(--white); font-size: 1.55rem; }
.link-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.link-list a { min-height: 49px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.78); font-weight: 750; }
.link-list a:hover, .link-list a:focus-visible { color: var(--white); }
.link-list span { color: var(--orange); }

.section--jubilee { overflow: hidden; background: var(--ice); }
.jubilee-grid { display: grid; grid-template-columns: minmax(340px, .8fr) minmax(0, 1.2fr); gap: 100px; align-items: center; }
.flyer-stack { position: relative; width: min(400px, 86%); margin: 0 auto; }
.flyer-stack__back { position: absolute; inset: 2% -7% -2% 8%; border-radius: 8px; background: var(--navy-950); transform: rotate(5deg); box-shadow: var(--shadow); }
.flyer-stack img { position: relative; z-index: 2; border-radius: 8px; box-shadow: var(--shadow); transform: rotate(-3deg); }
.flyer-stack__label { position: absolute; z-index: 4; right: -17%; bottom: 10%; padding: 12px 16px; color: var(--navy-950); background: var(--orange); border: 3px solid var(--white); box-shadow: 5px 6px 0 var(--navy-950); font-size: .78rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; transform: rotate(5deg); }
.jubilee-copy h2 { margin-bottom: 27px; }
.jubilee-lead { margin-bottom: 35px !important; font-size: 1.13rem !important; }
.milestones { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0 0 34px; }
.milestones > div { min-height: 128px; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.milestones strong { color: var(--navy-950); font-size: 2.4rem; line-height: 1; }
.milestones span { margin-top: 8px; color: var(--muted); font-size: .78rem; line-height: 1.25; }

.section--visitors { background: var(--white); }
.visitor-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: 25px; align-items: stretch; }
.visitor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.visitor-card { min-height: 225px; display: flex; flex-direction: column; align-items: flex-start; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.visitor-card:hover, .visitor-card:focus-visible { transform: translateY(-4px); border-color: rgba(246,160,25,.55); box-shadow: var(--shadow-soft); }
.visitor-card__icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: var(--navy-950); background: rgba(246,160,25,.18); font-weight: 950; }
.visitor-card h3 { margin: 20px 0 7px; color: var(--navy-950); font-size: 1.15rem; }
.visitor-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.visitor-card > span:last-child { margin-top: auto; padding-top: 18px; color: var(--orange-deep); font-size: .8rem; font-weight: 900; }
.location-card { min-height: 100%; display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; color: var(--white); background: var(--navy-950); box-shadow: var(--shadow-soft); }
.location-card__map { position: relative; min-height: 330px; overflow: hidden; background: #dfe8f0; }
.location-card__map::before { content: ""; position: absolute; inset: 0; opacity: .65; background-image: linear-gradient(rgba(4,42,75,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(4,42,75,.08) 1px, transparent 1px); background-size: 32px 32px; transform: rotate(7deg) scale(1.2); }
.map-road { position: absolute; display: block; height: 13px; border-radius: 99px; background: var(--white); box-shadow: 0 0 0 3px #c7d4df; }
.map-road--one { width: 150%; left: -20%; top: 42%; transform: rotate(-24deg); }
.map-road--two { width: 125%; left: -8%; top: 63%; transform: rotate(16deg); }
.map-road--three { width: 95%; left: 30%; top: 16%; transform: rotate(77deg); }
.map-pin { position: absolute; left: 52%; top: 43%; width: 55px; height: 55px; border-radius: 50% 50% 50% 0; background: var(--orange); box-shadow: 0 10px 20px rgba(4,42,75,.25); transform: rotate(-45deg); }
.map-pin i { position: absolute; inset: 16px; border-radius: 50%; background: var(--navy-950); }
.location-card__content { display: flex; flex-direction: column; flex: 1; padding: 30px; }
.location-card__content h3 { margin: 0; font-size: 1.7rem; }
.location-card__content > p:not(.eyebrow) { margin: 10px 0 28px; color: rgba(255,255,255,.66); }
.location-card__content .button { margin-top: auto; background: var(--white); color: var(--navy-950); }

.section--news { background: var(--ice); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { overflow: hidden; border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-soft); }
.news-card__visual { position: relative; min-height: 190px; display: flex; align-items: flex-end; padding: 20px; overflow: hidden; background: var(--navy-950); }
.news-card__visual::before { content: ""; position: absolute; width: 300px; height: 300px; border: 38px solid rgba(255,255,255,.08); border-radius: 50%; }
.news-card__visual::after { content: "♪"; position: absolute; right: 15px; top: -30px; color: rgba(255,255,255,.14); font-family: Georgia, serif; font-size: 180px; line-height: 1; transform: rotate(10deg); }
.news-card__visual--one { background: linear-gradient(135deg, var(--navy-950), var(--navy-700)); }
.news-card__visual--two { background: linear-gradient(135deg, var(--orange-deep), var(--orange)); }
.news-card__visual--three { background: linear-gradient(135deg, #1b567c, var(--navy-950)); }
.news-card__visual span { position: relative; z-index: 2; padding: 8px 11px; border-radius: 999px; color: var(--navy-950); background: var(--white); font-size: .7rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.news-card__content { padding: 25px; }
.news-card__meta { margin: 0 0 11px; color: var(--orange-deep); font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.news-card h3 { margin: 0; color: var(--navy-950); font-size: 1.35rem; line-height: 1.16; }
.news-card__content > p:not(.news-card__meta) { margin: 13px 0 20px; color: var(--muted); font-size: .9rem; }
.news-card a { color: var(--navy-950); font-size: .82rem; font-weight: 900; }

.section--support { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(130deg, var(--navy-950), #0a4b77); }
.section--support::after { content: "50"; position: absolute; right: -1%; bottom: -25%; color: rgba(255,255,255,.045); font-size: 340px; font-weight: 950; line-height: 1; }
.support-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; align-items: center; }
.support-grid h2 { color: var(--white); }
.support-grid > div > p:not(.eyebrow) { margin: 23px 0 30px; color: rgba(255,255,255,.67); }
.logo-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.logo-wall span { min-height: 100px; display: grid; place-items: center; padding: 15px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; color: rgba(255,255,255,.55); background: rgba(255,255,255,.07); font-size: .75rem; font-weight: 850; text-align: center; }

.section--faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.faq-grid > div:first-child { position: sticky; top: 130px; }
.faq-grid > div:first-child > p:not(.eyebrow) { margin-top: 22px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 20px 4px; color: var(--navy-950); font-size: 1.07rem; font-weight: 900; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange-deep); font-size: 1.7rem; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: -3px 0 25px; color: var(--muted); }

.cta { color: var(--white); background: var(--orange); }
.cta__inner { min-height: 260px; display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: center; }
.cta .eyebrow { color: var(--navy-950); }
.cta h2 { color: var(--navy-950); }
.cta p:not(.eyebrow) { margin: 15px 0 0; color: rgba(4,42,75,.72); }
.signup { display: flex; gap: 10px; padding: 9px; border-radius: 999px; background: var(--white); box-shadow: var(--shadow-soft); }
.signup input { min-width: 0; flex: 1; border: 0; outline: 0; padding: 0 17px; color: var(--navy-950); background: transparent; }
.signup input::placeholder { color: #8796a5; }
.signup .button { background: var(--navy-950); color: var(--white); box-shadow: none; }

.footer { padding-block: 70px 25px; color: rgba(255,255,255,.68); background: #031f38; }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 60px; }
.brand--footer { color: var(--white); }
.brand--footer .brand__copy small { color: rgba(255,255,255,.5); }
.footer__brand p { margin: 25px 0 0; }
.footer h3 { margin: 2px 0 17px; color: var(--white); font-size: .95rem; }
.footer__grid > div:not(.footer__brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer a:hover, .footer a:focus-visible { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); font-size: .75rem; }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .main-nav > a:not(.button) { font-size: .82rem; }
  .hero__inner { grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr); gap: 30px; }
  .hero__facts { grid-template-columns: 1fr; max-width: 460px; }
  .hero__facts > div { padding: 9px 12px; }
  .quicklinks__grid { grid-template-columns: repeat(2, 1fr); }
  .quicklink:nth-child(2) { border-right: 0; }
  .quicklink:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .program-grid { grid-template-columns: 1fr 1fr; }
  .day-card:last-child { grid-column: 1 / -1; min-height: 430px; }
  .visitor-layout { grid-template-columns: 1fr; }
  .location-card { display: grid; grid-template-columns: .9fr 1.1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: .8fr 1.2fr; }
  .footer__grid { grid-template-columns: 1.2fr repeat(3, .8fr); gap: 35px; }
}

@media (max-width: 860px) {
  .notice-bar__extra { display: none; }
  .site-header__inner { min-height: 68px; }
  .nav-toggle { display: block; }
  .main-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 10px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.button) { padding: 14px 12px; border-bottom: 1px solid var(--line); }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .button { margin-top: 10px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero, .hero__inner { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: 25px; padding-block: 70px 90px; }
  .hero__content { max-width: 720px; }
  .hero h1 { font-size: clamp(4.3rem, 14vw, 7rem); }
  .hero__visual { min-height: 430px; }
  .event-mark { width: min(400px, 82vw); }
  .free-sticker { right: 8%; }
  .section { padding-block: 85px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 20px; }
  .clubs-grid, .jubilee-grid, .support-grid, .faq-grid, .cta__inner { grid-template-columns: 1fr; gap: 55px; }
  .clubs-intro, .faq-grid > div:first-child { position: static; }
  .jubilee-grid { gap: 80px; }
  .flyer-stack { width: min(340px, 75%); }
  .milestones { max-width: 620px; }
  .cta__inner { padding-block: 55px; }
  .signup { max-width: 650px; }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, var(--container)); }
  .notice-bar__inner { justify-content: center; text-align: center; }
  .brand__copy strong { font-size: .8rem; }
  .brand__copy small { font-size: .66rem; }
  .hero__inner { padding-top: 55px; }
  .hero h1 { font-size: clamp(3.6rem, 19vw, 5.5rem); }
  .hero__lead { font-size: 1.05rem; }
  .hero__facts { grid-template-columns: 1fr; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .countdown { width: 100%; justify-content: center; }
  .countdown__label { display: none; }
  .countdown > div { min-width: 0; flex: 1; padding-inline: 6px; }
  .hero__visual { min-height: 350px; }
  .event-mark { width: min(330px, 90vw); }
  .event-mark__disc { font-size: 3.8rem; }
  .free-sticker { right: 2%; bottom: 14%; font-size: .75rem; }
  .quicklinks { margin-top: -24px; }
  .quicklinks__grid { grid-template-columns: 1fr; }
  .quicklink { min-height: 105px; border-right: 0; border-bottom: 1px solid var(--line); padding: 18px; }
  .quicklink:nth-child(3) { border-bottom: 1px solid var(--line); }
  .quicklink:last-child { border-bottom: 0; }
  .section { padding-block: 70px; }
  .section-heading h2, .clubs-intro h2, .jubilee-copy h2, .faq-grid h2, .support-grid h2, .cta h2 { font-size: 2.45rem; }
  .program-grid { grid-template-columns: 1fr; }
  .day-card, .day-card:last-child { grid-column: auto; min-height: 475px; }
  .day-card--light { min-height: 520px; }
  .info-panel { grid-template-columns: 1fr; gap: 12px; padding: 24px 20px; }
  .info-panel__number { font-size: 1.15rem; }
  .flyer-stack { width: min(300px, 78%); }
  .flyer-stack__label { right: -14%; }
  .milestones { grid-template-columns: 1fr; }
  .milestones > div { min-height: 92px; }
  .visitor-grid { grid-template-columns: 1fr; }
  .location-card { display: flex; }
  .location-card__map { min-height: 260px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card:last-child { grid-column: auto; display: block; }
  .logo-wall { grid-template-columns: 1fr 1fr; }
  .signup { flex-direction: column; padding: 8px; border-radius: 18px; }
  .signup input { min-height: 50px; }
  .signup .button { width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__grid > div:last-child { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------------------------------------------------------
   Ergaenzung: Lesbare Standard-Layouts fuer Beitraege & Seiten
   (WordPress-Blog, Einzelbeitrag, statische Seiten)
--------------------------------------------------------- */
.content-area { padding-block: 70px 90px; }
.content-area .container { width: min(820px, calc(100% - 40px)); }
.entry-header { margin-bottom: 30px; }
.entry-title { margin: 0 0 10px; color: var(--navy-950); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; letter-spacing: -.03em; }
.entry-meta { color: var(--muted); font-size: .85rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.entry-content { font-size: 1.05rem; }
.entry-content > * + * { margin-top: 1.1em; }
.entry-content h2 { color: var(--navy-950); font-size: 1.8rem; letter-spacing: -.02em; margin-top: 1.6em; }
.entry-content h3 { color: var(--navy-950); font-size: 1.35rem; margin-top: 1.4em; }
.entry-content a { color: var(--orange-deep); font-weight: 700; text-decoration: underline; }
.entry-content img { border-radius: var(--radius-sm); }
.entry-thumbnail { margin-bottom: 30px; }
.entry-thumbnail img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.post-card-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 10px; }
.pagination { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 45px; }
.pagination .page-numbers { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 12px; color: var(--navy-950); font-weight: 800; }
.pagination .page-numbers.current { background: var(--navy-950); color: var(--white); border-color: var(--navy-950); }
.page-hero { padding: 55px 0 15px; }
.page-hero h1 { margin: 0; color: var(--navy-950); font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -.04em; }
@media (max-width: 860px) { .post-card-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 650px) { .post-card-list { grid-template-columns: 1fr; } }
