:root {
  --ink: #23291f;
  --muted: #6b7563;
  --line: #d8dcd0;
  --paper: #f7f8f3;
  --accent: #5a7d3a;
  --accent-soft: #eef2e6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.65 Georgia, "Iowan Old Style", "Times New Roman", serif;
}

.wrap { max-width: 760px; margin: 0 auto; padding: 0 22px; }

header.site {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.masthead {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 26px 0 18px;
}

.brand {
  font-size: 25px;
  letter-spacing: .2px;
}

.brand em {
  font-style: normal;
  color: var(--accent);
}

.tagline {
  font-size: 13px;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, "Helvetica Neue", sans-serif;
  letter-spacing: .5px;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0 0 18px;
  padding: 0;
  font-family: ui-sans-serif, system-ui, "Helvetica Neue", sans-serif;
  font-size: 14px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}

nav a:hover, nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

main { padding: 34px 0 10px; }

h1 {
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 6px;
  font-weight: normal;
}

.standfirst {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 30px;
}

h2 {
  font-size: 21px;
  font-weight: normal;
  margin: 34px 0 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

h3 { font-size: 17px; margin: 22px 0 4px; }

p { margin: 0 0 15px; }

a { color: var(--accent); }

figure {
  margin: 26px 0;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  text-align: center;
}

figure svg { max-width: 100%; height: auto; }

figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, sans-serif;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 15px;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

th, td {
  text-align: left;
  padding: 9px 10px;
  border-bottom: 1px solid var(--line);
}

th {
  font-weight: 600;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.note {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: 14px 18px;
  margin: 24px 0;
  font-size: 16px;
}

.note p:last-child { margin-bottom: 0; }

footer.site {
  border-top: 1px solid var(--line);
  margin-top: 46px;
  padding: 22px 0 40px;
  font-size: 13px;
  color: var(--muted);
  font-family: ui-sans-serif, system-ui, sans-serif;
}

footer.site p { margin: 0 0 6px; }

@media (max-width: 560px) {
  body { font-size: 16px; }
  h1 { font-size: 25px; }
  .masthead { padding-bottom: 12px; }
}
