:root {
  --navy: #17324d;
  --navy-deep: #10263a;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --burgundy: #7c2738;
  --gold: #c59a45;
  --ink: #202b34;
  --muted: #61707b;
  --rule: #d7d0c4;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a { color: inherit; }

.site-header,
main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  font-weight: 700;
  text-decoration: none;
}

.quiet-link {
  color: var(--burgundy);
  font-size: .88rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  max-width: 930px;
  padding: 105px 0 96px;
}

.hero::after {
  position: absolute;
  top: 82px;
  right: -120px;
  z-index: -1;
  width: 360px;
  height: 360px;
  border: 1px solid #e4d8c0;
  border-radius: 50%;
  content: "";
}

.eyebrow,
.section-label {
  color: var(--burgundy);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 850px;
  margin: 18px 0 24px;
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .98;
}

.lead {
  max-width: 790px;
  margin: 0;
  color: #3f4c56;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--navy);
  border-radius: 3px;
  font-size: .92rem;
  font-weight: 800;
  text-decoration: none;
}

.button.primary { background: var(--navy); color: #fff; }
.button.secondary { background: transparent; color: var(--navy); }
.button:hover { transform: translateY(-1px); }
.button:focus-visible,
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.format-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.scope,
.corrections {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 8vw;
  padding: 76px 0;
  border-top: 1px solid var(--rule);
}

h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.03em;
  line-height: 1.06;
}

.scope-copy p,
.corrections p {
  margin: 0 0 18px;
  font-size: 1.03rem;
}

.evidence {
  padding: 82px 0 92px;
  border-top: 1px solid var(--rule);
}

.evidence h2 { max-width: 720px; }

.evidence-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 44px;
  margin-top: 54px;
}

.evidence-grid article {
  padding-top: 22px;
  border-top: 4px solid var(--gold);
}

.number {
  color: var(--burgundy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  line-height: 1;
}

.evidence h3 {
  margin: 13px 0 8px;
  color: var(--navy);
  font-size: 1.35rem;
}

.evidence p { margin: 0; color: #4d5962; }

.pastoral-note {
  margin: 0 calc(50% - 50vw);
  padding: 88px max(20px, calc((100vw - 1120px) / 2));
  background: var(--navy);
  color: #f6f1e6;
}

.pastoral-note .section-label { color: #e1b966; }

blockquote {
  max-width: 940px;
  margin: 18px 0 22px;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.14;
}

.pastoral-note p {
  max-width: 760px;
  margin: 0;
  color: #d9e0e5;
  font-size: 1.02rem;
}

.revision { color: var(--muted); font-size: .88rem !important; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 0 42px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: .78rem;
}

@media (max-width: 760px) {
  .site-header { min-height: 62px; }
  .quiet-link { display: none; }
  .hero { padding: 72px 0 68px; }
  .hero::after { display: none; }
  .scope,
  .corrections { grid-template-columns: 1fr; gap: 30px; padding: 58px 0; }
  .evidence { padding: 60px 0 70px; }
  .evidence-grid { grid-template-columns: 1fr; gap: 28px; margin-top: 38px; }
  .pastoral-note { padding-block: 66px; }
  footer { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button:hover { transform: none; }
}
