:root {
  --paper: #f7f4ee;
  --ink: #1d1d1b;
  --ink-soft: #4a4a46;
  --rule: #d8d2c6;
  --accent: #8a3b12;
  --accent-soft: #b5623a;
  --max: 42rem;
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #17171a;
    --ink: #e8e4dc;
    --ink-soft: #b3aea4;
    --rule: #33333a;
    --accent: #e0925f;
    --accent-soft: #c77b47;
  }
}
* { box-sizing: border-box; }
html { font-size: 18px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.65;
}
a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--accent-soft); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1rem; }
header.site {
  border-bottom: 1px solid var(--rule);
  padding: 1.1rem 0;
  font-family: var(--sans);
  font-size: 0.9rem;
}
header.site .wrap { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
header.site .name { font-weight: 700; letter-spacing: 0.01em; color: var(--ink); text-decoration: none; }
header.site nav a { color: var(--ink-soft); text-decoration: none; margin-left: 1.2rem; }
header.site nav a:hover { color: var(--accent); }
main { padding: 2.5rem 0 3rem; }
h1 { font-size: 2.1rem; line-height: 1.15; margin: 0 0 0.6rem; font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: 1.35rem; line-height: 1.25; margin: 2.2rem 0 0.6rem; font-weight: 700; }
h3 { font-size: 1.1rem; margin: 1.8rem 0 0.4rem; }
p { margin: 0 0 1.15rem; }
.dek { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 1.6rem; }
.meta { font-family: var(--sans); font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 2rem; }
.essay p:first-of-type::first-letter { font-size: 1.05em; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 2.5rem 0; }
.posts { list-style: none; padding: 0; margin: 0; }
.posts li { padding: 1rem 0; border-top: 1px solid var(--rule); }
.posts li:last-child { border-bottom: 1px solid var(--rule); }
.posts a.t { font-size: 1.15rem; font-weight: 700; text-decoration: none; color: var(--ink); }
.posts a.t:hover { color: var(--accent); }
.posts .d { font-family: var(--sans); font-size: 0.8rem; color: var(--ink-soft); margin: 0.15rem 0 0.35rem; }
.posts p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
blockquote { margin: 1.4rem 0; padding-left: 1rem; border-left: 3px solid var(--accent); color: var(--ink-soft); font-style: italic; }
footer.site {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0 2.5rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--ink-soft);
}
footer.site a { color: var(--ink-soft); }
.next { font-family: var(--sans); font-size: 0.9rem; margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid var(--rule); }
@media (max-width: 600px) {
  html { font-size: 17px; }
  h1 { font-size: 1.7rem; }
  header.site nav a { margin-left: 0.9rem; }
}
