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

body {
  font-family: "Bodoni Moda", "Didot", "Bodoni MT", serif;
  color: #fff;
  background: #0a0a0a;
  -webkit-font-smoothing: antialiased;
}

.holding {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 2rem;
  background-image: url("assets/bg-800.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.holding__content {
  position: relative;
  text-align: center;
  max-width: 52rem;
  padding: 5rem 4rem;
  background: rgba(0, 0, 0, 0.8);
}

.holding__logo {
  width: clamp(11.2rem, 40vw, 19.2rem);
  height: auto;
  margin-bottom: 2.5rem;
}

.holding__text {
  font-weight: 700;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.holding__text p + p {
  margin-top: 0.5em;
}

.holding__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: opacity 0.2s ease;
}

.holding__text a:hover {
  opacity: 0.7;
}

.holding__text::after {
  content: "";
  display: block;
  width: 8rem;
  height: 1px;
  background: #fff;
  margin: 4em auto 0;
}

@media (min-width: 800px) {
  .holding {
    background-image: url("assets/bg-1200.webp");
    background-attachment: fixed;
  }

  .holding__content {
    padding: 5rem 8rem;
  }

  .holding__text {
    letter-spacing: 0.06em;
  }
}

@media (min-width: 1200px) {
  .holding {
    background-image: url("assets/bg.webp");
  }
}

@supports not (min-height: 100dvh) {
  .holding {
    min-height: 100vh;
  }
}

/* JPEG fallback for browsers without WebP support */
.no-webp .holding {
  background-image: url("assets/bg.jpg");
}
