* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f3efe4;
  --surface: rgba(255, 252, 246, 0.92);
  --text: #1f1b16;
  --muted: #665d52;
  --accent: #9f3d22;
  --line: rgba(31, 27, 22, 0.12);
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(159, 61, 34, 0.18), transparent 28rem),
    linear-gradient(180deg, #f7f3ea 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

code {
  font-family: "SFMono-Regular", "Menlo", monospace;
  font-size: 0.92em;
}

.page {
  width: min(980px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

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

h1,
h2 {
  line-height: 1.05;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.lead {
  max-width: 48rem;
  margin: 1rem 0 2rem;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
}

.card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 36px rgba(31, 27, 22, 0.07);
}

.link-list {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.9;
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--muted);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
