:root {
  color-scheme: light;
  --ink: #17221d;
  --muted: #59665f;
  --paper: #f7f5ef;
  --panel: #fffdf8;
  --line: #dcd8ce;
  --green: #173d2f;
  --green-2: #245a46;
  --gold: #e5b660;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}

a { color: var(--green-2); }

.site-header,
footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header { min-height: 84px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 750;
  text-decoration: none;
}

.mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-family: Georgia, serif;
  font-size: 1.3rem;
}

nav { display: flex; gap: 22px; }
nav a { color: var(--ink); font-size: .94rem; text-decoration: none; }
nav a:hover, nav a[aria-current="page"] { color: var(--green-2); text-decoration: underline; text-underline-offset: 5px; }

main { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.hero {
  padding: clamp(70px, 10vw, 132px) 0 clamp(80px, 11vw, 145px);
  background: radial-gradient(circle at 78% 28%, rgba(229,182,96,.26), transparent 23%);
}

.eyebrow, .section-label {
  margin: 0 0 14px;
  color: var(--green-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.12; }

h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -.045em;
}

.lede {
  max-width: 710px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.button:hover { background: var(--green-2); }

.panel {
  padding: clamp(38px, 6vw, 70px);
  border-radius: 28px;
  background: var(--green);
  color: white;
}

.panel .section-label { color: var(--gold); }

.panel h2 {
  max-width: 620px;
  margin: 0 0 50px;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 500;
}

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

.grid article {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.25);
}

.grid h3 { margin: 0 0 10px; font-size: 1.08rem; }
.grid p { margin: 0; color: rgba(255,255,255,.74); }

.statement { max-width: 780px; padding: 95px 0; }
.statement > p:last-child { margin: 0; font-family: Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.42; }

.legal { max-width: 780px; padding: 70px 0 100px; }
.legal h1 { margin-bottom: 30px; font-size: clamp(3rem, 7vw, 5.4rem); }
.legal .intro { margin-bottom: 52px; color: var(--muted); font-size: 1.18rem; }
.legal h2 { margin: 38px 0 8px; font-family: Georgia, serif; font-size: 1.55rem; font-weight: 600; }
.legal p { margin: 0; }

footer {
  min-height: 92px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

footer a { color: var(--muted); }

@media (max-width: 720px) {
  .site-header, footer { width: min(100% - 28px, 1120px); }
  main { width: min(100% - 28px, 1120px); }
  .grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { background-position: 120% 10%; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 6px; }
}
