/* ==========================================================================
   Karnevalsfreunde Bechen von 1952 e.V. – Stylesheet
   Rot-Weiß, klar, modern. Alle Größen fluid über clamp().
   ========================================================================== */

:root {
  --red: #E30613;
  --red-dark: #b5040f;
  --red-deep: #8f0410;
  --red-light: #fdecea;
  --red-soft: #fff5f5;

  --grey-50: #f8f9fa;
  --grey-100: #f2f2f7;
  --grey-200: #e5e5ea;
  --grey-300: #d1d1d6;
  --grey-400: #aeaeb2;
  --grey-500: #8e8e93;
  --grey-600: #636366;
  --grey-700: #48484a;
  --grey-800: #3a3a3c;
  --black: #1c1c1e;

  --shadow: 0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 18px 50px rgba(0,0,0,.14);

  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --container: 1180px;
  --pad: clamp(16px, 4vw, 32px);
  --section: clamp(48px, 8vw, 104px);

  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--grey-100);
  color: var(--black);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 16px !important; }
ul { list-style: none; }
strong { font-weight: 700; }
:focus-visible { outline: 3px solid rgba(227,6,19,.35); outline-offset: 2px; border-radius: 6px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 var(--pad); }

/* ── Typography ────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; color: var(--black); }
h1 { font-size: clamp(34px, 6vw, 68px); }
h2 { font-size: clamp(26px, 3.6vw, 42px); }
h3 { font-size: clamp(18px, 1.6vw, 22px); }
h4 { font-size: clamp(16px, 1.2vw, 18px); font-weight: 700; }
p { color: var(--grey-700); }
.lead { font-size: clamp(17px, 1.4vw, 21px); color: var(--grey-600); line-height: 1.55; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: clamp(11px, .85vw, 13px); font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: var(--red); }
.text-muted { color: var(--grey-500); }
.text-center { text-align: center; }
.small { font-size: .9em; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 clamp(18px, 2vw, 26px);
  min-height: clamp(44px, 3.4vw, 52px);
  border-radius: 12px;
  font-weight: 700; font-size: clamp(14px, 1vw, 16px);
  white-space: nowrap; text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, opacity .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); opacity: .85; }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(227,6,19,.28); }
.btn-primary:hover { background: var(--red-dark); }
.btn-secondary { background: var(--grey-200); color: var(--black); }
.btn-secondary:hover { background: var(--grey-300); }
.btn-ghost { background: var(--grey-100); color: var(--red); }
.btn-ghost:hover { background: #ebebf0; }
.btn-white { background: #fff; color: var(--red); box-shadow: var(--shadow-md); }
.btn-white:hover { background: #fff; }
.btn-outline-white { background: rgba(255,255,255,.14); color: #fff; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn-outline-white:hover { background: rgba(255,255,255,.24); }
.btn-sm { min-height: 38px; padding: 0 16px; font-size: 14px; border-radius: 10px; }
.btn-block { width: 100%; }
.btn .icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Badges ────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px; border-radius: 999px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap;
}
.badge-red { background: var(--red-light); color: var(--red-dark); }
.badge-grey { background: var(--grey-200); color: var(--grey-700); }
.badge-white { background: rgba(255,255,255,.18); color: #fff; backdrop-filter: blur(6px); }
.badge-solid { background: var(--red); color: #fff; }

/* ── Header ────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: clamp(64px, 6vw, 80px);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none !important; }
.brand img { height: clamp(38px, 3.6vw, 50px); width: auto; }
.nav { display: flex; align-items: center; gap: clamp(4px, .8vw, 10px); }
.nav a {
  color: var(--grey-700); font-weight: 600; font-size: clamp(14px, .95vw, 15.5px);
  padding: 9px 12px; border-radius: 10px; text-decoration: none !important;
  transition: background .15s, color .15s;
}
.nav a:hover { background: var(--grey-100); color: var(--black); }
.nav a.active { color: var(--red); background: var(--red-light); }
.nav .btn { margin-left: 8px; }
.nav a.btn-primary { color: #fff; background: var(--red); }
.nav a.btn-primary:hover { background: var(--red-dark); color: #fff; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--grey-100); align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--black); border-radius: 2px; position: relative; transition: transform .2s, opacity .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: var(--pad); right: var(--pad); top: calc(100% + 8px);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 10px;
  }
  .nav-open .nav { display: flex; }
  .nav a { padding: 13px 14px; font-size: 16px; }
  .nav .btn { margin: 6px 0 0; }
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative; color: #fff; overflow: hidden;
  min-height: clamp(540px, 86vh, 900px);
  display: flex; align-items: flex-end;
  background: var(--red-deep);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 78%; }
@media (max-width: 720px) { .hero-bg { object-position: 62% 20%; } }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,0,2,.15) 0%, rgba(20,0,2,.35) 45%, rgba(20,0,2,.86) 100%),
    linear-gradient(90deg, rgba(120,0,8,.45) 0%, rgba(120,0,8,0) 60%);
}
.hero-content { position: relative; z-index: 1; padding: clamp(40px, 8vw, 96px) 0 clamp(36px, 6vw, 72px); max-width: 600px; }
.hero h1 { color: #fff; margin: 14px 0 16px; text-shadow: 0 2px 20px rgba(0,0,0,.25); }
.hero h1 em { font-style: normal; color: #ffd8dc; }
.hero p { color: rgba(255,255,255,.88); font-size: clamp(17px, 1.5vw, 21px); max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; }
.hero-mascot {
  position: absolute; right: clamp(12px, 5vw, 80px); bottom: clamp(20px, 5vw, 60px); z-index: 1;
  width: clamp(90px, 12vw, 170px); filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
  animation: bob 4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-2deg);} 50% { transform: translateY(-10px) rotate(2deg);} }
@media (max-width: 720px) { .hero-mascot { width: 74px; right: 14px; bottom: auto; top: 22px; } }

/* Page hero (Unterseiten) */
.page-hero {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 60%, #ff3b47 100%);
  color: #fff; position: relative; overflow: hidden;
  padding: clamp(44px, 7vw, 88px) 0 clamp(40px, 6vw, 72px);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.18), transparent 40%), radial-gradient(circle at 10% 90%, rgba(0,0,0,.18), transparent 45%);
}
.page-hero .container { position: relative; }
.page-hero .eyebrow { color: #fff; opacity: .9; }
.page-hero .eyebrow::before { background: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 56px); }
.page-hero p { color: rgba(255,255,255,.9); max-width: 680px; margin-top: 12px; font-size: clamp(16px, 1.3vw, 19px); }
.page-hero .mascot { position: absolute; right: 0; bottom: -10px; width: clamp(80px, 11vw, 150px); opacity: .95; filter: drop-shadow(0 8px 18px rgba(0,0,0,.3)); }
@media (max-width: 720px) { .page-hero .mascot { display: none; } }

/* ── Sections ──────────────────────────────────────────────────────────── */
.section { padding: var(--section) 0; }
.section-alt { background: #fff; }
.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head p { margin-top: 10px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-head.split > div { max-width: 720px; }

/* ── Grids ─────────────────────────────────────────────────────────────── */
.grid { display: grid; gap: clamp(14px, 2vw, 24px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.grid > * { min-width: 0; }

/* ── Cards ─────────────────────────────────────────────────────────────── */
.card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
a.card { color: inherit; text-decoration: none !important; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--grey-100); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-img.wide { aspect-ratio: 16 / 9; }
.card-body { padding: clamp(16px, 2vw, 24px); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { margin-top: 2px; }
.card-body > .badge, .card-body > .avatar, .card-body > .icon-wrap { align-self: flex-start; }
.card-plain > .badge, .card-plain > .avatar, .card-plain > .icon-wrap { align-self: flex-start; }
.card-body p { font-size: .95em; }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; color: var(--grey-500); }
.card-footer { margin-top: auto; padding-top: 10px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card-link { font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }
.card-link::after { content: "→"; transition: transform .2s; }
.card:hover .card-link::after { transform: translateX(3px); }
.card-plain { padding: clamp(18px, 2.4vw, 28px); }

/* Feature tiles (Startseite) */
.tile {
  position: relative; border-radius: var(--radius-xl); overflow: hidden; min-height: 300px;
  display: flex; align-items: flex-end; color: #fff; text-decoration: none !important;
  box-shadow: var(--shadow); background: var(--black);
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tile:hover img { transform: scale(1.05); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.78) 100%); }
.tile-body { position: relative; z-index: 1; padding: clamp(18px, 2.4vw, 28px); }
.tile-body h3 { color: #fff; font-size: clamp(20px, 1.9vw, 26px); }
.tile-body p { color: rgba(255,255,255,.85); margin-top: 4px; font-size: .95em; }
.tile-body .badge { margin-bottom: 10px; }
.tile-tall { min-height: 420px; }
@media (max-width: 640px) { .tile, .tile-tall { min-height: 260px; } }

/* ── Stats ─────────────────────────────────────────────────────────────── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
  overflow: hidden; position: relative; z-index: 2;
  margin-top: clamp(-40px, -4vw, -60px);
}
.stat { padding: clamp(18px, 2.4vw, 30px) clamp(12px, 2vw, 24px); text-align: center; border-right: 1px solid var(--grey-100); }
.stat:last-child { border-right: none; }
.stat-value { font-size: clamp(26px, 3vw, 40px); font-weight: 900; color: var(--red); letter-spacing: -0.03em; line-height: 1; }
.stat-label { font-size: clamp(11px, .9vw, 13px); color: var(--grey-500); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; margin-top: 8px; }
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); margin-top: 0; border-radius: var(--radius-lg); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--grey-100); }
}

/* ── Events ────────────────────────────────────────────────────────────── */
.event-list { display: flex; flex-direction: column; gap: 12px; }
.event {
  display: grid; grid-template-columns: 92px 1fr auto; gap: clamp(14px, 2vw, 24px); align-items: center;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: clamp(14px, 1.6vw, 20px);
  transition: transform .2s, box-shadow .2s;
}
.event:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.event-date {
  background: var(--red); color: #fff; border-radius: 14px; text-align: center;
  padding: 10px 6px; line-height: 1; align-self: stretch; display: flex; flex-direction: column; justify-content: center; gap: 4px;
}
.event-date .day { font-size: 30px; font-weight: 900; letter-spacing: -0.03em; }
.event-date .month { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; opacity: .9; }
.event-date .year { font-size: 11px; opacity: .75; font-weight: 600; }
.event-date.past { background: var(--grey-200); color: var(--grey-700); }
.event-date.muted { background: var(--grey-800); }
.event-title { font-size: clamp(17px, 1.3vw, 20px); font-weight: 800; letter-spacing: -0.01em; }
.event-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 6px; font-size: 13.5px; color: var(--grey-600); }
.event-meta span { display: inline-flex; align-items: center; gap: 5px; }
.event-meta svg { width: 15px; height: 15px; color: var(--grey-400); }
.event-lineup { margin-top: 8px; font-size: 14px; color: var(--grey-600); }
.event-lineup strong { color: var(--grey-800); font-weight: 600; }
.event-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.event-price { font-size: 20px; font-weight: 900; color: var(--black); letter-spacing: -0.02em; }
.event-price small { font-size: 12px; color: var(--grey-500); font-weight: 600; margin-left: 3px; }
@media (max-width: 720px) {
  .event { grid-template-columns: 72px 1fr; }
  .event-date .day { font-size: 24px; }
  .event-cta { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; padding-top: 6px; border-top: 1px solid var(--grey-100); }
}

/* Info box */
.info-box {
  background: var(--red-soft); border-radius: var(--radius-lg); padding: clamp(18px, 2.4vw, 28px);
  display: flex; gap: 16px; align-items: flex-start;
}
.info-box .icon-wrap { flex-shrink: 0; }
.info-box h4 { margin-bottom: 4px; }
.icon-wrap {
  width: 48px; height: 48px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); color: #fff; box-shadow: 0 6px 16px rgba(227,6,19,.25);
}
.icon-wrap svg { width: 24px; height: 24px; }
.icon-wrap.soft { background: var(--red-light); color: var(--red); box-shadow: none; }

/* ── Persons / Vorstand ────────────────────────────────────────────────── */
.person {
  display: flex; gap: 14px; align-items: center;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 16px 18px;
  transition: transform .2s, box-shadow .2s;
}
.person:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.avatar {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--red) 0%, #ff4d58 100%); color: #fff;
  font-weight: 800; font-size: 17px; letter-spacing: .02em;
}
.avatar.grey { background: linear-gradient(135deg, #8e8e93, #aeaeb2); }
.person-name { font-weight: 800; font-size: 16px; line-height: 1.2; }
.person-role { font-size: 13.5px; color: var(--grey-600); margin-top: 3px; }
.person-mail { font-size: 12px; margin-top: 4px; overflow-wrap: anywhere; }
.person-mail a { color: var(--red); font-weight: 600; }

/* ── Chips list ────────────────────────────────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { background: var(--grey-100); color: var(--grey-800); border-radius: 999px; padding: 7px 14px; font-size: 14px; font-weight: 600; }
.chip.red { background: var(--red-light); color: var(--red-dark); }

/* ── Split (Bild + Text) ───────────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 72px); align-items: center; }
.split.reverse > :first-child { order: 2; }
.split-img { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.split-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split-img.portrait img { aspect-ratio: 3 / 4; object-position: top; }
.split-img .float-badge {
  position: absolute; left: 18px; bottom: 18px; background: #fff; color: var(--black); border-radius: 14px;
  padding: 10px 14px; box-shadow: var(--shadow-md); font-weight: 800; font-size: 14px; display: flex; align-items: center; gap: 10px;
}
.split-img .float-badge .icon-wrap { width: 36px; height: 36px; border-radius: 10px; }
.split-img .float-badge .icon-wrap svg { width: 18px; height: 18px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse > :first-child { order: 0; } }

.quote {
  background: var(--red-light); border-radius: var(--radius-lg); padding: clamp(18px, 2.4vw, 26px);
  font-size: clamp(17px, 1.4vw, 20px); font-weight: 700; color: var(--red-dark); line-height: 1.45; letter-spacing: -0.01em;
  position: relative;
}
.quote::before { content: "”"; position: absolute; right: 16px; top: 2px; font-size: 72px; color: rgba(227,6,19,.16); font-family: Georgia, serif; line-height: 1; }
.quote span { display: block; font-size: 13px; font-weight: 700; color: var(--red); margin-top: 10px; text-transform: uppercase; letter-spacing: .08em; }

/* ── Timeline ──────────────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 3px; border-radius: 2px; background: linear-gradient(180deg, var(--red), rgba(227,6,19,.15)); }
.tl-item { position: relative; margin-bottom: clamp(22px, 3vw, 36px); }
.tl-item::before { content: ""; position: absolute; left: -31px; top: 8px; width: 15px; height: 15px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px #fff, 0 0 0 7px rgba(227,6,19,.2); }
.tl-year { font-size: 13px; font-weight: 900; color: var(--red); letter-spacing: .12em; text-transform: uppercase; }
.tl-item h3 { margin: 4px 0 6px; }
.tl-item p { font-size: .97em; }
.tl-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(16px, 2vw, 24px); }

/* ── CTA band ──────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 55%, #ff3b47 100%);
  color: #fff; border-radius: var(--radius-xl); padding: clamp(28px, 5vw, 56px);
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-band::before { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: rgba(255,255,255,.1); right: -120px; top: -160px; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(24px, 3vw, 36px); }
.cta-band p { color: rgba(255,255,255,.88); margin-top: 8px; max-width: 560px; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .mascot { width: clamp(80px, 9vw, 130px); filter: drop-shadow(0 10px 20px rgba(0,0,0,.3)); }

/* ── Contact ───────────────────────────────────────────────────────────── */
.contact-card { display: flex; gap: 16px; align-items: flex-start; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(18px, 2vw, 24px); }
.contact-card h4 { margin-bottom: 4px; }
.contact-card p { font-size: 14px; }
.contact-card a { font-weight: 700; word-break: break-word; }

.form-group { margin-bottom: clamp(12px, 1.6vw, 18px); }
.form-label { display: block; font-weight: 700; font-size: 12px; color: var(--grey-600); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.form-control {
  width: 100%; padding: clamp(10px, 1.2vw, 13px) clamp(12px, 1.4vw, 16px);
  border: 1.5px solid #e0e0e5; border-radius: 12px; background: #fff; outline: none;
  color: var(--black); line-height: 1.35; min-height: clamp(46px, 3.4vw, 52px);
  transition: border-color .15s, box-shadow .15s;
}
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(227,6,19,.1); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238e8e93' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(10px, 1.6vw, 18px); }
.form-row-2 > * { min-width: 0; }
@media (max-width: 520px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-note { font-size: 13px; color: var(--grey-500); }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--grey-700); }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--red); flex-shrink: 0; }

/* ── Gallery strip ─────────────────────────────────────────────────────── */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery figure { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow); position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 14px 12px; color: #fff; font-size: 13px; font-weight: 600; background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.7)); }
.gallery figure.span-2 { grid-column: span 2; }
@media (max-width: 720px) { .gallery { grid-template-columns: repeat(2, 1fr); } .gallery figure.span-2 { grid-column: span 2; } }

/* ── Article (Neuigkeiten) ─────────────────────────────────────────────── */
.article {
  background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow);
  display: grid; grid-template-columns: 340px 1fr;
}
.article-img { background: var(--grey-100); aspect-ratio: 4 / 3; align-self: start; position: sticky; top: 96px; border-radius: var(--radius-xl) 0 0 var(--radius-xl); overflow: hidden; }
.article-img img { width: 100%; height: 100%; object-fit: cover; }
.article-body { padding: clamp(20px, 3vw, 36px); }
.article-body h2 { font-size: clamp(22px, 2.2vw, 30px); margin: 8px 0 12px; }
.article-body p { margin-bottom: 12px; }
.article-body p:last-child { margin-bottom: 0; }
.article-body ol { padding-left: 22px; color: var(--grey-700); display: grid; gap: 8px; }
.article-body ol li::marker { color: var(--red); font-weight: 800; }
.article + .article { margin-top: clamp(18px, 2.4vw, 28px); }
.article.no-img { grid-template-columns: 1fr; }
@media (max-width: 860px) { .article { grid-template-columns: 1fr; } .article-img { aspect-ratio: 16/9; position: static; border-radius: var(--radius-xl) var(--radius-xl) 0 0; } }
.date { font-size: 13px; font-weight: 700; color: var(--grey-500); text-transform: uppercase; letter-spacing: .08em; }

/* ── Prose ─────────────────────────────────────────────────────────────── */
.prose p { margin-bottom: 14px; }
.prose h2, .prose h3 { margin: 28px 0 10px; }
.prose ul { padding-left: 20px; list-style: disc; color: var(--grey-700); }
.prose li { margin-bottom: 6px; }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; }
.prose td, .prose th { padding: 10px 12px; border-bottom: 1px solid var(--grey-100); text-align: left; vertical-align: top; }
.prose th { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--grey-500); }
.memorial { columns: 3; column-gap: 24px; font-size: 15px; color: var(--grey-700); }
.memorial li { break-inside: avoid; padding: 4px 0; }
@media (max-width: 720px) { .memorial { columns: 2; } }
@media (max-width: 420px) { .memorial { columns: 1; } }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer { background: var(--black); color: rgba(255,255,255,.75); padding: clamp(44px, 6vw, 72px) 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(24px, 4vw, 48px); }
.footer-brand img { height: 46px; width: auto; background: #fff; padding: 6px 10px; border-radius: 10px; }
.footer-brand p { color: rgba(255,255,255,.65); font-size: 14px; margin-top: 16px; max-width: 360px; }
.site-footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.site-footer ul li { margin-bottom: 8px; font-size: 14.5px; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.65); }
.footer-credit { text-align: right; }
.footer-credit a { color: #fff; font-weight: 700; }
@media (max-width: 720px) { .footer-credit { text-align: left; } }
.alaaf { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: #fff; letter-spacing: .04em; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

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

/* ── Utilities ─────────────────────────────────────────────────────────── */
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 36px; } .mt-5 { margin-top: 48px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.flex { display: flex; } .items-center { align-items: center; } .gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .wrap { flex-wrap: wrap; }
.divider { height: 1px; background: var(--grey-200); margin: clamp(24px, 3vw, 40px) 0; }
