/* Fine Services Paris — Coming Soon */

:root {
  --blue: #00306d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vw;
}

.content {
  width: min(82vw, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo {
  display: block;
  width: min(48vw, 410px);
  height: auto;
  object-fit: contain;
}

.coming-soon {
  margin-top: clamp(8px, 1.2vw, 14px);
  height: 1.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.coming-soon span {
  display: block;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 2.4s steps(13, end) 0.5s forwards;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 13ch;
  }
}


/* Mobile */
@media (max-width: 600px) {
  .page {
    padding: 24px;
  }

  .content {
    width: 100%;
  }

  .logo {
    width: min(68vw, 340px);
  }

  .coming-soon {
    margin-top: 8px;
    font-size: clamp(15px, 4.5vw, 20px);
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .logo {
    width: 88vw;
  }

  .coming-soon {
    font-size: 16px;
  }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .coming-soon span {
    width: 13ch;
    animation: none;
  }
}
