:root {
  --bg: #f6f1e6;
  --text: #2a2620;
  --text-secondary: #6b6358;
  --tint: #5b7a52;
  --gold: #f5c86a;
  --card: #fbf7ed;
  --border: #d4ccb7;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14120e;
    --text: #ece7db;
    --text-secondary: #a89f8f;
    --tint: #8fb383;
    --gold: #d9ab4e;
    --card: #1d1a14;
    --border: #332f26;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

header.site {
  text-align: center;
  margin-bottom: 40px;
}

.star {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 12px;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.tagline {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: 6px;
}

h2 {
  font-size: 1.25rem;
  margin: 32px 0 8px;
  color: var(--tint);
}

p, li {
  color: var(--text);
  font-size: 1rem;
}

ul {
  padding-inline-start: 22px;
  margin: 8px 0;
}

li {
  margin: 6px 0;
}

.muted {
  color: var(--text-secondary);
}

a {
  color: var(--tint);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

a:hover {
  border-bottom-color: var(--tint);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 20px 0;
}

nav.crumbs {
  margin-bottom: 28px;
  font-size: 0.95rem;
}

footer.site {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

footer.site .links {
  margin-bottom: 8px;
}

footer.site .links a {
  margin: 0 10px;
}

.updated {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
