:root {
  color-scheme: light;
  --paper: #faf8f4; --ink: #1a1613; --ink-soft: #3c332b; --muted: #5f574f;
  --line: #e0d9cf; --soft: #f1ece4; --panel-line: #ccc2b4;
  --red: #a8301b; --green: #0a6b40; --review: #275a72; --amber: #8a5000;
  --serif: ui-serif, Georgia, "Iowan Old Style", "Times New Roman", serif;
  --column: 700px;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
header {
  min-height: 68px;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}
header .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.01em;
  text-decoration: none;
}
.brand-mark { width: 24px; height: 24px; display: block; }
.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  font-size: 13.5px;
  color: var(--muted);
}
.header-nav a {
  display: inline-block;
  padding: 11px 0;
  text-decoration: none;
  white-space: nowrap;
}
.header-nav a:hover { color: var(--ink); text-decoration: underline; }
.header-nav [aria-current], .footer-nav [aria-current] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -.012em;
}
.data-stamp {
  max-width: var(--column);
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12.5px;
}
footer {
  padding: 26px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
footer p { max-width: var(--column); margin: 0 0 8px; }
footer a { color: var(--muted); }
.footer-nav { margin: 0 0 6px; }
.footer-nav-main, .footer-nav-more { display: flex; flex-wrap: wrap; gap: 0 20px; }
.footer-nav a {
  display: inline-block;
  padding: 10px 0;
  text-decoration: none;
  white-space: nowrap;
}
.footer-nav-main a { color: var(--ink); font-weight: 650; }
.footer-nav-more a { color: var(--muted); font-size: 13px; }
.footer-nav a:hover { text-decoration: underline; }
footer .footer-support b { color: var(--ink); font-weight: 650; }
.footer-source { font-size: 12px; line-height: 1.5; }
.legal { max-width: var(--column); border-top: 1px solid var(--line); }
.legal:last-of-type { border-bottom: 1px solid var(--line); }
.legal > summary { padding: 18px 0; cursor: pointer; color: var(--ink); font-size: 20px; font-weight: 750; }
.legal[open] > summary { margin-bottom: 8px; }
@media (max-width: 560px) {
  body { -webkit-text-size-adjust: 100%; }
  .wrap { width: min(100% - 28px, 1120px); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
