/* ── CTA Final — Texte en haut, photo plein largeur en dessous ── */
.cta-section {
  background: var(--black);
  padding-top: clamp(5rem, 12vh, 9rem);
  overflow: hidden;
}

/* ── Bloc texte ── */
.cta-content {
  max-width: var(--container-max, 1280px);
  margin-inline: auto;
  padding-inline: var(--container-pad, 1.25rem);
  padding-bottom: clamp(3.5rem, 7vh, 6rem);
  text-align: center;
}

.cta-title {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--white);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}
.cta-title em {
  font-style: normal;
  color: var(--orange);
}

.cta-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: rgba(245,244,240,0.5);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 42ch;
  margin-inline: auto;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Photo plein largeur ── */
.cta-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
}

.cta-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Fondu haut pour raccorder avec le texte */
.cta-photo-fade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to bottom, var(--black), transparent);
  pointer-events: none;
}

@media (max-width: 600px) {
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn-primary { justify-content: center; }
  .cta-photo { aspect-ratio: 4/3; }
}
