:root {
  --rose: #ad4260;
  --rose-deep: #7f2643;
  --rose-soft: #f3d2d9;
  --ink: #302934;
  --teal: #32686b;
  --paper: #fffdfc;
  --wash: #f9eef1;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Avenir, "Avenir Next", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(110deg, rgba(50, 104, 107, 0.08) 0 1px, transparent 1px 16px),
    linear-gradient(180deg, var(--paper), #fff7f5 56%, #ffffff);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto -12vw;
  z-index: -1;
  height: 28vh;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(173, 66, 96, 0.15), rgba(50, 104, 107, 0.08), transparent);
  filter: blur(12px);
  transform: rotate(-4deg);
}

body::before {
  top: 5vh;
}

body::after {
  bottom: 7vh;
  transform: rotate(3deg);
  opacity: 0.7;
}

.coming-soon {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  place-items: center;
  align-content: center;
  gap: clamp(18px, 5vw, 44px);
  padding: clamp(34px, 8vw, 80px) 0 26px;
  text-align: center;
}

.logo-wrap {
  width: min(860px, 100%);
  position: relative;
  isolation: isolate;
}

.logo-wrap::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 11%;
  bottom: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(173, 66, 96, 0.45), transparent);
}

.brand-logo {
  display: block;
  width: min(780px, 100%);
  height: auto;
  margin: 0 auto;
  mix-blend-mode: multiply;
  filter: saturate(1.02) contrast(1.03);
}

.announcement {
  width: min(780px, 100%);
  display: grid;
  justify-items: center;
  gap: 18px;
}

.kicker {
  margin: 0;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--rose-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 400;
  line-height: 0.9;
}

.lead {
  max-width: 650px;
  margin: 0;
  color: rgba(48, 41, 52, 0.76);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  line-height: 1.65;
}

.signal {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
  color: var(--rose-deep);
  font-size: 0.95rem;
  font-weight: 700;
}

.signal-line {
  width: clamp(48px, 14vw, 120px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rose));
}

.dots {
  display: inline-grid;
  grid-template-columns: repeat(3, 6px);
  gap: 5px;
  align-items: center;
}

.dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.35;
  animation: dotPulse 1.2s infinite ease-in-out;
}

.dots span:nth-child(2) {
  animation-delay: 0.18s;
}

.dots span:nth-child(3) {
  animation-delay: 0.36s;
}

.site-footer {
  min-height: 76px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(48, 41, 52, 0.54);
  font-size: 0.82rem;
}

@keyframes dotPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.32;
  }

  45% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@media (max-width: 680px) {
  .coming-soon {
    width: min(100% - 24px, 620px);
    min-height: calc(100vh - 68px);
    gap: 20px;
    padding-top: 34px;
  }

  .brand-logo {
    width: min(96vw, 520px);
  }

  h1 {
    font-size: clamp(3.6rem, 20vw, 5.4rem);
  }

  .lead {
    font-size: 1rem;
    line-height: 1.58;
  }

  .signal {
    gap: 10px;
    font-size: 0.9rem;
  }

  .signal-line {
    width: 42px;
  }

  .site-footer {
    min-height: 68px;
    width: min(100% - 24px, 620px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
