:root {
  --bg: #f5f2ec;
  --text: #1d1a16;
  --accent: #8a3b2d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: radial-gradient(circle at top, #fffaf1, var(--bg));
  color: var(--text);
  line-height: 1.5;
}

.site-header,
.site-footer,
main {
  width: min(960px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 3rem 0 1rem;
}

h1,
h2 {
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero {
  padding: 2rem 0 4rem;
}

.site-footer {
  border-top: 1px solid rgba(29, 26, 22, 0.15);
  padding: 1rem 0 2rem;
  color: rgba(29, 26, 22, 0.8);
}

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