/* ============================================
   PIQUED JACKS — Hero Section
   ============================================ */

.pj-section--hero .pj-bg {
  background-color: var(--pj-dark);
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.pj-section--hero .pj-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10, 9, 8, 0.25) 0%,
    rgba(10, 9, 8, 0.35) 60%,
    rgba(10, 9, 8, 0.65) 100%
  );
}

.pj-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* --- Logo immagine +75% --- */
.pj-hero__logo {
  max-width: clamp(280px, 55vw, 700px);
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: translateY(30px);
  animation: pj-fade-up 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

/* --- Titolo testo fallback --- */
.pj-hero__title {
  font-family: var(--pj-font-title);
  font-weight: 300;
  font-size: clamp(4.5rem, 13vw, 11rem);
  letter-spacing: -0.03em;
  line-height: 0.88;
  color: var(--pj-cream);
  opacity: 0;
  transform: translateY(30px);
  animation: pj-fade-up 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

/* --- Linea decorativa --- */
.pj-hero__rule {
  width: 36px;
  height: 1px;
  background: var(--pj-accent);
  margin: 0.3rem auto;
  opacity: 0;
  animation: pj-fade-in 1s ease 0.8s forwards;
}

/* --- Sottotitolo +50% --- */
.pj-hero__subtitle {
  font-family: var(--pj-font-body);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  letter-spacing: 0.22em;
  color: var(--pj-warm);
  margin-top: -3.5rem;
  opacity: 0;
  animation: pj-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

/* --- Social icons +200%, senza punti --- */
.pj-hero__socials {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  padding: 0;
  margin: 2.8rem 0 0;
  opacity: 0;
  animation: pj-fade-up 1s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}

.pj-hero__socials li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Rimuove qualsiasi punto generato dal browser */
.pj-hero__socials li::before,
.pj-hero__socials li::after {
  display: none;
  content: none;
}

.pj-hero__socials li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.25s ease;
  color: var(--pj-cream);
}

.pj-hero__socials li a:hover {
  opacity: 1;
}

/* Icone 48px (200% di 24px) */
.pj-hero__socials svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

/* --- Freccia scroll --- */
.pj-hero__scroll {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: pj-fade-in 1s ease 1.4s forwards;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.pj-hero__scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--pj-warm));
  animation: pj-line-down 2s ease-in-out 2s infinite;
}

.pj-hero__scroll-arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--pj-warm);
  border-bottom: 1px solid var(--pj-warm);
  transform: rotate(45deg);
  margin-top: 4px;
  opacity: 0.6;
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 768px) {
  .pj-hero__logo {
    max-width: clamp(200px, 75vw, 380px);
    margin-top: -15vh !important;
  }

  .pj-hero__title {
    font-size: clamp(3.5rem, 16vw, 6rem);
    letter-spacing: -0.02em;
  }

  .pj-hero__subtitle {
    font-size: clamp(0.95rem, 4vw, 1.3rem);
    letter-spacing: 0.18em;
    margin-top: 1rem !important;
  }

  /* Fix puntini icone social su mobile */
  .pj-hero__socials {
    gap: 1.8rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin-left: 0 !important;
  }

  .pj-hero__socials li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
  }

  .pj-hero__socials li::before,
  .pj-hero__socials li::after {
    display: none !important;
    content: none !important;
  }

  .pj-hero__socials svg {
    width: 36px !important;
    height: 36px !important;
  }

  .pj-hero__scroll {
    bottom: 2rem;
  }
}