:root {
  --bg: #f1f3f5;
  --surface: #ffffff;
  --surface-dark: #050505;
  --surface-dark-2: #101820;
  --text: #111317;
  --text-soft: #606971;
  --light: #f8fafc;
  --accent: #197fbd;
  --accent-2: #76c3ed;
  --green: #66727b;
  --line: rgba(24, 33, 29, .13);
  --shadow: 0 24px 70px rgba(26, 34, 29, .12);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
code { padding: .15rem .4rem; border-radius: 6px; background: rgba(24, 37, 31, .08); font-size: .9em; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.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; left: 18px; top: -100px; z-index: 999; background: #fff; color: #111; padding: 12px 18px; border-radius: 10px; font-weight: 800; }
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(244, 240, 232, .86);
  border-bottom: 1px solid rgba(24, 33, 29, .08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 176px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a { position: relative; padding: 10px 15px; border-radius: 12px; color: #c8d0d6; font-weight: 750; font-size: .94rem; transition: .25s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--text); background: rgba(24, 33, 29, .06); }
.main-nav .nav-cta { margin-left: 8px; color: #fff; background: var(--surface-dark); padding-inline: 19px; }
.main-nav .nav-cta:hover, .main-nav .nav-cta.active { color: #fff; background: var(--accent); }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; background: var(--surface-dark); border-radius: 14px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span:not(.sr-only) { width: 21px; height: 2px; background: #fff; border-radius: 2px; transition: .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 760px;
  padding: calc(var(--header-height) + 80px) 0 80px;
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(24, 33, 29, .08) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 82%); pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: -170px; top: 110px; background: rgba(25, 127, 189, .15); }
.hero-glow-two { width: 380px; height: 380px; left: -240px; bottom: 60px; background: rgba(25, 127, 189, .15); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 50px; }
.hero-copy { padding-top: 10px; }
.eyebrow { margin: 0 0 17px; color: var(--accent); font-size: .78rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.hero h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
.hero h1 { margin-bottom: 26px; font-size: clamp(3.3rem, 6.2vw, 6.1rem); font-weight: 900; max-width: 790px; }
.hero h1 span { color: var(--accent); }
.hero-lead { max-width: 620px; margin: 0 0 32px; color: var(--text-soft); font-size: clamp(1.08rem, 1.5vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 13px 22px; border: 1px solid transparent; border-radius: 14px; font-weight: 850; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--accent); box-shadow: 0 14px 28px rgba(25, 127, 189, .24); }
.button-primary:hover { background: #126a9f; }
.button-secondary { border-color: var(--line); background: rgba(255, 253, 248, .7); }
.button-secondary:hover { background: #fff; border-color: rgba(24, 33, 29, .22); }
.button-light { background: var(--light); color: var(--surface-dark); }
.button-full { width: 100%; }
.hero-facts { display: flex; gap: 42px; margin-top: 46px; }
.hero-facts div { display: flex; flex-direction: column; }
.hero-facts strong { font-size: 1.02rem; }
.hero-facts span { color: var(--text-soft); font-size: .88rem; }
.hero-visual { position: relative; }
.hero-visual > img { width: 100%; filter: drop-shadow(0 35px 45px rgba(24, 33, 29, .18)); }
.hero-note { position: absolute; right: 0; bottom: 30px; display: flex; align-items: center; gap: 12px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.68); border-radius: 18px; background: rgba(255, 253, 248, .9); box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #2e9bd3; box-shadow: 0 0 0 6px rgba(46,155,211,.14); }
.hero-note strong, .hero-note small { display: block; }
.hero-note strong { font-size: .9rem; }
.hero-note small { color: var(--text-soft); }

.section-heading h2 { margin-bottom: 0; font-size: clamp(2.25rem, 4vw, 4.1rem); }
.section-heading.centered { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.intro { background: var(--surface-dark); color: var(--light); }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.intro .section-heading h2 { max-width: 560px; }
.intro-copy { font-size: 1.1rem; color: rgba(248,244,234,.74); }
.intro-copy strong { color: #fff; }
.intro-copy p:first-child { margin-top: 2px; }
.quote-card { position: relative; margin-top: 38px; padding: 29px 30px 28px 76px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-sm); background: rgba(255,255,255,.055); }
.quote-card span { position: absolute; left: 26px; top: 9px; color: var(--accent-2); font-family: Georgia, serif; font-size: 4.8rem; line-height: 1; }
.quote-card p { margin: 0; color: #fff; font-weight: 700; }

.features { background: var(--surface); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon-wrap { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 35px; border-radius: 16px; background: rgba(25,127,189,.11); color: var(--accent); }
.icon-wrap svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { margin-bottom: 14px; font-size: 1.4rem; }
.feature-card p { margin: 0; color: var(--text-soft); }

.events-section { background: var(--bg); }
.section-top { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 50px; }
.section-intro { max-width: 530px; margin: 0 0 8px; color: var(--text-soft); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.event-card { min-height: 390px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
a.event-card:hover, .event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.event-card-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.event-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--surface-dark); color: #fff; }
.event-icon svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.event-icon svg path:first-child { fill: none; }
.event-tag { padding: 7px 11px; border-radius: 999px; background: rgba(25,127,189,.12); color: #0d5f91; font-weight: 850; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.event-date { margin: 0 0 10px; color: var(--accent); font-weight: 850; font-size: .88rem; }
.event-card h3 { margin-bottom: 12px; font-size: 1.75rem; }
.event-card p:not(.event-date) { color: var(--text-soft); }
.event-location { display: flex; align-items: center; gap: 8px; padding-top: 20px; border-top: 1px solid var(--line); color: #616a72; font-size: .88rem; font-weight: 750; }
.event-location svg { width: 18px; fill: none; stroke: var(--accent); stroke-width: 1.8; }
.event-highlight { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; margin-top: 84px; padding: 40px 64px 40px 35px; border-radius: 36px; background: var(--surface-dark); color: var(--light); overflow: hidden; }
.event-highlight-art img { width: 100%; }
.event-highlight-copy h3 { margin-bottom: 19px; font-size: clamp(2rem, 3.1vw, 3.2rem); }
.event-highlight-copy > p:not(.eyebrow) { color: rgba(248,244,234,.7); }
.text-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 10px; color: var(--accent); font-weight: 850; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.location-section { padding-top: 0; }
.location-card { display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; min-height: 440px; padding: 60px; border-radius: 38px; background: var(--accent); color: #fff; overflow: hidden; }
.location-copy { align-self: center; max-width: 450px; }
.location-copy .eyebrow { color: #bfe7fb; }
.location-copy h2 { margin-bottom: 20px; font-size: clamp(2.2rem, 4vw, 4rem); }
.location-copy p { margin-bottom: 28px; color: rgba(255,255,255,.8); }
.location-map { position: relative; min-height: 310px; align-self: stretch; border-radius: 28px; background: #f4f7f9; overflow: hidden; box-shadow: 0 25px 60px rgba(5,12,18,.16); }
.location-map::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.7), transparent 50%); }
.location-map svg { width: 100%; height: 100%; }
.location-map svg path:not(.pin) { fill: none; stroke: #cbd2d7; stroke-width: 11; stroke-linecap: round; }
.location-map svg path:nth-child(2) { stroke: #b6d8ea; stroke-width: 18; }
.location-map svg circle { fill: #197fbd; opacity: .5; }
.location-map .pin { fill: var(--accent); filter: drop-shadow(0 12px 10px rgba(25,127,189,.24)); }
.location-map span { position: absolute; right: 25px; bottom: 22px; padding: 10px 14px; border-radius: 12px; color: var(--text); background: rgba(255,255,255,.9); font-weight: 850; }

.join-section { background: var(--surface-dark); color: var(--light); }
.join-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; }
.join-copy h2 { margin-bottom: 23px; font-size: clamp(2.5rem, 4.4vw, 4.5rem); }
.join-copy > p:not(.eyebrow) { color: rgba(248,244,234,.72); font-size: 1.08rem; }
.check-list { list-style: none; padding: 0; margin: 34px 0 12px; }
.check-list li { position: relative; padding: 9px 0 9px 34px; font-weight: 750; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 9px; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(25,127,189,.16); color: var(--accent-2); font-size: .78rem; }
.light-link { color: var(--accent-2); }
.join-form { padding: 36px; border-radius: 30px; background: var(--surface); color: var(--text); box-shadow: 0 35px 80px rgba(0,0,0,.2); }
.form-heading { margin-bottom: 25px; }
.form-heading span { color: var(--accent); font-size: .77rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.form-heading h3 { margin: 4px 0 0; font-size: 2rem; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; margin-bottom: 7px; font-size: .88rem; font-weight: 800; }
.form-row label span { color: var(--text-soft); font-weight: 600; }
.form-row input, .form-row textarea { width: 100%; border: 1px solid rgba(24,33,29,.16); border-radius: 13px; background: #fff; color: var(--text); padding: 13px 14px; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(25,127,189,.1); }
.form-row textarea { resize: vertical; min-height: 112px; }
.two-columns { display: grid; grid-template-columns: 1.25fr .75fr; gap: 14px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 20px; color: var(--text-soft); font-size: .78rem; line-height: 1.45; }
.checkbox-row input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--accent); }
.checkbox-row a { color: var(--accent); text-decoration: underline; }
.form-note { margin: 12px 0 0; color: var(--text-soft); font-size: .72rem; text-align: center; }

.social-section { padding: 72px 0; background: var(--surface); }
.social-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.social-inner h2 { margin: 0; font-size: clamp(1.8rem, 3vw, 3rem); }
.social-links { display: flex; gap: 12px; }
.social-links a { display: flex; align-items: center; gap: 9px; padding: 13px 17px; border: 1px solid var(--line); border-radius: 14px; background: #fff; font-weight: 850; transition: .2s ease; }
.social-links a:hover { border-color: var(--accent); transform: translateY(-2px); }
.social-links svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-links a:last-child svg { fill: currentColor; stroke: none; }

.site-footer { padding: 70px 0 20px; background: #000000; color: rgba(248,244,234,.7); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 45px; padding-bottom: 45px; }
.footer-brand img { filter: brightness(0) invert(1); opacity: .92; margin-bottom: 18px; }
.footer-brand p { margin: 0; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid strong { margin-bottom: 6px; color: #fff; }
.footer-grid a:hover { color: var(--accent-2); }
.footer-grid span { display: block; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); font-size: .84rem; }
.footer-bottom a { color: #fff; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }

/* Unterseiten */
.subpage { min-height: 100vh; background: var(--bg); }
.subpage .site-header { position: sticky; }
.subpage-main { padding: 90px 0 110px; }
.subpage-hero { max-width: 800px; margin-bottom: 54px; }
.subpage-hero h1 { margin-bottom: 18px; font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1; letter-spacing: -.04em; }
.subpage-hero p { color: var(--text-soft); font-size: 1.12rem; }
.content-card { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.content-card + .content-card { margin-top: 22px; }
.content-card h2 { margin-bottom: 18px; font-size: 1.65rem; }
.content-card h3 { margin-top: 26px; margin-bottom: 10px; font-size: 1.16rem; }
.content-card p, .content-card li { color: var(--text-soft); }
.content-card a { color: var(--accent); text-decoration: underline; }
.placeholder-note { padding: 17px 18px; border: 1px solid rgba(25,127,189,.35); border-radius: 13px; background: rgba(25,127,189,.09); color: #0d5f91 !important; font-weight: 750; }
.back-link { display: inline-flex; gap: 8px; align-items: center; margin-bottom: 30px; font-weight: 800; }
.print-actions { display: flex; gap: 12px; margin-bottom: 28px; }
.application-form { display: grid; gap: 22px; }
.application-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.application-field { min-height: 52px; border-bottom: 1px solid #6f777d; }
.application-field span { display: block; color: var(--text-soft); font-size: .75rem; }
.signature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; margin-top: 50px; }
.signature-line { padding-top: 40px; border-bottom: 1px solid #333; }
.signature-line small { display: block; padding-top: 6px; color: var(--text-soft); }

@media (max-width: 980px) {
  :root { --header-height: 74px; }
  .menu-toggle { display: flex; }
  .main-nav { position: fixed; top: var(--header-height); right: 0; bottom: 0; width: min(84vw, 390px); padding: 28px; flex-direction: column; align-items: stretch; gap: 8px; background: var(--surface); box-shadow: -20px 20px 60px rgba(0,0,0,.14); transform: translateX(105%); transition: transform .28s ease; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 15px 16px; font-size: 1.05rem; }
  .main-nav .nav-cta { margin: 8px 0 0; text-align: center; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 58px); }
  .hero-grid, .intro-grid, .join-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-facts { justify-content: center; }
  .hero-visual { max-width: 650px; margin-inline: auto; }
  .intro-grid { gap: 35px; }
  .feature-grid, .events-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid .feature-card:last-child, .events-grid .event-card:last-child { grid-column: 1 / -1; }
  .event-highlight { grid-template-columns: 1fr; gap: 35px; padding: 42px; }
  .event-highlight-art { max-width: 590px; margin-inline: auto; }
  .location-card { grid-template-columns: 1fr; padding: 42px; }
  .location-copy { max-width: 650px; }
  .join-copy { max-width: 720px; }
  .social-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .brand img { width: 154px; }
  .hero { padding-bottom: 70px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-facts { gap: 22px; flex-direction: column; }
  .hero-note { right: 4px; bottom: 4px; }
  
  .section-top { align-items: flex-start; flex-direction: column; gap: 24px; }
  .feature-grid, .events-grid { grid-template-columns: 1fr; }
  .feature-grid .feature-card:last-child, .events-grid .event-card:last-child { grid-column: auto; }
  .event-card { min-height: 340px; }
  .event-highlight { margin-top: 55px; padding: 30px 24px; border-radius: 28px; }
  .location-card { padding: 28px 22px; border-radius: 28px; }
  .location-map { min-height: 250px; }
  .join-form { padding: 25px 20px; }
  .two-columns { grid-template-columns: 1fr; }
  .social-links { width: 100%; flex-direction: column; }
  .social-links a { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .content-card { padding: 27px 21px; }
  .application-grid, .signature-grid { grid-template-columns: 1fr; }
}

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

@media print {
  .site-header, .site-footer, .print-actions, .back-link { display: none !important; }
  body, .subpage { background: #fff; }
  .subpage-main { padding: 0; }
  .container { width: 100%; }
  .content-card { padding: 0; border: 0; }
  .subpage-hero { margin-bottom: 30px; }
}


/* =========================================================
   Logo-Redesign: Schwarz, Weiß, Wappen-Blau und Stahlgrau
   ========================================================= */
:root {
  --bg: #eef1f3;
  --surface: #ffffff;
  --surface-dark: #050505;
  --surface-dark-2: #101820;
  --text: #111317;
  --text-soft: #606971;
  --light: #f8fafc;
  --accent: #197fbd;
  --accent-2: #76c3ed;
  --green: #66727b;
  --line: rgba(10, 17, 23, .13);
  --shadow: 0 24px 70px rgba(5, 12, 18, .14);
  --radius: 24px;
  --radius-sm: 16px;
}

body {
  background:
    linear-gradient(180deg, #eef1f3 0%, #f7f8f9 35%, #eef1f3 100%);
}

.site-header {
  background: rgba(0, 0, 0, .91);
  border-bottom-color: rgba(255, 255, 255, .10);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .14);
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand img {
  width: 222px;
  max-height: 70px;
  object-fit: contain;
}

.main-nav a {
  color: rgba(255,255,255,.72);
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: rgba(255,255,255,.09);
}

.main-nav .nav-cta {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 9px 26px rgba(25,127,189,.25);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta.active {
  background: #2495d3;
}

.menu-toggle {
  background: var(--accent);
}

.hero {
  color: #fff;
  background:
    radial-gradient(circle at 84% 26%, rgba(25,127,189,.26), transparent 31%),
    radial-gradient(circle at 12% 82%, rgba(118,195,237,.10), transparent 27%),
    linear-gradient(135deg, #000 0%, #05090c 52%, #0b1821 100%);
}

.hero::before {
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 96%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--accent), #fff, var(--accent), transparent);
  opacity: .75;
}

.hero-glow-one {
  background: rgba(25,127,189,.18);
}

.hero-glow-two {
  background: rgba(255,255,255,.05);
}

.hero .eyebrow {
  color: var(--accent-2);
}

.hero h1 span {
  color: var(--accent-2);
}

.hero-lead,
.hero-facts span {
  color: rgba(255,255,255,.66);
}

.hero-facts strong {
  color: #fff;
}

.button-primary {
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(25,127,189,.27);
}

.button-primary:hover {
  background: #2495d3;
}

.hero .button-secondary {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.hero .button-secondary:hover {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.12);
}

.hero-visual {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.025));
  box-shadow:
    0 35px 75px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(118,195,237,.20);
  border-radius: 28px;
  pointer-events: none;
}

.hero-visual > img {
  border-radius: 29px;
  filter: none;
}

.hero-note {
  right: 22px;
  bottom: 24px;
  border-color: rgba(255,255,255,.12);
  background: rgba(0,0,0,.82);
  color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.hero-note small {
  color: rgba(255,255,255,.58);
}

.hero-note-mark {
  width: 34px;
  height: 46px;
  border-radius: 6px;
  object-fit: cover;
}


.intro {
  position: relative;
  background:
    linear-gradient(130deg, #050505, #0b141b 70%, #102838);
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 72%, rgba(25,127,189,.16) 72% 72.2%, transparent 72.2%),
    radial-gradient(circle at 80% 25%, rgba(25,127,189,.18), transparent 26%);
  pointer-events: none;
}

.intro .container {
  position: relative;
}

.quote-card {
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,.045);
}

.quote-card span {
  color: var(--accent-2);
}

.features {
  background: #f7f8f9;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(10,17,23,.12);
  border-radius: 22px;
  background: #fff;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.icon-wrap {
  border-radius: 14px;
  background: rgba(25,127,189,.11);
  color: var(--accent);
}

.events-section {
  background:
    linear-gradient(180deg, #fff, #eef1f3);
}

.event-card {
  border-top: 4px solid var(--accent);
  border-radius: 20px;
  background: #fff;
}

.event-icon {
  border-radius: 13px;
  background: #050505;
  color: var(--accent-2);
}

.event-tag {
  background: rgba(25,127,189,.11);
  color: #0d5f91;
}

.event-date {
  color: var(--accent);
}

.event-highlight {
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 10% 10%, rgba(25,127,189,.22), transparent 35%),
    linear-gradient(135deg, #050505, #101820);
  box-shadow: 0 30px 70px rgba(4,10,15,.20);
}

.event-highlight-art img {
  border: 1px solid rgba(255,255,255,.08);
}

.location-card {
  background:
    linear-gradient(130deg, #050505 0 48%, #0f2737 100%);
  color: #fff;
  box-shadow: 0 30px 80px rgba(3,10,15,.22);
}

.location-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.66);
}

.location-map {
  border: 1px solid rgba(255,255,255,.16);
  background: #f4f7f9;
}

.location-map::after {
  background: radial-gradient(circle at 70% 30%, rgba(25,127,189,.12), transparent 52%);
}

.location-map svg path:not(.pin) {
  stroke: #cbd2d7;
}

.location-map svg path:nth-child(2) {
  stroke: #bddbec;
}

.location-map .pin {
  fill: var(--accent);
  filter: drop-shadow(0 12px 10px rgba(25,127,189,.24));
}

.location-map span {
  border: 1px solid rgba(10,17,23,.10);
  box-shadow: 0 10px 30px rgba(5,12,18,.11);
}

.join-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 15%, rgba(25,127,189,.19), transparent 28%),
    #050505;
}

.join-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(255,255,255,.025) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.025) 50%, rgba(255,255,255,.025) 75%, transparent 75%);
  background-size: 38px 38px;
  pointer-events: none;
}

.join-grid {
  position: relative;
  z-index: 1;
}

.check-list li::before {
  background: rgba(25,127,189,.18);
  color: var(--accent-2);
}

.join-form {
  border: 1px solid rgba(255,255,255,.15);
  border-top: 5px solid var(--accent);
  border-radius: 22px;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(25,127,189,.11);
}

.social-section {
  background: #f7f8f9;
}

.social-links a {
  border-color: rgba(10,17,23,.13);
  border-radius: 12px;
}

.social-links a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.site-footer {
  background: #000;
  color: rgba(255,255,255,.62);
}

.footer-brand img {
  width: 270px;
  max-width: 100%;
  filter: none;
  opacity: 1;
  margin-bottom: 14px;
}

.footer-grid strong,
.footer-bottom a {
  color: #fff;
}

.footer-grid a:hover {
  color: var(--accent-2);
}

.subpage {
  background:
    radial-gradient(circle at 90% 10%, rgba(25,127,189,.12), transparent 27%),
    #eef1f3;
}

.subpage .site-header {
  background: #000;
}

.content-card {
  border-top: 4px solid var(--accent);
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(6,14,20,.08);
}

.placeholder-note {
  border-color: rgba(25,127,189,.35);
  background: rgba(25,127,189,.09);
  color: #0d5f91 !important;
}

@media (max-width: 980px) {
  .main-nav {
    background: #050505;
    border-left: 1px solid rgba(255,255,255,.10);
  }

  .brand img {
    width: 205px;
    max-height: 64px;
  }

  .hero-visual {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 176px;
    max-height: 58px;
  }

  .hero-note {
    right: 12px;
    bottom: 12px;
  }

  .footer-brand img {
    width: 245px;
  }
}


/* Version 3: Illustrationen durch Original-Vereinslogo ersetzt */
.hero-logo-card {
  display: grid;
  place-items: center;
  min-height: 500px;
  padding: 0;
  overflow: hidden;
  background: #000;
}

.hero-logo-card::before {
  display: none;
}

.hero-logo-card > .hero-card-logo {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: contain;
  border-radius: 37px;
  background: #000;
}

.event-highlight-text-only {
  display: block;
  max-width: 940px;
  margin-inline: auto;
  padding: 64px 72px;
}

.event-highlight-text-only .event-highlight-copy {
  max-width: 760px;
}

@media (max-width: 980px) {
  .hero-logo-card,
  .hero-logo-card > .hero-card-logo {
    min-height: 430px;
  }

  .event-highlight-text-only {
    padding: 52px;
  }
}

@media (max-width: 680px) {
  .hero-logo-card,
  .hero-logo-card > .hero-card-logo {
    min-height: 300px;
  }

  .hero-logo-card > .hero-card-logo {
    border-radius: 27px;
  }

  .event-highlight-text-only {
    padding: 34px 25px;
  }
}


/* Version 4: neue Reihenfolge und direkter Formular-Download */
.download-button {
  margin-top: 12px;
}

.footer-bottom {
  justify-content: flex-start;
}

/* Version 5: direktes Kontaktformular mit Serverversand */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.join-form[aria-busy="true"] {
  cursor: wait;
}

.join-form button:disabled {
  cursor: wait;
  opacity: .7;
  transform: none;
}

.form-status {
  display: none;
  margin: 16px 0 0;
  padding: 13px 15px;
  border-radius: 13px;
  font-size: .86rem;
  font-weight: 750;
  line-height: 1.45;
  text-align: left;
  outline: none;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  border: 1px solid rgba(29, 132, 79, .28);
  background: rgba(29, 132, 79, .1);
  color: #12643a;
}

.form-status.is-error {
  border: 1px solid rgba(176, 53, 53, .28);
  background: rgba(176, 53, 53, .09);
  color: #8d2929;
}
