:root {
  --ink: #241922; --ink-soft: #5b4a56; --ink-mute: #8a7a86;
  --surface: #f5f1ee; --surface-raised: #ffffff; --line: #e4dbd4; --accent: #a8651c;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:where(:not([data-theme="light"])) {
    --ink: #f1e7ec; --ink-soft: #c9b9c3; --ink-mute: #93818d;
    --surface: #17111a; --surface-raised: #221a26; --line: #362a3b; --accent: #e0a94a;
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --ink: #f1e7ec; --ink-soft: #c9b9c3; --ink-mute: #93818d;
  --surface: #17111a; --surface-raised: #221a26; --line: #362a3b; --accent: #e0a94a;
  color-scheme: dark;
}
:root[data-theme="light"] {
  --ink: #241922; --ink-soft: #5b4a56; --ink-mute: #8a7a86;
  --surface: #f5f1ee; --surface-raised: #ffffff; --line: #e4dbd4; --accent: #a8651c;
  color-scheme: light;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--surface); color: var(--ink); font-family: -apple-system, "Segoe UI", Arial, sans-serif; line-height: 1.6; }
.legal-nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 28px; max-width: 760px; margin: 0 auto; }
.legal-nav .mark { font-family: Georgia, "PT Serif", "Noto Serif", "Times New Roman", serif; font-weight: 700; font-size: 1.15rem; }
.legal-nav a.back { color: var(--ink-soft); text-decoration: none; font-size: 0.85rem; }
main.legal { max-width: 720px; margin: 0 auto; padding: 20px 28px 80px; }
h1 { font-family: Georgia, "PT Serif", "Noto Serif", "Times New Roman", serif; font-size: 1.7rem; margin: 0 0 6px; }
.updated { font-size: 0.82rem; color: var(--ink-mute); margin: 0 0 32px; }
h2 { font-size: 1.05rem; margin: 28px 0 8px; }
p, li { font-size: 0.92rem; color: var(--ink-soft); }
a { color: var(--accent); }
ul, ol { padding-left: 20px; }
