:root {
  /* Palette */
  --bg-paper: #f1f2ec;
  --text-ink: #2A2F25;
  --accent-stone: #8C9485;
  --accent-moss: #4A5D43;

  /* Typography */
  --font-serif: 'Iowan Old Style', 'Apple Garamond', 'Baskerville', serif;
  --font-sans: system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-paper);
  color: var(--text-ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: bold;
  letter-spacing: -0.02em;
  margin-top: 0;
}

a {
  color: var(--text-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-moss);
}

.container {
  max-width: 960px;
  /* "Human scale" width */
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Section Dividers */
hr {
  border: 0;
  border-top: 1px solid var(--accent-stone);
  margin: 4rem 0;
}

/* Specific Utilities */
.text-serif {
  font-family: var(--font-serif);
}

.text-sans {
  font-family: var(--font-sans);
}

.tracking-tight {
  letter-spacing: -0.02em;
}

.tracking-spaced {
  letter-spacing: 0.05em;
}

.uppercase {
  text-transform: uppercase;
}