:root {
  --ink: #1f2933;
  --muted: #52616b;
  --surface: #f8f6f1;
  --accent: #a94921;
  --accent-dark: #793215;
  --line: #d9d3c7;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--surface); font-family: var(--sans); font-size: 1.05rem; line-height: 1.7; }
a { color: var(--accent-dark); }
a:hover { color: var(--accent); }
.site-header { width: min(1120px, calc(100% - 2.5rem)); margin: auto; min-height: 5.75rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.site-name { color: var(--ink); font-family: var(--serif); font-size: 1.45rem; font-weight: 700; text-decoration: none; }
.site-nav { display: flex; gap: 1.25rem; align-items: center; }
.site-nav a { color: var(--ink); text-decoration: none; font-size: .95rem; font-weight: 650; }
.site-nav a:hover { color: var(--accent); }
.menu-toggle { display: none; border: 1px solid var(--ink); background: transparent; padding: .45rem .75rem; border-radius: .3rem; font: inherit; }
main { min-height: calc(100vh - 12rem); }
.hero { background: var(--ink); color: #fff; padding: clamp(4rem, 9vw, 8rem) max(1.25rem, calc((100vw - 1040px) / 2)); }
.hero h1, h1, h2, h3 { font-family: var(--serif); line-height: 1.15; }
.hero h1 { max-width: 800px; margin: .3rem 0 1.25rem; font-size: clamp(2.8rem, 7vw, 5.8rem); }
.lede { max-width: 660px; font-size: 1.25rem; color: #e8e4dc; }
.eyebrow { margin: 0 0 .35rem; color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero .eyebrow { color: #f3b48e; }
.button { display: inline-block; padding: .7rem 1rem; border-radius: .25rem; background: var(--accent); color: #fff; font-weight: 750; text-decoration: none; }
.button:hover { color: #fff; background: var(--accent-dark); }
.button.secondary { background: transparent; border: 1px solid var(--accent); color: var(--accent-dark); }
.content-section, .article-page { width: min(780px, calc(100% - 2.5rem)); margin: 4rem auto; }
.section-heading { margin-bottom: 1.5rem; }
.section-heading h2 { margin: 0; font-size: 2.25rem; }
.post-list { display: grid; gap: 0; }
.post-card { padding: 1.65rem 0; border-top: 1px solid var(--line); }
.post-card h2 { margin: .15rem 0 .55rem; font-size: 1.55rem; }
.post-card h2 a { color: var(--ink); text-decoration: none; }
.post-card p { margin: .4rem 0; }
.post-meta { color: var(--muted); font-size: .88rem; }
.read-more { font-weight: 700; }
.article-page h1 { margin: .2rem 0 2rem; font-size: clamp(2.4rem, 6vw, 4rem); }
.article-content { overflow-wrap: anywhere; }
.article-content img { max-width: 100%; height: auto; }
.article-content figure { margin: 2rem 0; }
.article-content figcaption { color: var(--muted); font-size: .9rem; }
.article-content iframe { max-width: 100%; }
footer { width: min(1120px, calc(100% - 2.5rem)); margin: auto; padding: 2rem 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }

@media (max-width: 650px) {
  .site-header { min-height: 4.5rem; position: relative; }
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; z-index: 2; top: 4.1rem; right: 0; min-width: 12rem; padding: 1rem; background: #fff; box-shadow: 0 8px 20px rgb(0 0 0 / 15%); flex-direction: column; align-items: flex-start; }
  .site-nav.is-open { display: flex; }
  .hero { padding-top: 4rem; padding-bottom: 4rem; }
  .content-section, .article-page { margin: 2.75rem auto; }
}
