
:root {
  --ink: #1c1914;
  --paper: #f4efe6;
  --rule: #d6cfc2;
  --mute: #6b6458;
  --accent: #8a3b12;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); }
body { font-family: "Source Sans 3", sans-serif; line-height: 1.55; font-size: 18px; }
a { color: var(--accent); text-underline-offset: 3px; }
.wrap { max-width: 720px; margin: 0 auto; padding: 48px 24px 96px; }
header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 56px; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; color: var(--mute); }
header nav { display: flex; gap: 20px; }
header a { color: var(--mute); text-decoration: none; }
header a:hover { color: var(--ink); }
h1 { font-family: Newsreader, serif; font-weight: 400; font-size: clamp(2.2rem, 6vw, 3.4rem); line-height: 1.15; margin: 0 0 20px; }
h1 em { font-style: italic; }
.lede { font-size: 1.15rem; color: var(--mute); max-width: 38rem; margin-bottom: 28px; }
.hero { display: flex; gap: 28px; align-items: flex-start; margin-bottom: 28px; }
.hero img { width: 132px; height: 132px; object-fit: cover; border-radius: 50%; flex-shrink: 0; background: var(--rule); }
.row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 72px; }
.btn { display: inline-block; padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 15px; }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-ghost { border: 1px solid var(--ink); color: var(--ink); }
h2 { font-family: Newsreader, serif; font-size: 1.7rem; font-weight: 400; margin: 0 0 16px; }
h3 { font-family: Newsreader, serif; font-size: 1.35rem; font-weight: 400; margin: 0 0 8px; }
section { margin-bottom: 64px; padding-top: 8px; border-top: 1px solid var(--rule); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 0; }
.chip { border: 1px solid var(--rule); padding: 6px 10px; border-radius: 999px; font-size: 13px; color: var(--mute); }
ol, ul { padding-left: 1.2rem; }
li { margin-bottom: 10px; }
footer { color: var(--mute); font-size: 14px; }
.note { color: var(--mute); font-size: 15px; }
.notes a { text-decoration: none; color: inherit; display: block; padding: 16px 0; border-bottom: 1px solid var(--rule); }
.notes a:hover h3 { color: var(--accent); }
.meta { font-size: 13px; color: var(--mute); letter-spacing: .03em; text-transform: uppercase; margin-bottom: 8px; }
.article p { margin: 0 0 1em; }
.back { font-size: 14px; text-transform: uppercase; letter-spacing: .04em; }
@media (max-width: 560px) {
  .hero { flex-direction: column; }
  .hero img { width: 104px; height: 104px; }
}
