:root {
  color-scheme: light;
  --bg: #fff8f0;
  --ink: #1a1a1a;
  --muted: #3d3d3d;
  --gold: #8b6914;
  --surface: #ffffff;
}
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
}
header {
  background: #2c1810;
  color: #fff;
  padding: 20px 24px 16px;
  border-radius: 0 0 16px 16px;
}
header a { color: #e8d5a8; }
h1 {
  font-size: 1.6rem;
  margin: 0 0 8px;
  color: #e8d5a8;
}
.meta { color: #e8d5a8; font-size: 0.9rem; font-family: system-ui, sans-serif; }
main { max-width: 720px; margin: 0 auto; padding: 24px 20px 64px; }
nav { font-family: system-ui, sans-serif; margin: 16px 0 24px; }
nav a { color: var(--gold); font-weight: 600; }
h2 { font-size: 1.25rem; margin: 2rem 0 0.6rem; }
p, li { font-family: system-ui, sans-serif; font-size: 1rem; color: var(--ink); }
.lang { float: right; font-family: system-ui, sans-serif; }
.lang a {
  color: #e8d5a8;
  font-weight: 600;
  text-decoration: underline;
}
.draft {
  background: var(--surface);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
}
[hidden] { display: none !important; }
