:root {
  color-scheme: light;
  --ink: #16231f;
  --muted: #5f6d67;
  --line: #dce4dd;
  --paper: #fbfbf7;
  --panel: #ffffff;
  --green: #174438;
  --gold: #946a1f;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: var(--green); font-weight: 700; }
.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 251, 247, 0.94);
  position: sticky;
  top: 0;
}
.blog-header nav { display: flex; gap: 16px; flex-wrap: wrap; }
.blog-home,
.article-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0 64px;
}
.hero {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}
h2 {
  margin-top: 34px;
  font-size: 24px;
}
.lede {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.post-card {
  min-height: 260px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.post-card h2 {
  margin: 8px 0 10px;
  font-size: 21px;
}
.meta {
  color: var(--muted);
  font-size: 14px;
}
article { max-width: 860px; }
article p { font-size: 18px; }
@media (max-width: 760px) {
  .blog-header { align-items: flex-start; flex-direction: column; }
}