:root {
  --bg: #f4f1ea;
  --fg: #2b2b26;
  --muted: #6f6a5e;
  --accent: #9a4b2f;
  --line: #ddd6c8;
  --head-bg: #ebe5d8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-head {
  background: var(--head-bg);
  border-bottom: 1px solid var(--line);
}

.site-head .wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--fg);
  font-size: 1.05rem;
}

.site-head nav a {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  margin-left: 1.1rem;
}

.site-head nav a:hover { color: var(--accent); }

main { padding-top: 2rem; padding-bottom: 3rem; }

h1 {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0 0 0.75rem;
}

.lede { color: var(--muted); font-size: 1.05rem; }

.entries { margin-top: 2.2rem; }

.entries article {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
}

.entries time {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.entries h2 {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0.35rem 0 0.4rem;
}

.entries h2 a { color: var(--fg); text-decoration: none; }
.entries h2 a:hover { color: var(--accent); }

.entries p { margin: 0; color: var(--muted); }

code {
  font-family: "Consolas", "Menlo", monospace;
  background: #e6dfcf;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
}

.site-foot {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0 2.5rem;
}

.site-foot .wrap {
  display: flex;
  justify-content: space-between;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
}
