:root {
  color-scheme: light;
  --bg: #f7f3eb;
  --paper: #ffffff;
  --text: #16252a;
  --muted: #627175;
  --accent: #b9842f;
  --line: #e5ded1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

.page {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 56px;
}

.hero,
section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 16px;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(32px, 6vw, 52px);
}

h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

p {
  margin: 0 0 12px;
}

p:last-child {
  margin-bottom: 0;
}

.updated {
  color: var(--muted);
  margin-top: 12px;
}

a {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 20px, 900px);
    padding: 20px 0 36px;
  }

  .hero,
  section {
    padding: 20px;
  }
}
