.vvm-hero, .vvm-hero * { box-sizing: border-box; }

.vvm-hero{
  position: relative;
  width: 100%;
  min-height: var(--vvm-hero-h, 420px);
  overflow: hidden;
  color: #fff;
  font-family: "Cinzel", serif;
}

/* layer immagine */
.vvm-hero .vvm-hero-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateZ(0);
}

/* overlay scuro */
.vvm-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,var(--vvm-ov,0.55));
  pointer-events:none;
}

/* TESTO sopra */
.vvm-hero-inner{
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 24px;
  min-height: var(--vvm-hero-h, 420px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* header centrale */
.vvm-hero-head{
  text-align: center;
  margin-bottom: 22px;
}
.vvm-hero-script{
  font-family: "Great Vibes", cursive;
  font-size: 34px;
  letter-spacing: 1px;
  color: rgba(200,60,60,0.9);
}
.vvm-hero-title{
  font-size: 34px;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 6px;
}
.vvm-hero-orn{
  width: 110px;
  height: 2px;
  background: rgba(255,255,255,0.45);
  margin: 14px auto 0;
  position: relative;
}
.vvm-hero-orn::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  width: 40px;
  height: 10px;
  border-top: 1px solid rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.55);
  opacity: 0.6;
}

/* riga 3 colonne */
.vvm-hero-row{
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: 26px;
  padding: 26px 0;
  position: relative;
}

/* linee orizzontali stile “foto” */
.vvm-hero-row::before,
.vvm-hero-row::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:1px;
  background: rgba(255,255,255,0.22);
}
.vvm-hero-row::before{ top: 0; }
.vvm-hero-row::after{ bottom: 0; }

.vvm-col{ text-align: center; }

.vvm-kicker{
  font-family: "Lato", sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(200,60,60,0.9);
  font-size: 16px;
}

.vvm-big{
  font-size: 86px;
  letter-spacing: 4px;
  opacity: 0.22;
  margin-top: 6px;
}
.vvm-sub{
  font-family: "Lato", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.65;
  margin-top: 8px;
}

.vvm-big2{
  font-size: 22px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.vvm-sub2{
  font-family: "Lato", sans-serif;
  font-size: 12px;
  opacity: 0.6;
  margin-top: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vvm-price{
  font-size: 44px;
  color: rgba(200,60,60,0.95);
  letter-spacing: 1px;
}

/* ✅ SFONDO BLOCCATO */
.vvm-hero.is-fixed{
  background-attachment: fixed;
}
/* il trucco: usiamo la BG div, e la “fissiamo” */
.vvm-hero.is-fixed .vvm-hero-bg{
  background-attachment: fixed;
}

/* Mobile: su iOS spesso "fixed" non è affidabile -> fallback */
@media (max-width: 980px){
  .vvm-hero-inner{ padding: 34px 16px; }
  .vvm-hero-row{ grid-template-columns: 1fr; gap: 18px; }
  .vvm-big{ font-size: 64px; }
  .vvm-price{ font-size: 38px; }

  /* fallback: niente fixed, ma layout stabile */
  .vvm-hero.is-fixed .vvm-hero-bg{
    background-attachment: scroll;
  }
}
