:root {
  --bg: #f7efe6;
  --paper: #fffaf4;
  --ink: #2d2a26;
  --muted: #6b5d52;
  --brand: #8b5d33;
  --accent: #b15a44;
  --border: #e0d5c8;
  --radius: 8px;
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(247, 239, 230, .94);
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav, .wrap {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
}
.nav {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.18rem;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
  font-size: .95rem;
}
.nav-links a { text-decoration: none; }
.hero {
  padding: 64px 0 34px;
}
.eyebrow {
  color: var(--brand);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.16;
}
h1 {
  max-width: 850px;
  margin: 12px 0 18px;
  font-size: clamp(2.35rem, 5vw, 4rem);
}
h2 {
  margin: 44px 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}
h3 {
  margin: 24px 0 8px;
  font-size: 1.25rem;
}
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.18rem;
}
.cover {
  width: 100%;
  margin: 26px 0 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}
.content {
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 34px 0 58px;
}
.content p, .content li {
  color: var(--muted);
  font-size: 1.04rem;
}
.content ul {
  padding-left: 22px;
}
.callout {
  margin: 38px 0 12px;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #f7efe6;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: #2d2a26;
  color: #fffaf4;
  text-decoration: none;
  font-weight: 800;
}
.related {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.related a {
  color: var(--brand);
  font-weight: 800;
}
.site-footer {
  padding: 28px 0;
  color: var(--muted);
}
@media (max-width: 720px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav-links { flex-wrap: wrap; }
}
