:root {
  --bg: #f5f1ea;
  --surface: #ffffff;
  --text: #1f2937;
  --muted: #5b6472;
  --line: #d8dee8;
  --brand: #1e3a5f;
  --accent: #b8893b;
}

* {
  box-sizing: border-box;
}

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

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(820px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
}

p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
