* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at center, #222222 0%, #191919 45%, #141414 100%);
  color: #f1f1f1;
  overflow: hidden;
}

.landing {
  min-height: 100vh;
  min-height: 100svh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 40px 24px;
  text-align: center;
}

.logo {
  display: block;
  width: min(42vw, 290px);
  height: auto;

  opacity: 0;
  transform: translateY(8px) scale(0.985);
  animation: reveal-logo 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.brand {
  margin: 24px 0 0;

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.16em;

  opacity: 0;
  transform: translateY(8px);
  animation: reveal-text 1.5s cubic-bezier(0.22, 1, 0.36, 1) 1.25s forwards;
}

.coming-soon {
  margin: 26px 0 0;

  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(0.72rem, 1.8vw, 0.9rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.42em;
  text-transform: lowercase;
  color: #b8b8b8;

  opacity: 0;
  transform: translateY(6px);
  animation: reveal-text 1.4s cubic-bezier(0.22, 1, 0.36, 1) 2.25s forwards;
}

@keyframes reveal-logo {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes reveal-text {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .logo {
    width: min(62vw, 250px);
  }

  .brand {
    margin-top: 20px;
    letter-spacing: 0.11em;
  }

  .coming-soon {
    margin-top: 22px;
    letter-spacing: 0.32em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo,
  .brand,
  .coming-soon {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
