:root {
  --ink: #2b241d;
  --brown: #8b3f17;
  --gold: #d79a4a;
  --cream: #fbf7ef;
  --soft: #f3eadc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(53, 37, 23, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 239, 0.96);
  border-bottom: 1px solid rgba(139, 63, 23, 0.14);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.2px;
}
.brand-mark { font-size: 1.45rem; color: var(--gold); }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
}
.site-nav a:hover { color: var(--brown); }
.language-btn {
  border: 1px solid rgba(139, 63, 23, 0.35);
  background: transparent;
  color: var(--brown);
  border-radius: 999px;
  padding: 9px 14px;
  font: inherit;
  font-weight: 800;
}
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--ink); }

.hero-section {
  padding: 0;
  background: linear-gradient(to bottom, #fff, var(--cream));
}
.hero-frame {
  width: min(1280px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.hero-frame img { width: 100%; height: auto; }

.section { padding: 78px 20px; }
.section.hero-section {
    padding: 0;
}
.section-inner { width: min(1100px, 100%); margin: 0 auto; }
.narrow { width: min(780px, 100%); text-align: center; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brown);
  font-size: 0.79rem;
  font-weight: 800;
  margin: 0 0 10px;
}
h1, h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.25;
  margin: 0 0 20px;
}
h1 { font-size: clamp(2rem, 4vw, 3.35rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.lead { font-size: 1.2rem; color: #5f5145; }

.intro-section { background: var(--cream); }
.prayer-section { background: var(--soft); }
.prayer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.primary-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 13px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(139, 63, 23, 0.2);
}
.primary-btn:hover { transform: translateY(-1px); }
.prayer-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(139, 63, 23, 0.08);
}
.prayer-icon { font-size: 2rem; }
.prayer-title { font-weight: 800; font-size: 1.15rem; margin-bottom: 6px; }
.prayer-meta { color: #7b6c5e; font-size: 0.92rem; margin: 16px 0 12px; }
.prayer-card button {
  border: 0;
  border-radius: 9px;
  padding: 10px 14px;
  font-weight: 800;
  background: #eadbc8;
  color: #6d4a2d;
}

.scripture-section {
  background: #3d2a1d;
  color: var(--white);
}
blockquote {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.5;
}
blockquote cite {
  display: block;
  margin-top: 18px;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 1rem;
  font-style: normal;
  color: #e9c58f;
}
.contact-section { background: var(--cream); }
.site-footer {
  background: #241a13;
  color: #eee6dc;
  padding: 26px 20px;
}
.footer-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.footer-inner p { margin: 0; }

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 70px;
    background: var(--cream);
    border: 1px solid rgba(139, 63, 23, 0.14);
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.open { display: flex; }
  .site-nav a, .language-btn { width: 100%; text-align: left; }
  .prayer-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 18px; }
  .hero-section { padding: 12px 10px 0; }
  .hero-frame { border-radius: 10px; }
}

@media (max-width: 520px) {
  .brand span:last-child { font-size: 0.93rem; }
  .nav-wrap { min-height: 66px; }
  .site-nav { top: 62px; }
  .section { padding: 48px 16px; }
  .lead { font-size: 1.08rem; }
}
