:root {
  --ink: #1d2522;
  --muted: #5f6b66;
  --paper: #f7f3ea;
  --surface: #fffdf8;
  --line: #ded6c7;
  --green: #285f4d;
  --green-2: #1f463d;
  --gold: #b8792d;
  --gold-text: #8f5b1e;
  --blue: #2f5d7c;
  --shadow: 0 18px 45px rgba(32, 31, 25, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
.button:focus-visible {
  outline: 3px solid #0f766e;
  outline-offset: 4px;
}

.brand:focus-visible,
nav a:focus-visible,
.button:focus-visible {
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 243, 234, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-2);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-size: 0.82rem;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--green);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 21, 19, 0.8), rgba(11, 21, 19, 0.28) 58%, rgba(11, 21, 19, 0.18)),
    linear-gradient(0deg, rgba(11, 21, 19, 0.72), rgba(11, 21, 19, 0.06) 48%);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: clamp(42px, 8vw, 92px) clamp(18px, 6vw, 72px);
  color: white;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.95;
}

.hero p:not(.eyebrow) {
  max-width: 590px;
  margin: 20px 0 28px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: #14110c;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  filter: brightness(0.96);
}

.intro,
.section,
.stats,
footer {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) 1fr;
  gap: 32px;
  padding: 56px 0 28px;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
}

.intro p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 20px 0 48px;
}

.stats article,
.fact-card,
.daily-section,
.timeline-section,
.scripture-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stats article {
  padding: 22px;
}

.stats strong {
  display: block;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: 42px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fact-card {
  min-height: 210px;
  padding: 22px;
}

.fact-card .tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(47, 93, 124, 0.12);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.fact-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.fact-card p {
  margin: 0;
  color: var(--muted);
}

.timeline-section,
.scripture-section,
.daily-section {
  padding: clamp(22px, 4vw, 34px);
}

.timeline {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.timeline span {
  color: var(--green);
  font-weight: 800;
}

.timeline p,
.daily-section p {
  margin: 0;
  color: var(--muted);
}

.scripture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

figure {
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf8f0;
}

blockquote {
  margin: 0;
  color: var(--green-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.45;
}

figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.copyright-note {
  max-width: 820px;
  margin: 20px 0 0;
  color: var(--muted);
}

.daily-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) 1fr;
  gap: 28px;
}

.daily-verse {
  min-height: 210px;
  display: grid;
  align-content: center;
  border-color: rgba(184, 121, 45, 0.38);
  background: linear-gradient(135deg, #fffdf8, #f7eddc);
}

footer {
  padding: 36px 0 44px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 820px) {

  .site-header,
  .section-heading,
  .intro,
  .daily-section {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .site-header,
  .section-heading {
    flex-direction: column;
  }

  .stats,
  .fact-grid,
  .scripture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
    gap: 12px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    padding-top: 70px;
  }

  .stats,
  .fact-grid,
  .scripture-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}