:root {
  --earth: #3d2c1f;
  --clay: #c9a07f;
  --bg: #fbf7f1;
  --text: #2e2a26;
  --muted: #8a7f74;
}

* {
  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;
}

header {
  border-bottom: 1px solid #e8dfd3;
  padding: 1.25rem 1.5rem;
}

header .inner {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

header a.brand {
  color: var(--earth);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

header nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin-left: 1rem;
}

header nav a:hover {
  color: var(--earth);
}

main {
  max-width: 48rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}

h1 {
  color: var(--earth);
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

h2 {
  color: var(--earth);
  font-size: 1.25rem;
  margin: 2.25rem 0 0.75rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  margin: 0 0 1rem 1.4rem;
}

li {
  margin-bottom: 0.5rem;
}

a {
  color: #8a5a34;
}

.updated {
  font-size: 0.85rem;
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin-bottom: 2rem;
}

footer {
  border-top: 1px solid #e8dfd3;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

footer .inner {
  max-width: 48rem;
  margin: 0 auto;
}

footer nav {
  margin-top: 0.5rem;
}

footer nav a {
  color: var(--muted);
  margin-right: 1rem;
}

/* home */
.hero {
  text-align: center;
  padding: 4rem 0 2rem;
}

.hero p.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 1rem auto 2rem;
}

.hero .cta {
  display: inline-block;
  background: var(--clay);
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
}

.hero .cta:hover {
  background: var(--earth);
}
