/* ============================================
   HERO — ALL PPITES
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--blanc-pur);
}

/* ----- LAYOUT INTERNE ----- */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-largeur);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 100vh;
}

/* ----- CONTENU GAUCHE ----- */
.hero__content {
  flex: 0 0 auto;
  max-width: 520px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-corps);
  font-size: var(--taille-xs);
  font-weight: var(--poids-semi);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gris-neutre);
  margin-bottom: var(--espace-xl);
}

.hero__label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gris-neutre);
}

.hero__titre {
  font-family: var(--font-titre);
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--noir-pur);
  margin-bottom: var(--espace-xl);
}

.hero__titre em {
  font-style: normal;
  color: var(--gris-neutre);
}

.hero__description {
  font-family: var(--font-corps);
  font-size: var(--taille-sm);
  font-weight: var(--poids-light);
  line-height: 1.7;
  color: var(--gris-fonce);
  max-width: 380px;
  margin-bottom: var(--espace-2xl);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--noir-pur);
  color: var(--blanc-pur);
  font-family: var(--font-corps);
  font-size: var(--taille-sm);
  font-weight: var(--poids-semi);
  padding: 16px 32px;
  border-radius: var(--rayon-full);
  letter-spacing: 0.02em;
  transition: all var(--transition-normale);
}

.hero__cta:hover {
  background-color: var(--charbon);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ----- IMAGE DROITE ----- */
.hero__image-wrapper {
  flex: 0 0 auto;
  position: relative;
  width: clamp(440px, 52vw, 680px);
  height: clamp(540px, 75vh, 780px);
}

/* Cadre décalé derrière l'image */
.hero__image-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gris-perle);
  border-radius: var(--rayon-lg);
  z-index: 0;
}

.hero__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  border-radius: var(--rayon-lg);
  border: 1px solid var(--gris-creme);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

/* ----- WATERMARK ----- */
.hero__watermark {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  font-family: var(--font-titre);
  font-size: clamp(80px, 14vw, 180px);
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner {
    flex-direction: column;
    justify-content: flex-end;
    padding: 120px 32px 60px;
    gap: 48px;
    min-height: auto;
  }
  .hero__content { max-width: 100%; }
  .hero__image-wrapper {
    width: 100%;
    height: clamp(320px, 50vw, 480px);
  }
}

@media (max-width: 768px) {
  .hero__inner {
    padding: 100px 20px 60px;
    gap: 36px;
  }
  .hero__description { max-width: 100%; }
  .hero__image-wrapper {
    width: 100%;
    height: 260px;
  }
  .hero__image-frame { display: none; }
  .hero__watermark { font-size: clamp(56px, 20vw, 100px); }
}
