/* === RETOUR CTA — bande de clôture vers le texte intégral === */
.retour-cta {
  background: linear-gradient(135deg, #7A0309 0%, #B30F15 55%, #ED1D23 100%);
  color: #fff;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.retour-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 85% -20%, rgba(250, 204, 20, 0.32) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 120%, rgba(0, 0, 0, 0.35) 0%, transparent 55%);
  z-index: -1;
}
.retour-cta::after {
  content: '';
  position: absolute; inset: 0; opacity: 0.07;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 32px 32px;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.retour-cta-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 880px) {
  .retour-cta-inner {
    grid-template-columns: 1fr auto;
    gap: 3rem;
    text-align: left;
  }
}
.retour-cta-eyebrow {
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.04em;
  color: #FDE68A;
  margin-bottom: 0.5rem;
}
.retour-cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 0.9rem 0;
  color: #fff;
}
.retour-cta-title em {
  font-style: italic;
  background: linear-gradient(135deg, #FFE066 0%, #FACC14 50%, #F59E0B 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  padding: 0 0.05em 0.04em;
  display: inline-block;
}
.retour-cta-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
}
@media (min-width: 880px) {
  .retour-cta-desc { max-width: 540px; }
}
.retour-cta-actions {
  display: flex; flex-direction: column; gap: 0.7rem;
  align-items: stretch; justify-self: center;
}
@media (min-width: 480px) {
  .retour-cta-actions { flex-direction: row; align-items: center; }
}
@media (min-width: 880px) {
  .retour-cta-actions { flex-direction: column; align-items: stretch; min-width: 240px; }
}
.retour-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 700; font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s, color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.retour-cta-btn.primary {
  background: #FACC14; color: #7A0309;
  box-shadow: 0 14px 32px -8px rgba(250, 204, 20, 0.6);
  border-color: rgba(0, 0, 0, 0.08);
}
.retour-cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -8px rgba(250, 204, 20, 0.78);
}
.retour-cta-btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.retour-cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.retour-cta-btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.retour-cta-btn:hover .arrow { transform: translateX(4px); }
