/* === Design Tokens === */
:root {
  --bg: #dde4d7;
  --bg-elevated: #f1ece0;
  --surface: rgba(246, 241, 232, 0.78);
  --surface-soft: rgba(249, 244, 235, 0.58);
  --text: #20281c;
  --text-secondary: #495247;
  --text-muted: #677060;
  --border: rgba(32, 40, 28, 0.14);
  --accent: #365f52;
  --accent-warm: #bb7a56;
  --font-display: "Arial Narrow", "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  --font-body: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --page-width: 74rem;
  --radius: 1rem;
  --radius-lg: 1.35rem;
  --shadow: 0 24px 60px rgba(66, 74, 58, 0.16);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at top left, rgba(54, 95, 82, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at top right, rgba(187, 122, 86, 0.08) 0%, transparent 50%),
    linear-gradient(160deg, #d0d8c8 0%, #dde4d7 40%, #e8e0d0 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.15;
  font-weight: 700;
}

/* === Layout === */
.container {
  width: 100%;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === Navigation === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(221, 228, 215, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
  gap: 1rem;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.site-logo:hover { text-decoration: none; }

.nav-logo-img {
  height: 1.75rem;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.35rem 0.75rem;
  border-radius: 2rem;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover {
  background: var(--border);
  color: var(--text);
  text-decoration: none;
}

/* === Burger Button === */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 1.75rem;
  height: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.32s cubic-bezier(.4,0,.2,1), opacity 0.22s ease, width 0.22s ease;
  transform-origin: center;
}
.nav-burger span:nth-child(1) { width: 100%; }
.nav-burger span:nth-child(2) { width: 70%; }
.nav-burger span:nth-child(3) { width: 100%; }
.nav-burger.is-open span:nth-child(1) { width: 100%; transform: translateY(9px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { width: 100%; transform: translateY(-9px) rotate(-45deg); }

/* === Mobile Menu === */
.mobile-menu {
  display: none;
  position: fixed;
  top: 3.5rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 19;
  background: rgba(241, 236, 224, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 2.5rem 2rem;
  overflow-y: auto;
}
.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  counter-reset: menu-item;
}
.mobile-menu-links li {
  counter-increment: menu-item;
  border-bottom: 1px solid var(--border);
  opacity: 0;
}
.mobile-menu-links li:first-child { border-top: 1px solid var(--border); }
.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  letter-spacing: -0.02em;
  transition: color 0.2s, gap 0.22s;
  text-decoration: none;
}
.mobile-menu-links a::before {
  content: counter(menu-item, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--accent-warm);
  opacity: 0.8;
  flex-shrink: 0;
  align-self: center;
  padding-top: 0.1rem;
}
.mobile-menu-links a::after {
  content: '→';
  margin-left: auto;
  font-size: 1.1rem;
  font-family: sans-serif;
  font-weight: 400;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-0.6rem);
  transition: opacity 0.2s, transform 0.22s;
}
.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  color: var(--accent);
  gap: 1.3rem;
  text-decoration: none;
}
.mobile-menu-links a:hover::after,
.mobile-menu-links a.active::after {
  opacity: 1;
  transform: translateX(0);
}
body.menu-open { overflow: hidden; }

@keyframes menuItemIn {
  from { opacity: 0; transform: translateY(1.25rem); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === Hero === */
.hero {
  padding: 5.5rem 0 5rem;
}

.hero-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.hero-text { max-width: 44rem; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  background: rgba(187, 122, 86, 0.1);
  border: 1px solid rgba(187, 122, 86, 0.22);
  border-radius: 100px;
  padding: 0.28rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #8a5538;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3.5rem, 11vw, 7rem);
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-poster { flex-shrink: 0; }

.poster-frame {
  width: 15rem;
  height: 15rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--bg-elevated), 0 0 0 5px var(--border), 0 28px 60px rgba(32, 40, 28, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transform: rotate(2.5deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.poster-frame:hover { transform: rotate(0deg); }

.poster-frame img { width: 100%; height: 100%; object-fit: contain; }

/* === Split grid (Aktuelles) === */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-text { display: flex; flex-direction: column; }

.split-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 0.75rem;
}

.info-strip {
  background: rgba(187, 122, 86, 0.1);
  border-left: 3px solid var(--accent-warm);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 1rem 0;
}

.split-media { display: flex; align-items: stretch; }

.split-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}

/* === Homepage event cards === */
.section--home-events { padding: 3.5rem 0 2rem; }

.event-home-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.event-home-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(54, 95, 82, 0.32);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(66, 74, 58, 0.07);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s, border-left-color 0.15s;
}
.event-home-card:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 24px rgba(66, 74, 58, 0.13);
  border-left-color: var(--accent);
  text-decoration: none;
}

.event-home-badge {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  border-radius: 0.5rem;
  width: 3rem;
  padding: 0.4rem 0;
  text-align: center;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.event-home-day {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.event-home-month {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.82;
}

.event-home-body { flex: 1; min-width: 0; }

.event-home-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.event-home-strip {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-warm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-home-thumb {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
.event-home-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.event-home-arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 1rem;
  transition: transform 0.15s, color 0.15s;
}
.event-home-card:hover .event-home-arrow { transform: translateX(3px); color: var(--accent); }

.event-home-empty { font-size: 0.9rem; color: var(--text-muted); }
.event-home-empty a { color: var(--accent); }

/* === Über uns section === */
.section--ueber-uns {
  background: rgba(187, 122, 86, 0.04);
  border-top: 1px solid rgba(187, 122, 86, 0.12);
  border-bottom: 1px solid rgba(187, 122, 86, 0.12);
  padding: 5.5rem 0;
}

.split-img--tall {
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 4px var(--bg-elevated),
    0 0 0 5px rgba(187, 122, 86, 0.22),
    0 32px 70px rgba(32, 40, 28, 0.18);
  transform: rotate(-2deg);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.split-img--tall:hover { transform: rotate(0deg); }

.ueber-uns-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ueber-uns-text p {
  margin: 0;
  line-height: 1.7;
}

.ueber-uns-text p:first-child {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.ueber-uns-text p:not(:first-child) {
  font-size: 1rem;
  color: var(--text-secondary);
}

.ueber-uns-text strong {
  color: var(--text);
  font-weight: 700;
}

.ueber-uns-text em {
  font-style: normal;
  color: var(--accent-warm);
  font-weight: 600;
}

/* === Aktuelles dark section === */
.section--aktuell {
  background: #192e23;
  padding: 5rem 0;
  margin-top: 1rem;
}

.section--aktuell .section-kicker { color: rgba(187, 122, 86, 0.85); }

.section--aktuell .section-title { color: #f0ebe0; }

.section--aktuell .info-strip {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--accent-warm);
  color: rgba(240, 235, 224, 0.72);
}

.section--aktuell .split-body { color: rgba(240, 235, 224, 0.62); }

.section--aktuell .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(240, 235, 224, 0.9);
  border-color: rgba(255, 255, 255, 0.15);
}

.section--aktuell .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #f0ebe0;
}

.section--aktuell .split-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(54, 95, 82, 0.3);
}
.btn-primary:hover { color: #fff; box-shadow: 0 6px 24px rgba(54, 95, 82, 0.38); }

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { color: var(--text); }

.btn-warm { background: var(--accent-warm); color: #fff; }
.btn-warm:hover { color: #fff; }

/* === Sections === */
.section { padding: 4rem 0; }

.section-header { margin-bottom: 2.5rem; }

.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-warm);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.9rem, 5vw, 3.3rem);
  letter-spacing: -0.02em;
}

.section-desc {
  margin-top: 0.75rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 52rem;
}

/* === Cards (news) === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 22rem), 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 80px rgba(66, 74, 58, 0.2);
}

.card-image { aspect-ratio: 16/9; overflow: hidden; }
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.card:hover .card-image img { transform: scale(1.03); }

.card-body { padding: 1.5rem; }

.card-meta {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-title { font-size: 1.25rem; margin-bottom: 0.5rem; }

.card-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-link { display: block; color: inherit; }
.card-link:hover { text-decoration: none; }

/* === Post list (Neuigkeiten) === */
.post-list { display: flex; flex-direction: column; gap: 0; }

.post-row {
  border-bottom: 1px solid var(--border);
}
.post-row:first-child { border-top: 1px solid var(--border); }

.post-row-link {
  display: grid;
  grid-template-columns: 22rem 1fr;
  gap: 0;
  color: inherit;
  min-height: 18rem;
  transition: background 0.2s;
}
.post-row-link:hover { background: var(--surface-soft); text-decoration: none; }

.post-row-image {
  overflow: hidden;
  aspect-ratio: unset;
}
.post-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.post-row-link:hover .post-row-image img { transform: scale(1.03); }

.post-row-body {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.post-row-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-warm);
}

.post-row-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.post-row-excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-row-cta {
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
  transition: gap 0.15s;
}

@media (max-width: 768px) {
  .post-row-link { grid-template-columns: 1fr; min-height: unset; }
  .post-row-image { aspect-ratio: 16/9; }
  .post-row-body { padding: 1.5rem; }
}

/* === Event entries (events page) === */
.events-section { padding-bottom: 4rem; }

.event-entry {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(54, 95, 82, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.event-entry:hover {
  box-shadow: 0 28px 60px rgba(66, 74, 58, 0.18);
  transform: translateY(-1px);
}

.event-entry-head {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.event-entry-badge {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  border-radius: 0.6rem;
  padding: 0.65rem 0.5rem;
  text-align: center;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  box-shadow: 0 4px 12px rgba(54, 95, 82, 0.28);
}

.event-entry-day {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}

.event-entry-month {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.82;
}

.event-entry-year {
  font-size: 0.58rem;
  opacity: 0.55;
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 0.2rem;
  margin-top: 0.1rem;
}

.event-entry-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 0.1rem;
}

.event-entry-title {
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.event-entry-strip {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.event-entry-strip-text {
  background: rgba(187, 122, 86, 0.1);
  border: 1px solid rgba(187, 122, 86, 0.22);
  color: var(--accent-warm);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  white-space: nowrap;
}

.event-entry-body {
  padding: 1.75rem 2rem;
}

.event-entry-image {
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 28rem;
  border: 1px solid var(--border);
}
.event-entry-image img {
  width: 100%;
  height: auto;
  display: block;
}

.event-entry-content {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.72;
}
.event-entry-content:empty { display: none; }
.event-entry-content h2, .event-entry-content h3 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 1.4rem 0 0.5rem;
}
.event-entry-content h2 { font-size: 1.15rem; }
.event-entry-content h3 { font-size: 1rem; }
.event-entry-content p  { margin-bottom: 0.9rem; }
.event-entry-content ul, .event-entry-content ol {
  padding-left: 1.4rem;
  margin-bottom: 0.9rem;
}
.event-entry-content li { margin-bottom: 0.25rem; }
.event-entry-content strong { color: var(--text); font-weight: 600; }
.event-entry-content a { color: var(--accent); }

/* Past events */
.event-entry--past {
  border-left-color: var(--border);
  opacity: 0.62;
}
.event-entry--past .event-entry-badge { background: var(--text-muted); box-shadow: none; }
.event-entry--past:hover { transform: none; }

.event-past-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.15rem 0.55rem;
  margin-top: 0.25rem;
  align-self: flex-start;
}

@media (max-width: 640px) {
  .event-entry-head { grid-template-columns: 4rem 1fr; gap: 0.75rem; padding: 1.25rem 1rem 1rem; }
  .event-entry-body { padding: 1rem; }
  .event-entry-day { font-size: 1.5rem; }
  .event-entry-strip-text { white-space: normal; }
  .event-entry-title { font-size: 1.2rem; }
}

/* === Event Cards === */
.event-list { display: flex; flex-direction: column; gap: 1rem; }

.event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.event-date-badge {
  flex-shrink: 0;
  text-align: center;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.5rem 0.75rem;
  min-width: 3.5rem;
}
.event-date-badge .day {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 700;
}
.event-date-badge .month {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.event-info { flex: 1; min-width: 0; }

.event-title { font-size: 1.15rem; margin-bottom: 0.25rem; }
.event-title a { color: var(--text); }
.event-title a:hover { color: var(--accent); text-decoration: none; }

.event-venue {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.event-excerpt {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.event-thumb {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

/* === Empty state === */
.empty-state {
  padding: 3rem 1.5rem;
  text-align: center;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
}
.empty-state p { margin-top: 0.5rem; font-size: 0.9rem; }

/* === See-all link === */
.see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 1.75rem;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, gap 0.15s;
}
.see-all:hover { text-decoration: none; border-bottom-color: var(--accent); gap: 0.75rem; }

/* === Single Post === */
.post-header {
  padding: 4rem 0 2rem;
  text-align: center;
}

.post-title {
  font-size: clamp(2rem, 7vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.post-meta {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.post-meta a { color: var(--accent-warm); }

.post-feature-image {
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
}

.post-content {
  max-width: 46rem;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.post-content h2, .post-content h3, .post-content h4 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.post-content p { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-content li { margin-bottom: 0.25rem; }
.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-style: italic;
}
.post-content figure { margin: 2rem 0; }
.post-content figcaption {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

.post-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.tag-pill {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

/* === Static Pages === */
.page-header { padding: 4rem 0 2.5rem; }

.page-title {
  font-size: clamp(2.2rem, 7vw, 4rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.page-desc { font-size: 1.1rem; color: var(--text-secondary); max-width: 44rem; }

.page-content { max-width: 46rem; padding-bottom: 4rem; }
.page-content h2 { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.5rem; }
.page-content h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; font-size: 1.2rem; }
.page-content p { margin-bottom: 1.25rem; color: var(--text-secondary); }
.page-content ul, .page-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; color: var(--text-secondary); }
.page-content li { margin-bottom: 0.25rem; }
.page-content a { color: var(--accent); }

/* === Tag Archive === */
.tag-header { padding: 4rem 0 2.5rem; }
.tag-title { font-size: clamp(2.5rem, 8vw, 4.5rem); letter-spacing: -0.03em; }
.tag-desc { margin-top: 0.75rem; font-size: 1.05rem; color: var(--text-secondary); max-width: 44rem; }

/* === Membership Page === */

/* === Kontakt page === */
.kontakt-wrap {
  max-width: 40rem;
  margin: 0 auto 5rem;
}

.kontakt-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

/* Toggle switch */
.foerder-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
  cursor: pointer;
  width: fit-content;
}
.foerder-toggle-inp {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.foerder-toggle-track {
  position: relative;
  flex-shrink: 0;
  width: 2.75rem;
  height: 1.5rem;
  background: var(--border);
  border-radius: 100px;
  transition: background 0.22s ease;
}
.foerder-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transition: transform 0.22s cubic-bezier(.4,0,.2,1);
}
.foerder-toggle-inp:checked + .foerder-toggle-track { background: var(--accent); }
.foerder-toggle-inp:checked + .foerder-toggle-track::after { transform: translateX(1.25rem); }
.foerder-toggle-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  user-select: none;
}

/* Betreff field — hidden by default, slides in */
.betreff-group {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.25s ease, opacity 0.2s ease, margin 0.25s ease;
  margin-bottom: 0;
  overflow: hidden;
}
.betreff-group > * { min-height: 0; }
.betreff-group--visible {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-bottom: 1rem;
}

/* Two-column name/email row */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.req { color: var(--accent-warm); }

.kontakt-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.kontakt-hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.kontakt-error {
  font-size: 0.85rem;
  color: #c0392b;
  line-height: 1.5;
  margin: 0;
}

.kontakt-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0 1rem;
  gap: 0.75rem;
}
.kontakt-success svg {
  width: 3rem;
  height: 3rem;
  color: var(--accent);
  stroke-width: 1.5;
}
.kontakt-success h3 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.kontakt-success p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

@media (max-width: 540px) {
  .kontakt-card { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

.form-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-section h2 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.form-section > p:not(.section-kicker) { color: var(--text-secondary); margin-bottom: 1.5rem; }

/* === Mitglied werden === */
.foerder-section { padding: 3rem 0 2rem; }

.foerder-cta {
  text-align: center;
  padding: 2.75rem 0 0.5rem;
}

.foerder-note-display {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 28rem;
  margin: 0 auto 2rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.foerder-note-display::before,
.foerder-note-display::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2px;
  background: var(--accent-warm);
  margin: 0 auto;
  opacity: 0.6;
}
.foerder-note-display::before { margin-bottom: 1rem; }
.foerder-note-display::after  { margin-top: 1rem; }

.btn-lg {
  padding: 1rem 2.75rem;
  font-size: 1.05rem;
}

.pdf-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem 2.5rem;
  margin: 0 auto;
}

.pdf-card-icon {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--accent);
}

.pdf-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.pdf-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pdf-card-steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  counter-reset: steps;
  text-align: left;
  width: fit-content;
}

.pdf-card-steps li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  counter-increment: steps;
}

.pdf-card-steps li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.68rem;
  font-family: var(--font-mono);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-card-steps a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pdf-card-steps li:last-child a {
  display: block;
  margin-top: 0.15rem;
}

@media (max-width: 480px) {
  .pdf-card { padding: 1.5rem; }
}

.foerder-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2.25rem 2.5rem;
  margin-bottom: 1.5rem;
}

.foerder-card-intro {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.foerder-card-intro .section-kicker {
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.foerder-lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
}

.foerder-card-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mem-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.mem-icon {
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.1rem;
  color: var(--accent);
}

.mem-feature span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .foerder-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
}

.form-grid { display: grid; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }

.form-label {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.form-input, .form-select, .form-textarea {
  padding: 0.65rem 0.9rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.15s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-textarea { min-height: 8rem; resize: vertical; }

/* === Footer === */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; max-width: 22rem; }

.footer-heading {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a { font-size: 0.875rem; color: var(--text-secondary); }
.footer-links a:hover { color: var(--accent); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }

/* === 404 === */
.error-page { padding: 8rem 0; text-align: center; }
.error-page h1 { font-size: 6rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.error-page p { color: var(--text-secondary); margin-bottom: 2rem; }

/* === Ghost card styles === */
.kg-image { border-radius: var(--radius); max-width: 100%; }
.kg-width-wide { margin-left: -4rem; margin-right: -4rem; }
.kg-width-full { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }
.kg-gallery-container { display: flex; flex-direction: column; gap: 0.5rem; }
.kg-gallery-row { display: flex; gap: 0.5rem; }
.kg-gallery-image { flex: 1; overflow: hidden; border-radius: 0.5rem; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; }
.kg-embed-card { margin: 1.5rem 0; }
.kg-callout-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

/* === Past event card === */
.event-card--past {
  opacity: 0.6;
  filter: grayscale(30%);
}
.event-card--past .event-date-badge {
  background: var(--text-muted);
}

/* === Gallery === */
.gallery-page { padding: 3.5rem 1.5rem 5rem; }

.gallery-header { margin-bottom: 1.25rem; }

.gallery-header-meta {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.gallery-album-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.gallery-image-counter {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Main stage */
.gallery-stage {
  position: relative;
  background: #0d1a10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.gallery-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.35));
  pointer-events: none;
  z-index: 1;
}

.gallery-stage-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
  transition: opacity 0.18s;
  position: relative;
  z-index: 0;
}

.gallery-stage-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.2rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, background 0.15s;
  z-index: 2;
}
.gallery-stage:hover .gallery-stage-nav { opacity: 1; }
.gallery-stage-nav:hover { background: rgba(0, 0, 0, 0.72); }
.gallery-stage-nav--prev { left: 1rem; }
.gallery-stage-nav--next { right: 1rem; }

/* Thumbnail strip */
.gallery-thumbs-row {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  margin-bottom: 1.5rem;
}

.gallery-thumb-btn {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.4rem;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: var(--surface);
  transition: border-color 0.15s;
  scroll-snap-align: start;
}
.gallery-thumb-btn:hover { border-color: rgba(187, 122, 86, 0.4); }
.gallery-thumb-btn--active { border-color: var(--accent-warm); }
.gallery-thumb-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Album selector */
/* Album cards grid */
.gallery-albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.gallery-album-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow);
}
.gallery-album-card:hover {
  border-color: rgba(187, 122, 86, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 28px 60px rgba(66, 74, 58, 0.18);
}
.gallery-album-card--active {
  border-color: var(--accent-warm);
  box-shadow: 0 0 0 4px rgba(187, 122, 86, 0.14), 0 24px 60px rgba(66, 74, 58, 0.18);
  transform: translateY(-2px);
}

.gallery-album-card-img { aspect-ratio: 3/2; overflow: hidden; }
.gallery-album-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-album-card:hover .gallery-album-card-img img,
.gallery-album-card--active .gallery-album-card-img img { transform: scale(1.04); }

.gallery-album-card-body {
  padding: 1rem 1.15rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.gallery-album-card-date {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-warm);
}

.gallery-album-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.25;
  margin-top: 0.1rem;
}

.gallery-album-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 0.15rem;
}

.gallery-album-card-count {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Stage section */
.gallery-stage-section { margin-top: 0; }

.gallery-stage-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.gallery-stage-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.gallery-stage-counter {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Lightbox */
.lb-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s;
  pointer-events: none;
}
.lb-overlay--open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.lb-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  pointer-events: none;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 1;
}
.lb-nav:hover { background: rgba(255, 255, 255, 0.22); }
.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }

.lb-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s;
}
.lb-close:hover { color: #fff; }

.lb-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

@media (max-width: 640px) {
  .gallery-grid-stage { grid-template-columns: repeat(2, 1fr); }
  .gallery-album-btn { width: 7rem; }
  .lb-prev { left: 0.4rem; }
  .lb-next { right: 0.4rem; }
}

/* === FAQ === */
.faq-list { padding-bottom: 4rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  list-style: none;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 1.5rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 52rem;
}
.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* === Membership symbols === */
.membership-symbol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--accent);
  color: #fff;
  border-radius: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* === Über Uns === */
.mitglieder-section {
  padding: 3rem 0 4rem;
}

.mitglieder-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.mitglieder-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
}

.mitglieder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 2rem 1.5rem;
}

.mitglied-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.mitglied-img {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface);
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.mitglied-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mitglied-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mitglied-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0;
}

.mitglied-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.mitglieder-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 3rem 0;
  font-style: italic;
}

/* === Responsive === */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .event-card { flex-direction: column; gap: 1rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.75rem);
    transition: visibility 0s 0.3s, opacity 0.3s ease, transform 0.3s ease;
  }
  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: visibility 0s, opacity 0.3s ease, transform 0.3s ease;
  }
  .mobile-menu.is-open .mobile-menu-links li { animation: menuItemIn 0.4s ease forwards; }
  .mobile-menu.is-open .mobile-menu-links li:nth-child(1) { animation-delay: 0.07s; }
  .mobile-menu.is-open .mobile-menu-links li:nth-child(2) { animation-delay: 0.13s; }
  .mobile-menu.is-open .mobile-menu-links li:nth-child(3) { animation-delay: 0.19s; }
  .mobile-menu.is-open .mobile-menu-links li:nth-child(4) { animation-delay: 0.25s; }
  .mobile-menu.is-open .mobile-menu-links li:nth-child(5) { animation-delay: 0.31s; }
  .mobile-menu.is-open .mobile-menu-links li:nth-child(6) { animation-delay: 0.37s; }
  .mobile-menu.is-open .mobile-menu-links li:nth-child(7) { animation-delay: 0.43s; }
  .mobile-menu.is-open .mobile-menu-links li:nth-child(8) { animation-delay: 0.49s; }
  .gallery-page { padding: 2rem 1.5rem 3rem; }
  .gallery-albums-grid { gap: 0.875rem; margin-bottom: 1.75rem; }
  .gallery-stage-section { margin-top: 1.5rem; }
  .gallery-thumbs-row { gap: 0.4rem; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-poster { display: none; }
  .split-grid { grid-template-columns: 1fr; gap: 2rem; }
  .split-media { order: -1; }
  .section--aktuell { padding: 3.5rem 0; }
  .section--ueber-uns { padding: 3.5rem 0; }
  .split-img--tall { aspect-ratio: 4/3; transform: none; }
  .section { padding: 2.5rem 0; }
  .kg-width-wide { margin-left: 0; margin-right: 0; }
}

::selection { background: rgba(187, 122, 86, 0.22); }
