:root {
  color-scheme: dark;
  --cream: #f7e8c5;
  --cream-bright: #fff3d0;
  --gold: #b98535;
  --gold-bright: #efd18a;
  --teal: #18dce3;
  --logo: "Cinzel Decorative", "Cinzel", Georgia, serif;
  --serif: "Cinzel", Georgia, serif;
  --sans: "Montserrat", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #020807;
  color: var(--cream);
  font-family: var(--sans);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.scene {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) contrast(1.04);
}

.shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.04) 38%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(90deg, rgba(1, 8, 7, 0.94) 0%, rgba(1, 8, 7, 0.7) 26%, rgba(1, 8, 7, 0.12) 56%, rgba(1, 8, 7, 0.08) 100%);
}

.content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(44rem, calc(100% - 8rem));
  min-height: 100vh;
  padding: 4rem 0 5rem;
  margin-left: 4.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: #9eb38b;
  text-transform: uppercase;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.72));
}

.brand-word {
  display: inline-block;
  font-family: var(--logo);
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.9;
  color: #91ac82;
  text-shadow:
    0 1px 0 #d6c987,
    0 2px 0 #17351f,
    0 0 20px rgba(38, 117, 74, 0.48);
}

.brand-door {
  position: relative;
  display: inline-block;
  width: 3.85rem;
  height: 5.7rem;
  margin: 0 0.05rem 0 0.02rem;
  border: 0.24rem solid var(--gold-bright);
  border-bottom-width: 0.28rem;
  border-radius: 1.95rem 1.95rem 0.2rem 0.2rem;
  background:
    linear-gradient(90deg, transparent 47%, rgba(255, 238, 165, 0.82) 48% 52%, transparent 53%),
    linear-gradient(180deg, rgba(45, 255, 241, 0.9), rgba(12, 122, 126, 0.94) 58%, rgba(3, 35, 37, 0.98));
  box-shadow:
    inset 0 0 0 0.34rem rgba(2, 28, 27, 0.86),
    inset 0 0 1.45rem rgba(56, 253, 244, 0.86),
    0 0 1.55rem rgba(27, 220, 226, 0.62);
  transform: translateY(0.18rem);
}

.brand-door::before {
  position: absolute;
  left: 50%;
  top: -0.96rem;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 0.16rem solid var(--gold-bright);
  border-left: 0.16rem solid var(--gold-bright);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.brand-door::after {
  position: absolute;
  left: 50%;
  bottom: 0.62rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--gold-bright);
  content: "";
  transform: translateX(-50%);
}

#coming-soon-title {
  margin: 2.4rem 0 0;
  color: var(--cream-bright);
  font-family: var(--serif);
  font-size: 3.55rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    0 3px 0 rgba(0, 0, 0, 0.68),
    0 0 24px rgba(239, 209, 138, 0.18);
}

@media (max-width: 900px) {
  .scene {
    object-position: 68% center;
  }

  .shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.58) 100%),
      linear-gradient(90deg, rgba(1, 8, 7, 0.96) 0%, rgba(1, 8, 7, 0.78) 45%, rgba(1, 8, 7, 0.2) 100%);
  }

  .content {
    width: min(33rem, calc(100% - 2rem));
    margin-left: 1rem;
  }

  .brand-word {
    font-size: 3.15rem;
  }

  .brand-door {
    width: 2.46rem;
    height: 3.68rem;
  }

  #coming-soon-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 560px) {
  .scene {
    object-position: 72% center;
  }

  .content {
    justify-content: flex-start;
    padding-top: 6rem;
  }

  .brand-word {
    font-size: 2.3rem;
  }

  .brand-door {
    width: 1.8rem;
    height: 2.75rem;
  }

  #coming-soon-title {
    margin-top: 1.6rem;
    font-size: 1.9rem;
  }
}
