.hero {
  background: linear-gradient(135deg, var(--beige-kraft) 0%, #faecd0 100%);
  padding: 56px 24px 72px;
  position: relative;
  overflow: hidden;
}

.inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
}

.slideContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  animation: apparitionSlide 0.5s ease;
}

@keyframes apparitionSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .slideContainer {
    animation: none;
  }
}

.colonneTexte {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 580px;
  z-index: 2;
}

.eyebrow {
  font-family: var(--font-gotham);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vert-fonce);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.titre {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--gris-fonce);
  text-align: center;
}

.texte {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gris-moyen);
  min-height: 3.5em;
}

.actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.colonneImage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cadre {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.22);
  border: 6px solid var(--blanc);
  background: var(--blanc);
  transition: transform 0.4s ease;
}

.cadre:hover {
  transform: scale(1.02);
}

.image {
  object-fit: cover;
}

.badge {
  position: absolute;
  bottom: -12px;
  right: -10px;
  background: var(--vert-fonce);
  color: var(--blanc);
  font-family: var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  z-index: 3;
  animation: pulseBadge 2.2s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(26, 107, 42, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .badge {
    animation: none;
  }
}

/* Contrôles du carrousel */
.controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.navArrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.arrowBtn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blanc);
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: var(--gris-fonce);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.arrowBtn:hover {
  background: var(--vert-fonce);
  color: var(--blanc);
  border-color: var(--vert-fonce);
  transform: translateY(-2px);
}

.arrowBtn svg {
  width: 18px;
  height: 18px;
}

.dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-pill);
  background: rgba(17, 17, 17, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dotActif {
  width: 32px;
  background: var(--vert-fonce);
}

.compteur {
  font-family: var(--font-gotham);
  font-size: 13px;
  font-weight: 700;
  color: var(--gris-moyen);
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .actions {
    flex-direction: row;
    justify-content: center;
  }

  .cadre {
    width: 340px;
    height: 340px;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 72px 24px 80px;
  }

  .slideContainer {
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
  }

  .colonneTexte {
    text-align: left;
    flex: 1;
    max-width: 600px;
  }

  .eyebrow {
    justify-content: flex-start;
  }

  .titre {
    font-size: 3.1rem;
    text-align: left;
  }

  .texte {
    font-size: 18px;
    min-height: 3em;
  }

  .actions {
    align-items: flex-start;
    justify-content: flex-start;
  }


  .colonneImage {
    flex-shrink: 0;
  }

  .cadre {
    width: 440px;
    height: 400px;
  }
}
