:root {
  --bg: #f6f1e8;
  --paper: rgba(255, 252, 246, 0.92);
  --ink: #1f252b;
  --muted: #5f6b75;
  --line: rgba(31, 37, 43, 0.14);
  --accent: #0e6b7a;
  --accent-soft: #cfe4e7;
  --shadow: 0 18px 50px rgba(20, 30, 40, 0.12);
}

* { box-sizing: border-box; }
html { font-size: 17px; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(14, 107, 122, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(201, 98, 57, 0.12), transparent 24%),
    linear-gradient(180deg, #f3ecdf 0%, #ece6db 100%);
  font: 400 1rem/1.7 "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(920px, calc(100% - 32px));
  margin: 36px auto;
  padding: 28px 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-header,
.site-footer {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 28px;
}

.site-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  padding-top: 18px;
  margin-top: 36px;
  margin-bottom: 0;
}

.site-title {
  margin: 0;
  font: 700 clamp(2.1rem, 4vw, 3.5rem)/1.05 Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
}

.site-title a { color: inherit; }

.tagline,
.post-meta,
.lede,
.muted {
  color: var(--muted);
}

.tagline { margin: 12px 0 0; }

.primary {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.primary a.current {
  color: var(--ink);
  font-weight: 700;
}

.post,
.page {
  padding: 0 0 24px;
  margin: 0 0 28px;
  border-bottom: 1px solid var(--line);
}

.post:last-child,
.page:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

h2, h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.15rem; }

blockquote {
  margin: 18px 0;
  padding: 10px 16px;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
}

.read-more {
  font-weight: 700;
}

.row {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}

ul.archive {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

ul.archive li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

code {
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: rgba(0, 0, 0, 0.05);
  padding: 1px 5px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 18px, 920px);
    margin: 12px auto;
    padding: 22px 18px;
  }
}
