/* HERO 10 - ARTISANAL CHALEUREUX */
.hero-10 {
  /* padding-top vient de [data-hero] (hauteur du header) : on ne touche
     qu'aux côtés/bas pour ne pas écraser le décalage du header. */
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 40px;
  font-family: var(--font-body);
}
.hero-10__container {
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 600px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  background: var(--gray-light);
  border-radius: 4px;
}
.hero-10__blob {
  position: absolute;
  left: 72%;
  top: 50%;
  width: clamp(300px, 42vw, 520px);
  height: clamp(300px, 42vw, 520px);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: var(--gray-dark);
  opacity: 0.14;
  /* centré sur (72%,50%) ; le keyframe conserve le translate pour éviter le saut */
  transform: translate(-50%, -50%);
  animation: hero10BlobRotate 50s linear infinite;
  pointer-events: none;
}
.hero-10__content {
  position: relative;
  z-index: 2;
  padding: 56px 30px 56px 56px;
}
.hero-10__eyebrow {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--secondary);
  animation: fadeInUp 0.7s ease both;
}
.hero-10__title {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.25rem);
  line-height: 1.15;
  color: var(--primary);
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-10__desc {
  max-width: 420px;
  margin: 0 0 34px;
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--gray-dark);
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-10__cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-10__btn {
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}
.hero-10__btn--primary {
  color: var(--white);
  background: var(--secondary);
}
.hero-10__btn--primary:hover {
  transform: scale(1.03);
}
.hero-10__btn--outline {
  color: var(--primary);
  border: 1px solid var(--primary);
}
.hero-10__btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}
.hero-10__media {
  position: relative;
  z-index: 2;
  padding: 40px 56px 40px 20px;
}
.hero-10__frame {
  position: relative;
  transform: rotate(3deg);
}
.hero-10__frame img {
  display: block;
  width: 100%;
  height: clamp(250px, 32vw, 400px);
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}
.hero-10__badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--primary);
}
@keyframes hero10BlobRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 960px) {
  .hero-10__container {
    grid-template-columns: 1fr;
  }
  .hero-10__content {
    padding: 48px 32px 20px;
  }
  .hero-10__media {
    padding: 20px 32px 48px;
  }
  .hero-10__blob {
    left: 50%;
  }
}
