:root {
  --bg: #f5f3ef;
  --surface: #fffdf9;
  --ink: #2c2c2c;
  --muted: #6b6560;
  --accent: #c45c3e;
  --border: #e8e4de;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

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

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

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 1rem 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
}

nav { display: flex; gap: 1.25rem; }
nav a { color: var(--muted); font-size: 0.9rem; }

.hero {
  padding: 3.5rem 0 2.5rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 58ch;
}

.posts { padding: 2rem 0 3rem; }

.posts h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.post-list { list-style: none; }

.post-list li {
  border-top: 1px solid var(--border);
}

.post-list a {
  display: block;
  padding: 1.1rem 0;
  color: inherit;
  text-decoration: none;
}

.post-list a:hover { color: var(--accent); }

.post-meta {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.post-title {
  font-family: var(--serif);
  font-size: 1.2rem;
}

.disclosure-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer {
  padding: 2rem 0 3rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer p + p { margin-top: 0.5rem; }

/* Article pages */
.article { padding: 2.5rem 0 3rem; }

.article h1 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.article .meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.article h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.article p { margin-bottom: 1rem; }

.article ul, .article ol {
  margin: 0 0 1rem 1.25rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  margin: 1.25rem 0;
}

.product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.product-card .price {
  font-weight: 600;
  color: var(--accent);
}

.affiliate-note {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
