:root {
  color: #111111;
  background: #ffffff;
  font-family: "Forum", serif;
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: #ffffff;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  background: #ffffff;
}

.opening {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: clamp(2rem, 7vw, 5rem) 1.5rem;
  text-align: center;
}

.opening__logo {
  display: block;
  width: clamp(9.5rem, 27vw, 15rem);
  height: auto;
  margin: 0 0 clamp(1.4rem, 3.5vw, 2.25rem);
  object-fit: contain;
  opacity: 0;
  animation: reveal 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.opening__title {
  margin: 0;
  font-size: clamp(3.25rem, 9vw, 6.75rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.015em;
  opacity: 0;
  animation: reveal 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

.opening__status {
  margin: clamp(1.1rem, 2.5vw, 1.6rem) 0 0;
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: 0.08em;
  opacity: 0;
  animation: reveal 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.36s forwards;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-height: 620px) {
  .opening {
    padding-block: 1.5rem;
  }

  .opening__logo {
    width: clamp(7rem, 24vh, 10rem);
    margin-bottom: 1rem;
  }

  .opening__title {
    font-size: clamp(2.75rem, 12vh, 4.5rem);
  }

  .opening__status {
    margin-top: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .opening__logo,
  .opening__title,
  .opening__status {
    opacity: 1;
    animation: none;
  }
}
