:root {
  --ink: #1c1915;
  --ink-soft: #3d3830;
  --paper: #f4efe6;
  --paper-2: #ebe4d6;
  --cream: #faf7f1;
  --forest: #1f3d32;
  --forest-2: #2d5a48;
  --moss: #6b8f71;
  --glacier: #6d8b9c;
  --copper: #b56a3a;
  --line: rgba(28, 25, 21, 0.12);
  --shadow: 0 24px 60px rgba(28, 25, 21, 0.08);
  --max: 1120px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--forest-2); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--copper); }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 24px;
}
.logo {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
}
.logo span { color: var(--copper); }
nav { display: flex; gap: 22px; flex-wrap: wrap; }
nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
nav a:hover, nav a.active { color: var(--forest); }

/* Hero */
.hero {
  background: var(--forest);
  color: var(--paper);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(109,139,156,.28), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(181,106,58,.18), transparent 45%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--moss); margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 500;
  max-width: 16ch;
}
.hero p.lead {
  margin-top: 24px;
  max-width: 46ch;
  font-size: 18px;
  color: #d8d0c4;
}
.hero-meta {
  margin-top: 36px;
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 13px; letter-spacing: 0.04em; color: #c9c1b4;
}
.hero-meta strong { color: var(--paper); display: block; font-weight: 600; }

.btn {
  display: inline-block;
  margin-top: 32px;
  background: var(--paper);
  color: var(--forest);
  text-decoration: none;
  padding: 12px 22px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn:hover { background: #fff; color: var(--ink); }
.btn.ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(244,239,230,.35);
  margin-left: 10px;
}

/* Sections */
section { padding: 72px 0; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-intro { max-width: 58ch; color: var(--ink-soft); margin-bottom: 36px; }

.grid-3, .grid-2 { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.card .kicker {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 10px;
}
.card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}
.card p { color: var(--ink-soft); font-size: 16px; }
.card a.more {
  display: inline-block; margin-top: 16px;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; color: var(--forest);
}

.banner {
  background: var(--paper-2);
  border-left: 3px solid var(--copper);
  padding: 18px 20px;
  font-size: 15px;
  color: var(--ink-soft);
}
.banner strong { color: var(--ink); }

article.post { padding: 56px 0 80px; }
.post-header { max-width: 720px; margin-bottom: 32px; }
.post-header h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
  font-weight: 500;
}
.prose { max-width: 720px; }
.prose p { margin: 0 0 1.1em; }
.prose h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 1.6em 0 0.5em;
}
.prose h3 { font-size: 18px; margin: 1.3em 0 0.4em; }
.prose ul, .prose ol { margin: 0 0 1.2em 1.2em; }
.prose li { margin-bottom: 0.35em; }
.prose figure { margin: 1.6em 0 1.8em; }
.prose figure img { width: 100%; height: auto; }
.prose figcaption { font-size: 13px; color: #7a7368; margin-top: 8px; }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 1.4em 0 1.8em; }
.gallery img { width: 100%; height: 260px; object-fit: cover; background: #ddd; }
.prose figcaption { font-size: 0.88em; color: var(--ink-soft); margin-top: 8px; }
@media (max-width: 800px) { .gallery { grid-template-columns: 1fr; } .gallery img { height: 220px; } }
.prose blockquote {
  margin: 1.6em 0;
  padding-left: 20px;
  border-left: 3px solid var(--moss);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  color: var(--forest);
}

footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 56px;
  color: var(--ink-soft);
  font-size: 14px;
}
.footer-grid {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.footer-grid a { color: var(--ink-soft); text-decoration: none; }
.disc {
  margin-top: 22px;
  font-size: 12px;
  color: #7a7368;
  max-width: 80ch;
}

@media (max-width: 800px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  nav { display: none; }
  .hero { padding: 64px 0 52px; }
  .btn.ghost { margin-left: 0; margin-top: 12px; }
}
