:root{
  --oro:#bf9451;
  --rosso:#7c1c2a;
  --nero:#000;
  --bianco:#fff;
}

/* Base */
html,body{height:100%;}
body{
  margin:0;
  background:#000;
  color:var(--bianco);
  font-family: 'Open Sans', sans-serif;
  font-weight:600;
}

/* HERO */
.hero{
  position:relative;
  min-height: 78vh; /* cresce su desktop */
  overflow:hidden;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0)),
    url("giuseppe-di-franco-foto-crocifisso.png") center/cover no-repeat;
  z-index:0;
}
.hero__content{
  position:relative;
  z-index:1;
  padding-top: clamp(2rem, 6vw, 4rem);
  padding-bottom: clamp(2rem, 6vw, 4rem);
}
.brand-logo{
  width: clamp(320px, 48vw, 1920px);
  height:auto;
}
.subtitle{
  letter-spacing: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  opacity: .95;
  font-size: clamp(.65rem, 1.8vw, 2rem);
}
.text-gold{ color: var(--oro); }

.claim{
  /*font-family:'Playfair Display', serif;*/
  font-weight:700;
  letter-spacing:.12rem;
  text-transform:uppercase;
  /*font-size: clamp(1rem, 2.2vw, 1.55rem);*/
  font-size:clamp(1.2rem, 1.5vw, 2rem);
  margin-bottom: .75rem;
}

.hero__text{
  ma-x-width: 780px;
  font-size: clamp(1rem, 3.1vw, 5.25rem);
}

.lead{font-size:clamp(1rem, 1.7vw, 5.25rem);}

/* CONTATTI */
.contacts{
  background: var(--rosso);
  color: var(--bianco);
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
  font-size:22px;
}
.contacts .contact-link{
  color: var(--bianco);
  text-decoration: none;
}
.contacts .contact-link:hover{ text-decoration: underline; }

/* Social buttons */
.social-btn{
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 2px solid var(--bianco);
  border-radius: 50%;
  color: var(--bianco);
  transition: transform .2s ease, opacity .2s ease;
}
.social-btn:hover{ transform: translateY(-2px); opacity:.85; }
.social-btn img{ width:22px; height:22px; }
.social-btn svg{ width:22px; height:22px; display:block; }

/* Responsive refinements */
@media (min-width: 992px){
  .hero{ min-height: 100vh; }
  .subtitle{ letter-spacing:.8rem; }
}
