.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.intro-splash--exiting {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-splash--skip {
  display: none !important;
}

.intro-splash__inner {
  width: 100%;
  max-width: min(96vw, 720px);
  max-height: 92dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.intro-splash__clip {
  /* Nessun aspect-ratio forzato: il video mantiene le sue proporzioni naturali */
  width: 100%;
  max-width: min(96vw, 720px);
  max-height: 92dvh;
  background: #ffffff;
}

.intro-splash__video {
  display: block;
  width: 100%;
  height: auto;       /* altezza proporzionale alla larghezza */
  max-height: 92dvh;
  object-fit: contain; /* mostra tutto il video senza ritaglio */
  background: #ffffff;
}
