/* ================= HERO (validé sur témoin) ================= */
.hero { padding: 92px 20px 0; } /* espace pour la navbar flottante fixe */

.hero__carte {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  height: min(86vh, 820px);
  border-radius: 42px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 40px 80px -35px rgba(30, 31, 32, 0.35);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__voile {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 12, 0.30) 0%, rgba(20, 16, 12, 0.18) 45%, rgba(20, 16, 12, 0.42) 100%);
}
.hero__contenu {
  position: relative;
  color: #fff;
  padding: 0 24px;
  max-width: 900px;
}
.hero__script {
  font-family: var(--f-script);
  font-size: 38px;
  font-weight: 600;
  display: block;
  transform: rotate(-2deg);
  margin-bottom: 10px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}
.hero__titre {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 1.04;
  letter-spacing: 0.5px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.hero__titre .souligne::after { height: 9px; bottom: 4px; transform: rotate(-1deg); }
.hero__sous {
  margin: 22px auto 30px;
  font-size: 19px;
  max-width: 560px;
  line-height: 1.5;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero__tel {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 2px;
  transition: border-color 0.3s;
}
.hero__tel:hover { border-color: #fff; }

.hero__sticker {
  top: 22px;
  right: -14px;
  transform: rotate(6deg);
}

.hero__scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--encre);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  animation: hero-flotte 2.2s ease-in-out infinite;
}
@keyframes hero-flotte {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@media (max-width: 767px) {
  .hero { padding: 84px 12px 0; }
  .hero__carte { border-radius: 30px; height: 78vh; }
  .hero__sticker { right: -8px; top: 14px; font-size: 22px; }
}
