:root {
  color-scheme: light;
  --bg: #f7f5f0;
  --fg: #1f252b;
  --muted: #66707b;
  --accent: #b51f2d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  width: min(720px, calc(100% - 40px));
}

p {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(44px, 10vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
}

span {
  color: var(--muted);
  font-size: 18px;
}
