:root {
  --bg: #fbf6ea;
  --ink: #2a2018;
  --muted: #6a5a48;
  --accent: #8a4a1a;
  --card: #f4ecd8;
  --rule: #d9c9a3;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Georgia, "Iowan Old Style", serif;
  line-height: 1.6;
  font-size: 18px;
}
main {
  max-width: 680px;
  margin: 3rem auto;
  padding: 0 1.5rem 4rem;
}
header {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}
.avatar {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  border: 1px solid var(--rule);
  background: var(--card);
  flex-shrink: 0;
}
h1 {
  font-size: 2rem;
  margin: 0 0 .25rem;
  font-weight: normal;
  letter-spacing: -.01em;
}
.tagline {
  color: var(--muted);
  font-style: italic;
  margin: 0;
}
h2 {
  font-size: 1.15rem;
  margin: 2.5rem 0 .5rem;
  color: var(--accent);
  font-weight: normal;
  letter-spacing: .02em;
  text-transform: lowercase;
}
h2::before { content: "§ "; color: var(--rule); }
ul { padding-left: 1.1rem; }
li { margin: .5rem 0; }
a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--rule); }
a:hover { border-bottom-color: var(--accent); }
.quiet {
  background: var(--card);
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--rule);
  margin-top: 3rem;
}
footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: .95rem;
  font-style: italic;
}
