:root {
  --ink: #2E1D12;
  --cream: #F5EDE0;
  --warm: #C4956A;
  --muted: #6B5344;
  --paper: #FAF6F0;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--warm); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(46,29,18,0.08);
  background: var(--cream);
}
.site-nav .logo img { height: 28px; width: auto; }
.site-nav .links { display: flex; gap: 1.5rem; font-size: 0.875rem; font-weight: 500; }
.site-nav .links a { color: var(--ink); text-decoration: none; }
.site-nav .links a:hover { color: var(--warm); text-decoration: none; }
.wrap { max-width: 720px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.blog-header { margin-bottom: 3rem; }
.blog-header h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.blog-header p { color: var(--muted); font-size: 1.05rem; max-width: 540px; }
.post-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.post-card {
  display: block;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(46,29,18,0.1);
  text-decoration: none;
  color: inherit;
}
.post-card:hover { background: rgba(196,149,106,0.06); margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem; border-radius: 8px; text-decoration: none; }
.post-card time { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.post-card h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0.4rem 0 0.5rem;
  color: var(--ink);
}
.post-card p { color: var(--muted); font-size: 0.95rem; }
.post-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; }
.post-meta time { margin-right: 1rem; }
article h1 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}
article h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 2.5rem 0 0.75rem;
}
article p { margin-bottom: 1.25rem; color: var(--ink); }
article ul { margin: 0 0 1.25rem 1.25rem; }
article li { margin-bottom: 0.5rem; }
.cta-box {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--cream);
  border-radius: 12px;
  text-align: center;
}
.cta-box p { margin-bottom: 1rem; color: var(--muted); }
.cta-box a.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.cta-box a.btn:hover { background: var(--warm); text-decoration: none; }
.back-link { display: inline-block; margin-bottom: 2rem; font-size: 0.875rem; font-weight: 500; }
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.stat-item {
  padding: 1.25rem;
  background: var(--cream);
  border-radius: 10px;
}
.stat-n {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--warm);
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.stat-src {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 560px) {
  .stat-grid { grid-template-columns: 1fr; }
}
.site-footer {
  border-top: 1px solid rgba(46,29,18,0.08);
  padding: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
.site-footer a { color: var(--muted); margin: 0 0.75rem; }
