:root {
  color-scheme: light;
  --ink: #17211c;
  --muted: #5d6861;
  --paper: #f5f2e9;
  --panel: #ebe5d7;
  --line: #c9c0ae;
  --accent: #166247;
  --accent-dark: #0d4934;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
}

body {
  margin: 0;
  line-height: 1.65;
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

a:focus-visible {
  border-radius: 0.15rem;
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 2;
  padding: 0.65rem 0.9rem;
  background: var(--ink);
  color: var(--paper);
}

.skip-link:focus {
  top: 1rem;
}

.site-header,
.site-footer {
  border-color: var(--line);
  border-style: solid;
  border-width: 0;
}

.site-header {
  border-bottom-width: 1px;
}

.site-footer {
  border-top-width: 1px;
}

.shell {
  width: min(100% - 2.5rem, 74rem);
  margin-inline: auto;
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

nav ul,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
  text-decoration-thickness: 0.16em;
}

main {
  padding-block: clamp(4rem, 9vw, 8rem);
}

.document {
  width: min(100%, 45rem);
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 14ch;
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(2.85rem, 8vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.policy h1 {
  font-size: clamp(2.75rem, 7vw, 5.25rem);
}

.lede {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-block: clamp(3.5rem, 8vw, 6rem);
  border: 1px solid var(--line);
  background: var(--line);
}

.fact {
  min-height: 13rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--panel);
}

.fact h2,
.section h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.fact p,
.section p,
.section ul {
  margin-block: 0 1rem;
}

.fact p:last-child,
.section p:last-child,
.section ul:last-child {
  margin-bottom: 0;
}

.section {
  margin-top: 3.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.section li + li {
  margin-top: 0.45rem;
}

.effective-date {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.callout {
  margin-top: 3.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  background: var(--panel);
}

.footer-inner {
  align-items: flex-start;
  padding-block: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-inner p {
  margin: 0;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

main:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

@media (max-width: 42rem) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    padding-block: 1rem;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: auto;
  }
}
