:root {
  color-scheme: light;
  --bg: #f7f3ee;
  --panel: #fffdf9;
  --ink: #211b18;
  --muted: #6e625b;
  --line: #e4d8ce;
  --accent: #d6426b;
}

* {
  box-sizing: border-box;
}

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

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

.page {
  width: min(860px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  align-items: center;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: 0 18px 60px rgba(69, 52, 40, 0.08);
}

.document {
  align-self: start;
}

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

h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1;
}

h2 {
  margin: 28px 0 8px;
  font-size: 1.05rem;
}

p {
  max-width: 68ch;
}

.muted {
  color: var(--muted);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.links a,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 700;
}
