:root {
  --bg: #f7f4ef;
  --text: #2c2a26;
  --muted: #6b675f;
  --line: #ddd6c8;
  --accent: #8a6d3b;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
header, main, footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px;
}
header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  margin: 0;
  letter-spacing: 0.18em;
  font-weight: 700;
}
nav a {
  color: var(--accent);
  margin-left: 16px;
  text-decoration: none;
}
nav a:hover { text-decoration: underline; }
h1 { font-weight: 600; font-size: 1.8rem; }
footer {
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}
