/* =========================================================================
   coming-soon teaser — one page, logo-centered
   ========================================================================= */

html, body { margin: 0; padding: 0; background: var(--cream); }
body {
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--slate-deep);
  overflow-x: hidden;
}

.stage {
  min-height: calc(100vh - 30px);
  display: flex;
  flex-direction: column;
  padding: 32px clamp(24px, 5vw, 64px);
  position: relative;
}

/* ---------- top bar — wordmark text only, no menu ----------------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 600;
}
.topbar .corner-right { display: flex; gap: 24px; }

/* ---------- center stack — the logo IS the visual ----------------- */
.center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 0 32px;
  position: relative;
  gap: 0;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 600;
  margin-bottom: 36px;
}
.eyebrow-row .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.82); }
}

/* The mascot — centered, directly on cream, no wrapper. */
.mascot {
  width: 200px;
  height: auto;
  margin: 50px auto;
  display: block;
}
@media (max-width: 1023px) {
  .mascot { width: 140px; }   /* tablet — 30% smaller */
}
@media (max-width: 767px) {
  .mascot { width: 100px; }   /* mobile — 50% smaller */
}

/* Display copy under the mascot */
.h-ko {
  font-family: var(--font-display-ko);
  font-size: 40px;
  line-height: 1.3;
  color: var(--slate-deep);
  margin: 36px 0 24px;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

/* the "호나홀리데이" line, kept as a hook for future positioning */
.h-ko-line {
  display: inline-block;
  position: relative;
}
.flower {
  /* sits in the gap between the top band and the brand photo.
     Negative margins zero-out the flower's vertical space so the image
     below doesn't get pushed down; the flower visually floats in the
     center of the existing gap. */
  display: block;
  width: 48px;
  height: 48px;
  margin: -30px auto -18px;
  pointer-events: none;
  animation: flower-spin 6s linear infinite;
  transform-origin: 50% 50%;
  position: relative;
  z-index: 1;
}
@keyframes flower-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.h-en {
  font-family: var(--font-display-en);
  font-size: 20px;     /* always 50% of .h-ko */
  color: var(--steel);
  margin: 0;
  font-weight: 400;
  line-height: 1.1;
}
@media (max-width: 1023px) {
  .h-ko { font-size: 34px; }
  .h-en { font-size: 17px; }
  .flower { width: 41px; height: 41px; margin: -27px auto -14px; }
}
@media (max-width: 767px) {
  .h-ko { font-size: 28px; }
  .h-en { font-size: 14px; }
  .flower { width: 34px; height: 34px; margin: -23px auto -11px; }
}

/* official instagram link — icon + handle, stacked, with generous breathing room */
.ig-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 100px auto;
  color: var(--coral);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
  position: relative;
}

/* bouncy hand-drawn arrow sitting above the IG icon */
.ig-arrow {
  position: absolute;
  height: 24px;            /* 70% of previous 34px */
  width: auto;
  /* sit above the icon, slightly to the left */
  top: -44px;
  left: 50%;
  /* recenter then tilt */
  transform: translateX(-82%) rotate(20deg);
  transform-origin: 50% 100%;
  animation: arrow-bounce 3s var(--ease-in-out) infinite;
  pointer-events: none;
  opacity: 0.92;
}
@keyframes arrow-bounce {
  0%, 60%, 100% { transform: translateX(-82%) translateY(0)    rotate(20deg); }
  70%           { transform: translateX(-82%) translateY(-10px) rotate(20deg); }
  80%           { transform: translateX(-82%) translateY(0)    rotate(20deg); }
  88%           { transform: translateX(-82%) translateY(-5px) rotate(20deg); }
  95%           { transform: translateX(-82%) translateY(0)    rotate(20deg); }
}
.ig-icon {
  display: block;
  color: var(--coral);
  transition: color var(--dur-base) var(--ease-out);
}
.ig-handle {
  font-size: 11px;
  font-weight: 500;
  color: var(--coral);
  letter-spacing: 0.02em;
  font-family: var(--font-sans);
  transition: color var(--dur-base) var(--ease-out);
}
.ig-link:hover .ig-icon   { color: var(--coral-press); }
.ig-link:hover .ig-handle { color: var(--coral-press); }

/* brand image — square lifestyle photo at the top of the page */
.brand-image {
  margin: 50px auto;
  padding: 0;
  /* PC default: fixed 500px */
  width: 500px;
  max-width: 100%;
}
.brand-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}
/* Tablet & Mobile: 10% padding on each side → image takes 80% of viewport, capped at 500px */
@media (max-width: 1023px) {
  .brand-image {
    width: 80vw;
    max-width: 500px;
  }
}

.lead {
  margin: 32px auto 36px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  max-width: 44ch;
  font-weight: 400;
}

/* ---------- signup form ------------------------------------------- */
.signup {
  display: flex;
  gap: 10px;
  width: min(460px, 100%);
  margin: 0 auto;
}
.signup input {
  flex: 1;
  min-width: 0;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 9999px;
  padding: 13px 22px;
  font: 400 16px/1.2 var(--font-sans);
  letter-spacing: -0.022em;
  color: var(--slate-deep);
  outline: none;
  transition: border-color var(--dur-base) var(--ease-out);
  text-align: left;
}
.signup input::placeholder { color: var(--steel); }
.signup input:focus { border-color: var(--slate); }

.signup .pill {
  background: var(--coral);
  color: #fff;
  border: 0;
  cursor: pointer;
  font: 500 16px/1 var(--font-sans);
  letter-spacing: -0.022em;
  padding: 13px 26px;
  border-radius: 9999px;
  transition: background var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.signup .pill:hover { background: var(--coral-press); }
.signup .pill:active { transform: scale(0.96); }

.fine {
  font-size: 12px;
  color: var(--steel);
  margin-top: 14px;
  letter-spacing: -0.12px;
  text-align: center;
}

.success {
  margin-top: 14px;
  font-size: 14px;
  color: var(--coral-press);
  font-weight: 500;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  text-align: center;
}
.success.show { opacity: 1; transform: translateY(0); }

/* ---------- bottom row -------------------------------------------- */
.bottom {
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--steel);
  letter-spacing: -0.12px;
}
.bottom .copyright {
  font-size: 12px;
  color: var(--steel);
  letter-spacing: -0.022em;
}
.bottom .counter {
  display: flex;
  gap: 18px;
  font-variant-numeric: tabular-nums;
}
.bottom .counter b {
  color: var(--slate-deep);
  font-weight: 600;
  font-size: 13px;
  margin-right: 4px;
  letter-spacing: -0.022em;
}

/* ---------- top band — slate-deep marquee ------------------------ */
.top-band {
  background: #2F3B4D;
  height: 30px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  width: 100%;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-rtl 60s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.marquee-brand {
  font-family: var(--font-display-en);
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  line-height: 1;
}
.marquee-group .sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  line-height: 1;
}
@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.top-band .counter {
  display: flex;
  gap: 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1;
}
.top-band .counter b {
  color: #fff;
  font-weight: 600;
  margin-right: 3px;
  font-size: 11px;
  letter-spacing: -0.01em;
}

/* countdown placed above the mascot */
.center > .counter {
  display: flex;
  gap: 18px;
  font-variant-numeric: tabular-nums;
  margin: 0 0 40px;
  font-size: 12px;
  color: var(--steel);
  letter-spacing: 0.04em;
}
.center > .counter b {
  color: var(--slate-deep);
  font-weight: 600;
  font-size: 13px;
  margin-right: 4px;
  letter-spacing: -0.022em;
}
