*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #000;
  background-color: #fff;
  background-image: url("/assets/bg.jpg");
  background-image: image-set(
    url("/assets/bg.webp") type("image/webp"),
    url("/assets/bg.jpg") type("image/jpeg")
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem;
}

.stage {
  text-align: center;
  max-width: 80rem;
  width: 100%;
}

.logo {
  width: clamp(220px, 28vw, 320px);
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
}

.address {
  font-weight: 600;
  font-size: clamp(1rem, 2.1vw, 1.875rem);
  letter-spacing: 0.01em;
  margin: 0;
}

.coming {
  font-weight: 600;
  font-size: clamp(1rem, 2.1vw, 1.875rem);
  letter-spacing: 0.08em;
  margin: 0.5rem 0 2.25rem;
}

.amenities {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: clamp(0.875rem, 1.35vw, 1.125rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
  max-width: 64rem;
  margin-inline: auto;
}

.amenities li {
  white-space: nowrap;
}

@media (max-width: 640px) {
  body {
    background-attachment: scroll;
    padding: 2rem 1rem;
  }
  .amenities { gap: 0.5rem 1.25rem; }
}
