/* larklind.com — plain text, no images, mobile first */
:root {
  --bg: #fffefb;
  --fg: #222;
  --muted: #666;
  --link: #0645ad;
  --rule: #ddd;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111;
    --fg: #e6e6e6;
    --muted: #999;
    --link: #8ab4f8;
    --rule: #333;
  }
}
html { font-size: 112.5%; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding: 1.5rem 1rem 3rem;
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  background: var(--bg);
  color: var(--fg);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}
h1, h2, h3 { line-height: 1.25; margin: 2rem 0 0.5rem; }
h1 { font-size: 1.6rem; margin-top: 0; }
h2 { font-size: 1.2rem; }
p, ul, ol { margin: 0 0 1rem; }
ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; }
a { color: var(--link); text-decoration: underline; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }
small, .muted { color: var(--muted); }
hr { border: 0; border-top: 1px solid var(--rule); margin: 2rem 0; }
header nav a { margin-right: 1rem; }
footer { margin-top: 3rem; font-size: 0.9rem; color: var(--muted); }
