:root {
  color-scheme: dark;
  --ink: #f4f0e9;
  --muted: #b7b1a8;
  --accent: #d2aa70;
  --night: #101314;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 15%, rgb(210 170 112 / 14%), transparent 29rem),
    radial-gradient(circle at 85% 86%, rgb(70 112 108 / 12%), transparent 28rem),
    var(--night);
  color: var(--ink);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.holding-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.message {
  width: min(100%, 43rem);
  padding: clamp(2rem, 7vw, 5rem) 0;
}

.logo {
  display: block;
  width: 150px;
  max-width: 100%;
  height: auto;
  margin-bottom: 1.75rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.rule {
  width: 3rem;
  height: 1px;
  margin-bottom: 2rem;
  background: var(--accent);
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 7vw, 5.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.message > p {
  max-width: 37rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

@media (max-width: 30rem) {
  .holding-page {
    padding: 1.5rem;
  }
}
