/* ════════════════════════════════════════════════════════════
   HERO BOUTIQUE — Style rhinoshield
   ════════════════════════════════════════════════════════════ */

.bsh-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 52vh;
  min-height: 340px;
  max-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Fond image bannière */
.bsh-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Grain subtil */
.bsh-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Overlay dégradé pour lisibilité du texte */
.bsh-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,35,24,0.5) 0%, transparent 65%);
  z-index: 1;
}

/* ── Contenu texte gauche ── */
.bsh-content {
  position: relative;
  z-index: 2;
  padding: 0 6% 0 8%;
  flex: 0 0 50%;
  max-width: 560px;
}

.bsh-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.bsh-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: var(--weight-extrabold);
  color: var(--white);
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.bsh-title em {
  font-style: italic;
  color: var(--gold);
}

.bsh-desc {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0;
}

/* ── Image droite ── */
.bsh-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  z-index: 1;
  overflow: hidden;
}

/* Dégradé gauche pour fondre l'image avec le texte */
.bsh-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 55%;
  background: linear-gradient(to right, #1e2e22, transparent);
  z-index: 2;
  pointer-events: none;
}

.bsh-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: brightness(0.88) saturate(1.1);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .bsh-hero {
    height: 44vh;
    min-height: 280px;
  }

  .bsh-content {
    flex: 0 0 60%;
    padding: 0 5% 0 6%;
  }

  .bsh-visual {
    width: 48%;
  }
}

@media (max-width: 640px) {
  .bsh-hero {
    height: 40vh;
    min-height: 240px;
  }

  .bsh-content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 24px;
  }

  .bsh-visual {
    width: 100%;
    opacity: 0.25;
  }

  .bsh-visual::before {
    width: 100%;
    background: linear-gradient(to right, #1e2e22 10%, transparent 60%, #1e2e22);
  }

  .bsh-desc {
    display: none;
  }
}
