:root {
  color-scheme: light;
  font-family: "Yuzu Short", cursive;
  color: #111111;
  background: #ffffff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  overflow-x: hidden;
  background: #ffffff;
}

.coming-soon {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  place-items: center;
  gap: clamp(0.75rem, 2vh, 1.5rem);
  width: min(100%, 90rem);
  margin: 0 auto;
  padding: clamp(2rem, 6vh, 5rem) clamp(1.25rem, 5vw, 5rem);
  text-align: center;
}

h1,
p {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 18ch;
  font-size: clamp(2rem, 4.5vw, 4.75rem);
  line-height: 1.08;
}

.bean {
  display: grid;
  place-items: center;
  width: min(100%, 52rem);
  height: 100%;
  min-height: 0;
  margin: 0;
}

.bean img {
  display: block;
  width: 100%;
  max-height: min(59svh, 42rem);
  object-fit: contain;
  object-position: center;
}

p {
  font-size: clamp(1.15rem, 2vw, 2rem);
  line-height: 1.25;
}

@media (max-width: 40rem) {
  .coming-soon {
    gap: 0.5rem;
    padding-block: 2rem;
  }

  .bean img {
    width: 112%;
    max-width: none;
    max-height: 56svh;
  }
}

@media (prefers-reduced-motion: no-preference) {
  h1,
  .bean,
  p {
    animation: arrive 700ms ease-out both;
  }

  .bean {
    animation-delay: 100ms;
  }

  p {
    animation-delay: 180ms;
  }

  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(0.4rem);
    }

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