:root {
  --ink: #26302b;
  --paper: #fffaf3;
  --gold: #f2c46d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
  background: var(--paper);
}

.temp-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(22, 42, 35, 0.94), rgba(31, 52, 44, 0.74), rgba(39, 49, 43, 0.34)),
    url("https://images.unsplash.com/photo-1556742044-3c52d6e88c62?auto=format&fit=crop&w=1800&q=80") center / cover;
}

h1 {
  margin: 0;
  max-width: 980px;
  color: #fff;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

h1::after {
  content: "";
  display: block;
  width: 96px;
  height: 6px;
  margin: 28px auto 0;
  border-radius: 999px;
  background: var(--gold);
}
