:root {
  --bg: #faf8f5;
  --fg: #2c2a28;
  --muted: #6b6660;
  --accent: #7a6a4f;
  --line: #e6e1d9;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Georgia, "Times New Roman", serif;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
}
main { max-width: 42rem; margin: 0 auto; padding: 3rem 1.25rem 4rem; }
header.site { border-bottom: 1px solid var(--line); padding-bottom: 1.25rem; margin-bottom: 2.5rem; }
header.site h1 { font-size: 1.6rem; margin: 0 0 .25rem; font-weight: 600; letter-spacing: .02em; }
header.site .tagline { color: var(--muted); font-size: .95rem; margin: 0; }
nav { margin-top: .9rem; }
nav a { color: var(--accent); text-decoration: none; margin-right: 1.1rem; font-size: .95rem; }
nav a:hover { text-decoration: underline; }
h2 { font-size: 1.15rem; margin: 2rem 0 .5rem; }
a { color: var(--accent); }
.post { margin-bottom: 2rem; }
.post .date { color: var(--muted); font-size: .82rem; letter-spacing: .03em; text-transform: uppercase; }
.post h3 { margin: .15rem 0 .4rem; font-size: 1.05rem; }
.post p { margin: .3rem 0; }
.read-more { font-size: .9rem; }
footer.site { border-top: 1px solid var(--line); margin-top: 3rem; padding-top: 1rem; color: var(--muted); font-size: .85rem; }
