/* ================================================================
   BIBELENTDECKUNGSREISE — Design System
   Farben orientiert am Entwurf: kräftiges Kirchen-Rot + Creme
   ================================================================ */
:root {
  /* Brand palette */
  --red-900: #8a0a1f;
  --red-700: #b71424;    /* primary red (header, cards) */
  --red-600: #c8102e;    /* accent red */
  --red-500: #d93346;

  --cream-100: #faf6ec;
  --cream-200: #f2ece0;  /* tile fill from entwurf */
  --cream-300: #e8dfcc;

  --ink-900: #1a1612;
  --ink-700: #3a2f26;
  --ink-500: #6b5e50;
  --ink-300: #a89e8e;

  --white: #ffffff;

  /* Layout */
  --container: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-hand: 'Caveat', 'Kalam', 'Brush Script MT', cursive;

  --shadow-sm: 0 2px 8px rgba(26, 22, 18, 0.06);
  --shadow-md: 0 10px 30px rgba(26, 22, 18, 0.12);
  --shadow-lg: 0 25px 60px rgba(183, 20, 36, 0.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--white); color: var(--ink-900); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; padding-top: 72px; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Header ===== */
.ber-header {
  position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  color: var(--ink-900);
  border-bottom: 2px solid var(--red-600);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 8px 24px rgba(26,22,18,0.06);
}
@supports not (backdrop-filter: blur(20px)) {
  .ber-header { background: rgba(255, 255, 255, 0.96); }
}
.ber-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.ber-nav {
  display: flex; gap: 4px; align-items: center;
}
.ber-nav a {
  color: var(--ink-900);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
  display: inline-block;
}
.ber-nav a:hover { background: rgba(183,20,36,0.06); color: var(--red-700); }
.ber-nav a.active { background: rgba(183,20,36,0.08); color: var(--red-700); font-weight: 600; }
.ber-nav a.active::after {
  content: '';
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 3px; background: var(--red-600); border-radius: 2px;
}
.ber-nav .ber-nav-download {
  margin-left: 12px;
  padding: 9px 18px;
  font-size: 13.5px;
  color: var(--white);
}
.ber-nav .ber-nav-download:hover { background: var(--red-700); color: var(--white); }
.ber-logo-mark {
  width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center;
  transform: rotate(-6deg) translateY(14px);
  flex-shrink: 0;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.22));
  transition: transform 0.25s ease;
}
.ber-logo-mark:hover { transform: rotate(-6deg) translateY(14px) scale(1.05); }
.ber-logo-mark img { width: 100%; height: 100%; object-fit: contain; }

.ber-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.ber-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.ber-burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ber-burger.is-active span:nth-child(2) { opacity: 0; }
.ber-burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ber-nav-overlay {
  position: fixed; inset: 0;
  background: rgba(26,22,18,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 60;
}
.ber-nav-overlay.is-open { opacity: 1; visibility: visible; }

.ber-nav-drawer {
  position: fixed;
  top: 0; left: 0;
  height: 100%;
  width: min(80vw, 320px);
  background: var(--white, #fff);
  box-shadow: 8px 0 32px rgba(26,22,18,0.18);
  z-index: 61;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 80px 24px 24px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.ber-nav-drawer.is-open { transform: translateX(0); }
.ber-nav-drawer a {
  color: var(--ink-900);
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  transition: background 0.2s ease, color 0.2s ease;
}
.ber-nav-drawer a:hover { background: rgba(183,20,36,0.06); color: var(--red-700); }
.ber-nav-drawer a.active { background: rgba(183,20,36,0.08); color: var(--red-700); font-weight: 600; }
.ber-nav-drawer .ber-drawer-download {
  margin-top: 16px;
  justify-content: center;
  color: var(--white);
}
.ber-nav-drawer .ber-drawer-download:hover { background: var(--red-700); color: var(--white); }
.ber-drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--ink-900);
  cursor: pointer;
}
body.ber-no-scroll { overflow: hidden; }

/* ===== Hero ===== */
.ber-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--ink-900);
}
.ber-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.72);
}
.ber-hero-content {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 112px 32px 80px;
  min-height: inherit;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--white);
}
.ber-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 14ch;
  text-wrap: balance;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.ber-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 14px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  margin-bottom: 20px;
  width: fit-content;
}
.ber-hero-eyebrow::before {
  content: ''; width: 8px; height: 8px; background: #ff5166; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,81,102,0.25);
}
.ber-hero-lead {
  font-size: 19px; line-height: 1.5; max-width: 52ch; opacity: 0.95;
  margin-bottom: 32px;
}
.ber-hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* Jesus-liebt-dich sticker floats in hero */
.ber-hero-sticker {
  position: absolute; z-index: 3;
  top: 120px; right: 60px;
  width: 170px; height: 170px;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.35));
  transform: rotate(12deg);
  animation: floaty 6s ease-in-out infinite;
}
.ber-hero-sticker img { width: 100%; height: 100%; object-fit: contain; }
@keyframes floaty {
  0%, 100% { transform: rotate(12deg) translateY(0); }
  50% { transform: rotate(10deg) translateY(-8px); }
}

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; font-size: 15px; font-weight: 600; border-radius: 999px; transition: all 0.2s ease; white-space: nowrap; }
.btn-primary { background: var(--red-600); color: var(--white); }
.btn-primary:hover { background: var(--red-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-ghost { color: var(--red-700); }
.btn-ghost:hover { background: rgba(183,20,36,0.06); }
.btn-white { background: var(--white); color: var(--red-700); }
.btn-white:hover { background: var(--cream-100); transform: translateY(-1px); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-calendar { background: var(--white); color: var(--red-700); border: 1.5px solid var(--cream-300); padding: 12px 24px; font-size: 14px; }
.btn-calendar:hover { border-color: var(--red-600); background: var(--cream-100); }

/* ===== Section generic ===== */
.section { padding: 96px 32px; }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red-600); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink-900);
  text-wrap: balance;
  margin-bottom: 18px;
}
.section-lead {
  font-size: 18px; line-height: 1.6; color: var(--ink-500); max-width: 60ch;
}
.section-head-flex { display: flex; align-items: end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.section-head-center { text-align: center; margin-bottom: 56px; }
.calendar-cta { text-align: center; margin-top: 36px; }

/* ===== "Auf einen Blick" — 3-Row Split Cards ===== */
.split-stack { display: grid; gap: 24px; }
.split-card {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--red-700); color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 280px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.split-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.split-card.reverse { direction: rtl; }
.split-card.reverse > * { direction: ltr; }
.split-card-img { background-size: cover; background-position: center; min-height: 280px; }
.split-card-body { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.split-card-body .section-eyebrow { color: rgba(255,255,255,0.7); margin-bottom: 0; }
.split-card-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 28px; letter-spacing: -0.01em; line-height: 1.15; }
.split-card-body p { font-size: 15.5px; line-height: 1.6; opacity: 0.92; max-width: 42ch; }
.split-card-body .btn { align-self: flex-start; margin-top: 8px; }

/* ===== Programm Timeline (4 Kidstreff-Tage) ===== */
.timeline-section {
  background: var(--cream-100);
  padding: 96px 32px;
}
.timeline {
  position: relative;
  display: grid; gap: 20px;
  max-width: 1000px; margin: 48px auto 0;
}
.timeline-item {
  display: block;
  padding: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-300);
  transition: all 0.25s ease;
}
.timeline-item:hover {
  border-color: var(--red-600);
  box-shadow: var(--shadow-sm);
}
.timeline-item summary {
  display: grid; grid-template-columns: 140px 1fr auto; gap: 32px;
  align-items: center;
  padding: 28px 32px;
  cursor: pointer;
  list-style: none;
}
.timeline-item summary::-webkit-details-marker { display: none; }
.timeline-date {
  text-align: center;
  padding: 10px 0;
  border-right: 1px solid var(--cream-300);
}
.timeline-date .day { font-family: var(--font-display); font-weight: 600; font-size: 38px; line-height: 1; color: var(--red-700); }
.timeline-date .weekday { font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--ink-500); margin-top: 6px; font-weight: 600;}
.timeline-body h4 { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--ink-900); margin-bottom: 6px; }
.timeline-body .verse { font-style: italic; color: var(--ink-500); font-size: 14.5px; line-height: 1.5; margin-bottom: 6px; }
.timeline-body .ref { font-size: 12px; font-weight: 600; color: var(--red-600); letter-spacing: 0.04em; }
.timeline-time {
  font-size: 13px; font-weight: 600; color: var(--ink-700);
  padding: 8px 14px; background: var(--cream-200); border-radius: 999px; white-space: nowrap;
}
.timeline-story { padding: 0 32px 28px; margin-top: -10px; color: var(--ink-700); font-size: 15px; line-height: 1.6; }

/* ===== Invite Accordion (Einladungen zum Download) ===== */
.invite-accordion {
  display: grid; gap: 16px;
  margin-top: 48px;
}
.invite-accordion-item {
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.invite-accordion-item:hover { border-color: var(--red-600); box-shadow: var(--shadow-sm); }
.invite-accordion-item summary {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
}
.invite-accordion-item summary::-webkit-details-marker { display: none; }
.invite-accordion-chevron {
  display: flex; flex-shrink: 0; color: var(--red-600);
  transition: transform 0.25s ease;
}
.invite-accordion-item[open] .invite-accordion-chevron { transform: rotate(180deg); }
.invite-accordion-title {
  font-family: var(--font-display);
  font-weight: 600; font-size: 19px;
  color: var(--ink-900);
  flex: 1;
}
.invite-accordion-btn { padding: 10px 20px; font-size: 14px; flex-shrink: 0; }
.invite-accordion-body {
  padding: 0 28px 28px;
  margin-top: -6px;
  display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap;
}
.invite-accordion-image {
  width: 160px; height: 110px; flex-shrink: 0;
  background-size: cover; background-position: center;
  border-radius: 10px;
  border: 1px solid var(--cream-300);
}
.invite-accordion-body p {
  flex: 1; min-width: 200px;
  color: var(--ink-700); font-size: 15px; line-height: 1.6; margin: 0;
}

/* ===== Event Pills (Familientreff, Jugendabend, Vortragsabende) ===== */
.event-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 48px;
}
.event-pill {
  padding: 32px 28px;
  background: var(--white);
  border: 2px solid var(--cream-300);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}
.event-pill:hover { border-color: var(--red-600); transform: translateY(-3px); }
.event-pill .label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red-600); margin-bottom: 12px; }
.event-pill h5 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin-bottom: 12px; letter-spacing: -0.01em; }
.event-pill .when { font-size: 14px; color: var(--ink-500); line-height: 1.5; }

/* ===== "Was dich erwartet" — Feature Kacheln ===== */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  padding: 36px 32px;
  background: var(--cream-100);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0; background: var(--red-700);
  transform: translateY(100%); transition: transform 0.3s ease;
  z-index: 0;
}
.feature-card:hover::before { transform: translateY(0); }
.feature-card:hover { color: var(--white); }
.feature-card:hover .feature-icon { background: rgba(255,255,255,0.15); color: var(--white); }
.feature-card > * { position: relative; z-index: 1; }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--red-700); color: white;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 26px;
  transition: all 0.3s ease;
}
.feature-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin-bottom: 10px; letter-spacing: -0.01em; }
.feature-card p { font-size: 15px; line-height: 1.6; opacity: 0.85; }

/* ===== Sunburst banner above verse block ===== */
.verse-sticker-wrap {
  position: relative;
}
.verse-sticker {
  position: absolute;
  top: 120px;
  left: 50%;
  width: clamp(90px, 11vw, 150px);
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 5;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35));
}
.verse-rays {
  position: relative;
  height: 120px;
  background: var(--white);
  overflow: hidden;
}
.verse-rays-fan {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 260vw;
  max-width: 1800px;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, 35%);
  border-radius: 50%;
  background: repeating-conic-gradient(
    var(--red-600) 0deg 8deg,
    var(--white) 8deg 16deg
  );
}
.verse-rays-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

/* ===== Verse quote block ===== */
.verse-block {
  padding: 120px 32px;
  background: linear-gradient(rgba(20,18,16,0.55), rgba(20,18,16,0.55)), url('../images/tafel-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.verse-block::before {
  content: '"';
  position: absolute;
  font-family: var(--font-display);
  font-size: 520px;
  line-height: 0.8;
  top: -60px; left: -20px;
  color: rgba(255,255,255,0.07);
  font-weight: 400;
}
.verse-block .section-eyebrow { color: rgba(255,255,255,0.8); }
.verse-block-inner { max-width: 900px; margin: 0 auto; position: relative; }
.verse-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.verse-ref {
  font-size: 14px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75;
}

/* ===== Info strip ===== */
.info-strip {
  background: var(--cream-200);
  padding: 64px 32px;
}
.info-strip-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.info-item .icon { font-size: 28px; margin-bottom: 14px; color: var(--red-600); }
.info-item h5 { font-weight: 700; font-size: 14px; letter-spacing: 0.04em; margin-bottom: 8px; }
.info-item p { font-size: 14.5px; color: var(--ink-700); line-height: 1.5; }

/* ===== CTA banner ===== */
.cta-banner {
  padding: 96px 32px;
  background: var(--white);
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em; line-height: 1.05;
  margin-bottom: 20px;
}
.cta-banner p { font-size: 18px; color: var(--ink-500); max-width: 54ch; margin: 0 auto 36px; line-height: 1.6; }

/* ===== Footer ===== */
.ber-footer {
  background: linear-gradient(rgba(20,18,16,0.7), rgba(20,18,16,0.7)), url('../images/tafel-bg.jpg');
  background-size: cover;
  background-position: center;
  color: rgba(255,255,255,0.7);
  padding: 72px 32px 32px;
}
.ber-footer-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.ber-footer-heading { color: var(--white); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.ber-footer p, .ber-footer a { font-size: 14.5px; line-height: 1.7; }
.ber-footer a:hover { color: var(--white); }
.ber-footer ul { list-style: none; }
.ber-footer-bottom {
  max-width: var(--container); margin: 48px auto 0;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; font-size: 13px; opacity: 0.6;
}
.ber-footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.ber-footer-logo .mark { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; }
.ber-footer-logo .mark img { width: 100%; height: 100%; object-fit: contain; }
.ber-footer-logo strong { color: var(--white); font-family: var(--font-display); font-size: 18px; font-weight: 600; }

/* ===== Warum Page / generic page hero ===== */
.page-hero {
  padding: 120px 32px 80px;
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--white) 100%);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(52px, 7vw, 104px);
  letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 24px;
}
.page-hero .kicker { color: var(--red-600); font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin-bottom: 20px; display: inline-block; }
.page-hero p { font-size: 20px; line-height: 1.55; color: var(--ink-500); max-width: 56ch; margin: 0 auto; }

.prose-section { padding: 80px 32px; }
.prose { max-width: 720px; margin: 0 auto; }
.prose p { font-size: 19px; line-height: 1.7; color: var(--ink-700); margin-bottom: 24px; }
.prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 72px; font-weight: 600;
  float: left; line-height: 0.9; padding: 8px 14px 0 0;
  color: var(--red-700);
}

.verse-card {
  padding: 40px 44px;
  background: var(--cream-100);
  border-left: 4px solid var(--red-600);
  margin: 40px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.verse-card blockquote { font-family: var(--font-display); font-weight: 500; font-size: 22px; line-height: 1.45; color: var(--ink-900); margin-bottom: 14px; letter-spacing: -0.005em; }
.verse-card cite { font-size: 13px; font-style: normal; font-weight: 600; color: var(--red-700); letter-spacing: 0.1em; text-transform: uppercase; }

/* ===== Wer lädt ein? ===== */
.invite-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
.invite-image {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: var(--radius-md);
}
.invite-quote {
  margin-top: 24px; padding: 28px 32px; background: var(--cream-100);
  border-radius: 14px; font-family: var(--font-display); font-size: 22px;
  font-weight: 500; line-height: 1.3; letter-spacing: -0.01em;
}
.meeting-card {
  padding: 32px;
  background: var(--red-700); color: white;
  border-radius: var(--radius-md);
  margin-top: 32px;
}
.meeting-card h4 { font-family: var(--font-display); font-size: 20px; margin-bottom: 14px; font-weight: 600; }
.meeting-card .meeting-row { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.15); font-size: 15px; }
.meeting-card .meeting-row:first-of-type { border-top: none; }
.meeting-card .meeting-row span:first-child { opacity: 0.75; }

/* ===== Card grid (Vortragsabende im Detail) ===== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.mini-card {
  padding: 28px 24px; background: var(--white); border-radius: 14px;
  border: 1px solid var(--cream-300); transition: all 0.25s ease;
}
.mini-card:hover { background: var(--red-700); color: white; transform: translateY(-4px); }
.mini-card .top { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; opacity: 0.9; }
.mini-card .top .d { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; }
.mini-card .top .date { font-family: var(--font-display); font-size: 24px; font-weight: 600; }
.mini-card h5 { font-family: var(--font-display); font-size: 18px; font-weight: 600; line-height: 1.25; }
.mini-card .time { margin-top: 14px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

/* Utility */
.placeholder-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  background-color: var(--cream-300);
}

/* ===== Legal pages (Datenschutz, Impressum) ===== */
.prose.legal { max-width: 760px; }
.prose.legal h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 30px; letter-spacing: -0.02em; line-height: 1.15;
  margin-top: 48px; margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 2px solid var(--red-600);
  color: var(--ink-900);
}
.prose.legal h2:first-of-type { margin-top: 0; }
.prose.legal h3 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 17px; letter-spacing: 0.01em;
  margin-top: 32px; margin-bottom: 10px;
  color: var(--red-700);
}
.prose.legal p {
  font-size: 16px; line-height: 1.7; color: var(--ink-700);
  margin-bottom: 14px;
}
.prose.legal p:first-of-type::first-letter {
  font-family: inherit; font-size: inherit; font-weight: inherit;
  float: none; line-height: inherit; padding: 0; color: inherit;
}
.prose.legal ul {
  margin: 0 0 18px 24px; padding: 0;
}
.prose.legal ul li {
  font-size: 16px; line-height: 1.7; color: var(--ink-700);
  margin-bottom: 4px;
}
.prose.legal a {
  color: var(--red-700);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
.prose.legal a:hover { color: var(--red-900); }
.prose.legal strong { color: var(--ink-900); font-weight: 600; }
.prose.legal .legal-address {
  padding: 20px 24px;
  background: var(--cream-100);
  border-left: 3px solid var(--red-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 14px 0 18px;
}
.prose.legal .legal-address p { margin-bottom: 8px; }
.prose.legal .legal-address p:last-child { margin-bottom: 0; }

/* ===== Download card ===== */
.prefooter-download {
  padding: 64px 32px;
  background: var(--cream-100);
  border-top: 1px solid var(--cream-300);
}
.prefooter-download-inner {
  max-width: 900px;
  margin: 0 auto;
}
.prefooter-download .download-card {
  background: var(--white);
}

.download-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px; align-items: center;
  padding: 24px 28px;
  background: var(--cream-100);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  color: var(--ink-900);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.download-card:hover {
  background: var(--red-700);
  color: var(--white);
  border-color: var(--red-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.download-card-icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-700);
  color: var(--white);
  border-radius: 14px;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.download-card:hover .download-card-icon {
  background: rgba(255,255,255,0.15);
}
.download-card-body { min-width: 0; }
.download-card-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red-600); margin-bottom: 6px;
  transition: color 0.25s ease;
}
.download-card:hover .download-card-label { color: rgba(255,255,255,0.85); }
.download-card-body h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.download-card-body p {
  font-size: 14.5px; line-height: 1.5; color: var(--ink-500);
  transition: color 0.25s ease;
}
.download-card:hover .download-card-body p { color: rgba(255,255,255,0.85); }
.download-card-arrow {
  opacity: 0.5;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.download-card:hover .download-card-arrow {
  opacity: 1;
  transform: translateX(4px);
}
@media (max-width: 720px) {
  .download-card { padding: 20px; gap: 16px; }
  .download-card-icon { width: 48px; height: 48px; }
  .download-card-body h3 { font-size: 18px; }
}

/* Responsive */
@media (max-width: 960px) {
  body { padding-top: 64px; }
  .ber-header-inner { padding: 0 20px; height: 64px; }
  .ber-nav { display: none; }
  .ber-burger { display: flex; }
  .ber-logo-mark { width: 56px; height: 56px; transform: rotate(-6deg) translateY(4px); }
  .ber-logo-mark:hover { transform: rotate(-6deg) translateY(4px) scale(1.05); }
  .ber-hero { min-height: 560px; }
  .ber-hero-content { padding: 96px 24px 48px; }
  .ber-hero-sticker { width: 120px; height: 120px; top: auto; bottom: 20px; right: 20px; }
  .section { padding: 64px 24px; }
  .split-card { grid-template-columns: 1fr; }
  .split-card-img { min-height: 220px; }
  .split-card-body { padding: 28px; }
  .timeline-item summary { grid-template-columns: 80px 1fr; gap: 20px; padding: 20px; }
  .timeline-time { grid-column: 1 / -1; justify-self: start; }
  .timeline-date .day { font-size: 28px; }
  .invite-accordion-item summary { flex-wrap: wrap; padding: 18px 20px; }
  .invite-accordion-title { width: 100%; order: 1; }
  .invite-accordion-btn { order: 2; margin-left: 34px; }
  .invite-accordion-body { padding: 0 20px 20px; }
  .invite-accordion-image { width: 100%; height: 160px; }
  .event-grid, .feature-grid { grid-template-columns: 1fr; }
  .info-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .ber-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .invite-grid { grid-template-columns: 1fr; gap: 40px; }
  .verse-block { padding: 80px 24px; }
  .calendar-cta { padding: 0 8px; }
  .btn-calendar {
    display: block;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    padding: 14px 18px;
    font-size: 13.5px;
  }
}

@media (max-width: 600px) {
  .ber-footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .ber-footer-bottom { flex-direction: column; gap: 8px; }
}
