:root {
  --bg: #070912;
  --ink: #fff6ea;
  --muted: #b7b0a6;
  --gold: #e8bd75;
  --line: rgb(255 246 234 / 14%);
  --panel: rgb(255 246 234 / 6%);
}

* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(circle at 50% 18%, rgb(232 189 117 / 18%), transparent 22rem),
    radial-gradient(circle at 18% 78%, rgb(217 134 117 / 14%), transparent 20rem),
    linear-gradient(145deg, #05070d 0%, #0b0f1d 48%, #070912 100%);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
}

.site-shell {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
  padding: 32px;
  overflow: hidden;
}

.construction {
  width: min(100%, 780px);
  padding: clamp(34px, 7vw, 82px) clamp(24px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgb(255 246 234 / 8%), rgb(255 246 234 / 3%)), var(--panel);
  box-shadow:
    0 42px 120px rgb(0 0 0 / 38%),
    inset 0 1px 0 rgb(255 255 255 / 14%);
  text-align: center;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.construction::before {
  content: "";
  display: block;
  width: 68px;
  height: 2px;
  margin: 0 auto 30px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

h1 {
  max-width: 10ch;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 13vw, 9.5rem);
  font-weight: 400;
  line-height: 0.88;
}

p {
  margin: 0;
}

#page-message {
  max-width: 34rem;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

@media (max-width: 560px) {
  .site-shell {
    padding: 18px;
  }

  .construction {
    border-radius: 18px;
  }
}
