:root {
  color-scheme: light;
  --bg: #faf8f6;
  --paper: #ffffff;
  --text: #2a2725;
  --muted: #746b65;
  --border: #ece5df;
  --accent: #8b6f5c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

main {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.home-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
  padding: 0 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(65, 45, 35, 0.06);
}

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: 0 24px 60px rgba(65, 45, 35, 0.08);
}

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

h1 {
  margin: 0;
  font-size: clamp(36px, 8vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 36px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

p,
li {
  font-size: 16px;
}

p {
  margin: 12px 0;
}

ul {
  margin: 12px 0;
  padding-left: 22px;
}

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

.updated {
  color: var(--muted);
  font-size: 14px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.footer {
  margin-top: 32px;
  color: var(--muted);
  font-size: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 0 22px;
  text-decoration: none;
}
