:root {
  --fg: #1a1d22;
  --muted: #61686f;
  --bg: #faf9f6;
  --accent: #9c6b2f;
  --accent-soft: #ead7b3;
  --rule: #e8e3d6;
}
* { box-sizing: border-box; }
html, body { background: var(--bg); color: var(--fg); }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, sans-serif;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
  line-height: 1.6;
}
header {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
header a.brand {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
}
header nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1rem;
  font-size: 0.95em;
}
header nav a:hover { color: var(--accent); }
footer {
  border-top: 1px solid var(--rule);
  margin-top: 3rem;
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.9em;
}
h1 { font-size: 1.85rem; line-height: 1.25; margin: 0 0 0.5rem; }
h2 { font-size: 1.35rem; margin: 1.75rem 0 0.5rem; }
h3 { font-size: 1.1rem; margin: 1.25rem 0 0.4rem; }
a { color: var(--accent); }
a:hover { text-decoration-thickness: 2px; }
.cta {
  margin: 2rem 0;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 6px;
}
.cta strong { display: block; font-size: 1.05em; margin-bottom: 0.3rem; }
.post-meta { color: var(--muted); font-size: 0.95em; margin-bottom: 1.5rem; }
.post-list { list-style: none; padding: 0; }
.post-list li { padding: 0.6rem 0; border-bottom: 1px dashed var(--rule); }
.post-list li:last-child { border-bottom: none; }
.post-list time { color: var(--muted); font-size: 0.9em; margin-right: 0.6rem; }
.disclaimer { color: var(--muted); font-size: 0.85em; margin-top: 0.5rem; }
ul.what-we-make { padding-left: 1.2em; }
.hero-sub { color: var(--muted); font-size: 1.05em; margin-bottom: 1rem; }
.product-card {
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 1.25rem;
  margin: 1rem 0;
}
