:root {
  --ink: #302724;
  --muted: #766662;
  --accent: #a7786d;
  --paper: #f8f3ef;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 40px 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 50% 46%, #fffaf6 0, #f8f3ef 52%, #eee4de 100%);
}

.coming-soon::before,
.coming-soon::after {
  position: absolute;
  width: min(34vw, 430px);
  height: 1px;
  content: '';
  background: linear-gradient(90deg, transparent, rgba(167, 120, 109, 0.32), transparent);
}

.coming-soon::before {
  top: 13%;
  left: -4%;
  transform: rotate(-28deg);
}

.coming-soon::after {
  right: -4%;
  bottom: 13%;
  transform: rotate(-28deg);
}

.glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  opacity: 0.5;
  filter: blur(2px);
  pointer-events: none;
}

.glow-top {
  top: -260px;
  right: -150px;
  background: radial-gradient(circle, rgba(209, 172, 163, 0.42), transparent 68%);
}

.glow-bottom {
  bottom: -290px;
  left: -120px;
  background: radial-gradient(circle, rgba(213, 185, 166, 0.48), transparent 68%);
}

.coming-soon__content {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  text-align: center;
  animation: arrive 900ms ease-out both;
}

h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4rem, 13vw, 8.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 38px auto 34px;
}

.divider::before,
.divider::after {
  width: 48px;
  height: 1px;
  content: '';
  background: rgba(167, 120, 109, 0.45);
}

.divider span {
  width: 5px;
  height: 5px;
  border: 1px solid rgba(167, 120, 109, 0.72);
  transform: rotate(45deg);
}

.status {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.4;
}

.welcome {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.07em;
  line-height: 1.7;
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .coming-soon {
    padding-inline: 18px;
  }

  .divider {
    margin-block: 30px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon__content {
    animation: none;
  }
}
