/* Page d'attente — La Good Music · LGM */

.coming-soon {
  position: relative;
  min-height: 100svh;
  background: #ffffff;
  overflow: hidden;
}

.coming-soon-logo {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(11rem, 48vw, 20rem);
  height: auto;
  margin: 0;
  z-index: 1;
}

.coming-soon-copy {
  position: absolute;
  top: calc(38% + clamp(10.5rem, 23vw, 16rem));
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 32rem);
  padding: 0 var(--space);
  text-align: center;
  z-index: 2;
}

.coming-soon-title {
  font-family: var(--font-raw);
  font-size: clamp(2rem, 8.5vw, 4.25rem);
  font-weight: 700;
  font-style: normal;
  font-variation-settings: var(--thunder-display);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  color: var(--text);
  white-space: nowrap;
}

.coming-soon-subtitle {
  font-family: var(--font-editorial);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-style: normal;
  font-weight: 450;
  font-variation-settings: var(--thunder-body);
  letter-spacing: 0.04em;
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0 auto;
  line-height: 1.55;
}

.coming-soon-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  margin-top: 1.75rem;
}

.coming-soon-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.coming-soon-social-link:hover {
  color: var(--gold-dark);
  transform: translateY(-1px);
}

.coming-soon-social-icon {
  width: 1.4rem;
  height: 1.4rem;
  display: block;
}

.coming-soon-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) var(--space);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  z-index: 2;
}

.coming-soon-footer a {
  color: var(--gold);
}

.coming-soon-footer a:hover {
  color: var(--gold-dark);
}

@media (max-height: 640px) {
  .coming-soon-logo {
    top: 36%;
    width: clamp(9rem, 42vw, 14rem);
  }

  .coming-soon-copy {
    top: calc(36% + clamp(9rem, 20vw, 13rem));
  }

  .coming-soon-title {
    font-size: clamp(1.65rem, 7.5vw, 2.75rem);
    margin-bottom: 1rem;
  }
}
