/* The legal pages' shared look (2026-07-28).
   privacy.html and terms.html carried this 38-line block twice, byte for byte
   — 149 of terms.html's 213 lines appeared verbatim in privacy.html. These two
   pages are served under /(.*), which sets no CSP, so a same-origin sheet is
   allowed; /d/ and 404 are the ones that must stay self-contained. */
/* Palette lives in /brand.css (single source of truth). */
  * { box-sizing: border-box; }
  body { margin: 0; background: var(--surface); color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px; line-height: 1.65; }
  .wrap { max-width: 640px; margin: 0 auto; padding: 40px 24px 80px; }
  .brand { display: inline-flex; align-items: center; gap: 9px; font-size: 22px; letter-spacing: -0.4px; text-decoration: none; }
  .brand .brandmark { width: 25px; height: 25px; display: block; }
  .brand .lt-photo { font-weight: 300; color: var(--ink); }
  .brand .lt-dove { font-weight: 500; color: var(--dawn-ink); }
  h1 { font-family: Georgia, serif; font-weight: 400; font-size: 32px; margin: 36px 0 6px; }
  .updated { color: var(--soft); font-size: 15px; margin-bottom: 32px; }
  h2 { font-size: 20px; margin: 34px 0 8px; }
  p, li { color: var(--soft); }
  p { margin: 0 0 14px; }
  strong { color: var(--ink); font-weight: 600; }
  a { color: var(--dawn-ink); }
  .lede { font-size: 18px; color: var(--ink); border-left: 3px solid var(--hair); padding-left: 18px; }
  footer { border-top: 1px solid var(--hair); margin-top: 48px; padding-top: 22px; font-size: 14px; color: var(--soft); }
  footer .foot-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
  footer nav { display: flex; gap: 22px; flex-wrap: wrap; }
  footer nav a { color: var(--soft); text-decoration: none; }
  footer nav a:hover { color: var(--ink); }
  footer .legal { margin: 0; }
  footer .legal a { color: var(--soft); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--hair); }
  footer .legal a:hover { color: var(--ink); text-decoration-color: currentColor; }
  .theme-toggle { display: inline-flex; gap: 2px; padding: 3px;
    border: 1px solid var(--hair); border-radius: 999px; background: var(--card); }
  .theme-toggle button { width: 30px; height: 30px; border: 0; border-radius: 999px;
    background: transparent; color: var(--soft); cursor: pointer; font-size: 15px;
    line-height: 1; display: inline-flex; align-items: center; justify-content: center; }
  .theme-toggle button[aria-checked="true"] { background: var(--dawn); color: #fff; }
  /* No `summary:` here — these pages have no <details>; it was inherited
   from index.html by copy-paste. */
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--dawn-ink); outline-offset: 2px; }
  .skip { position: absolute; left: 8px; top: -60px; z-index: 100; background: var(--card);
    color: var(--ink); padding: 10px 16px; border: 1px solid var(--hair); border-radius: 10px;
    text-decoration: none; }
  .skip:focus { top: 8px; }
