:root {
  --bg: #f7f2f3;
  --surface: #fffafb;
  --surface-2: #f2e8ea;
  --text: #2f1d22;
  --muted: #6f5960;
  --maroon: #6f1d2c;
  --maroon-dark: #4e1420;
  --maroon-soft: #a64d62;
  --border: #dcc7ce;
  --shadow: 0 10px 30px rgba(79, 20, 32, 0.08);
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
.hero-kicker {
  font-family: "Playfair Display", Georgia, serif;
}

.hero {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  color: #fff;
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.hero-kicker {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero h1 {
  margin-bottom: 0.75rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.hero-text {
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1rem;
  opacity: 0.95;
}

.section-space {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  color: var(--maroon-dark);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.section-heading p {
  margin: 0 auto;
  max-width: 42rem;
  color: var(--muted);
}

.parable-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.parable-card .card-body {
  padding: 1.25rem;
}

.parable-badge {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--maroon);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.card-title {
  color: var(--maroon-dark);
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.scripture {
  margin: 0;
  color: var(--maroon-soft);
  font-style: italic;
  font-weight: 500;
}

.custom-accordion .accordion-item {
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.custom-accordion .accordion-item + .accordion-item {
  margin-top: 0.75rem;
}

.custom-accordion .accordion-button {
  background: var(--surface);
  color: var(--maroon-dark);
  font-weight: 600;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--surface-2);
  color: var(--maroon-dark);
}

.custom-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(111, 29, 44, 0.15);
  border-color: var(--border);
}

.custom-accordion .accordion-body {
  color: var(--text);
  background: var(--surface);
}

.site-footer {
  margin-top: 2.5rem;
  padding: 1.5rem 0 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 576px) {
  .hero {
    padding: 4rem 0 3rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .section-space {
    padding-top: 3rem;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.4rem;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .parable-card .card-body {
    padding: 1.5rem;
  }
}

@media (min-width: 992px) {
  .hero {
    padding: 5rem 0 3.5rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .section-space {
    padding-top: 4rem;
  }
}