:root {
  color-scheme: light;
  --bg: #f7f2e8;
  --paper: #fffdf8;
  --ink: #12140f;
  --muted: #656a61;
  --line: rgba(18, 20, 15, 0.16);
  --teal: #206f66;
  --sage: #839779;
  --clay: #b56e4a;
  --red: #a44434;
  --yellow: #e4c866;
  --shadow: 0 28px 90px rgba(18, 20, 15, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(18, 20, 15, 0.035) 1px, transparent 1px) 0 0 / 68px 68px,
    linear-gradient(0deg, rgba(18, 20, 15, 0.03) 1px, transparent 1px) 0 0 / 68px 68px,
    radial-gradient(circle at 18% 20%, rgba(228, 200, 102, 0.26), transparent 26%),
    radial-gradient(circle at 84% 76%, rgba(32, 111, 102, 0.18), transparent 28%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

.coming-soon {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  overflow: hidden;
}

.ambient {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(18, 20, 15, 0.12);
  border-radius: 50%;
  opacity: 0.7;
  animation: float 10s ease-in-out infinite;
}

.ambient-one {
  left: min(8vw, 92px);
  top: 14vh;
}

.ambient-two {
  right: min(7vw, 82px);
  bottom: 12vh;
  width: 170px;
  height: 170px;
  animation-delay: -4s;
}

.sign-wrap {
  width: min(760px, 100%);
  display: grid;
  justify-items: center;
  animation: enter 700ms ease-out both;
}

.hanger {
  width: min(520px, 72%);
  height: 112px;
  display: flex;
  justify-content: space-between;
  padding: 0 34px;
  margin-bottom: -12px;
}

.hanger span {
  width: 2px;
  height: 126px;
  background: linear-gradient(var(--ink), rgba(18, 20, 15, 0.2));
  transform-origin: top;
}

.hanger span:first-child {
  transform: rotate(7deg);
}

.hanger span:last-child {
  transform: rotate(-7deg);
}

.sign-board {
  position: relative;
  width: 100%;
  min-height: 390px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(34px, 7vw, 74px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(131, 151, 121, 0.16), transparent 42%),
    linear-gradient(45deg, rgba(181, 110, 74, 0.13), transparent 48%),
    var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
  transform-origin: 50% -90px;
  animation: swing 4.8s ease-in-out infinite;
}

.sign-board::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(18, 20, 15, 0.16);
  border-radius: 8px;
  pointer-events: none;
}

.bulbs {
  position: absolute;
  inset: 26px 30px auto;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.bulbs span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 5px rgba(228, 200, 102, 0.14), 0 0 26px rgba(228, 200, 102, 0.76);
  animation: blink 2.4s ease-in-out infinite;
}

.bulbs span:nth-child(2),
.bulbs span:nth-child(5) {
  animation-delay: 350ms;
}

.bulbs span:nth-child(3),
.bulbs span:nth-child(6) {
  animation-delay: 700ms;
}

.kicker {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 840;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 8.7rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.message {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.6;
}

.progress {
  width: min(320px, 72%);
  height: 8px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(18, 20, 15, 0.14);
  border-radius: 999px;
  background: rgba(18, 20, 15, 0.06);
}

.progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--sage), var(--clay));
  animation: load 2.8s ease-in-out infinite;
}

@keyframes swing {
  0%, 100% {
    transform: rotate(-1.4deg);
  }

  50% {
    transform: rotate(1.4deg);
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.86);
  }

  45%, 65% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes load {
  0% {
    transform: translateX(-110%);
  }

  50% {
    transform: translateX(78%);
  }

  100% {
    transform: translateX(250%);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 680px) {
  .coming-soon {
    padding: 22px;
  }

  .hanger {
    height: 84px;
  }

  .hanger span {
    height: 98px;
  }

  .sign-board {
    min-height: 360px;
  }

  .bulbs {
    inset-inline: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
