:root {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: #193c34;
  background: #fcfdfa;
  font-synthesis: none;
  --forest: #123d35;
  --muted: #596a61;
  --line: #dde4dc;
  --lime: #d6f580;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:hover {
  color: #365f1e;
}
a:focus-visible {
  outline: 3px solid #548837;
  outline-offset: 5px;
}
header,
main,
footer {
  width: min(1120px, calc(100% - 64px));
  margin: auto;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
header img {
  width: 168px;
  height: auto;
}
nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
nav a[aria-current] {
  font-weight: 700;
}
main {
  padding: 48px 0 64px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  font-weight: 750;
  color: var(--muted);
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin: 18px 0 20px;
  font-weight: 650;
}
h2 {
  font-size: 1.5rem;
  letter-spacing: -0.035em;
  line-height: 1.25;
  margin: 0 0 18px;
}
h3 {
  font-size: 1.06rem;
  margin: 24px 0 8px;
}
p,
li {
  font-size: 1rem;
  line-height: 1.75;
}
p {
  margin: 0 0 16px;
}
.lead {
  font-size: 1.18rem;
  max-width: 760px;
  color: var(--muted);
}
.meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 20px 0 28px;
}
.notice {
  border: 1px solid #d5c998;
  border-left: 4px solid #8a6a19;
  background: #fcf8e8;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0 36px;
  max-width: 850px;
}
.notice p {
  font-size: 0.92rem;
  margin: 0;
}
.notice strong {
  display: block;
  margin-bottom: 6px;
}
.layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 55px;
}
.index {
  font-size: 0.85rem;
  color: var(--muted);
}
.index ol {
  padding-left: 20px;
  margin-top: 14px;
}
.index li {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 14px;
}
article {
  min-width: 0;
  max-width: 780px;
}
section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 24px;
}
section:first-child {
  padding-top: 0;
  border-top: 0;
}
ul {
  padding-left: 22px;
}
.summary {
  background: #eef5e7;
  padding: 22px;
  border-radius: 12px;
  margin: 0 0 30px;
}
.summary p:last-child {
  margin-bottom: 0;
}
.table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.92rem;
}
th,
td {
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  line-height: 1.65;
}
th {
  background: #eef3ed;
  font-size: 0.83rem;
}
td:first-child {
  font-weight: 600;
  width: 31%;
}
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.skip {
  position: absolute;
  left: 16px;
  top: -70px;
  padding: 12px;
  background: var(--lime);
  z-index: 10;
}
.skip:focus {
  top: 8px;
}
::selection {
  background: var(--lime);
}
@media (max-width: 720px) {
  header,
  main,
  footer {
    width: calc(100% - 36px);
  }
  header {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0;
    gap: 20px;
  }
  header img {
    width: 150px;
  }
  nav {
    gap: 18px;
  }
  main {
    padding-top: 32px;
  }
  .layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .index {
    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
  }
  .index ol {
    columns: 2;
    column-gap: 30px;
  }
  .index li {
    break-inside: avoid;
  }
  .notice {
    padding: 18px;
  }
  .lead {
    font-size: 1.08rem;
  }
  section {
    padding: 26px 0;
  }
  th,
  td {
    padding: 12px 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
@media print {
  header nav,
  .index,
  .skip,
  footer {
    display: none;
  }
  .layout {
    display: block;
  }
  main,
  header {
    width: 100%;
  }
  main {
    padding: 24px 0;
  }
  h1 {
    font-size: 30pt;
  }
  section {
    break-inside: avoid;
  }
  .notice {
    background: transparent;
  }
  a {
    text-decoration: none;
  }
}
