:root {
  --bg: #f6f1e8;
  --bg-soft: #fffaf2;
  --ink: #1e2c2a;
  --muted: #5f6f6a;
  --forest: #254f45;
  --forest-deep: #17352f;
  --gold: #c89b4b;
  --gold-soft: rgba(200, 155, 75, 0.16);
  --white: #ffffff;
  --line: rgba(30, 44, 42, 0.1);
  --shadow: 0 24px 60px rgba(23, 53, 47, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(200, 155, 75, 0.12), transparent 28%),
    linear-gradient(180deg, #f4ede0, #f9f6ef 28%, #f6f1e8 100%);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  line-height: 1.08;
  color: var(--forest-deep);
}

p {
  margin: 0 0 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 6vw;
  background: rgba(250, 245, 236, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(37, 79, 69, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--forest), var(--forest-deep));
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 14px 34px rgba(23, 53, 47, 0.22);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__text strong {
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

.brand__text span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.site-nav a {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--forest-deep);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--forest);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 12px 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), #b3822d);
  box-shadow: 0 12px 30px rgba(184, 130, 45, 0.28);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 96px 6vw 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 36px;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(23, 53, 47, 0.92), rgba(24, 58, 52, 0.6)),
    url("https://images.unsplash.com/photo-1519491050282-cf00c82424b4?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
}

.hero--compact {
  grid-template-columns: minmax(0, 1fr);
  min-height: 48vh;
  align-items: center;
}

.hero--vision {
  background:
    linear-gradient(115deg, rgba(23, 53, 47, 0.9), rgba(52, 84, 64, 0.55)),
    url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
}

.hero--plan {
  background:
    linear-gradient(115deg, rgba(23, 53, 47, 0.9), rgba(200, 155, 75, 0.42)),
    url("https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
}

.hero--involved {
  background:
    linear-gradient(115deg, rgba(23, 53, 47, 0.92), rgba(34, 79, 69, 0.5)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
}

.hero--churches {
  background:
    linear-gradient(115deg, rgba(23, 53, 47, 0.92), rgba(200, 155, 75, 0.28)),
    url("https://images.unsplash.com/photo-1466442929976-97f336a657be?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
}

.hero__content {
  max-width: 760px;
}

.hero__content--narrow {
  max-width: 720px;
}

.eyebrow {
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  color: var(--white);
}

.hero__lead {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__panel,
.feature-card,
.milestone,
.link-card,
.story-card,
.program-card,
.action-card,
.timeline__item,
.cta-panel,
.contact-panel,
.commitment-list article,
.prayer-list article {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero__panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.14);
  backdrop-filter: blur(12px);
}

.hero__panel-label {
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.72);
}

.hero__facts {
  margin: 0;
  padding-left: 18px;
}

.hero__facts li + li {
  margin-top: 10px;
}

.btn {
  padding: 14px 24px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), #b3822d);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(184, 130, 45, 0.28);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.section {
  padding: 86px 6vw;
}

.section--warm {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(248, 240, 224, 0.9));
}

.section--plain {
  background: transparent;
}

.section--accent {
  background: linear-gradient(180deg, rgba(37, 79, 69, 0.07), rgba(200, 155, 75, 0.08));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading .eyebrow {
  color: var(--forest);
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.section-heading p {
  color: var(--muted);
}

.feature-grid,
.milestone-grid,
.story-grid,
.program-grid,
.action-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card,
.story-card,
.program-card,
.action-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
}

.vision-list {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
}

.vision-list li + li {
  margin-top: 8px;
}

.milestone-grid {
  counter-reset: item;
}

.milestone {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 250, 242, 0.78);
}

.milestone span,
.timeline__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 28px;
  align-items: start;
}

.link-stack,
.commitment-list,
.prayer-list,
.timeline {
  display: grid;
  gap: 18px;
}

.link-card,
.cta-panel,
.contact-panel,
.commitment-list article,
.prayer-list article,
.timeline__item {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
}

.link-card {
  display: block;
}

.link-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.15rem;
  color: var(--forest-deep);
}

.link-card span,
.contact-panel p {
  color: var(--muted);
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.88);
}

.comparison-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.comparison-table th {
  background: rgba(37, 79, 69, 0.08);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--forest-deep);
}

.comparison-table tbody tr:nth-child(even) {
  background: rgba(255, 250, 242, 0.62);
}

.comparison-table tbody tr:hover {
  background: rgba(200, 155, 75, 0.08);
}

.map-embed-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.88);
}

.map-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: min(75%, 480px);
  overflow: hidden;
  border-radius: var(--radius-md);
}

.map-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 36px 6vw 46px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header,
  .content-split,
  .hero {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 18px 20px;
  }

  .hero,
  .section,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .header-cta,
  .btn {
    width: 100%;
  }

  .site-nav {
    gap: 14px 18px;
  }
}
