:root {
  --paper: #d8d2c9;
  --ink: #2e2924;
  --muted: #6f675e;
  --white: #fff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Noto Sans KR', sans-serif;
  display: flex;
  justify-content: center;
}

.soon-page {
  width: 100%;
  max-width: 800px;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 0;
}

.soon-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #16120f;
}

.soon-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.86) contrast(.96) brightness(.9);
}

.soon-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.08) 34%, rgba(0,0,0,.22) 100%),
    radial-gradient(circle at 50% 34%, rgba(255,255,255,.42) 0%, rgba(255,255,255,.12) 34%, rgba(0,0,0,.18) 76%);
}

.soon-overlay {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  top: 28%;
  transform: translateY(-50%);
  display: grid;
  justify-items: center;
  text-align: center;
}

.soon-kicker {
  margin-bottom: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}

h1 {
  color: rgba(255, 255, 255, .9);
  font-family: 'Nanum Myeongjo', serif;
  font-size: clamp(42px, 10.5vw, 84px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: .01em;
  text-shadow:
    0 1px 1px rgba(55, 41, 33, .32),
    0 7px 20px rgba(0,0,0,.36);
}

.soon-footer {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: max(28px, env(safe-area-inset-bottom, 0px));
  display: grid;
  gap: 7px;
  color: rgba(255,255,255,.94);
  font-family: 'Nanum Myeongjo', serif;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}

@media (max-width: 520px) {
  .soon-hero img {
    object-position: 51% center;
  }

  .soon-overlay {
    top: 30%;
  }
}
