/* Shared paper, ink, and indigo identity. The policy uses the same shell. */
:root {
  color-scheme: light;
  --ink-rgb: 26, 24, 21;
  --bg: #faf8f4;
  --text: #1a1815;
  --card: #fffefa;
  --accent: #3b4fd8;
  --accent-hover: #2e3db0;
  --rule: rgba(var(--ink-rgb), .17);
  --rule-soft: rgba(var(--ink-rgb), .1);
  --muted: #77736c;
  --body-2: #6c6862;
  --font-serif: "Iowan Old Style", "Palatino Nova", Palatino, "Palatino Linotype", Georgia, serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 28px; }
body { background: var(--bg); color: var(--text); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", sans-serif; -webkit-font-smoothing: antialiased; }
button { font: inherit; color: inherit; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 4px; }
a, button, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
::selection { background: #dce0fa; color: var(--text); }
img { display: block; max-width: 100%; height: auto; }
[hidden] { display: none !important; }
.serif { font-family: var(--font-serif); font-weight: 400; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.wrap { max-width: 1240px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }
.eyebrow { color: var(--body-2); font-size: 11px; line-height: 1.6; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.icon { width: 20px; height: 20px; display: inline-block; flex: none; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; vertical-align: middle; }
.svg-library { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: 12px; left: 12px; z-index: 10; padding: 12px 20px; background: var(--text); color: var(--bg); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.masthead { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 101px; border-bottom: 1px solid var(--rule); }
.wordmark { color: var(--text); font-size: 34px; line-height: 1; letter-spacing: -.07em; }
.wordmark i { color: var(--accent); font-style: normal; }
.masthead a:hover, a.wordmark:hover { text-decoration: none; }
.masthead > .eyebrow { text-align: right; }
.site-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding: 32px 0 38px; border-top: 1px solid var(--rule); font-size: 12px; color: var(--body-2); }
.site-footer .wordmark { font-size: 28px; }
.site-footer .links { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.site-footer .links a { color: var(--body-2); }
@media (max-width: 760px) {
  .wrap { padding-left: 24px; padding-right: 24px; }
  .masthead { min-height: 82px; }
  .wordmark { font-size: 31px; }
  .site-footer { gap: 22px; padding-bottom: 28px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
