:root {
  color-scheme: dark;
  --ink: #f3ead7;
  --muted: #c8bfae;
  --paper: #161512;
  --panel: #211f1a;
  --rule: #63563f;
  --accent: #c59a52;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #2b261d 0, var(--paper) 46rem);
  line-height: 1.65;
}

main {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.eyebrow {
  color: var(--accent);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1, h2 { line-height: 1.15; }
h1 { margin: .35rem 0 1rem; font-size: clamp(2.25rem, 7vw, 4.5rem); }
h2 { margin-top: 2.3rem; font-size: 1.35rem; }

p, li { color: var(--muted); }

.card {
  margin: 2rem 0;
  padding: 1.35rem 1.5rem;
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  border: 1px solid var(--rule);
  border-radius: 4px;
}

a { color: #edc77e; }
a:hover { color: #ffe2a5; }

nav { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
nav a { font-family: ui-sans-serif, system-ui, sans-serif; font-weight: 650; }

footer {
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  color: #9f9583;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .85rem;
}
