:root {
  --gold: #B5860D;
  --gold-dark: #8f6909;
  --gold-soft: #FAEEDA;
  --gold-pale: #FDF6E3;
  --gold-border: #FAC775;
  --green: #1D9E75;
  --green-soft: #E1F5EE;
  --green-dark: #0F6E56;
  --amber: #EF9F27;
  --amber-soft: #FFF2DB;
  --amber-dark: #8A5207;
  --blue: #378ADD;
  --blue-soft: #E6F1FB;
  --blue-dark: #185FA5;
  --red: #C44949;
  --red-soft: #FCEBEB;
  --red-dark: #A32D2D;
  --unknown: #888780;
  --unknown-soft: #eeeeea;
  --ink: #1a1a1a;
  --muted: #666666;
  --soft: #999999;
  --line: #e8e5df;
  --line-strong: #d8d2c8;
  --paper: #ffffff;
  --warm: #f7f6f3;
  --max: 1120px;
  --content: 800px;
  --shadow: 0 18px 50px rgba(42, 34, 17, .09);
  --transition: .15s ease;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}
.skip-link:focus { transform: translateY(0); }
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(232, 229, 223, .86);
  backdrop-filter: blur(18px);
  transition: box-shadow var(--transition), background var(--transition);
}
.nav.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 1px 14px rgba(0,0,0,.06);
}
.nav-inner {
  min-height: 66px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -.01em;
}
.brand-mark {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
}
.brand-mark span {
  position: absolute;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}
.brand-mark span:nth-child(1) { top: 2px; left: 8px; }
.brand-mark span:nth-child(2) { bottom: 3px; left: 2px; background: rgba(181,134,13,.55); }
.brand-mark span:nth-child(3) { bottom: 3px; right: 2px; background: rgba(181,134,13,.75); }
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(181,134,13,.34);
  border-radius: 999px;
}
.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 9px 9px;
  border-radius: 999px;
  color: #343434;
  font-size: 13px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--gold-dark);
  background: var(--gold-pale);
}
.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(181,134,13,.32);
  border-radius: 999px;
  color: var(--gold-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 750;
  transition: background var(--transition), border var(--transition);
}
.nav-cta:hover { background: var(--gold-pale); border-color: rgba(181,134,13,.55); }
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 2px 0;
  border-radius: 99px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}
.menu-button.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-button.open span:nth-child(2) { opacity: 0; }
.menu-button.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.98);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 13px 0;
  color: #333;
  font-size: 14px;
  border-bottom: 1px solid rgba(232,229,223,.7);
}
.mobile-menu a:last-child { border-bottom: 0; color: var(--gold-dark); font-weight: 700; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 50%, #f4f0e7 100%);
  border-top: 3px solid var(--gold);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 26%, rgba(181,134,13,.16), transparent 25%),
    radial-gradient(circle at 22% 76%, rgba(29,158,117,.09), transparent 26%),
    linear-gradient(120deg, transparent 0 58%, rgba(181,134,13,.07) 58% 59%, transparent 59% 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -190px;
  top: -190px;
  border: 1px solid rgba(181,134,13,.18);
  border-radius: 999px;
  box-shadow: 0 0 0 70px rgba(181,134,13,.035), 0 0 0 150px rgba(181,134,13,.025);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 52px;
  align-items: center;
  padding: 78px 0;
}
.eyebrow {
  margin: 0 0 11px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .105em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 730px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(34px, 6vw, 66px);
  font-weight: 590;
  line-height: .98;
  letter-spacing: -.065em;
}
h1 span { color: var(--gold); }
.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: #4e4e4e;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
}
.button-row {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  transition: transform var(--transition), background var(--transition), border var(--transition), color var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 10px 22px rgba(181,134,13,.20);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-secondary {
  color: #333;
  background: rgba(255,255,255,.86);
  border-color: #cbc6bc;
}
.btn-secondary:hover { background: #fff; border-color: #aaa49a; }
.btn-ghost {
  color: var(--gold-dark);
  background: transparent;
  border-color: rgba(181,134,13,.28);
}
.btn-ghost:hover { background: var(--gold-pale); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.trust-row span {
  padding: 5px 10px;
  border: 1px solid rgba(181,134,13,.20);
  border-radius: 999px;
  color: #756243;
  background: rgba(255,255,255,.56);
  font-size: 12px;
  font-weight: 700;
}
.hero-panel, .bridge-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(181,134,13,.22);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.panel-topline {
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #dcb14d, rgba(181,134,13,.25));
}
.panel-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  font-size: 12px;
  font-weight: 850;
}
.hero-panel h2 { margin-bottom: 12px; font-size: 24px; line-height: 1.18; letter-spacing: -.04em; }
.hero-panel p { margin-bottom: 20px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.panel-list { display: grid; gap: 9px; }
.panel-list span {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(247,246,243,.78);
  color: #3b3b3b;
  font-size: 13px;
}
.panel-list strong { color: var(--gold); font-size: 12px; }

.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { padding: 27px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat-number { display: block; font-size: 42px; font-weight: 590; line-height: 1; letter-spacing: -.055em; }
.stat-number.green { color: var(--green); }
.stat-number.blue { color: var(--blue); }
.stat-number.gold { color: var(--gold); }
.stat-label { display: block; max-width: 230px; margin: 9px auto 0; color: var(--muted); font-size: 13px; line-height: 1.35; }

.section { padding: 78px 0; }
.section-alt { background: linear-gradient(180deg, rgba(247,246,243,.84), rgba(247,246,243,1)), var(--warm); }
.section-head { max-width: var(--content); margin-bottom: 30px; }
.section-head.split {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  max-width: none;
}
.section-head h2, .join-intro h2 {
  margin-bottom: 13px;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 580;
  line-height: 1.08;
  letter-spacing: -.05em;
}
.section-head p, .join-intro p {
  max-width: 720px;
  margin-bottom: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.78;
}
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 40px;
  align-items: center;
  margin-bottom: 24px;
}
.bridge-card {
  display: grid;
  gap: 18px;
}
.bridge-card div {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(247,246,243,.8);
}
.bridge-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.bridge-card strong { display: block; font-size: 16px; line-height: 1.35; }
.bridge-card i { color: var(--gold); font-size: 28px; text-align: center; font-style: normal; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feature-grid-3 { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.035);
  transition: transform var(--transition), border var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-2px); border-color: var(--line-strong); box-shadow: 0 18px 40px rgba(0,0,0,.07); }
.icon-box {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 13px;
  color: var(--gold);
  background: var(--gold-pale);
  font-size: 19px;
  font-weight: 850;
}
.feature-card h3 { margin-bottom: 8px; font-size: 15px; line-height: 1.3; }
.feature-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.callout {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  background: var(--gold-pale);
}
.callout strong { color: #5c4206; }
.callout span { color: #5c4206; font-size: 14px; line-height: 1.65; }

.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.timeline article {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.035);
}
.timeline article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 0 0 99px 99px;
  background: var(--gold);
}
.timeline span {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  font-size: 12px;
  font-weight: 850;
}
.timeline h3 { margin-bottom: 8px; font-size: 15px; line-height: 1.35; }
.timeline p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.mini-stat {
  min-width: 128px;
  padding: 14px 16px;
  border: 1px solid rgba(181,134,13,.25);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  text-align: center;
}
.mini-stat span { display: block; color: var(--gold); font-size: 30px; font-weight: 700; line-height: 1; }
.mini-stat small { color: var(--muted); font-size: 11px; }
.privacy-note {
  margin: -4px 0 14px;
  padding: 14px 16px;
  border: 1px solid rgba(55,138,221,.25);
  border-radius: 18px;
  color: #244a6e;
  background: rgba(230,241,251,.72);
  font-size: 13px;
  line-height: 1.6;
}
.map-row { margin-bottom: 18px; }
.legend { display: flex; flex-wrap: wrap; gap: 10px 15px; margin: 0 0 18px; }
.legend span { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 12px; }
.legend-dot { width: 10px; height: 10px; border-radius: 999px; background: var(--unknown); }
.legend-dot.active { background: var(--green); }
.legend-dot.planned { background: var(--amber); }
.legend-dot.body { background: var(--blue); }
.legend-dot.unknown { background: var(--unknown); }
.legend-dot.no { background: var(--red); }

.finder {
  position: sticky;
  top: 78px;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid rgba(232,229,223,.9);
  border-radius: 20px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 10px 32px rgba(0,0,0,.045);
  backdrop-filter: blur(16px);
}
.search-wrap { position: relative; display: block; }
.search-wrap span { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--soft); pointer-events: none; }
.search-wrap input {
  width: 100%;
  min-height: 43px;
  padding: 10px 12px 10px 40px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  transition: border var(--transition), box-shadow var(--transition);
}
.search-wrap input:focus { border-color: rgba(181,134,13,.58); box-shadow: 0 0 0 4px rgba(181,134,13,.12); }
.filter-row { display: flex; gap: 7px; overflow-x: auto; scrollbar-width: thin; }
.filter-btn {
  flex: 0 0 auto;
  min-height: 35px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #3f3f3f;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border var(--transition);
}
.filter-btn:hover { border-color: var(--line-strong); background: #fbfaf8; }
.filter-btn.active { color: #854F0B; border-color: rgba(181,134,13,.58); background: var(--gold-soft); }

.diocese-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(252px, 1fr)); gap: 13px; }
.diocese-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 214px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.035);
  transition: transform var(--transition), border var(--transition), box-shadow var(--transition);
}
.diocese-card.is-hidden { display: none !important; }
.diocese-card:hover { transform: translateY(-2px); border-color: var(--line-strong); box-shadow: 0 18px 38px rgba(0,0,0,.07); }
.status-line { display: flex; align-items: center; gap: 8px; margin-bottom: 13px; }
.status-dot { width: 10px; height: 10px; flex: 0 0 10px; border-radius: 999px; background: var(--unknown); }
.badge { display: inline-flex; min-height: 21px; align-items: center; padding: 4px 8px; border-radius: 999px; font-size: 11px; font-weight: 850; line-height: 1; }
.status-aktiv .status-dot { background: var(--green); }
.status-geplant .status-dot { background: var(--amber); }
.status-gremium .status-dot { background: var(--blue); }
.status-offen .status-dot { background: var(--unknown); }
.status-kein .status-dot { background: var(--red); }
.badge-aktiv { color: var(--green-dark); background: var(--green-soft); }
.badge-geplant { color: var(--amber-dark); background: var(--amber-soft); }
.badge-gremium { color: var(--blue-dark); background: var(--blue-soft); }
.badge-offen { color: #56554f; background: var(--unknown-soft); }
.badge-kein { color: var(--red-dark); background: var(--red-soft); }
.diocese-name { margin-bottom: 8px; color: var(--ink); font-size: 15px; font-weight: 760; line-height: 1.25; }
.card-meta { display: grid; gap: 6px; margin-bottom: 12px; }
.card-meta span { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; }
.card-meta .yes { color: var(--green-dark); font-weight: 760; }
.card-meta .unclear { color: var(--amber-dark); font-weight: 760; }
.card-meta .no { color: var(--soft); }
.hint { color: var(--muted); font-size: 12px; line-height: 1.5; }
.source { margin-top: auto; padding-top: 12px; color: var(--soft); font-size: 11px; line-height: 1.4; }
.empty-state {
  display: none;
  margin-top: 14px;
  padding: 18px;
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255,255,255,.68);
  text-align: center;
  font-size: 13px;
}
.note { margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.note a, .submit-box a, .footer-mail { color: var(--gold); font-weight: 760; }
.note a:hover, .submit-box a:hover, .footer-mail:hover { color: var(--gold-dark); }

.material-list { display: grid; gap: 11px; max-width: 900px; }
.material-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform var(--transition), border var(--transition), background var(--transition), box-shadow var(--transition);
}
.material-row:hover { transform: translateY(-1px); border-color: var(--line-strong); background: #fbfaf8; box-shadow: 0 12px 30px rgba(0,0,0,.04); }
.material-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}
.material-icon.pdf { color: var(--red-dark); background: var(--red-soft); }
.material-icon.web { color: var(--blue-dark); background: var(--blue-soft); }
.material-main strong { display: block; color: var(--ink); font-size: 15px; line-height: 1.35; }
.material-main small { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; line-height: 1.35; }
.material-action { color: var(--gold); font-size: 13px; font-weight: 850; white-space: nowrap; }
.submit-box {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  max-width: 900px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  background: var(--gold-pale);
}
.submit-box > span { color: var(--gold); font-size: 19px; }
.submit-box p { margin: 0; color: #5c4206; font-size: 13px; line-height: 1.65; }

.join-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.join-card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -135px;
  top: -140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(181,134,13,.14), transparent 64%);
  pointer-events: none;
}
.join-intro { position: relative; max-width: 760px; }
.steps { position: relative; display: grid; gap: 13px; margin: 26px 0; max-width: 800px; }
.step { display: grid; grid-template-columns: 32px 1fr; gap: 13px; align-items: start; }
.step span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #854F0B;
  font-size: 13px;
  font-weight: 900;
}
.step p { margin: 4px 0 0; color: #444; font-size: 14px; line-height: 1.6; }
.communicare-note {
  position: relative;
  max-width: 790px;
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  max-width: 900px;
  margin-bottom: 18px;
}
.person-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.035);
}
.person-avatar {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}
.person-avatar.gold { color: #854F0B; background: var(--gold-soft); }
.person-avatar.green { color: var(--green-dark); background: var(--green-soft); }
.person-card h3 { margin: 0 0 3px; font-size: 16px; line-height: 1.3; }
.person-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; max-width: 900px; }
.principles article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.035);
}
.principles strong { display: block; margin-bottom: 6px; font-size: 15px; }
.principles span { display: block; color: var(--muted); font-size: 13px; line-height: 1.55; }
.partner-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.partner-pills span {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 5px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.footer {
  padding: 38px 0;
  background: radial-gradient(circle at 20% 0%, rgba(181,134,13,.15), transparent 32%), #1a1a1a;
  color: #fff;
}
.footer-inner { display: grid; justify-items: center; gap: 13px; text-align: center; }
.footer-brand .brand-mark::after { border-color: rgba(181,134,13,.48); }
.footer p { margin: 0; color: #888; font-size: 12px; }

@media (max-width: 1040px) {
  .nav-links, .nav-cta { display: none; }
  .menu-button { display: grid; justify-self: end; }
  .hero-grid, .two-col { grid-template-columns: 1fr; gap: 28px; }
  .hero-panel, .bridge-card { max-width: 620px; }
  .feature-grid, .feature-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .finder { grid-template-columns: 1fr; top: 72px; }
}
@media (max-width: 720px) {
  .container { width: min(var(--max), calc(100% - 36px)); }
  .hero { min-height: auto; }
  .hero-grid { padding: 56px 0; }
  .section { padding: 62px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 23px 18px; }
  .stat:last-child { border-bottom: 0; }
  .section-head.split { grid-template-columns: 1fr; align-items: start; }
  .mini-stat { justify-self: start; text-align: left; }
  .material-row { grid-template-columns: 52px 1fr; }
  .material-action { grid-column: 2; justify-self: start; }
  .join-card { padding: 28px 22px; border-radius: 22px; }
  .principles, .people-grid { grid-template-columns: 1fr; }
  .callout { display: block; }
  .callout strong { display: block; margin-bottom: 6px; }
}
@media (max-width: 520px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .brand-text { font-size: 13px; line-height: 1.25; }
  .hero-copy { font-size: 16px; }
  .button-row .btn { width: 100%; }
  .feature-grid, .feature-grid-3, .timeline { grid-template-columns: 1fr; }
  .finder { position: static; }
  .filter-row { padding-bottom: 3px; }
  .hero-panel, .bridge-card { padding: 24px; border-radius: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }
}


/* v4: professionellere Bildintegration und luftigere Abstände */
:root {
  --section-space: 104px;
  --section-space-mobile: 72px;
}

.hero {
  min-height: 720px;
  background:
    linear-gradient(90deg, rgba(26,26,26,.68), rgba(26,26,26,.30) 42%, rgba(247,246,243,.94) 72%),
    url("assets/images/synode-teilnehmer.jpg") center / cover no-repeat;
}
.hero-bg {
  background:
    radial-gradient(circle at 78% 26%, rgba(181,134,13,.20), transparent 25%),
    linear-gradient(120deg, transparent 0 58%, rgba(181,134,13,.10) 58% 59%, transparent 59% 100%);
}
.hero .eyebrow,
.hero h1,
.hero .hero-copy {
  color: #fff;
}
.hero .eyebrow {
  color: #f2c866;
}
.hero h1 span {
  color: #f6c65a;
}
.hero-copy {
  color: rgba(255,255,255,.88);
}
.hero .trust-row span {
  color: rgba(255,255,255,.86);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.hero-panel.image-panel {
  padding: 0;
  background: rgba(255,255,255,.90);
}
.panel-image {
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 25%, rgba(181,134,13,.16), transparent 45%),
    #fff;
  border-bottom: 1px solid var(--line);
}
.panel-image img {
  max-width: min(240px, 76%);
  max-height: 210px;
  object-fit: contain;
}
.panel-body {
  padding: 28px;
}
.section {
  padding: var(--section-space) 0;
}
.visual-strip {
  padding: 84px 0;
  background: #fff;
}
.visual-strip-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: center;
}
.wide-photo,
.section-image,
.logo-card,
.pope-card,
.vatikan-card,
.visual-bridge figure {
  margin: 0;
}
.wide-photo {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.wide-photo img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.visual-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -.055em;
}
.visual-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}
.synod-team-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 18px;
  align-items: stretch;
  margin-top: 22px;
}
.logo-card {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.035);
}
.logo-card img {
  max-width: 190px;
  max-height: 150px;
  object-fit: contain;
}
.visual-bridge {
  padding: 0;
  background: #fff;
}
.visual-bridge figure {
  padding: 30px 28px 22px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.visual-bridge img {
  display: block;
  width: 100%;
  max-height: 190px;
  object-fit: contain;
}
.visual-bridge div {
  padding: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.method-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}
.method-visual {
  position: relative;
  min-height: 470px;
}
.pope-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 82%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, #fff, var(--warm));
  box-shadow: var(--shadow);
}
.pope-card img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: contain;
  object-position: bottom center;
}
.vatikan-card {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
}
.vatikan-card img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.method-content h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -.055em;
}
.method-content > p {
  color: #555;
  font-size: 16px;
  line-height: 1.82;
  max-width: 720px;
}
.method-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 26px;
}
.method-steps article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.035);
}
.method-steps span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #854F0B;
  font-size: 13px;
  font-weight: 900;
}
.method-steps h3 {
  margin-bottom: 7px;
  font-size: 15px;
}
.method-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}
.section-image {
  overflow: hidden;
  margin: -4px 0 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.section-image img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.section-image figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.section-head {
  margin-bottom: 42px;
}
.feature-grid,
.timeline,
.diocese-grid,
.material-list,
.principles,
.people-grid {
  gap: 18px;
}
.feature-card,
.timeline article,
.diocese-card,
.material-row,
.principles article,
.person-card {
  border-radius: 22px;
}
.callout {
  margin-top: 0;
}
.stats .container {
  width: min(960px, calc(100% - 48px));
}
.credits {
  opacity: .72;
  font-size: 11px !important;
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(26,26,26,.72), rgba(26,26,26,.42) 54%, rgba(247,246,243,.96)),
      url("assets/images/synode-teilnehmer.jpg") center / cover no-repeat;
  }
  .visual-strip-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }
  .method-visual {
    max-width: 520px;
  }
  .synod-team-highlight {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: var(--section-space-mobile) 0;
  }
  .visual-strip {
    padding: 64px 0;
  }
  .wide-photo img {
    height: 280px;
  }
  .method-visual {
    min-height: 380px;
  }
  .pope-card img {
    height: 340px;
  }
  .vatikan-card img {
    height: 130px;
  }
  .method-steps {
    grid-template-columns: 1fr;
  }
  .section-image img {
    height: 210px;
  }
}

@media (max-width: 520px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(26,26,26,.76), rgba(26,26,26,.42) 62%, rgba(247,246,243,.98)),
      url("assets/images/synode-teilnehmer.jpg") center / cover no-repeat;
  }
  .panel-image {
    min-height: 190px;
  }
  .method-visual {
    min-height: 330px;
  }
  .pope-card {
    width: 86%;
  }
  .pope-card img {
    height: 300px;
  }
  .vatikan-card {
    width: 64%;
  }
}


/* v5: Lesbarkeit, keine doppelte Fotoverwendung, luftigeres Layout */
:root {
  --section-space: 118px;
  --section-space-mobile: 82px;
}

.hero {
  min-height: 720px;
  background:
    radial-gradient(circle at 82% 18%, rgba(181,134,13,.18), transparent 28%),
    radial-gradient(circle at 16% 82%, rgba(55,138,221,.08), transparent 30%),
    linear-gradient(135deg, #fffaf0 0%, #ffffff 52%, #f7f6f3 100%) !important;
  color: var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(181,134,13,.08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(181,134,13,.06) 0 1px, transparent 1px 100%);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 70%, transparent);
  opacity: .55;
  pointer-events: none;
}
.hero-bg {
  background:
    radial-gradient(circle at 75% 32%, rgba(181,134,13,.18), transparent 32%),
    linear-gradient(120deg, transparent 0 58%, rgba(181,134,13,.08) 58% 59%, transparent 59% 100%);
}
.hero .eyebrow {
  color: var(--gold);
}
.hero h1 {
  color: var(--ink);
}
.hero h1 span {
  color: var(--gold);
}
.hero-copy {
  color: #4e4e4e;
}
.hero .trust-row span {
  color: #756243;
  border-color: rgba(181,134,13,.20);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(10px);
}
.document-panel {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}
.hero-document {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(90, 58, 12, .16);
  transform: rotate(1.5deg);
}
.hero-document::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.05), rgba(255,255,255,.45) 44%, rgba(255,255,255,.04));
  pointer-events: none;
}
.hero-document img {
  display: block;
  width: 100%;
  height: auto;
}
.visual-strip {
  padding: 96px 0;
}
.visual-strip-grid {
  grid-template-columns: .95fr 1.05fr;
}
.wide-photo img {
  height: 360px;
}
.synod-team-highlight {
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: stretch;
}
.logo-card {
  min-height: 220px;
}
.logo-card img {
  max-width: 220px;
  max-height: 190px;
}
.method-grid-clean {
  grid-template-columns: minmax(310px, 430px) minmax(0, 1fr);
  gap: 70px;
}
.conversation-infographic {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #e8eefb;
  box-shadow: var(--shadow);
}
.conversation-infographic img {
  display: block;
  width: 100%;
  height: auto;
}
.conversation-infographic iframe {
  display: block;
  width: 100%;
  min-height: 640px;
  border: 0;
}
.conversation-infographic figcaption {
  padding: 14px 18px;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.55;
}
.method-steps {
  grid-template-columns: repeat(2, 1fr);
}
.method-download {
  margin-top: 24px;
}
.section-image.document-image {
  max-width: 520px;
  margin: -6px 0 34px;
  border-radius: 28px;
}
.section-image.document-image img {
  height: auto;
  max-height: none;
  object-fit: contain;
  background: #fff;
}
.section-image.document-image figcaption {
  background: #fff;
}
#ueber .section-head {
  margin-bottom: 32px;
}
#ueber .people-grid {
  margin-bottom: 0;
}
.section-head {
  margin-bottom: 50px;
}
.section-head p,
.join-intro p,
.method-content > p,
.visual-copy p {
  font-size: 16px;
  line-height: 1.85;
}
.feature-grid,
.timeline,
.diocese-grid,
.material-list,
.people-grid {
  gap: 22px;
}
.feature-card,
.timeline article,
.diocese-card,
.material-row,
.person-card {
  padding: 24px;
}
.timeline article {
  min-height: 220px;
}
.diocese-card {
  min-height: 236px;
}
.footer .credits {
  max-width: 620px;
}

@media (max-width: 1040px) {
  .method-grid-clean,
  .visual-strip-grid {
    grid-template-columns: 1fr;
  }
  .conversation-infographic {
    max-width: 540px;
  }
  .synod-team-highlight {
    grid-template-columns: 1fr;
  }
  .hero-document {
    max-width: 520px;
    transform: none;
  }
}

@media (max-width: 720px) {
  :root {
    --section-space-mobile: 78px;
  }
  .visual-strip {
    padding: 72px 0;
  }
  .wide-photo img {
    height: 250px;
  }
  .method-steps {
    grid-template-columns: 1fr;
  }
  .conversation-infographic iframe {
    min-height: 520px;
  }
  .section-image.document-image {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .hero-document {
    border-radius: 22px;
  }
  .conversation-infographic {
    border-radius: 22px;
  }
}


/* v6: Hero lesbarer, Statistik entfernt, Karte eingebaut, lokales Dokumentenpaket */
.hero {
  min-height: 660px !important;
  background:
    radial-gradient(circle at 82% 18%, rgba(181,134,13,.14), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(181,134,13,.08), transparent 32%),
    linear-gradient(135deg, #fbf8ef 0%, #ffffff 48%, #f7f6f3 100%) !important;
  color: var(--ink);
}
.hero-grid {
  grid-template-columns: minmax(0, 780px) !important;
  justify-content: start;
  padding: 98px 0 92px;
}
.hero-content {
  position: relative;
  padding: 38px 42px;
  border: 1px solid rgba(232,229,223,.82);
  border-top: 4px solid var(--gold);
  border-radius: 32px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 22px 70px rgba(42,34,17,.08);
  backdrop-filter: blur(16px);
}
.hero .eyebrow {
  color: var(--gold) !important;
}
.hero h1 {
  color: var(--ink) !important;
}
.hero h1 span {
  color: var(--gold) !important;
}
.hero-copy {
  max-width: 680px;
  color: #414141 !important;
  font-weight: 430;
}
.hero .trust-row span {
  color: #6f5a32 !important;
  border-color: rgba(181,134,13,.22) !important;
  background: rgba(253,246,227,.75) !important;
}
.stats {
  display: none !important;
}
.map-preview {
  overflow: hidden;
  margin: 8px 0 24px;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.map-preview img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.map-preview figcaption {
  padding: 14px 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
  font-size: 12px;
  line-height: 1.55;
}
#zeitplan .section-head {
  margin-bottom: 34px;
}
#zeitplan .section-image {
  display: none !important;
}
.material-row[href^="assets/docs/"] .material-action {
  color: var(--green-dark);
}
.people-grid {
  margin-top: 6px;
}
.person-card h3 {
  font-size: 17px;
}
@media (max-width: 720px) {
  .hero-grid {
    padding: 64px 0;
  }
  .hero-content {
    padding: 28px 22px;
    border-radius: 24px;
  }
  .map-preview img {
    height: 260px;
  }
}


/* v7: Hero wieder näher an Version 2, Karte-Bild entfernt, externe Seiten ergänzt */
.hero {
  min-height: 590px !important;
  background:
    radial-gradient(circle at top right, rgba(181,134,13,0.10), transparent 34%),
    var(--warm) !important;
  border-top: 3px solid var(--gold);
}
.hero::before {
  display: none !important;
}
.hero-bg {
  background:
    radial-gradient(circle at 78% 26%, rgba(181,134,13,.10), transparent 34%),
    linear-gradient(120deg, transparent 0 58%, rgba(181,134,13,.045) 58% 59%, transparent 59% 100%);
}
.hero-grid {
  grid-template-columns: minmax(0, 1fr) 380px !important;
  gap: 52px !important;
  align-items: center;
  justify-content: initial;
  padding: 74px 0 !important;
}
.hero-content {
  padding: 0 !important;
  border: 0 !important;
  border-top: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.hero .eyebrow {
  color: var(--gold) !important;
}
.hero h1 {
  color: var(--ink) !important;
}
.hero h1 span {
  color: var(--gold) !important;
}
.hero-copy {
  max-width: 620px;
  color: #555 !important;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.78;
}
.hero .trust-row span {
  color: #756243 !important;
  border-color: rgba(181,134,13,.20) !important;
  background: rgba(255,255,255,.62) !important;
}
.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(181,134,13,.22);
  border-radius: 28px;
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.panel-topline {
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #dcb14d, rgba(181,134,13,.25));
}
.map-preview {
  display: none !important;
}
.external-links {
  max-width: 900px;
  margin: 34px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.external-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.external-link-grid a {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform var(--transition), border var(--transition), box-shadow var(--transition);
}
.external-link-grid a:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: 0 12px 30px rgba(0,0,0,.045);
}
.external-link-grid strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}
.external-link-grid span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-panel {
    max-width: 560px;
  }
}
@media (max-width: 720px) {
  .hero-grid {
    padding: 56px 0 !important;
  }
  .external-link-grid {
    grid-template-columns: 1fr;
  }
}


/* v8: gewünschte Textkorrekturen, Zeitplan nach Hero, Gespräch als ausklappbarer Bereich */
.hero-copy {
  max-width: 760px;
}
.hero-panel p + p {
  margin-top: -8px;
}
#zeitplan {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-compact {
  padding: 54px 0;
}
.accordion-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(42,34,17,.06);
  overflow: hidden;
}
.accordion-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 32px;
}
.accordion-card summary::-webkit-details-marker {
  display: none;
}
.accordion-card summary strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: -.04em;
}
.accordion-card summary i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  transition: transform var(--transition);
}
.accordion-card[open] summary i {
  transform: rotate(45deg);
}
.accordion-content {
  padding: 0 32px 32px;
  border-top: 1px solid var(--line);
}
.accordion-content.method-grid-clean {
  align-items: start;
  padding-top: 32px;
}
.visual-copy p + p {
  margin-top: 14px;
}
@media (max-width: 720px) {
  .accordion-card summary {
    padding: 22px;
  }
  .accordion-content {
    padding: 0 22px 22px;
  }
}


/* v9: offizielles Logo, Domain/Mail, weiße Weg-Sektion, einheitlich Synodale Teams */
.logo-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.logo-brand img {
  display: block;
  width: auto;
  height: 42px;
  max-width: min(360px, 52vw);
  object-fit: contain;
}
.nav-inner {
  min-height: 74px;
}
.hero-logo {
  display: block;
  width: min(420px, 82vw);
  height: auto;
  margin: 0 0 24px;
}
#zeitplan {
  background: #fff !important;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
#zeitplan.section-alt {
  background: #fff !important;
}
.footer-logo-brand img {
  filter: brightness(0) invert(1);
  opacity: .96;
  max-width: min(420px, 78vw);
  height: 48px;
}
.footer .brand-mark,
.footer .brand-text {
  display: none !important;
}
@media (max-width: 720px) {
  .logo-brand img {
    height: 34px;
    max-width: 64vw;
  }
  .nav-inner {
    min-height: 64px;
  }
  .hero-logo {
    width: min(340px, 90vw);
    margin-bottom: 20px;
  }
}


/* v10: Hero-Logo entfernt, Footer-Unterseiten, Reihenfolge konsolidiert */
.hero-logo {
  display: none !important;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 2px 0 0;
}
.footer-links a {
  color: #d7d7d7;
  font-size: 13px;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
}
.legal-main {
  background: var(--warm);
  min-height: 70vh;
  padding: 72px 0 96px;
}
.legal-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}
.legal-card h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
}
.legal-card h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 21px;
}
.legal-card p,
.legal-card li {
  color: #555;
  font-size: 15px;
  line-height: 1.75;
}
.legal-card a {
  color: var(--gold);
  font-weight: 700;
}
.legal-note {
  padding: 14px 16px;
  border: 1px solid var(--gold-border);
  border-radius: 16px;
  background: var(--gold-pale);
  color: #5c4206 !important;
}
@media (max-width: 720px) {
  .legal-card {
    padding: 28px 22px;
    border-radius: 22px;
  }
}


/* v11: Footer-Bibelvers und aktualisierte Rechtstexte */
.footer-verse {
  margin: 4px 0 0 !important;
  color: #d7d7d7 !important;
  font-size: 13px !important;
  line-height: 1.55;
}
.footer-verse span {
  color: var(--gold);
  font-weight: 700;
}
.legal-card address {
  font-style: normal;
  color: #555;
  line-height: 1.75;
}
.legal-card ul {
  margin-top: 8px;
  padding-left: 20px;
}


/* v12: Footer auf allen Seiten vereinheitlicht */
.footer .credits {
  display: none !important;
}


/* v14: Digitale Austauschtreffen */
.meeting-head-button {
  align-self: end;
  white-space: nowrap;
}
.meeting-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr .9fr;
  gap: 22px;
  align-items: stretch;
}
.meeting-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(42,34,17,.055);
}
.meeting-card-primary {
  border-top: 4px solid var(--gold);
}
.meeting-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
}
.meeting-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: -.025em;
}
.meeting-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}
.meeting-facts {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
}
.meeting-facts div {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.meeting-facts dt {
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.meeting-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}
.meeting-note {
  margin: 14px 0 0;
  color: #5c4206 !important;
  font-size: 13px !important;
}
@media (max-width: 1040px) {
  .meeting-grid {
    grid-template-columns: 1fr;
  }
  .meeting-head-button {
    justify-self: start;
  }
}
@media (max-width: 520px) {
  .meeting-facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
