.launch-page > .site-header,
.launch-page > main:not(.coming-soon),
.launch-page > .footer,
.launch-page > .toast,
.launch-page > [data-cart-root] {
  display: none;
}

.launch-page {
  min-height: 100svh;
  background: #fff8ed;
  color: #2b2024;
}

.coming-soon {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.coming-soon__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  animation: coming-soon-settle 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.coming-soon::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(255, 248, 237, 0.98) 0%,
    rgba(255, 248, 237, 0.94) 34%,
    rgba(255, 248, 237, 0.4) 58%,
    rgba(255, 248, 237, 0.04) 78%
  );
  content: "";
}

.coming-soon__content {
  display: flex;
  flex-direction: column;
  width: min(680px, 52%);
  min-height: 100svh;
  padding: clamp(32px, 5vw, 76px) clamp(28px, 7vw, 112px);
}

.coming-soon__logo {
  width: clamp(190px, 22vw, 310px);
  height: auto;
}

.coming-soon__message {
  margin: auto 0;
  padding: 48px 0;
  animation: coming-soon-rise 700ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.coming-soon__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #6f2d39;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.coming-soon__eyebrow::before {
  width: 28px;
  height: 2px;
  background: #9c4454;
  content: "";
}

.coming-soon h1 {
  max-width: 560px;
  margin: 0;
  color: #6f2d39;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 7.75rem);
  font-weight: 500;
  line-height: 0.94;
}

.coming-soon__intro {
  max-width: 520px;
  margin: 28px 0 0;
  color: #716366;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.coming-soon__footer {
  margin: 0;
  color: #6f2d39;
  font-size: 0.82rem;
  font-weight: 700;
}

@keyframes coming-soon-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes coming-soon-settle {
  from {
    opacity: 0.75;
    transform: scale(1.03);
  }

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

@media (max-width: 760px) {
  .coming-soon__background {
    object-position: 64% center;
  }

  .coming-soon::after {
    background: linear-gradient(
      180deg,
      rgba(255, 248, 237, 0.97) 0%,
      rgba(255, 248, 237, 0.92) 46%,
      rgba(255, 248, 237, 0.45) 72%,
      rgba(255, 248, 237, 0.12) 100%
    );
  }

  .coming-soon__content {
    width: 100%;
    padding: 28px 24px 32px;
  }

  .coming-soon__logo {
    width: min(230px, 66vw);
  }

  .coming-soon__message {
    margin: 10vh 0 auto;
  }

  .coming-soon h1 {
    font-size: clamp(3.8rem, 20vw, 6rem);
  }

  .coming-soon__intro {
    max-width: 430px;
    color: #574a4d;
  }
}

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