:root {
  --paper: #F5F2EC;
  --surface: #FFFEFA;
  --ink: #252A27;
  --muted: #64685F;
  --accent: #9B4935;
  --accent-soft: #F0E1D8;
  --copper: #C68B70;
  --line: #DFE0D6;
  --soft: #EDE4D8;
  --green: #536957;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--paper); color: var(--ink); font: 17px/1.6 var(--sans); }
a { color: var(--accent); text-underline-offset: 3px; }
a:hover { color: var(--ink); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.wrap { width: 100%; max-width: 820px; margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; background: var(--surface); padding: 8px 12px; z-index: 10; }
.site-header { background: var(--ink); color: var(--paper); }
.header-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 24px; padding-top: 16px; padding-bottom: 16px; }
.wordmark { font-family: var(--serif); font-size: 24px; letter-spacing: 0.18em; color: var(--paper); text-decoration: none; }
.wordmark::after { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--copper); margin-left: 3px; }
.site-header nav { display: flex; flex-wrap: wrap; gap: 4px 16px; }
.site-header nav a { color: #D4D8CF; text-decoration: none; font-size: 15px; }
.site-header nav a:hover, .site-header nav a[aria-current="page"] { color: var(--paper); text-decoration: underline; }
main { padding-top: 40px; padding-bottom: 56px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(34px, 7vw, 52px); margin: 6px 0 12px; }
h2 { font-size: 26px; margin: 40px 0 12px; }
h3 { font-size: 19px; margin: 24px 0 6px; font-family: var(--sans); }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; color: var(--accent); margin: 0; }
.updated { color: var(--muted); font-size: 15px; }
.lead { font-size: 20px; color: var(--muted); max-width: 40ch; }
.soon { display: inline-block; background: var(--ink); color: var(--paper); padding: 10px 18px; border-radius: 999px; font-weight: 600; }
.hero { padding: 24px 0 8px; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; margin-top: 36px; }
.features article, .links-panel, .contact-card, .toc { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 20px 22px; }
.features h2 { font-size: 21px; margin: 0 0 6px; }
.features p { margin: 0; color: var(--muted); }
.links-panel { margin-top: 28px; }
.links-panel h2, .contact-card h2 { margin-top: 0; }
.links-panel ul { padding-left: 20px; }
.toc { margin: 24px 0 8px; }
.toc ol { margin: 8px 0 0; padding-left: 22px; columns: 2 260px; }
.legal section { border-top: 1px solid var(--line); }
.legal section h2 { margin-top: 28px; }
li { margin: 6px 0; }
details { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 14px 18px; margin: 10px 0; }
summary { cursor: pointer; font-weight: 600; }
details p { margin: 10px 0 0; }
.button { display: inline-block; background: var(--accent); color: var(--surface); padding: 12px 20px; border-radius: 999px; text-decoration: none; font-weight: 600; }
.button:hover { background: var(--ink); color: var(--surface); }
.site-footer { background: var(--soft); padding: 28px 0; font-size: 15px; color: var(--muted); }
.site-footer p { margin: 6px 0; }
@media (max-width: 480px) {
  body { font-size: 16px; }
  main { padding-top: 28px; }
  .wrap { padding: 0 16px; }
  h2 { font-size: 23px; }
}
