/* ==========================================================================
   SIW · Standortinitiative Wurzener Land e.V.
   Geteiltes Stylesheet für alle Seiten
   ========================================================================== */

:root {
  /* SIW Primärfarben aus dem CD */
  --siw-yellow: #F2A03D;
  --siw-yellow-bright: #F2A437;
  --siw-gray-base: #6E6E6E;
  --siw-gray-deep: #4D4D4D;
  --siw-gray-light: #B5B5B5;

  /* SIW Sekundärfarben aus dem CD */
  --siw-mustard: #C5A335;
  --siw-bluegray: #8AA5B4;
  --siw-darkgold: #AD7A2F;
  --siw-olive: #B0A65A;

  --bg: #FFFFFF;
  --bg-soft: #F7F5F0;
  --bg-warm: #FAF8F2;

  --text: #1F1F1E;
  --text-muted: #6B6B68;
  --line: rgba(0,0,0,0.08);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--text);
}
p { margin: 0; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- UTILITY BAR ---------- */
.utility {
  background: var(--bg-soft);
  color: var(--text-muted);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.utility .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.utility a { transition: color 0.2s; }
.utility a:hover { color: var(--siw-darkgold); }
.utility-links { display: flex; gap: 24px; }
.utility-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--siw-gray-deep);
  font-size: 12px;
}

/* ---------- HEADER ---------- */
header.site {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
header.site .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand .mark { flex-shrink: 0; }
.brand .wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.18em;
  line-height: 1.25;
  color: var(--siw-gray-base);
  text-transform: uppercase;
}
.brand .wordmark strong {
  font-weight: 500;
  color: var(--siw-gray-deep);
}

nav.primary {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
nav.primary a {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  padding: 10px 14px;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
  border-radius: var(--radius-sm);
}
nav.primary a:hover { color: var(--text); }
nav.primary a.active { color: var(--text); font-weight: 600; }
nav.primary a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--siw-yellow);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-md);
  line-height: 1.2;
}
.btn-primary { background: var(--siw-yellow); color: #FFF; }
.btn-primary:hover { background: var(--siw-darkgold); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid rgba(0,0,0,0.15); }
.btn-ghost:hover { border-color: var(--text); background: var(--bg-soft); }
.btn-light { background: #FFFFFF; color: var(--siw-gray-deep); }
.btn-light:hover { background: var(--siw-yellow); color: #FFF; }

/* ---------- EYEBROW ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--siw-darkgold);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--siw-yellow);
}

/* ---------- HOMEPAGE HERO ---------- */
.hero {
  position: relative;
  background: var(--bg);
  padding: 100px 0 110px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.hero h1 .accent { color: var(--siw-yellow); display: block; }
.hero h1 .quiet { color: var(--siw-gray-base); display: block; }
.hero p.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 32px;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}

/* ---------- PAGE HERO (Unterseiten) ---------- */
.page-hero {
  background: var(--bg-soft);
  padding: 70px 0 80px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 800px;
}
.page-hero h1 .accent { color: var(--siw-darkgold); }
.page-hero .lead {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.6;
}
.page-hero-network {
  position: absolute;
  right: -100px;
  top: -50px;
  width: 480px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: var(--siw-darkgold); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { color: var(--siw-gray-light); }

/* ---------- KOMMUNEN STRIP ---------- */
.kommunen {
  background: var(--bg-soft);
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kommunen .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.kommunen-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--siw-darkgold);
}
.kommunen-list {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.kommunen-list span {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.01em;
}
.kommunen-list span::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--siw-yellow);
  border-radius: 50%;
}

/* ---------- INTRO / TWO COLUMN SECTIONS ---------- */
.intro { padding: 120px 0; background: var(--bg); }
.intro .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.intro h2 { font-size: clamp(30px, 3.2vw, 44px); margin-bottom: 24px; font-weight: 600; }
.intro h2 .yellow { color: var(--siw-yellow); }
.intro h3 { font-size: clamp(22px, 2.2vw, 28px); margin-bottom: 16px; font-weight: 600; }
.intro p.body { color: var(--text-muted); margin-bottom: 18px; font-size: 17px; line-height: 1.7; }
.pillars { list-style: none; padding: 0; margin: 32px 0 28px; display: grid; gap: 14px; }
.pillars li { display: flex; gap: 14px; align-items: flex-start; font-size: 17px; font-weight: 500; }
.pillars li::before {
  content: ''; width: 8px; height: 8px;
  background: var(--siw-yellow); margin-top: 11px;
  flex-shrink: 0; border-radius: 50%;
}
.intro-quote {
  font-style: italic; color: var(--siw-darkgold); font-weight: 500;
  font-size: 17px; padding-left: 18px;
  border-left: 2px solid var(--siw-yellow); margin-top: 24px;
}

/* ---------- SECTION ---------- */
.section { padding: 100px 0; }
.section-light { background: var(--bg); }
.section-soft { background: var(--bg-soft); }
.section-warm { background: var(--bg-warm); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head h2 { font-size: clamp(30px, 3.2vw, 44px); font-weight: 600; margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 17px; line-height: 1.6; }
.section-head .eyebrow { justify-content: center; }
.section-head-left {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 48px;
  flex-wrap: wrap; gap: 24px;
}
.section-head-left h2 { font-size: clamp(30px, 3.2vw, 44px); font-weight: 600; }

/* ---------- STATEMENTS ---------- */
.statements { background: var(--bg-soft); padding: 120px 0; position: relative; }
.statements-head { text-align: center; margin-bottom: 64px; }
.statements-head h2 { font-size: clamp(30px, 3.2vw, 44px); font-weight: 600; }
.statements-head .eyebrow { justify-content: center; }
.statements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card {
  background: #FFF; padding: 36px 32px;
  border-radius: var(--radius-lg); position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--line);
}
.quote-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.quote-mark {
  font-family: 'Manrope', sans-serif;
  font-size: 44px; line-height: 0.7;
  color: var(--siw-yellow); font-weight: 700; margin-bottom: 4px;
}
.quote-card:nth-child(2) .quote-mark { color: var(--siw-bluegray); }
.quote-card:nth-child(3) .quote-mark { color: var(--siw-mustard); }
.quote-card blockquote {
  font-weight: 500; font-size: 19px; line-height: 1.5;
  color: var(--text); margin: 0 0 28px; letter-spacing: -0.012em;
}
.quote-card .attribution {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--line);
}
.quote-card .avatar {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--bg-soft); display: flex;
  align-items: center; justify-content: center;
  font-weight: 600; color: var(--siw-gray-base);
  font-size: 14px; flex-shrink: 0; border: 1px solid var(--line);
}
.quote-card .who { line-height: 1.3; }
.quote-card .who strong { display: block; font-weight: 600; color: var(--text); font-size: 15px; }
.quote-card .who span { font-size: 13px; color: var(--text-muted); }
.statements-foot { margin-top: 48px; text-align: center; }

/* ---------- EVENTS TABLE ---------- */
.termine { padding: 120px 0; background: var(--bg); }
.table-toggle {
  display: flex; border: 1px solid var(--line);
  border-radius: var(--radius-md); overflow: hidden; background: var(--bg);
}
.table-toggle button {
  font-family: 'Manrope', sans-serif; font-weight: 600;
  font-size: 13px; padding: 10px 18px;
  background: transparent; border: 0; cursor: pointer;
  color: var(--text-muted); transition: background 0.2s, color 0.2s;
}
.table-toggle button.active { background: var(--text); color: #FFF; }
table.events { width: 100%; border-collapse: collapse; background: #FFF; }
table.events thead th {
  text-align: left; font-weight: 600; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
table.events tbody td { padding: 22px 16px; border-bottom: 1px solid var(--line); vertical-align: middle; font-size: 15px; }
table.events tbody tr { transition: background 0.2s; }
table.events tbody tr:hover { background: var(--bg-soft); }
.event-date { font-weight: 700; color: var(--text); line-height: 1.1; width: 90px; }
.event-date .day { display: block; font-size: 28px; letter-spacing: -0.02em; }
.event-date .month {
  color: var(--siw-darkgold); letter-spacing: 0.1em;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  margin-top: 2px; display: block;
}
.event-format {
  display: inline-block; font-size: 12px;
  padding: 5px 11px; background: var(--bg-soft);
  color: var(--text-muted); font-weight: 600; border-radius: 999px;
}
.event-format.lunchclub { background: #FCEEDB; color: var(--siw-darkgold); }
.event-format.kawumz   { background: #E6EEF3; color: #3F6B82; }
.event-format.ag       { background: #F0EDD7; color: #6B5F18; }
.event-format.tdik     { background: #E8E2D0; color: #6B5F18; }
.event-format.nacht    { background: #F1E0DA; color: #8A4E3C; }
.event-format.wein     { background: #E5E8D8; color: #5C6B2E; }
.event-title { font-weight: 600; font-size: 16px; color: var(--text); line-height: 1.35; }
.event-title .sub { display: block; font-weight: 400; font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.event-action a {
  font-size: 13px; color: var(--text); font-weight: 600;
  padding: 8px 16px; border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius-sm); transition: all 0.2s; white-space: nowrap;
}
.event-action a:hover { background: var(--siw-yellow); border-color: var(--siw-yellow); color: #FFF; }
.ical {
  margin-top: 32px; display: flex; gap: 24px;
  align-items: center; color: var(--text-muted);
  font-size: 14px; flex-wrap: wrap;
}
.ical a { color: var(--siw-darkgold); font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 1px; }

/* ---------- NEWS ---------- */
.news { padding: 120px 0; background: var(--bg-warm); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  background: #FFF; border-radius: var(--radius-lg);
  overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,0.08); }
.news-image { aspect-ratio: 16 / 10; background: var(--bg-soft); position: relative; overflow: hidden; }
.news-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.95); color: var(--text);
  font-weight: 600; font-size: 12px; padding: 5px 12px;
  border-radius: 999px; backdrop-filter: blur(4px);
}
.news-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.news-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; font-weight: 500; }
.news-card h3 { font-size: 21px; line-height: 1.3; margin-bottom: 14px; font-weight: 600; letter-spacing: -0.018em; }
.news-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; margin-bottom: 22px; flex: 1; }
.news-link { font-weight: 600; color: var(--siw-darkgold); font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.news-link::after { content: '→'; transition: transform 0.2s; }
.news-card:hover .news-link::after { transform: translateX(4px); }

/* ---------- CTA ---------- */
.cta { background: var(--siw-gray-deep); color: #FFF; padding: 120px 0; position: relative; overflow: hidden; }
.cta .network-bg {
  position: absolute; right: -80px; top: 50%;
  transform: translateY(-50%); width: 600px;
  opacity: 0.18; pointer-events: none;
}
.cta .container { position: relative; z-index: 2; max-width: 900px; }
.cta .eyebrow { color: var(--siw-yellow); }
.cta h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  margin-bottom: 24px; line-height: 1.05;
  font-weight: 600; color: #FFF; letter-spacing: -0.02em;
}
.cta h2 .y { color: var(--siw-yellow); }
.cta p.lead { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 640px; }
.cta-list { list-style: none; padding: 0; margin: 0 0 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; max-width: 700px; }
.cta-list li { display: flex; gap: 12px; font-size: 16px; color: rgba(255,255,255,0.92); align-items: flex-start; }
.cta-list li::before {
  content: ''; width: 7px; height: 7px;
  background: var(--siw-yellow); border-radius: 50%;
  margin-top: 9px; flex-shrink: 0;
}

/* ---------- FOOTER ---------- */
footer.site { background: #1F1F1F; color: #B5B5B0; padding: 80px 0 30px; font-size: 15px; }
footer.site .container {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
footer.site h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em;
  color: #FFF; margin-bottom: 22px; font-weight: 600;
}
footer.site a { display: block; margin-bottom: 10px; transition: color 0.2s; font-size: 15px; }
footer.site a:hover { color: var(--siw-yellow); }
footer.site .brand-block .wordmark { color: #DDD; }
footer.site .brand-block .wordmark strong { color: #FFF; }
footer.site .brand-block p { margin-top: 22px; color: #999; line-height: 1.7; max-width: 320px; font-size: 15px; }
.footer-bottom {
  padding-top: 22px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 18px;
  color: #777; font-size: 14px;
}
.footer-bottom .legal { display: flex; gap: 28px; }
.footer-bottom .legal a { margin: 0; }

/* ==========================================================================
   SUBPAGES — Additional components
   ========================================================================== */

/* ---------- STATS ROW ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.stat .num {
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--siw-darkgold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat .label { color: var(--text-muted); font-size: 15px; line-height: 1.4; }

/* ---------- FILTER BAR ---------- */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
  background: #FFF;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.filter-bar .label { font-size: 13px; color: var(--text-muted); font-weight: 600; margin-right: 4px; }
.filter-bar select,
.filter-bar input {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  font-weight: 500;
}
.filter-bar input { min-width: 220px; cursor: text; }
.filter-bar input:focus,
.filter-bar select:focus { outline: 2px solid var(--siw-yellow); outline-offset: 1px; }
.filter-bar .count { margin-left: auto; color: var(--text-muted); font-size: 14px; }
.filter-bar .count strong { color: var(--text); font-weight: 600; }

/* ---------- MEMBER GRID ---------- */
.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.member-card {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.member-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
.member-card .logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--siw-darkgold);
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.member-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.member-card .branche {
  display: inline-block;
  font-size: 12px;
  padding: 4px 10px;
  background: var(--bg-soft);
  color: var(--text-muted);
  font-weight: 600;
  border-radius: 999px;
  align-self: flex-start;
}
.member-card .description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.member-card .contact {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.member-card .contact .row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.member-card .contact .icon { color: var(--siw-darkgold); flex-shrink: 0; width: 14px; }
.member-card .contact a { color: inherit; }
.member-card .contact a:hover { color: var(--siw-darkgold); }

/* ---------- MAP SECTION ---------- */
.map-section { padding: 80px 0; background: var(--bg-soft); }
.map-frame {
  background: #FFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 16 / 8;
  position: relative;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 40%, rgba(242, 160, 61, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(138, 165, 180, 0.08) 0%, transparent 30%),
    linear-gradient(135deg, #F7F5F0 0%, #FAF8F2 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.map-pin .dot {
  width: 14px;
  height: 14px;
  background: var(--siw-yellow);
  border: 3px solid #FFF;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.map-pin .label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255,255,255,0.95);
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid var(--line);
}
.map-legend {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  border: 1px solid var(--line);
  backdrop-filter: blur(4px);
}
.map-legend .l-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.map-legend .l-row:last-child { margin-bottom: 0; }
.map-legend .l-dot { width: 10px; height: 10px; border-radius: 50%; }

/* ---------- PRICING TABLE ---------- */
.pricing { padding: 100px 0; background: var(--bg); }
.pricing-table {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}
.pricing-row:last-child { border-bottom: 0; }
.pricing-row:hover { background: var(--bg-soft); }
.pricing-row.featured { background: var(--bg-warm); }
.pricing-row .desc { font-weight: 500; font-size: 16px; }
.pricing-row .price {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--siw-darkgold);
  letter-spacing: -0.01em;
}
.pricing-row .price .unit { font-size: 13px; color: var(--text-muted); font-weight: 500; margin-left: 4px; }
.pricing-row .price.free { color: var(--text-muted); font-size: 16px; }

/* ---------- BENEFITS GRID ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.benefit {
  padding: 28px 24px;
  background: #FFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.benefit .num {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--siw-darkgold);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.benefit h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.benefit p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---------- VALUES / 3-COLUMN CARDS ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  padding: 36px 32px;
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}
.value-card.featured { background: var(--bg-soft); }
.value-card .v-label {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--siw-darkgold);
  font-weight: 600;
  margin-bottom: 18px;
}
.value-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.value-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  padding-left: 40px;
  margin: 40px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--siw-yellow), var(--siw-bluegray));
  border-radius: 2px;
}
.tl-item {
  position: relative;
  padding-bottom: 32px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: #FFF;
  border: 3px solid var(--siw-yellow);
  border-radius: 50%;
}
.tl-year {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--siw-darkgold);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.tl-title { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.tl-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; max-width: 600px; }

/* ---------- FORMAT CARDS (AG / Veranstaltungsformate) ---------- */
.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.format-card {
  padding: 32px;
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.format-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.05); }
.format-card .tag {
  display: inline-block;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  align-self: flex-start;
  letter-spacing: 0.02em;
}
.format-card.ag-1 .tag { background: #FCEEDB; color: var(--siw-darkgold); }
.format-card.ag-2 .tag { background: #E6EEF3; color: #3F6B82; }
.format-card.ag-3 .tag { background: #F0EDD7; color: #6B5F18; }
.format-card.ag-4 .tag { background: #E5E8D8; color: #5C6B2E; }
.format-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.format-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* ---------- BOARD GRID ---------- */
.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.board-card {
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.board-card .photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-soft);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--siw-darkgold);
  border: 1px solid var(--line);
}
.board-card .role {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--siw-darkgold);
  font-weight: 600;
  margin-bottom: 8px;
}
.board-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.board-card .company {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  nav.primary { display: none; }
  .hero .container,
  .intro .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 100%; justify-self: start; }
  .statements-grid,
  .news-grid,
  .member-grid,
  .benefits-grid,
  .values-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cta-list { grid-template-columns: 1fr; }
  footer.site .container { grid-template-columns: 1fr 1fr; }
  .hero { padding: 60px 0 70px; }
  .intro, .statements, .termine, .news, .cta, .section, .pricing, .map-section { padding: 80px 0; }
  .page-hero { padding: 50px 0 60px; }
  table.events thead { display: none; }
  table.events tbody td { display: block; padding: 8px 16px; border: 0; }
  table.events tbody tr {
    display: block;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  footer.site .container { grid-template-columns: 1fr; }
  .kommunen-list { gap: 18px; }
  .kommunen-list span { font-size: 16px; }
  .brand .wordmark { display: none; }
  header.site .container { gap: 16px; }
  .btn { padding: 10px 16px; font-size: 14px; }
  .utility { font-size: 12px; }
  .utility-links { gap: 14px; }
  .stats { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ERWEITERUNG · Hamburger-Menü, mobiles Menü, Querformat-Logo, Header-Login
   ========================================================================== */

/* ---------- Utility-Login-Link ---------- */
.utility-links a.util-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--siw-darkgold);
}
.utility-links a.util-login svg { width: 13px; height: 13px; }

/* ---------- Hamburger-Button ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--siw-gray-deep);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobiles Menü ---------- */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 32px 24px;
  border-top: 1px solid var(--line);
  background: #FFFFFF;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu a.active { color: var(--siw-darkgold); font-weight: 600; }
.mobile-menu .btn {
  margin-top: 14px;
  justify-content: center;
  border-bottom: 0;
  font-size: 15px;
}

/* ---------- Querformat-Logo Mitgliederkarte ---------- */
.member-logo {
  width: 100%;
  height: 88px;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px 16px;
}
.member-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.member-logo .initials {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--siw-darkgold);
}

/* ---------- Responsive-Erweiterung ---------- */
@media (max-width: 980px) {
  .hamburger { display: flex; }
  .header-cta { display: none; }
  header.site .container { gap: 16px; }
}
