:root {
  --gold: #c9a24b;
  --gold-light: #e8c987;
  --gold-dark: #8a6e28;
  --ink: #1a1a1a;
  --ink-soft: #333;
  --muted: #6b6b6b;
  --bg: #fbfaf7;
  --bg-soft: #f4efe4;
  --bg-dark: #111111;
  --card: #ffffff;
  --border: #e7e1d3;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --serif: Georgia, 'Cormorant Garamond', 'Times New Roman', Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: 2px; border-radius: 4px; }

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700; font-size: 16px;
  letter-spacing: 0.5px;
}
.brand-name {
  font-family: var(--serif);
  font-size: 20px; font-weight: 600;
  letter-spacing: 0.3px;
}
.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-dark); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(201,162,75,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201,162,75,0.45); }
.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

/* ========== HERO ========== */
.hero {
  background:
    linear-gradient(180deg, rgba(251,250,247,0.2), rgba(244,239,228,0.8)),
    radial-gradient(circle at 20% 20%, rgba(201,162,75,0.15), transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(201,162,75,0.15), transparent 60%),
    var(--bg-soft);
  padding-bottom: 80px;
}
.hero-banner {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.3px;
}
.hero-inner {
  padding-top: 90px;
  text-align: center;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.hero-sub-de {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  margin: 0 0 4px;
}
.hero-sub-en {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--muted);
  font-style: italic;
  margin: 0 0 32px;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-meta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  color: var(--muted); font-size: 14px;
}
.hero-meta .dot { opacity: 0.5; }

/* ========== PILLARS ========== */
.pillars { padding: 80px 0; background: var(--bg); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform .2s, box-shadow .25s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  display: grid; place-items: center;
  color: var(--muted);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 20px 0;
  color: var(--ink);
}

/* ========== SCRIPTURE ========== */
.scripture {
  padding: 90px 0;
  background: var(--ink);
  color: #fff;
  text-align: center;
  position: relative;
}
.scripture blockquote {
  max-width: 820px; margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.4;
  font-style: italic;
  font-weight: 500;
  color: #f5efe0;
}
.scripture cite {
  display: block;
  margin-top: 28px;
  color: var(--gold-light);
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.6px;
  font-family: var(--sans);
  font-weight: 500;
}

/* ========== SECTIONS (common) ========== */
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px);
  margin: 0 0 8px;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 48px;
  font-size: 17px;
}

/* ========== VISION ========== */
.vision { padding: 100px 0; background: var(--bg); }
.vision-text {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 17px;
  color: var(--ink-soft);
}
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vision-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: transform .2s, box-shadow .25s;
}
.vision-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vision-icon {
  font-size: 42px;
  margin-bottom: 16px;
}
.vision-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 0 0 6px;
}
.vision-card p { color: var(--muted); margin: 0; font-style: italic; }

/* ========== GROUPS ========== */
.groups { padding: 100px 0; background: var(--bg-soft); }
.groups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.group-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .25s;
}
.group-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.group-tag {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  color: #fff;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
}
.group-photo {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  display: grid; place-items: center;
  color: var(--muted);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.group-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 20px 24px 10px;
}
.group-card p {
  margin: 0 24px 10px;
  color: var(--ink-soft);
  font-size: 15px;
}
.group-card .group-en {
  color: var(--muted);
  font-style: italic;
  font-size: 14px;
  margin-bottom: 16px;
}
.group-card .group-link {
  margin: 0 24px 24px;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 14px;
  transition: color .2s, transform .2s;
  display: inline-block;
}
.group-card .group-link:hover { color: var(--gold); transform: translateX(2px); }

/* ========== STORY ========== */
.story { padding: 100px 0; background: var(--bg); }
.story-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.story-text .section-title { text-align: left; }
.story-text .section-subtitle { text-align: left; margin-bottom: 24px; }
.story-text p {
  font-size: 17px;
  color: var(--ink-soft);
}
.story-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--muted);
  border: 1px solid var(--border);
}

/* ========== PASTOR ========== */
.pastor {
  padding: 100px 0;
  background: var(--bg-soft);
}
.pastor-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.pastor-photo {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 500;
}
.pastor-text .section-title { text-align: left; margin-bottom: 18px; }
.pastor-name {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold-dark);
  margin: 0 0 12px;
}
.pastor-text p {
  font-size: 17px;
  color: var(--ink-soft);
}

/* ========== SERMONS ========== */
.sermons { padding: 100px 0; background: var(--bg); }
.sermons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.sermon-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s, box-shadow .25s;
}
.sermon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.sermon-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--ink), #2c2c2c);
  display: grid; place-items: center;
  color: var(--gold-light);
  font-size: 48px;
}
.sermon-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 18px 22px 6px;
}
.sermon-card time {
  display: block;
  margin: 0 22px 20px;
  color: var(--muted);
  font-size: 14px;
}

/* ========== CONTACT ========== */
.contact {
  padding: 100px 0;
  background: var(--ink);
  color: #f4efe4;
}
.contact .section-title { color: #fff; margin-bottom: 48px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.contact-col h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-light);
  margin: 0 0 8px;
}
.contact-col p { margin: 0 0 20px; color: #d8d2c4; }
.contact-col a { color: #d8d2c4; transition: color .2s; border-bottom: 1px dotted rgba(255,255,255,0.2); }
.contact-col a:hover { color: var(--gold-light); }
.contact-col .btn { border-bottom: none; color: #fff; }
.times { list-style: none; padding: 0; margin: 0; }
.times li {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;
}
.times li strong { color: #fff; }
.times li span { color: #d8d2c4; }
.map-placeholder {
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.map-placeholder p { margin: 0 0 16px; color: #d8d2c4; font-size: 15px; }
.map-placeholder .btn { margin: 0 0 14px; }
.map-placeholder .map-note { font-size: 12px; color: var(--muted); font-style: italic; margin: 0; }

/* ========== FOOTER ========== */
.footer {
  background: #0c0c0c;
  color: #aaa;
  padding: 40px 0 24px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer .brand-name { color: #fff; margin-bottom: 4px; }
.footer p { margin: 0; font-size: 14px; color: #aaa; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: #ccc; font-size: 14px;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy {
  text-align: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #888;
  font-size: 13px;
}

/* ========== LEGAL PAGES (Impressum, Datenschutz) ========== */
.legal {
  padding: 70px 0 90px;
  background: var(--bg);
  min-height: 70vh;
}
.legal-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--ink);
}
.legal-sub {
  color: var(--muted);
  font-style: italic;
  margin: 0 0 48px;
  font-size: 17px;
}
.legal-block {
  margin-bottom: 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}
.legal-block:last-child { border-bottom: none; }
.legal-block h2 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold-dark);
  margin: 0 0 14px;
  font-weight: 600;
}
.legal-block p, .legal-block ul {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.legal-block ul { padding-left: 24px; }
.legal-block li { margin-bottom: 6px; }
.legal-block a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color .2s;
}
.legal-block a:hover { color: var(--gold); }
.legal-block strong { color: var(--ink); }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .pillars-grid,
  .vision-grid,
  .groups-grid,
  .sermons-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .story-inner,
  .pastor-inner { grid-template-columns: 1fr; }
  .brand-name { font-size: 17px; }
  .hero-inner { padding-top: 60px; }
  .legal { padding: 40px 0 60px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
