:root {
  color-scheme: light;
  --ink: #1f1a16;
  --muted: #615a54;
  --paper: #f8f6f1;
  --green: #005f3c;
  --green-dark: #00462d;
  --gold: #d7a928;
  --line: #d7d1c8;
}

* { box-sizing: border-box; }

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

a { color: inherit; }

.site-header {
  color: #fff;
  background: #211109;
  border-bottom: 3px solid var(--gold);
}

.nav, .wrap { width: min(100% - 2rem, 74rem); margin: 0 auto; }

.nav {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 2.25rem; height: 2.25rem; border: 1px solid var(--gold); color: var(--gold); font-weight: 800; font-size: .75rem; letter-spacing: .06em; }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { font-size: 1rem; }
.brand-copy small { color: #ded7ce; font-size: .72rem; }
.nav-links { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .9rem; }
.nav-links a { color: #f9f5ed; text-decoration: none; }
.nav-links a:hover, .nav-links a:focus-visible { color: #ffe092; text-decoration: underline; }

main { padding: clamp(3rem, 8vw, 6rem) 0 4rem; }
.eyebrow { margin: 0 0 .75rem; color: var(--green); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2 { font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif; line-height: 1.08; }
h1 { max-width: 15ch; margin: 0; font-size: clamp(2.65rem, 7vw, 5.3rem); letter-spacing: -.045em; }
h2 { margin: 0; font-size: clamp(1.55rem, 3vw, 2.25rem); letter-spacing: -.025em; }
h3 { margin: 0; font-size: 1.03rem; }
.lede { max-width: 42rem; margin: 1.3rem 0 0; color: #3e3731; font-size: clamp(1.1rem, 2vw, 1.32rem); }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; min-height: 2.85rem; padding: .65rem 1rem; color: #fff; background: var(--green); border-radius: .15rem; font-weight: 800; text-decoration: none; }
.button:hover, .button:focus-visible { background: var(--green-dark); }
.text-link { color: var(--green); font-weight: 750; }
.rule { height: 1px; margin: clamp(3rem, 8vw, 6rem) 0; background: var(--line); }
.section-heading { max-width: 43rem; margin-bottom: 2rem; }
.section-heading p { max-width: 40rem; margin-bottom: 0; color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.card, .callout, .faq { padding: 1.35rem; background: #fffdf9; border: 1px solid var(--line); }
.card p, .faq p { color: var(--muted); }
.card h3 { margin-bottom: .55rem; color: var(--green); }
.steps { display: grid; gap: 1rem; counter-reset: step; }
.step { position: relative; min-height: 7rem; padding: 1.4rem 1.4rem 1.4rem 5rem; background: #fffdf9; border-top: 1px solid var(--line); }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 1.25rem; left: 1.35rem; color: var(--gold); font-family: ui-serif, Georgia, serif; font-size: 1.85rem; font-weight: 800; }
.step p { margin-bottom: 0; color: var(--muted); }
.topic-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.topic { padding: 1.5rem; color: #fff; background: var(--green); }
.topic:nth-child(even) { background: #22201d; }
.topic p { color: #e8eee9; }
.topic a { color: #ffe092; font-weight: 800; }
.faq + .faq { border-top: 0; }
.faq h3 { color: var(--green); }
.note { margin-top: 1.5rem; padding: 1rem 1.15rem; color: #3e3731; background: #f5ead0; border-left: 4px solid var(--gold); }
footer { padding: 2.25rem 0; color: #ded7ce; background: #211109; }
footer p { margin: 0; font-size: .88rem; }

@media (max-width: 700px) {
  .nav { padding: 1rem 0; align-items: flex-start; flex-direction: column; }
  .grid, .topic-list { grid-template-columns: 1fr; }
  .nav-links { gap: .85rem; }
}
