:root {
  --background: #faf6ef;
  --text: #2e2418;
  --metal: #c2c2c2;
  --metal-dark: #b4b4b4;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--background);
  color: var(--text);
  font-family: "Noto Sans TC", sans-serif;
}

.coming-soon {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 40px;
}

.scene {
  position: relative;
  width: 349px;
  height: 510px;
  transform-origin: bottom center;
}

.brand-sign {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 50%;
  width: 191px;
  height: 191px;
  padding: 20px;
  overflow: hidden;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 2px rgb(46 36 24 / 14%);
}

.brand-sign img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sign-post {
  position: absolute;
  z-index: 2;
  top: 184px;
  left: 50%;
  width: 8px;
  height: 132px;
  transform: translateX(-50%);
  background: var(--metal);
}

.barrier {
  position: absolute;
  z-index: 4;
  top: 229px;
  left: 0;
  width: 349px;
  height: 123px;
  filter: drop-shadow(0 4px 2px rgb(46 36 24 / 12%));
}

.barrier > img {
  display: block;
  width: 100%;
  height: 100%;
}

.lamp {
  position: absolute;
  z-index: -1;
  top: -28px;
  width: 28px;
  height: 31px;
  border-radius: 14px 14px 4px 4px;
  background: var(--metal-dark);
}

.lamp-left {
  left: 66px;
}

.lamp-right {
  right: 66px;
}

.legs {
  position: absolute;
  z-index: 1;
  top: 343px;
  left: 0;
  width: 100%;
  height: 156px;
}

.leg {
  position: absolute;
  top: 0;
  width: 11px;
  height: 143px;
  background: var(--metal);
}

.leg::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 28px;
  height: 16px;
  transform: translateX(-50%);
  border-radius: 14px 14px 3px 3px;
  background: var(--metal-dark);
}

.leg-left {
  left: 75px;
}

.leg-right {
  right: 75px;
}

.crossbar {
  position: absolute;
  top: 25px;
  left: 80px;
  width: 189px;
  height: 12px;
  background: var(--metal);
}

h1 {
  margin: 14px 0 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: 0;
  text-align: center;
}

@media (max-width: 520px), (max-height: 720px) {
  .scene {
    margin-bottom: -76px;
    transform: scale(0.78);
  }

  h1 {
    margin-top: 90px;
    font-size: 24px;
    line-height: 36px;
  }
}

@media (max-width: 360px) {
  .scene {
    margin-bottom: -112px;
    transform: scale(0.7);
  }

  h1 {
    margin-top: 130px;
    font-size: 21px;
  }
}
