:root {
  --bg: #0f140d;
  --bg2: #161d13;
  --panel: #1a2317;
  --border: #33422b;
  --text: #f2f0e2;
  --muted: #b5bda5;
  --accent: #e0a458;
  --accent2: #f0c082;
  font-family: Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(1100px 700px at 85% -10%, #1d2a16 0%, var(--bg) 55%);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent2); }

.content-header {
  border-bottom: 1px solid var(--border);
  background: rgb(15 20 13 / 92%);
}

.content-header-inner,
.content-main,
.content-footer {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
}

.content-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.content-brand {
  color: var(--text);
  font-family: Bitter, Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.content-header nav,
.content-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.content-main { padding: 54px 0 64px; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2 {
  font-family: Bitter, Georgia, serif;
  line-height: 1.2;
}

h1 { margin: 0 0 18px; font-size: clamp(32px, 7vw, 48px); }
h2 { margin: 34px 0 10px; font-size: 22px; }
h3 { margin: 22px 0 7px; font-size: 16px; }

p, li, dd {
  color: #d6dccb;
  font-size: 16px;
  line-height: 1.75;
}

.lede { color: var(--muted); font-size: 18px; }

.callout {
  margin: 30px 0;
  padding: 20px 22px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.callout p:first-child { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }

dt {
  margin-top: 24px;
  color: var(--text);
  font-weight: 700;
}

dd { margin: 6px 0 0; }

.updated { color: var(--muted); font-size: 13px; }

.content-footer {
  padding: 24px 0 38px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

@media (width <= 620px) {
  .content-header-inner { align-items: flex-start; flex-direction: column; }
  .content-main { padding-top: 38px; }
}
