:root {
  --bg: #f6f2ea;
  --text: #1f1b16;
  --muted: #6b5e51;
  --accent: #0f6b5b;
  --maxw: 700px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "ETBembo", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  line-height: 1.6;
}
header, main, footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px;
}
header {
  padding-top: 32px;
  border-bottom: 1px solid #e1d8cc;
}
h1, h2, h3 { line-height: 1.2; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
footer {
  color: var(--muted);
  border-top: 1px solid #e1d8cc;
  padding-bottom: 40px;
  font-size: 0.9rem;
}
pre, code {
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, monospace;
  background: #efe7db;
  padding: 2px 4px;
  border-radius: 3px;
}
blockquote {
  margin: 0;
  padding: 12px 16px;
  border-left: 3px solid var(--accent);
  background: #efe7db;
}
