:root {
  color-scheme: light;
  --bg: #f7f3ec;
  --text: #1c1814;
  --muted: #6f6254;
  --accent: #8b4e24;
  --card: #fffaf3;
  --border: #e1d4c3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-serif, Georgia, 'Times New Roman', serif;
  line-height: 1.6;
  color: var(--text);
  background: radial-gradient(circle at top left, #fff8ee 0, var(--bg) 42rem);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  padding: .5rem .75rem;
  background: var(--text);
  color: white;
  z-index: 10;
}

.skip-link:focus {
  top: 1rem;
}

.site-header,
.site-footer,
.site-main {
  width: min(58rem, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header,
.site-footer {
  padding: 1.5rem 0;
}

.site-title {
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
}

.site-main {
  padding: 8vh 0 10vh;
}

.hero {
  max-width: 44rem;
}

.eyebrow {
  margin: 0 0 .75rem;
  color: var(--accent);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 11vw, 7rem);
  line-height: .92;
  letter-spacing: -.06em;
}

.lede {
  margin: 1.5rem 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
}

.card {
  margin-top: 3rem;
  max-width: 38rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: color-mix(in srgb, var(--card) 88%, transparent);
  box-shadow: 0 1rem 3rem rgb(78 51 22 / 8%);
}

.card h2 {
  margin: 0 0 .5rem;
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.card p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}
