:root {
  --bg: #f6f1e8;
  --bg-elevated: #fffdf8;
  --ink: #1f1a14;
  --muted: #6b6258;
  --line: #e4d9c8;
  --accent: #9a4a1c;
  --accent-soft: #f0e0d0;
  --shadow: 0 18px 40px rgba(55, 38, 18, 0.07);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.65;
}

body {
  min-height: 100vh;
}

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

a:hover { text-decoration: underline; }

.wrap {
  width: min(760px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  padding: 2.4rem 0 1.6rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.brand h1 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.brand h1 a { color: inherit; text-decoration: none; }

.tag {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero {
  padding: 3.2rem 0 1.2rem;
}

.kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.8rem;
}

.hero h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1.12;
  font-weight: 600;
}

.lede {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.12rem;
  margin: 1rem 0 0;
}

.posts {
  display: grid;
  gap: 1.2rem;
  padding: 1.4rem 0 4rem;
}

.card {
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.6rem 1.4rem;
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: #d2c2aa;
  text-decoration: none;
}

.meta {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.card h3 {
  margin: 0.45rem 0 0.5rem;
  font-size: 1.45rem;
  line-height: 1.25;
}

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

.article {
  padding: 2.6rem 0 5rem;
}

.article header h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  line-height: 1.15;
}

.article .body {
  font-size: 1.08rem;
}

.article .body p { margin: 1.1rem 0; }

.article .body p.drop:first-of-type::first-letter {
  float: left;
  font-size: 3.3rem;
  line-height: 0.8;
  padding: 0.18rem 0.5rem 0 0;
  color: var(--accent);
}

blockquote {
  margin: 1.6rem 0;
  padding: 0.2rem 0 0.2rem 1.2rem;
  border-left: 3px solid var(--accent);
  color: #3c332b;
  font-style: italic;
}

.back {
  font-family: var(--sans);
  font-size: 0.86rem;
  display: inline-block;
  margin-bottom: 1.4rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2.4rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.82rem;
}

@media (max-width: 560px) {
  .brand { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
}
