/* Mobile Safeguards: kein horizontales Scrollen + Anker-Offset unter Sticky-Header */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100%; width: 100%; }
* { max-width: 100%; }
img, svg { height: auto; }
section[id], div[id] { scroll-margin-top: 80px; }
.section--zweck, .section--vorstand, .section--ueber, .hero { overflow-x: hidden; }

/*
Theme Name: House of Generation
Theme URI: https://www.houseofgeneration.ch
Description: Offizielles WordPress-Theme – Editorial Design mit Animationen
Version: 5.9
Author: House of Generation
Text Domain: hog
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --ink:    #1A1814;
  --ink2:   #2C2820;
  --gold:   #C9A84C;
  --goldl:  #E2C97E;
  --goldf:  #F5E6B8;
  --cream:  #F0E6D0;
  --cream2: #C8B89A;
  --cream3: #E2D9C8;
  --white:  #FFFFFF;
  --muted:  #7A7060;
  --border: rgba(26,24,20,0.1);
  --bdg:    rgba(201,168,76,0.3);
  --navy:   #1A1208;
  --navy2:  #221A0A;
  --navy3:  #2C2210;
  --hero-bg: #1A1208;
  --hero-border: rgba(201,168,76,0.15);
  --hero-muted: rgba(240,230,208,0.38);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 62px;
  background: rgba(26,18,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--hero-border);
  animation: navSlide 0.8s ease forwards;
}
@keyframes navSlide { from { opacity:0; transform: translateY(-20px); } to { opacity:1; transform: translateY(0); } }

.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img-wrap {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.5);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: rgba(201,168,76,0.06); flex-shrink: 0;
}
.logo-img-wrap img { width: 88%; height: 88%; object-fit: contain; }
.logo-img-fallback {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; font-weight: 600; color: var(--gold);
}
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-text-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--cream); line-height: 1.1;
}
.logo-text-main em { font-style: italic; color: var(--gold); }
.logo-text-sub {
  font-size: 8px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--hero-muted);
}

.main-nav ul { display: flex; gap: 1.8rem; list-style: none; }
.main-nav a {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--hero-muted); text-decoration: none; transition: color 0.3s;
}
.main-nav a:hover { color: var(--cream); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.user-badge { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--gold); }
.user-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--goldl);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50%      { box-shadow: 0 0 0 5px rgba(201,168,76,0); }
}
.btn-login-nav {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  background: transparent; color: var(--gold);
  border: 0.5px solid var(--gold); padding: 8px 22px;
  cursor: pointer; font-family: 'Inter', sans-serif; font-weight: 400;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.btn-login-nav::before { content: '→'; font-size: 12px; }
.btn-login-nav:hover { background: var(--gold); color: var(--hero-bg); }
.btn-logout-nav {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  background: none; color: var(--hero-muted);
  border: 0.5px solid var(--hero-border); padding: 7px 14px;
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: all 0.2s; text-decoration: none;
}
.btn-logout-nav:hover { border-color: var(--gold); color: var(--gold); }

/* ── HERO ─────────────────────────────────────── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  background: var(--hero-bg);
  display: flex; flex-direction: column; justify-content: space-between;
}

.hero-glow {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
  left: -150px; top: 30%; transform: translateY(-50%);
  pointer-events: none;
  animation: glowFloat 12s ease-in-out infinite;
}
@keyframes glowFloat {
  0%,100% { opacity: 0.8; transform: translateY(-50%) scale(1); }
  50%      { opacity: 1; transform: translateY(-52%) scale(1.05); }
}

.hero-watermark {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 520px; height: 520px; opacity: 0.05; pointer-events: none;
  animation: watermarkFloat 15s ease-in-out infinite;
}
.hero-watermark img { width: 100%; height: 100%; object-fit: contain; filter: sepia(1) saturate(2) hue-rotate(10deg); }
@keyframes watermarkFloat {
  0%,100% { transform: translateY(-50%) rotate(0deg); }
  50%      { transform: translateY(-52%) rotate(1deg); }
}

/* Top info bar */
.hero-topbar {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 7.5rem 3rem 0; position: relative; z-index: 2;
  opacity: 0; animation: fadeUp 0.9s ease forwards 0.3s;
}
.hero-eyebrow { display: flex; flex-direction: column; gap: 8px; }
.hero-eyebrow-line {
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--hero-muted);
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 300; font-style: italic;
  color: var(--cream2);
}
.eyebrow-dash { color: var(--gold); margin-right: 6px; font-size: 14px; }
.hero-coords { text-align: right; }
.coord-line { font-size: 9px; letter-spacing: 0.14em; color: var(--hero-muted); line-height: 1.8; }
.coord-city { font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; font-style: italic; color: var(--cream2); margin-top: 2px; }

/* Giant title */
.hero-title-wrap {
  padding: 0 3rem; position: relative; z-index: 2; margin-top: 1.5rem;
  opacity: 0; animation: fadeUp 1s ease forwards 0.5s;
}
.title-line-1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 11vw, 10rem);
  font-weight: 400; line-height: 0.95;
  color: var(--cream); letter-spacing: -0.02em; display: block;
  overflow-wrap: break-word; word-break: break-word;
}
.title-of { font-style: italic; color: rgba(240,230,208,0.45); }
.title-line-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 11vw, 10rem);
  font-weight: 400; line-height: 0.95;
  color: var(--gold); font-style: italic;
  letter-spacing: -0.02em; display: block;
  overflow-wrap: break-word; word-break: break-word;
}

/* Subtitle */
.hero-subtitle {
  padding: 2rem 3rem 0; position: relative; z-index: 2;
  opacity: 0; animation: fadeUp 0.9s ease forwards 0.8s;
}
.hero-subtitle p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 300; font-style: italic;
  color: var(--cream2); line-height: 1.6; max-width: 580px;
}
.hero-subtitle em { color: var(--goldl); font-style: italic; }

/* Stats bottom */
.hero-stats {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 2.5rem 3rem; position: relative; z-index: 2;
  border-top: 0.5px solid var(--hero-border); margin-top: 3rem;
  opacity: 0; animation: fadeUp 0.9s ease forwards 1s;
}
.hero-stats-group { display: flex; gap: 3.5rem; align-items: flex-end; }
.hero-stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300; color: var(--goldl);
  line-height: 1; display: block; letter-spacing: -0.01em;
  transition: transform 0.3s;
}
.hero-stat-item:hover .hero-stat-n { transform: translateY(-4px); }
.hero-stat-l {
  font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(240,230,208,0.5); margin-top: 5px; display: block;
}
.scroll-indicator {
  display: flex; align-items: center; gap: 14px;
  font-size: 8.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--hero-muted);
}
.scroll-line {
  width: 40px; height: 0.5px; background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; width: 30px; }
  50%      { opacity: 1; width: 45px; }
}

/* Stats Bar entfernt – Stats sind jetzt im Hero */

/* ── SECTIONS ──────────────────────────────────── */
.section { padding: 5.5rem 3.5rem; }
.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }

.sec-eyebrow {
  font-size: 8.5px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
  display: flex; align-items: center; gap: 8px;
}
.sec-eyebrow::before { content: ''; width: 16px; height: 0.5px; background: var(--gold); }
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.1; margin-bottom: 0.5rem;
}
h2 em { font-style: italic; color: var(--gold); }
h2 { font-family: 'Cormorant Garamond', serif; }
.sec-intro { font-size: 12px; color: var(--muted); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.9; }

/* ── VORSTAND ──────────────────────────────────── */
.vs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.vs-card {
  background: var(--white); overflow: hidden;
  border-top: 2px solid var(--cream3);
  box-shadow: 0 2px 16px rgba(26,24,20,0.07);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s, border-top-color 0.3s;
  opacity: 0; transform: translateY(36px);
}
.vs-card.visible { animation: cardIn 0.65s cubic-bezier(.34,1.56,.64,1) forwards; }
.vs-card:nth-child(1) { animation-delay: 0s; }
.vs-card:nth-child(2) { animation-delay: 0.08s; }
.vs-card:nth-child(3) { animation-delay: 0.16s; }
.vs-card:nth-child(4) { animation-delay: 0.24s; }
.vs-card:nth-child(5) { animation-delay: 0.32s; }
.vs-card:nth-child(6) { animation-delay: 0.40s; }
@keyframes cardIn { to { opacity: 1; transform: translateY(0); } }
.vs-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(26,24,20,0.13); border-top-color: var(--goldl); }

.vs-photo {
  width: 100%; height: 200px;
  background: linear-gradient(160deg, var(--ink2) 0%, var(--ink) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.vs-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26,24,20,0.35));
  opacity: 0; transition: opacity 0.3s;
}
.vs-card:hover .vs-photo::after { opacity: 1; }
.vs-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.vs-initials-big {
  font-family: 'Cormorant Garamond', serif; font-size: 3.8rem;
  font-weight: 400; color: rgba(212,175,80,0.28);
  transition: transform 0.3s, color 0.3s;
}
.vs-card:hover .vs-initials-big { transform: scale(1.12); color: rgba(212,175,80,0.45); }

.vs-info { padding: 1rem 1.1rem 1.2rem; }
.vs-name {
  font-size: 12.5px; font-weight: 500; color: var(--ink);
  margin-bottom: 3px; display: inline-block; position: relative;
}
.vs-name::after {
  content: ''; position: absolute; left: 0; bottom: -1px;
  width: 0; height: 0.5px; background: var(--gold); transition: width 0.3s;
}
.vs-card:hover .vs-name::after { width: 100%; }
.vs-role    { font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.vs-company { font-size: 10px; color: var(--muted); }

/* ── ÜBER UNS ──────────────────────────────────── */
.ueber-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 2rem; align-items: start; }
.ueber-text p { font-size: 12px; color: var(--muted); line-height: 2; margin-bottom: 1rem; }

blockquote {
  border-left: 2px solid var(--goldf); padding-left: 1.2rem; margin-top: 2rem;
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
  font-weight: 400; font-style: italic; color: var(--ink); line-height: 1.65;
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
blockquote.visible { opacity: 1; transform: translateX(0); }
blockquote em { color: var(--gold); }

/* Werte-Liste im Über-uns-Bereich */
.werte-label {
  font-size: 8.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px; display: block;
}
.werte-list { display: flex; flex-direction: column; border-top: 0.5px solid var(--border); }
.wert-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 1.1rem 0; border-bottom: 0.5px solid var(--border);
  transition: padding-left 0.3s;
}
.wert-item:hover { padding-left: 8px; }
.wert-dash {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 400; color: rgba(184,151,42,0.3);
  line-height: 1.2; flex-shrink: 0;
}
.wert-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  font-weight: 400; color: var(--ink); margin-bottom: 2px;
}
.wert-sub { font-size: 10px; color: var(--muted); line-height: 1.6; }

/* ── MITGLIEDERBEREICH ─────────────────────────── */
.member-header-section {
  background: var(--ink); padding: 7rem 3.5rem 3rem;
  position: relative; overflow: hidden;
}
.mh-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,151,42,0.07) 0%, transparent 60%);
  animation: bgPulse 8s ease-in-out infinite;
}
@keyframes bgPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
.mh-inner { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; }
.member-welcome {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.1; color: var(--white);
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.member-welcome em { font-style: italic; color: var(--goldl); }
.member-badge {
  font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); border: 0.5px solid rgba(184,151,42,0.25);
  padding: 6px 14px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.4s;
}

/* Sticky Tabs */
.member-tabs-wrap {
  background: var(--ink2); border-bottom: 0.5px solid rgba(184,151,42,0.12);
  padding: 0 3.5rem; position: sticky; top: 64px; z-index: 200;
}
.member-tabs { display: flex; }
.member-tab {
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); padding: 1rem 1.5rem;
  cursor: pointer; background: none; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -0.5px;
  font-family: 'Inter', sans-serif; font-weight: 400;
  transition: color 0.2s, border-color 0.2s;
}
.member-tab:hover { color: rgba(255,255,255,0.6); }
.member-tab.active { color: var(--goldl); border-bottom-color: var(--goldl); }
.member-tab-content { display: none; padding: 3rem 3.5rem; }
.member-tab-content.active { display: block; }

/* Events */
.events-list { display: flex; flex-direction: column; box-shadow: 0 4px 20px rgba(26,24,20,0.07); }
.ev-item {
  background: var(--white); border-bottom: 0.5px solid var(--border);
  opacity: 0; transform: translateX(-16px);
}
.ev-item.visible { animation: slideIn 0.5s ease forwards; }
.ev-item:nth-child(1) { animation-delay: 0s; }
.ev-item:nth-child(2) { animation-delay: 0.08s; }
.ev-item:nth-child(3) { animation-delay: 0.16s; }
.ev-item:nth-child(4) { animation-delay: 0.24s; }
.ev-item:nth-child(5) { animation-delay: 0.32s; }
@keyframes slideIn { to { opacity: 1; transform: translateX(0); } }
.ev-item:last-child { border-bottom: none; }
.ev-item.open { box-shadow: inset 3px 0 0 var(--gold); }
.ev-main { display: flex; align-items: stretch; cursor: pointer; transition: background 0.15s; }
.ev-main:hover { background: #fdfaf6; }
.ev-item.open .ev-main { border-bottom: 0.5px solid rgba(26,24,20,0.07); }

.ev-date-col {
  padding: 1.2rem 1rem; border-right: 0.5px solid var(--border);
  min-width: 72px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--cream);
}
.ev-day { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: var(--gold); line-height: 1; }
.ev-mon { font-size: 8px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.ev-body { padding: 1.1rem 1.4rem; flex: 1; }
.ev-title { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.ev-meta  { font-size: 10px; color: var(--muted); margin-bottom: 6px; }
.ev-tag   { display: inline-block; font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); border: 0.5px solid var(--bdg); padding: 2px 8px; }
.ev-actions {
  padding: 1rem 1.2rem; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  min-width: 130px; border-left: 0.5px solid var(--border);
}
.ev-toggle { padding: 0 1rem; display: flex; align-items: center; border-left: 0.5px solid var(--border); cursor: pointer; }
.ev-toggle-btn {
  display: flex; align-items: center; gap: 5px;
  font-size: 9px; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
  transition: color 0.2s;
}
.ev-toggle:hover .ev-toggle-btn { color: var(--gold); }
.ev-toggle-icon { font-size: 13px; transition: transform 0.25s; color: var(--gold); }
.ev-item.open .ev-toggle-icon { transform: rotate(180deg); }

.ev-attendees {
  display: none; padding: 1.2rem 1.4rem;
  background: rgba(245,240,232,0.6); border-top: 0.5px solid var(--border);
}
.ev-item.open .ev-attendees { display: block; animation: expandDown 0.3s ease; }
@keyframes expandDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.attendees-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.attendees-title  { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.attendees-count  { font-size: 9px; color: var(--gold); font-weight: 500; }
.attendee-chips   { display: flex; flex-wrap: wrap; gap: 8px; }

.attendee-chip {
  display: flex; align-items: center; gap: 7px;
  padding: 5px 12px 5px 5px; background: var(--white);
  border: 0.5px solid var(--border);
  box-shadow: 0 1px 4px rgba(26,24,20,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.attendee-chip:hover { box-shadow: 0 3px 10px rgba(26,24,20,0.1); transform: translateY(-1px); }
.att-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(145deg, var(--ink2), var(--ink));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 10px;
  color: var(--goldl); flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(26,24,20,0.2);
}
.att-name { font-size: 10px; color: var(--ink); line-height: 1.2; }
.att-co   { font-size: 9px; color: var(--muted); }
.no-attendees { font-size: 11px; color: var(--muted); font-style: italic; }

/* Buttons */
.btn-register {
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; color: var(--white); background: var(--ink);
  padding: 7px 14px; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; width: 100%;
  box-shadow: 0 2px 8px rgba(26,24,20,0.2);
  transition: background 0.2s, transform 0.15s;
}
.btn-register:hover { background: var(--ink2); transform: translateY(-1px); }
.btn-unregister {
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); background: none; padding: 7px 14px;
  border: 0.5px solid var(--border); cursor: pointer;
  font-family: 'Inter', sans-serif; width: 100%; transition: all 0.2s;
}
.btn-unregister:hover { border-color: #c0392b; color: #c0392b; }
.ev-registered-badge { font-size: 9px; color: #2a7d3f; display: flex; align-items: center; gap: 4px; font-weight: 500; }
.ev-registered-badge::before { content: '✓'; font-size: 11px; }
.ev-full  { font-size: 9px; color: var(--muted); font-style: italic; }
.ev-count { font-size: 9px; color: var(--muted); }
.ev-past  { opacity: 0.55; }
.hog-notice { padding: 5px 8px; font-size: 10px; border-left: 2px solid; margin-top: 5px; display: none; }
.hog-notice.success { background: #f0f9f1; border-color: #2e7d32; color: #1b5e20; }
.hog-notice.error   { background: #fdf3f2; border-color: #c62828; color: #7f1d1d; }

/* Mitglieder-Tab */
.member-search-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 1.5rem; }
.member-search-bar input {
  flex: 1; padding: 9px 14px; border: 0.5px solid var(--border);
  font-family: 'Inter', sans-serif; font-size: 12px;
  background: var(--white); color: var(--ink); outline: none;
  transition: border-color 0.2s;
}
.member-search-bar input:focus { border-color: var(--gold); }
.member-count-pill { font-size: 10px; color: var(--muted); background: var(--white); padding: 6px 14px; border: 0.5px solid var(--border); white-space: nowrap; }

.members-table { width: 100%; border-collapse: collapse; box-shadow: 0 4px 20px rgba(26,24,20,0.07); }
.members-table th { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding: 11px 14px; border-bottom: 1px solid rgba(26,24,20,0.12); text-align: left; background: var(--cream2); font-weight: 500; }
.members-table td { font-size: 11.5px; color: var(--ink); padding: 11px 14px; border-bottom: 0.5px solid var(--border); background: var(--white); transition: background 0.15s; }
.members-table tr:last-child td { border-bottom: none; }
.members-table tbody tr:hover td { background: var(--cream); }
.member-name-cell { display: flex; align-items: center; gap: 9px; }
.member-avatar-sm {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(145deg, var(--ink2), var(--ink));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  color: var(--goldl); flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(26,24,20,0.18);
}
.member-email-link { color: var(--gold); text-decoration: none; font-size: 10.5px; }
.member-email-link:hover { text-decoration: underline; }

/* Dokumente */
.docs-list { display: flex; flex-direction: column; box-shadow: 0 4px 20px rgba(26,24,20,0.07); }
.doc-item {
  display: flex; align-items: center; gap: 14px;
  padding: 1.1rem 1.4rem; border-bottom: 0.5px solid var(--border);
  background: var(--white); text-decoration: none; color: inherit;
  opacity: 0; transform: translateY(12px);
  transition: background 0.2s, box-shadow 0.2s;
}
.doc-item.visible { animation: fadeUp 0.5s ease forwards; }
.doc-item:nth-child(1) { animation-delay: 0s; }
.doc-item:nth-child(2) { animation-delay: 0.07s; }
.doc-item:nth-child(3) { animation-delay: 0.14s; }
.doc-item:nth-child(4) { animation-delay: 0.21s; }
.doc-item:nth-child(5) { animation-delay: 0.28s; }
.doc-item:last-child { border-bottom: none; }
.doc-item:hover { background: var(--cream); box-shadow: inset 3px 0 0 var(--gold); }
.doc-icon {
  width: 38px; height: 38px; border: 0.5px solid var(--bdg);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; text-transform: uppercase; color: var(--gold);
  background: var(--cream2); flex-shrink: 0; letter-spacing: 0.05em; font-weight: 500;
}
.doc-name { font-size: 12px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.doc-meta { font-size: 9.5px; color: var(--muted); }
.doc-dl   { font-size: 16px; color: var(--muted); margin-left: auto; transition: color 0.2s, transform 0.2s; }
.doc-item:hover .doc-dl { color: var(--gold); transform: translateY(2px); }

/* ── LOGIN SEITE ───────────────────────────────── */
body.login { background: var(--cream) !important; }
body.login #login { padding-top: 4rem !important; }
body.login h1 a {
  background-image: none !important; width: auto !important; height: auto !important;
  text-indent: 0 !important; font-family: 'Cormorant Garamond', serif !important;
  font-size: 1.5rem !important; font-weight: 700 !important;
  letter-spacing: 0.03em !important; color: var(--ink) !important;
  text-decoration: none !important;
}
body.login form { border: 0.5px solid var(--border) !important; box-shadow: 0 4px 20px rgba(26,24,20,0.07) !important; border-radius: 0 !important; background: var(--white) !important; }
body.login input[type="text"], body.login input[type="password"] { border: 0.5px solid var(--border) !important; border-radius: 0 !important; box-shadow: none !important; font-family: 'Inter', sans-serif !important; background: var(--cream) !important; }
body.login input[type="submit"] { background: var(--ink) !important; border-color: var(--ink) !important; border-radius: 0 !important; box-shadow: 0 3px 12px rgba(26,24,20,0.22) !important; font-family: 'Inter', sans-serif !important; letter-spacing: 0.08em !important; text-transform: uppercase !important; font-size: 11px !important; }
body.login #nav a, body.login #backtoblog a { color: var(--muted) !important; }

/* ── SEITEN ────────────────────────────────────── */
.hog-page-content { font-size: 13px; color: var(--muted); line-height: 1.9; }
.hog-page-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; color: var(--ink); margin-top: 2.5rem; margin-bottom: 0.8rem; padding-bottom: 0.4rem; border-bottom: 0.5px solid var(--border); }
.hog-page-content h3 { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: var(--ink); margin-top: 1.5rem; margin-bottom: 0.4rem; }
.hog-page-content p { margin-bottom: 0.9rem; }
.hog-page-content a { color: var(--gold); text-decoration: none; }
.hog-page-content a:hover { text-decoration: underline; }
.hog-page-content strong { font-weight: 500; color: var(--ink); }

/* ── FOOTER ────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 4rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  border-top: 0.5px solid rgba(201,168,76,0.12);
}
.footer-brand {}
.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400;
  color: rgba(240,230,208,0.6); margin-bottom: 1.2rem;
}
.footer-logo-name em { font-style: italic; color: var(--gold); }
.footer-brand p {
  font-size: 11px; color: rgba(240,230,208,0.25);
  line-height: 1.9; margin: 0;
}
.footer-col-title {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem; display: block;
}
.footer-col-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-links a {
  font-size: 12px; color: rgba(240,230,208,0.35);
  text-decoration: none; font-family: 'Cormorant Garamond', serif;
  font-weight: 300; transition: color 0.2s;
}
.footer-col-links a:hover { color: rgba(240,230,208,0.7); }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 0.5px solid rgba(201,168,76,0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 9.5px; color: rgba(240,230,208,0.18);
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ────────────────────────────────── */

/* ICS Download Button */
.btn-ics {
  font-size: 8.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); background: none; padding: 5px 0;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  width: 100%; text-align: center; text-decoration: none; display: block;
  transition: color 0.2s; border-bottom: 0.5px solid rgba(184,151,42,0.2);
}
.btn-ics:hover { color: var(--goldl); border-bottom-color: var(--goldl); }


/* ── ÜBER UNS ANIMATIONEN ───────────────────────── */
.section--white { position: relative; overflow: hidden; }

.section-bg-glow {
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,151,42,0.04) 0%, transparent 70%);
  right: -100px; top: 50%; transform: translateY(-50%);
  pointer-events: none;
  animation: glowDrift 12s ease-in-out infinite;
}
@keyframes glowDrift {
  0%,100% { transform: translateY(-50%) scale(1); }
  50%      { transform: translateY(-55%) scale(1.1); }
}

/* Eyebrow animate-in — nur mit hog-anim Klasse */
.sec-eyebrow.hog-anim {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.sec-eyebrow.hog-anim::before {
  width: 0 !important;
  transition: width 0.6s ease 0.3s !important;
}
.sec-eyebrow.anim-visible { opacity: 1; transform: translateY(0); }
.sec-eyebrow.anim-visible::before { width: 16px !important; }

/* H2 animate-in — nur mit hog-anim Klasse */
.section h2.hog-anim {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s ease 0.15s, transform 0.8s ease 0.15s;
}
.section h2.anim-visible { opacity: 1; transform: translateY(0); }

/* Text von links */
.ueber-text {
  opacity: 0; transform: translateX(-30px);
  transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}
.ueber-text.anim-visible { opacity: 1; transform: translateX(0); }

/* Zitat mit wachsender Linie */
blockquote {
  border-left: 0 !important;
  padding-left: 1.2rem; position: relative;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}
blockquote::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--goldf); transform: scaleY(0); transform-origin: top;
  transition: transform 0.6s ease 1s;
}
blockquote.anim-visible { opacity: 1; transform: translateY(0); }
blockquote.anim-visible::before { transform: scaleY(1); }

/* Werte-Label */
.werte-label {
  opacity: 0;
  transition: opacity 0.6s ease 0.4s;
}
.werte-label.anim-visible { opacity: 1; }

/* Werte-Items von rechts */
.wert-item {
  opacity: 0; transform: translateX(24px);
  transition: padding-left 0.3s ease, opacity 0.6s ease, transform 0.6s ease;
}
.wert-item:nth-child(1) { transition-delay: 0.3s, 0.3s, 0.3s; }
.wert-item:nth-child(2) { transition-delay: 0.3s, 0.45s, 0.45s; }
.wert-item:nth-child(3) { transition-delay: 0.3s, 0.6s, 0.6s; }
.wert-item:nth-child(4) { transition-delay: 0.3s, 0.75s, 0.75s; }
.wert-item.anim-visible { opacity: 1; transform: translateX(0); }

/* Goldlinie beim Hover */
.wert-item { position: relative; }
.wert-item::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 0.5px; background: var(--gold);
  transition: width 0.3s ease;
}
.wert-item:hover::after { width: 100%; }
.wert-dash { transition: color 0.3s; }
.wert-item:hover .wert-dash { color: rgba(184,151,42,0.6); }

/* ── SECTION LABEL ─────────────────────────────── */
.section-num-label {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-dark, rgba(240,230,208,0.38));
  margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 6px;
}
.section-num-label span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 11px; color: var(--gold);
}
.section-num-label--light { color: var(--muted); }

/* ── VEREINSZWECK ───────────────────────────────── */
.section--zweck { background: var(--navy2); padding: 5.5rem 3.5rem; }
.zweck-header { margin-bottom: 4rem; }
.zweck-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400; line-height: 1.06; color: var(--cream);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.zweck-title.anim-visible { opacity: 1; transform: translateY(0); }
.zweck-title em { font-style: italic; color: var(--gold); }
.zweck-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 300; font-style: italic;
  color: var(--cream2, #C8B89A); margin-top: 1.2rem; max-width: 680px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
.zweck-sub.anim-visible { opacity: 1; transform: translateY(0); }
.zweck-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  border-top: 0.5px solid rgba(201,168,76,0.15);
}
.zweck-col {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 0.5px solid rgba(201,168,76,0.1);
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.zweck-col.anim-visible { opacity: 1; transform: translateY(0); }
.zweck-col:nth-child(1) { transition-delay: 0.1s, 0.1s; }
.zweck-col:nth-child(2) { transition-delay: 0.2s, 0.2s; }
.zweck-col:nth-child(3) { transition-delay: 0.3s, 0.3s; }
.zweck-col:nth-child(4) { transition-delay: 0.4s, 0.4s; }
.zweck-col:last-child { border-right: none; }
.zweck-col:first-child { padding-left: 0; }
.zweck-num {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
  font-weight: 300; font-style: italic; color: var(--gold);
  margin-bottom: 1.5rem; opacity: 0.85;
}
.zweck-col-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
  font-weight: 400; color: var(--cream); margin-bottom: 0.9rem;
}
.zweck-col-text { font-size: 12.5px; color: rgba(240,230,208,0.62); line-height: 1.9; }

/* ── VORSTAND (GALLERY) ─────────────────────────── */
.section--vorstand { background: var(--navy); padding: 5.5rem 3.5rem; }
.vorstand-header { margin-bottom: 4rem; }
.vorstand-big-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400; line-height: 1.06; color: var(--cream); max-width: 800px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.vorstand-big-title.anim-visible { opacity: 1; transform: translateY(0); }
.vorstand-big-title em { font-style: italic; color: var(--gold); }
.vorstand-big-sub {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  font-weight: 300; font-style: italic; color: var(--cream2, #C8B89A);
  margin-top: 1.2rem; max-width: 700px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
.vorstand-big-sub.anim-visible { opacity: 1; transform: translateY(0); }

.vs-portrait-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2px;
}
.vs-portrait-card {
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.vs-portrait-card.anim-visible { opacity: 1; transform: translateY(0); }
.vs-portrait-card:nth-child(1) { transition-delay: 0s, 0s; }
.vs-portrait-card:nth-child(2) { transition-delay: 0.08s, 0.08s; }
.vs-portrait-card:nth-child(3) { transition-delay: 0.16s, 0.16s; }
.vs-portrait-card:nth-child(4) { transition-delay: 0.24s, 0.24s; }
.vs-portrait-card:nth-child(5) { transition-delay: 0.32s, 0.32s; }
.vs-portrait-card:nth-child(6) { transition-delay: 0.40s, 0.40s; }

.vs-portrait-img {
  width: 100%; aspect-ratio: 3/4; overflow: hidden;
  background: var(--navy2);
  border: 1px solid rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.vs-portrait-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s ease;
}
.vs-portrait-card:hover .vs-portrait-img img { transform: scale(1.04); }
.vs-portrait-img .vs-init-fallback {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300; color: rgba(201,168,76,0.2);
}
.vs-nameplate {
  background: rgba(26,18,8,0.95);
  border: 0.5px solid rgba(201,168,76,0.15);
  border-top: none; padding: 12px 14px;
}
.vs-nameplate-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 400; color: var(--cream);
  margin-bottom: 3px;
}
.vs-nameplate-role {
  font-size: 8px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(240,230,208,0.35);
}

/* ── ÜBER DEN VEREIN (NEU) ──────────────────────── */
.section--ueber {
  background: #EDE8D8; padding: 5.5rem 3.5rem;
  color: var(--ink);
}
.ueber-big-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 400; line-height: 1.06; color: var(--ink);
  margin-bottom: 4rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.ueber-big-title.anim-visible { opacity: 1; transform: translateY(0); }
.ueber-big-title em { font-style: italic; color: var(--gold); }

.ueber-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 5rem; align-items: start;
}
.ueber-intro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 400; font-style: italic;
  color: var(--ink); line-height: 1.7; margin-bottom: 2rem;
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.9s ease 0.2s, transform 0.9s ease 0.2s;
}
.ueber-intro-text.anim-visible { opacity: 1; transform: translateX(0); }
.ueber-intro-text em { color: var(--gold); font-style: italic; }
.ueber-body-text {
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.9s ease 0.35s, transform 0.9s ease 0.35s;
}
.ueber-body-text.anim-visible { opacity: 1; transform: translateX(0); }
.ueber-body-text p { font-size: 13.5px; color: #5A5145; line-height: 1.95; margin-bottom: 1.1rem; }
.ueber-body-text p em { font-style: italic; color: var(--ink); }

/* Werte rechts mit Symbolen */
.ueber-werte-list { border-top: 0.5px solid rgba(139,125,101,0.25); }
.ueber-wert-item {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding: 1.4rem 0; border-bottom: 0.5px solid rgba(139,125,101,0.2);
  transition: padding-left 0.3s; position: relative;
  opacity: 0; transform: translateX(20px);
  transition: opacity 0.7s ease, transform 0.7s ease, padding-left 0.3s;
}
.ueber-wert-item:nth-child(1) { transition-delay: 0.2s, 0.2s, 0s; }
.ueber-wert-item:nth-child(2) { transition-delay: 0.32s, 0.32s, 0s; }
.ueber-wert-item:nth-child(3) { transition-delay: 0.44s, 0.44s, 0s; }
.ueber-wert-item:nth-child(4) { transition-delay: 0.56s, 0.56s, 0s; border-bottom: none; }
.ueber-wert-item.anim-visible { opacity: 1; transform: translateX(0); }
.ueber-wert-item:hover { padding-left: 6px; }
.ueber-wert-num {
  font-family: 'Cormorant Garamond', serif; font-size: 12px;
  letter-spacing: 0.1em; color: #6B6052; flex-shrink: 0;
  width: 28px; margin-top: 5px;
}
.ueber-wert-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
  font-weight: 400; color: var(--ink); margin-bottom: 3px; flex: 1;
}
.ueber-wert-sub { font-size: 12px; color: #6B6052; line-height: 1.65; }
.ueber-wert-sym {
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
  color: var(--gold); opacity: 0.55; flex-shrink: 0; align-self: center;
}

/* ── VORSTAND KARTEN (ZENTRIERT) ───────────────── */
.vs-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
}
.vs-card-dark {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(201,168,76,0.12);
  border-top: 1.5px solid rgba(201,168,76,0.4);
  overflow: hidden;
  width: 200px;
  flex-shrink: 0;
  flex-grow: 0;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s;
  opacity: 0; transform: translateY(30px);
}
.vs-card-dark.anim-visible { animation: cardIn 0.65s cubic-bezier(.34,1.56,.64,1) forwards; }
.vs-card-dark:nth-child(1) { animation-delay: 0s; }
.vs-card-dark:nth-child(2) { animation-delay: 0.08s; }
.vs-card-dark:nth-child(3) { animation-delay: 0.16s; }
.vs-card-dark:nth-child(4) { animation-delay: 0.24s; }
.vs-card-dark:nth-child(5) { animation-delay: 0.32s; }
.vs-card-dark:nth-child(6) { animation-delay: 0.40s; }
@keyframes cardIn { to { opacity: 1; transform: translateY(0); } }
.vs-card-dark:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  border-top-color: var(--goldl);
}
.vs-card-photo {
  width: 100%; height: 240px;
  background: linear-gradient(160deg, var(--navy2) 0%, var(--navy) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.vs-card-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  transition: transform 0.4s ease;
}
.vs-card-dark:hover .vs-card-photo img { transform: scale(1.04); }
.vs-card-init {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 300;
  color: rgba(201,168,76,0.2);
  transition: transform 0.3s, color 0.3s;
}
.vs-card-dark:hover .vs-card-init { transform: scale(1.1); color: rgba(201,168,76,0.35); }
.vs-card-info { padding: 1rem 1.2rem 1.2rem; text-align: center; }
.vs-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400; color: var(--cream);
  margin-bottom: 3px;
}
.vs-card-role {
  font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 3px;
}
.vs-card-co { font-size: 10px; color: rgba(240,230,208,0.35); }

/* ── GENERATION REVEAL ANIMATION ───────────────── */
.title-line-2 {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.title-line-2-inner {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  animation: revealText 1.2s cubic-bezier(.77,0,.175,1) forwards;
  animation-delay: 0.9s;
}
@keyframes revealText {
  0%   { clip-path: inset(0 100% 0 0); transform: translateX(-8px); }
  100% { clip-path: inset(0 0% 0 0);   transform: translateX(0); }
}



/* ════════════════════════════════════════════════
   MITGLIEDERBEREICH — DARK DESIGN
   ════════════════════════════════════════════════ */

/* Header */
.m-header {
  background: var(--navy2);
  padding: 6rem 3rem 3.5rem;
  position: relative; overflow: hidden;
  border-bottom: 0.5px solid var(--hero-border);
}
.m-header-glow {
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.m-header-inner { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; }
.m-welcome-label { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(240,230,208,0.5); margin-bottom: 0.5rem; }
.m-welcome-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.05; color: var(--cream);
}
.m-welcome-name em { font-style: italic; color: var(--goldl); }
.m-header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.m-header-badge {
  font-size: 8.5px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--hero-muted); border: 0.5px solid var(--hero-border); padding: 6px 14px;
}
.m-pw-link {
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--hero-muted); text-decoration: none;
  border-bottom: 0.5px solid rgba(201,168,76,0.2); padding-bottom: 2px; transition: color 0.2s;
}
.m-pw-link:hover { color: var(--goldl); }

/* Tabs */
.m-tabs-bar {
  background: var(--navy); border-bottom: 0.5px solid var(--hero-border);
  padding: 0 3rem; position: sticky; top: 62px; z-index: 200;
}
.m-tabs { display: flex; }
.m-tab {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(240,230,208,0.5); padding: 1.1rem 1.8rem; cursor: pointer;
  background: none; border: none; border-bottom: 1px solid transparent;
  font-family: 'Inter', sans-serif; font-weight: 400; margin-bottom: -0.5px;
  transition: color 0.2s, border-color 0.2s;
}
.m-tab:hover { color: rgba(240,230,208,0.65); }
.m-tab.active { color: var(--goldl); border-bottom-color: var(--gold); }

.m-tab-content { display: none; padding: 3rem; background: var(--navy); }
.m-tab-content.active { display: block; }

/* Section labels */
.m-sec-num {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--hero-muted); margin-bottom: 0.4rem;
  display: flex; align-items: center; gap: 6px;
}
.m-sec-num span { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold); font-size: 11px; }
.m-sec-title {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300;
  color: var(--cream); margin-bottom: 2rem;
}
.m-sec-title em { font-style: italic; color: var(--gold); }

/* Events */
.m-events-list { display: flex; flex-direction: column; gap: 2px; }
.m-ev-item {
  background: var(--navy2); border: 0.5px solid rgba(201,168,76,0.08);
  transition: border-color 0.3s; overflow: hidden;
}
.m-ev-item.open { border-color: rgba(201,168,76,0.25); }
.m-ev-main { display: flex; align-items: stretch; cursor: pointer; transition: background 0.15s; }
.m-ev-main:hover { background: rgba(201,168,76,0.02); }
.m-ev-date {
  padding: 1.4rem 1.2rem; border-right: 0.5px solid rgba(201,168,76,0.08);
  min-width: 80px; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.03);
}
.m-ev-day { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--gold); line-height: 1; }
.m-ev-mon { font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hero-muted); margin-top: 3px; }
.m-ev-body { padding: 1.2rem 1.5rem; flex: 1; }
.m-ev-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--cream); margin-bottom: 4px; }
.m-ev-meta { font-size: 11.5px; color: rgba(240,230,208,0.55); margin-bottom: 8px; }
.m-ev-tag { display: inline-block; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--goldl); border: 0.5px solid var(--border); padding: 3px 10px; }
.m-ev-actions {
  padding: 1.2rem 1.4rem; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  min-width: 150px; border-left: 0.5px solid rgba(201,168,76,0.08);
}
.m-ev-toggle {
  padding: 0 1.2rem; display: flex; align-items: center; justify-content: center;
  border-left: 0.5px solid rgba(201,168,76,0.08); min-width: 110px; cursor: pointer;
}
.m-ev-toggle-label {
  font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(240,230,208,0.5); display: flex; align-items: center; gap: 6px;
  transition: color 0.2s; white-space: nowrap;
}
.m-ev-toggle:hover .m-ev-toggle-label { color: var(--gold); }
.m-toggle-chevron { font-size: 14px; color: var(--gold); transition: transform 0.25s; }
.m-ev-item.open .m-toggle-chevron { transform: rotate(180deg); }

.m-ev-attendees {
  display: none; padding: 1.5rem; background: rgba(201,168,76,0.02);
  border-top: 0.5px solid rgba(201,168,76,0.08);
}
.m-ev-item.open .m-ev-attendees { display: block; animation: fadeDown 0.3s ease; }
@keyframes fadeDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.m-att-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.m-att-label { font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(240,230,208,0.5); }
.m-att-count { font-size: 9px; color: var(--gold); }
.m-att-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.m-att-chip {
  display: flex; align-items: center; gap: 9px;
  padding: 6px 14px 6px 6px; background: var(--navy);
  border: 0.5px solid rgba(201,168,76,0.08); transition: border-color 0.2s;
}
.m-att-chip:hover { border-color: rgba(201,168,76,0.25); }
.m-att-av {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy2); border: 0.5px solid var(--hero-border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 11px; color: var(--gold); flex-shrink: 0;
}
.m-att-name { font-size: 11.5px; color: var(--cream); line-height: 1.25; }
.m-att-co { font-size: 10px; color: rgba(240,230,208,0.5); }
.m-no-att { font-size: 11px; color: var(--hero-muted); font-style: italic; font-family: 'Cormorant Garamond', serif; }

/* Buttons */
.m-btn-reg {
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 400; color: var(--navy); background: var(--gold);
  padding: 8px 18px; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; width: 100%; transition: background 0.2s;
}
.m-btn-reg:hover { background: var(--goldl); }
.m-btn-unreg {
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--hero-muted); background: none; padding: 8px 18px;
  border: 0.5px solid var(--hero-border); cursor: pointer;
  font-family: 'Inter', sans-serif; width: 100%; transition: all 0.2s;
}
.m-btn-unreg:hover { border-color: #c0392b; color: #c0392b; }
.m-badge-reg {
  font-size: 9px; color: var(--goldl); display: flex; align-items: center;
  gap: 5px; letter-spacing: 0.06em;
}
.m-badge-reg::before { content: '✓'; }
.m-ev-full { font-size: 9px; color: var(--hero-muted); font-style: italic; }
.m-ev-count { font-size: 10px; color: rgba(240,230,208,0.5); }
.m-btn-ics {
  font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: none; padding: 7px 0;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  width: 100%; text-align: center; text-decoration: none; display: block;
  border-top: 0.5px solid rgba(201,168,76,0.1); margin-top: 2px;
  transition: color 0.2s;
}
.m-btn-ics:hover { color: var(--goldl); }
.m-empty { font-size: 12px; color: var(--hero-muted); font-style: italic; font-family: 'Cormorant Garamond', serif; }
.hog-notice { padding: 5px 8px; font-size: 10px; border-left: 2px solid; margin-top: 5px; display: none; }
.hog-notice.success { background: rgba(42,125,63,0.1); border-color: #2e7d32; color: #4caf50; }
.hog-notice.error   { background: rgba(198,40,40,0.1); border-color: #c62828; color: #ef5350; }

/* Members Table */
.m-search-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 2rem; }
.m-search-input {
  flex: 1; padding: 10px 16px; background: var(--navy2);
  border: 0.5px solid rgba(201,168,76,0.08); font-family: 'Inter', sans-serif;
  font-size: 12px; color: var(--cream); outline: none; transition: border-color 0.2s;
}
.m-search-input::placeholder { color: var(--hero-muted); }
.m-search-input:focus { border-color: rgba(201,168,76,0.35); }
.m-count-badge {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(240,230,208,0.55); background: var(--navy2);
  padding: 7px 16px; border: 0.5px solid rgba(201,168,76,0.08); white-space: nowrap;
}
.m-members-table { width: 100%; border-collapse: collapse; }
.m-members-table th {
  font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(240,230,208,0.55); padding: 12px 16px;
  border-bottom: 0.5px solid var(--hero-border); text-align: left; font-weight: 400;
}
.m-members-table td {
  font-size: 13px; color: var(--cream); padding: 13px 16px;
  border-bottom: 0.5px solid rgba(201,168,76,0.06); transition: background 0.15s;
}
.m-members-table tr:last-child td { border-bottom: none; }
.m-members-table tbody tr:hover td { background: rgba(201,168,76,0.03); }
.m-member-cell { display: flex; align-items: center; gap: 10px; }
.m-member-av {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy2); border: 0.5px solid var(--hero-border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 12px; color: var(--gold); flex-shrink: 0;
}
.m-email-link { color: var(--goldl); text-decoration: none; font-size: 11.5px; opacity: 0.8; transition: opacity 0.2s; }
.m-email-link:hover { opacity: 1; }

/* Docs */
.m-docs-list { display: flex; flex-direction: column; gap: 2px; }
.m-doc-item {
  display: flex; align-items: center; gap: 16px; padding: 1.2rem 1.5rem;
  background: var(--navy2); border: 0.5px solid rgba(201,168,76,0.08);
  text-decoration: none; color: inherit; transition: border-color 0.2s;
}
.m-doc-item:hover { border-color: rgba(201,168,76,0.3); }
.m-doc-icon {
  width: 42px; height: 42px; border: 0.5px solid var(--hero-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; text-transform: uppercase; color: var(--gold);
  background: var(--navy); flex-shrink: 0; letter-spacing: 0.06em;
}
.m-doc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 400; color: var(--cream); margin-bottom: 2px; }
.m-doc-meta { font-size: 11px; color: rgba(240,230,208,0.5); }
.m-doc-dl { font-size: 18px; color: var(--hero-muted); margin-left: auto; transition: color 0.2s, transform 0.2s; }
.m-doc-item:hover .m-doc-dl { color: var(--gold); transform: translateY(3px); }

/* ════════════════════════════════════════════════
   MAGIC-LINK BESTÄTIGUNGSSEITE
   ════════════════════════════════════════════════ */
.hog-magic {
  min-height: 70vh; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  padding: 5rem 2rem; position: relative; overflow: hidden;
}
.hog-magic-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.hog-magic-inner { position: relative; z-index: 1; text-align: center; max-width: 460px; }
.hog-magic-check {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  animation: magicPop 0.5s cubic-bezier(.34,1.56,.64,1) forwards;
}
.hog-magic-check span { font-size: 28px; color: var(--gold); }
.hog-magic-check--muted { border-color: rgba(240,230,208,0.3); }
.hog-magic-check--muted span { color: rgba(240,230,208,0.5); }
@keyframes magicPop { from { opacity:0; transform:scale(0.6); } to { opacity:1; transform:scale(1); } }
.hog-magic-title {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem;
  font-weight: 400; color: var(--cream); margin-bottom: 0.9rem; line-height: 1.15;
}
.hog-magic-title em { font-style: italic; color: var(--goldl); }
.hog-magic-text {
  font-size: 13.5px; color: rgba(240,230,208,0.6); line-height: 1.75;
  margin-bottom: 2rem;
}
.hog-magic-text strong { color: var(--cream); font-weight: 500; }
.hog-magic-link {
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(240,230,208,0.45); text-decoration: none;
  border-bottom: 0.5px solid rgba(201,168,76,0.25); padding-bottom: 2px;
  transition: color 0.2s;
}
.hog-magic-link:hover { color: var(--goldl); }
.hog-magic-back {
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 0.5px solid rgba(201,168,76,0.4); padding: 11px 24px;
  display: inline-block; transition: all 0.2s;
}
.hog-magic-back:hover { background: var(--gold); color: var(--navy); }

/* Gäste-Auswahl */
.hog-guest-choice { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 1.2rem; }
.hog-guest-btn {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  color: var(--cream); text-decoration: none;
  border: 0.5px solid rgba(201,168,76,0.3); padding: 14px 22px;
  min-width: 70px; transition: all 0.2s;
}
.hog-guest-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.hog-guest-note { font-size: 11px; color: rgba(240,230,208,0.4); }
.hog-guest-note a { color: var(--gold); }

/* Begleitung-Badge in Teilnehmerliste */
.m-att-guests {
  font-size: 9px; color: var(--gold); background: rgba(201,168,76,0.12);
  padding: 1px 6px; border-radius: 10px; margin-left: 4px;
}

/* Kandidaten-Badge: aufnahmeberechtigt */
.m-badge-ready {
  color: var(--goldl) !important;
  border-color: var(--gold) !important;
  background: rgba(201,168,76,0.1);
}

/* ════════════════════════════════════════════════
   LOGIN-SEITE
   ════════════════════════════════════════════════ */
.hog-login {
  min-height: 80vh; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 2rem; position: relative; overflow: hidden;
}
.hog-login-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.hog-login-box {
  position: relative; z-index: 1; width: 100%; max-width: 420px;
  text-align: center;
}
.hog-login-title {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  font-weight: 300; color: var(--cream); margin-bottom: 1.2rem; line-height: 1.1;
}
.hog-login-title em { font-style: italic; color: var(--goldl); }
.hog-login-text {
  font-size: 13px; color: rgba(240,230,208,0.6); line-height: 1.7;
  margin-bottom: 1.5rem;
}
.hog-login-form { display: flex; flex-direction: column; gap: 12px; }
.hog-login-input {
  width: 100%; padding: 13px 16px;
  background: var(--navy2); border: 0.5px solid rgba(201,168,76,0.25);
  color: var(--cream); font-size: 13px; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color 0.2s;
}
.hog-login-input::placeholder { color: rgba(240,230,208,0.35); }
.hog-login-input:focus { border-color: rgba(201,168,76,0.5); }
.hog-login-btn {
  background: var(--gold); color: var(--navy);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; padding: 14px 32px; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: background 0.2s;
}
.hog-login-btn:hover { background: var(--goldl); }
.hog-login-btn--outline {
  background: transparent; color: var(--gold);
  border: 0.5px solid var(--gold);
}
.hog-login-btn--outline:hover { background: var(--gold); color: var(--navy); }

.hog-login-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 1.8rem 0; color: rgba(240,230,208,0.3);
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
}
.hog-login-divider::before, .hog-login-divider::after {
  content: ''; flex: 1; height: 0.5px; background: rgba(201,168,76,0.15);
}
.hog-login-toggle {
  background: none; border: none; color: rgba(240,230,208,0.5);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; font-family: 'Inter', sans-serif;
  border-bottom: 0.5px solid rgba(201,168,76,0.25); padding-bottom: 3px;
  transition: color 0.2s;
}
.hog-login-toggle:hover { color: var(--goldl); }
.hog-pw-form { display: none; margin-top: 1.2rem; }
.hog-pw-form.open { display: flex; animation: fadeDown 0.3s ease; }
.hog-login-forgot {
  font-size: 10.5px; color: rgba(240,230,208,0.4);
  text-decoration: none; margin-top: 4px;
}
.hog-login-forgot:hover { color: var(--goldl); }
.hog-login-check {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  animation: magicPop 0.5s cubic-bezier(.34,1.56,.64,1) forwards;
}
.hog-login-check span { font-size: 26px; color: var(--gold); }
.hog-login-note {
  font-size: 11px; color: rgba(240,230,208,0.4);
  line-height: 1.6; margin-top: 1.4rem;
}
.hog-login-note a { color: var(--gold); }
.hog-login-error {
  background: rgba(198,40,40,0.1); border: 0.5px solid rgba(198,40,40,0.4);
  color: #ef8a8a; font-size: 12px; padding: 10px 14px; margin-bottom: 1.2rem;
}

/* ════════════════════════════════════════════════
   MOBILE BURGER-MENÜ
   ════════════════════════════════════════════════ */
.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--cream); transition: all 0.3s;
}
body.nav-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(26,18,8,0.98);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
body.nav-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300;
  color: var(--cream); text-decoration: none;
  transition: color 0.2s;
  opacity: 0; transform: translateY(12px);
}
body.nav-open .mobile-menu a { animation: mobileLinkIn 0.4s ease forwards; }
body.nav-open .mobile-menu a:nth-child(1) { animation-delay: 0.05s; }
body.nav-open .mobile-menu a:nth-child(2) { animation-delay: 0.12s; }
body.nav-open .mobile-menu a:nth-child(3) { animation-delay: 0.19s; }
body.nav-open .mobile-menu a:nth-child(4) { animation-delay: 0.26s; }
body.nav-open .mobile-menu a:nth-child(5) { animation-delay: 0.33s; }
@keyframes mobileLinkIn { to { opacity: 1; transform: translateY(0); } }
.mobile-menu a:hover { color: var(--goldl); }
.mobile-menu-login, .mobile-menu-logout {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold) !important;
  border: 0.5px solid var(--gold); padding: 12px 28px;
  margin-top: 1rem;
}
body.nav-open { overflow: hidden; }

@media (max-width: 640px) {
  .nav-burger { display: flex; z-index: 310; position: relative; }
}


/* ════════ MOBILE (verschoben ans Ende für korrekte Priorität) ════════ */
/* ════════════════════════════════════════════════
   MOBILE — Tablet (bis 960px)
   ════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .site-header { padding: 0 1.2rem; }
  .main-nav ul { gap: 1.1rem; }
  .main-nav a { font-size: 9px; letter-spacing: 0.1em; }
  .logo-text-sub { display: none; }

  /* Hero */
  .hero-topbar { padding: 6.5rem 1.5rem 0; flex-direction: column; gap: 1rem; }
  .hero-coords { text-align: left; }
  .coord-line, .coord-city { text-align: left; }
  .hero-title-wrap { padding: 0 1.5rem; }
  .hero-subtitle { padding: 1.5rem 1.5rem 0; }
  .hero-stats { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 1.8rem; }
  .hero-stats-group { flex-wrap: wrap; gap: 1.8rem 2.5rem; }
  .hero-watermark { width: 320px; height: 320px; right: -100px; opacity: 0.04; }

  /* Sektionen */
  .section--zweck, .section--vorstand, .section--ueber { padding: 4rem 1.5rem; }
  .zweck-grid { grid-template-columns: 1fr 1fr; }
  .zweck-col { padding: 1.8rem 1.2rem 1.8rem 0; }
  .zweck-col:nth-child(2n) { border-right: none; }
  .ueber-content-grid { grid-template-columns: 1fr; gap: 3rem; }

  /* Footer */
  .site-footer { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* Mitgliederbereich */
  .m-header { padding: 5rem 1.5rem 2.5rem; }
  .m-header-inner { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .m-header-right { align-items: flex-start; }
  .m-tabs-bar { padding: 0 1.5rem; }
  .m-tab { padding: 1rem 1.1rem; }
  .m-tab-content { padding: 2rem 1.5rem; }

  /* Events mobil: Karte umbrechen */
  .m-ev-main { flex-wrap: wrap; }
  .m-ev-date { min-width: 70px; }
  .m-ev-body { flex: 1 1 60%; padding: 1rem 1.2rem; }
  .m-ev-actions {
    border-left: none; border-top: 0.5px solid rgba(201,168,76,0.08);
    flex-direction: row; flex-wrap: wrap; width: 100%;
    padding: 10px 14px; min-width: unset; gap: 10px;
    justify-content: flex-start;
  }
  .m-btn-reg, .m-btn-unreg { width: auto; padding: 9px 20px; }
  .m-btn-ics { width: auto; border-top: none; margin: 0; padding: 9px 0; }
  .m-ev-toggle {
    border-left: none; border-top: 0.5px solid rgba(201,168,76,0.08);
    width: 100%; min-width: unset; padding: 10px 14px; justify-content: flex-start;
  }

  /* Mitglieder-Tabelle: E-Mail-Spalte schmaler */
  .m-members-table th, .m-members-table td { padding: 10px 8px; font-size: 12px; }

  /* Login */
  .hog-login { padding: 3rem 1.5rem; }
}

/* ════════════════════════════════════════════════
   MOBILE — Smartphone (bis 640px)
   ════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Navigation: nur Logo + Login-Button */
  .main-nav { display: none; }
  .site-header { height: 58px; }
  .logo-img-wrap { width: 36px; height: 36px; }
  .logo-text-main { font-size: 13px; }
  .btn-login-nav { padding: 7px 14px; font-size: 9px; }
  .btn-logout-nav { padding: 6px 10px; font-size: 9px; }
  .user-badge { display: none; }

  /* Hero: Titel kleiner, alles enger */
  .hero-topbar { padding: 5.5rem 1.2rem 0; }
  .hero-eyebrow-line { font-size: 8px; letter-spacing: 0.2em; }
  .hero-title-wrap { padding: 0 1.2rem; margin-top: 1rem; }
  .title-line-1, .title-line-2 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-subtitle { padding: 1.2rem 1.2rem 0; }
  .hero-subtitle p { font-size: 1.1rem; }
  .hero-stats { padding: 1.8rem 1.2rem; margin-top: 2rem; }
  .hero-stats-group { gap: 1.2rem 2rem; }
  .hero-stat-n { font-size: 2rem; }
  .scroll-indicator { display: none; }
  .hero-watermark { display: none; }

  /* Vereinszweck: 1 Spalte */
  .section--zweck, .section--vorstand, .section--ueber { padding: 3rem 1.2rem; }
  .zweck-grid { grid-template-columns: 1fr; }
  .ueber-content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .zweck-col { border-right: none !important; padding: 1.5rem 0; border-bottom: 0.5px solid rgba(201,168,76,0.1); }
  .zweck-col:last-child { border-bottom: none; }
  .zweck-num { margin-bottom: 0.8rem; }
  .zweck-title { font-size: 2.2rem; }
  .vorstand-big-title, .ueber-big-title { font-size: 2.2rem; }

  /* Vorstand-Karten volle Breite (2 pro Reihe wäre zu klein) */
  .vs-card-grid { gap: 12px; }
  .vs-card-dark { width: calc(50% - 6px); }
  .vs-card-photo { height: 180px; }

  /* Über uns */
  .ueber-intro-text { font-size: 1.15rem; }
  .ueber-wert-item { gap: 1rem; padding: 1.1rem 0; }
  .ueber-wert-sym { display: none; }
  .ueber-wert-title { font-size: 1.3rem; }

  /* Mitgliederbereich */
  .m-welcome-name { font-size: 1.7rem; }
  .m-tab { padding: 0.9rem 0.8rem; font-size: 9.5px; }
  .m-sec-title { font-size: 1.7rem; }

  /* Events: Datum kompakter */
  .m-ev-date { min-width: 60px; padding: 1rem 0.8rem; }
  .m-ev-day { font-size: 1.5rem; }
  .m-ev-title { font-size: 1.05rem; }

  /* Mitglieder-Tabelle: Firma ausblenden auf sehr klein */
  .m-members-table th:nth-child(2), .m-members-table td:nth-child(2) { display: none; }
  .m-search-bar { flex-direction: column; align-items: stretch; }
  .m-count-badge { text-align: center; }

  /* Magic-Pages */
  .hog-magic { padding: 3rem 1.2rem; }
  .hog-magic-title { font-size: 1.8rem; }
  .hog-guest-choice { gap: 8px; }
  .hog-guest-btn { padding: 12px 16px; min-width: 60px; font-size: 1rem; }

  /* Login */
  .hog-login-title { font-size: 2rem; }
}

/* Button-Elemente in Magic-Pages wie Links/Buttons stylen (Browser-Default zurücksetzen) */
button.hog-guest-btn { font-size: 1.1rem; line-height: 1; }
.hog-magic form { display: inline-block; }
.hog-guest-choice form { margin: 0; }

/* ════════════════════════════════════════════════
   TEILNEHMERLISTE auf Magic-Bestätigungsseiten
   ════════════════════════════════════════════════ */
.hog-att-wrap {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 0.5px solid rgba(201,168,76,0.15);
  width: 100%; max-width: 420px; margin-left: auto; margin-right: auto;
}
.hog-att-label {
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(240,230,208,0.5); text-align: center; margin-bottom: 1.3rem;
}
.hog-att-list { display: flex; flex-direction: column; gap: 2px; }
.hog-att-item {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 12px; background: var(--navy2);
  border: 0.5px solid rgba(201,168,76,0.06);
  text-align: left;
}
.hog-att-av {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  border: 0.5px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 11px;
  color: var(--gold); background: rgba(201,168,76,0.06);
}
.hog-att-info { min-width: 0; }
.hog-att-name { font-size: 12.5px; color: var(--cream); line-height: 1.2; }
.hog-att-plus {
  font-size: 9px; color: var(--gold); background: rgba(201,168,76,0.12);
  padding: 1px 6px; border-radius: 10px; margin-left: 2px;
}
.hog-att-co { font-size: 10px; color: rgba(240,230,208,0.45); margin-top: 1px; }
.hog-att-empty {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 0.5px solid rgba(201,168,76,0.15);
  font-size: 12px; color: rgba(240,230,208,0.45); font-style: italic;
}
