.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background-color: #0f0f0f;
}

.hero__backdrop {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  z-index: 0;
  background-color: #0f0f0f;
}

.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(1.1);
  background-color: #0f0f0f;
}

.hero__tear {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(120px, 16vw, 220px);
  background: url("../assets/strappo-sopra-piccolo.png") center bottom / cover
    no-repeat;
  z-index: 4;
}

.intro {
  position: relative;
  overflow: visible;
  background-color: transparent;
  padding: 2.5rem 0 4rem;
  text-align: center;
}

.intro .container {
  position: relative;
  z-index: 3;
}

.intro__border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1920 / 570;
  transform: translateY(-25%) translate3d(0, var(--parallax-y, 0), 0);
  z-index: 2;
  pointer-events: none;
}

.intro p {
  margin: 0 auto;
  max-width: 820px;
  font-family: "Nexa Extra Light", "Trebuchet MS", sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}



@media (max-width: 768px) {
  .hero__backdrop {
    aspect-ratio: auto;
    min-height: 85vh;
  }

  .hero__tear {
    height: clamp(90px, 22vw, 160px);
  }

  .intro {
    padding: 2rem 0 3rem;
  }

  .intro__border {
    transform: translateY(-18%) translate3d(0, var(--parallax-y, 0), 0);
  }

  .intro p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero__backdrop {
    min-height: 85vh;
  }

  .intro__border {
    transform: translateY(-20%) translate3d(0, var(--parallax-y, 0), 0);
  }

  .intro p {
    font-size: 0.9rem;
  }
}


@media (max-width: 768px) {
  .hero__backdrop {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero__video {
    height: 100%;
    width: auto;
    object-position: center;
  }
}

@media (max-width: 480px) {
  .hero__backdrop {
    height: 85vh;
  }
}
