:root {
  --background: #e8eaeb;
  --ink: #171c20;
  --accent: #607985;
  --line: rgba(23, 28, 32, 0.16);
  --font: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--background);
  color: var(--ink);
  font-family: var(--font);
}

.coming-soon {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 7rem clamp(1.25rem, 7vw, 7rem);
  position: relative;
  text-align: center;
}

.monogram {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 600;
  left: clamp(1.25rem, 5vw, 5rem);
  position: absolute;
  text-decoration: none;
  top: 1.75rem;
}

.monogram span,
h1 em {
  color: var(--accent);
  font-style: normal;
}

.content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin: 0 0 1.25rem;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4.5rem, 12vw, 10rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.84;
  margin: 0;
}

.intro {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin: 2rem 0 0;
  opacity: 0.65;
}

.countdown {
  display: flex;
  gap: clamp(0.4rem, 2vw, 2rem);
  justify-content: center;
  margin-top: clamp(2.5rem, 7vh, 4.5rem);
}

.countdown div {
  display: flex;
  flex-direction: column;
  min-width: clamp(3.5rem, 9vw, 7rem);
}

.countdown strong {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
}

.countdown span {
  color: var(--accent);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  margin-top: 0.65rem;
  text-transform: uppercase;
}

.countdown i {
  color: var(--accent);
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-style: normal;
  line-height: 0.9;
}

.arrival-message {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin: 2rem 0 0;
  text-transform: uppercase;
}

.decoration {
  border: 1px solid var(--line);
  border-radius: 50%;
  height: min(44vw, 38rem);
  opacity: 0.7;
  position: absolute;
  width: min(24vw, 21rem);
}

.decoration--left {
  left: -10rem;
  transform: rotate(28deg);
}

.decoration--right {
  right: -10rem;
  transform: rotate(-28deg);
}

footer {
  bottom: 1.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  opacity: 0.55;
  position: absolute;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .coming-soon {
    padding-inline: 1rem;
  }

  .countdown {
    gap: 0.2rem;
    width: 100%;
  }

  .countdown div {
    flex: 1;
    min-width: 0;
  }

  .countdown i {
    font-size: 1.7rem;
  }

  .countdown span {
    font-size: 0.48rem;
    letter-spacing: 0.06em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
