:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #66615c;
  --paper: #f7f4ef;
  --line: #d9d1c6;
  --accent: #8f3f2f;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(120deg, rgba(143, 63, 47, 0.08), transparent 42%),
    var(--paper);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

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

.notice {
  width: min(100%, 640px);
}

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

h1 {
  margin: 0;
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.message {
  max-width: 34rem;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
}

@media (max-width: 520px) {
  .page {
    place-items: end start;
    padding: 28px;
  }

  h1 {
    font-size: 4.25rem;
  }
}
