:root {
  --ink: #243d35;
  --ink-2: #2c5845;
  --muted: #5c6b62;
  --paper: #f7f7f0;
  --paper-2: #eef1e7;
  --accent: #dce8b9;
  --accent-strong: #c9da95;
  --line: #d6ddd1;
  --white: #ffffff;
  --focus: #875515;
  --shadow: 0 24px 60px rgba(36, 61, 53, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shell: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
a:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; border-radius: 4px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.wordmark {
  font-size: 31px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1.7px;
  text-decoration: none;
}
nav { display: flex; gap: 26px; align-items: center; }
nav a { text-decoration: none; color: var(--muted); font-size: 15px; font-weight: 700; }
nav a:hover { color: var(--ink); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 64px;
  align-items: center;
  min-height: 690px;
  padding-block: 84px;
}
.eyebrow, .section-label, .panel-kicker {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-2);
}
.hero h1, h2, h3 { margin-top: 0; }
.hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.1vw, 79px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
}
.hero h1 span { color: var(--ink-2); }
.hero-lede {
  max-width: 680px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.52;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 19px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid transparent;
}
.button.primary { background: var(--ink-2); color: var(--white); }
.button.primary:hover { background: var(--ink); }
.button.secondary { border-color: #7c897f; background: transparent; color: var(--ink); }
.button.secondary:hover { background: var(--paper-2); }

.hero-panel {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #f4f6ed;
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero-panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  top: -100px;
  background: var(--accent);
  opacity: .12;
  border-radius: 50%;
}
.panel-kicker { color: var(--accent); margin-bottom: 10px; }
.principle { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding: 23px 0; border-top: 1px solid rgba(255,255,255,.14); }
.principle:first-of-type { margin-top: 8px; }
.principle-number { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.principle strong { display: block; margin-bottom: 5px; font-size: 18px; }
.principle div span { display: block; color: #cbd3ca; font-size: 15px; line-height: 1.5; }

.statement { background: var(--accent); border-block: 1px solid #cedba5; }
.statement-grid, .name-grid { display: grid; grid-template-columns: 210px 1fr; gap: 72px; padding-block: 82px; }
.statement h2, .name-section h2, .section-heading h2, .church-section h2, .status-card h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.statement p:not(.section-label), .name-section p:not(.section-label), .church-copy > p, .section-heading > p:last-child, .status-card > p {
  max-width: 760px;
  color: #405047;
  font-size: 18px;
}

.section { padding-block: 104px; }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading.narrow { max-width: 720px; }
.cards { display: grid; gap: 20px; }
.three-up { grid-template-columns: repeat(3, 1fr); }
.card {
  min-height: 310px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.card-index { display: inline-block; margin-bottom: 74px; color: var(--ink-2); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.card h3, .values-grid h3 { margin-bottom: 11px; font-size: 23px; line-height: 1.2; letter-spacing: -.025em; }
.card p, .values-grid p { color: var(--muted); margin-bottom: 0; }

.values-section { padding-block: 104px; background: var(--paper-2); border-block: 1px solid var(--line); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 48px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.values-grid article { background: var(--paper-2); padding: 34px; }

.church-section { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .7fr); align-items: center; gap: 80px; }
.check-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 30px; font-weight: 700; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 13px; height: 7px; border-left: 2px solid var(--ink-2); border-bottom: 2px solid var(--ink-2); transform: rotate(-45deg); }
.quote-card { background: var(--ink-2); color: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.quote-card p { margin: 0 0 28px; font-size: clamp(29px, 3.2vw, 43px); line-height: 1.12; letter-spacing: -.04em; font-weight: 800; }
.quote-card span { color: var(--accent); font-size: 14px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.name-section { background: var(--ink); color: #f2f5ed; }
.name-section .section-label { color: var(--accent); }
.name-section p:not(.section-label) { color: #cbd3ca; }
.name-section em { color: var(--accent); }

.status-section { padding-top: 90px; padding-bottom: 110px; }
.status-card { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 44px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.status-card h2 { font-size: clamp(31px, 3.7vw, 46px); margin-bottom: 0; }
.status-card > p { align-self: end; margin-bottom: 0; }

footer { background: #1e332c; color: #eff3e9; padding-block: 52px; }
.footer-grid { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.footer-wordmark { display: inline-block; color: var(--white); margin-bottom: 12px; }
footer p { margin: 0; color: #bdc8bf; font-size: 14px; }
.footer-meta { text-align: right; display: grid; gap: 3px; }

@media (max-width: 900px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 42px; min-height: 0; padding-block: 72px; }
  .hero-panel { max-width: 680px; }
  .statement-grid, .name-grid { grid-template-columns: 1fr; gap: 12px; }
  .three-up { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .card-index { margin-bottom: 38px; }
  .church-section { grid-template-columns: 1fr; gap: 48px; }
  .quote-card { max-width: 620px; }
  .status-card { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  body { font-size: 16px; }
  .nav-wrap { min-height: 70px; }
  .wordmark { font-size: 27px; }
  .hero { padding-block: 54px 64px; }
  .hero h1 { font-size: clamp(45px, 14vw, 61px); }
  .hero-panel, .quote-card, .status-card { border-radius: 20px; padding: 26px; }
  .statement-grid, .name-grid, .section, .values-section { padding-block: 72px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article { padding: 28px; }
  .church-section { padding-block: 72px; }
  .status-section { padding-block: 72px 82px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-meta { text-align: left; }
}

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