:root {
  --color-bg: #050505;
  --color-text: rgba(255, 255, 255, 0.92);
  --color-subtext: rgba(255, 255, 255, 0.82);
  --color-line: rgba(255, 255, 255, 0.28);
  --font-en: "Cormorant Garamond", serif;
  --font-jp: "Noto Serif JP", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-jp);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.coming-soon {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.03), rgba(255,255,255,0) 36%),
    linear-gradient(180deg, #070707 0%, #030303 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 24px 110px;
}

.coming-soon__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.brush {
  position: absolute;
  bottom: -4.5vw;
  opacity: 0.84;
  mix-blend-mode: screen;
  user-select: none;
}

.brush--left {
  left: -7vw;
  width: min(52vw, 760px);
}

.brush--right {
  right: -8vw;
  width: min(46vw, 700px);
}

.coming-soon__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 920px);
  text-align: center;
}

.logo-wrap {
  width: min(31vw, 330px);
  min-width: 220px;
  margin: 0 auto 28px;
}

.logo {
  width: 100%;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.28));
}

.eyebrow {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(3.2rem, 5vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.96);
  text-indent: 0.18em;
  font-weight: 500;
}

.divider {
  display: block;
  width: 64px;
  height: 1px;
  margin: 26px auto 26px;
  background: var(--color-line);
}

.lead {
  color: var(--color-subtext);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 2.05;
  letter-spacing: 0.08em;
}

.lead p {
  margin: 0;
}

.coming-soon__footer {
  position: absolute;
  left: 1.6%;
  bottom: 42px;
  transform: translateX(-50%);
  z-index: 2;
  width: calc(100% - 48px);
  text-align: center;
  color: rgba(255, 255, 255, 0.74);
}

.brand {
  margin: 0 0 8px;
  font-family: var(--font-en);
  font-size: clamp(1rem, 1.25vw, 1.4rem);
  letter-spacing: 0.08em;
}

.copyright {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(0.78rem, 0.92vw, 1rem);
  letter-spacing: 0.04em;
}

.js-fadeup,
.js-fadeup-delay {
  opacity: 0;
  transform: translateY(16px);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-fadeup-delay.is-visible {
  transition-delay: 0.22s;
}

@media (max-width: 767px) {
  .coming-soon {
    padding: 36px 20px 92px;
    align-items: center;
  }

  .logo-wrap {
    width: min(72vw, 320px);
    min-width: 0;
    margin-bottom: 20px;
  }

  .eyebrow {
    font-size: clamp(2.7rem, 10.8vw, 4.3rem);
    letter-spacing: 0.15em;
    line-height: 1.04;
  }

  .divider {
    width: 54px;
    margin: 20px auto 20px;
  }

  .lead {
    font-size: 0.98rem;
    line-height: 2.15;
    letter-spacing: 0.08em;
  }

  .coming-soon__footer {
    bottom: 24px;
    left: 4%;
    width: calc(100% - 32px);
  }

  .brand {
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 4px;
  }

  .copyright {
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .brush {
    bottom: -22px;
    opacity: 0.86;
  }

  .brush--left {
    display: none;
    left: -26vw;
    width: 115vw;
  }

  .brush--right {
    right: 0vw;
    width: 105vw;
  }
}

@media (max-width: 420px) {
  .eyebrow {
    max-width: 280px;
    margin-inline: auto;
  }

  .lead {
    font-size: 0.92rem;
  }
}
