/* ============================================================================
   MODULE CTA [ft-cta] - CSS PURE ET SCOPÉ
   ============================================================================ */

#ft-cta {
    padding: 8rem 4rem;
    background: #b85c38; /* Var: terracotta */
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', system-ui, sans-serif;
}

/* La flèche géante en arrière-plan */
#ft-cta .cta-bg {
    position: absolute;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 35vw;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    line-height: 1;
    z-index: 1;
}

#ft-cta .cta-inner {
    position: relative;
    z-index: 2; /* S'assure que le texte est lisible au-dessus de la flèche */
    max-width: 700px;
    margin: 0 auto;
}

#ft-cta .cta-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    display: block;
}

#ft-cta .cta-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: #f7f4ef; /* Var: cream */
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

#ft-cta .cta-sub {
    font-size: 1rem;
    color: rgba(247,244,239,0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Bouton spécifique pour le CTA */
#ft-cta .btn-cta {
    background: #f7f4ef; /* Var: cream */
    color: #b85c38; /* Var: terracotta */
    padding: 1rem 2.5rem;
    font-size: 0.88rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.2s, transform 0.2s, color 0.2s;
    border-radius: 2px;
}

/* Au survol, le bouton devient noir (ink) avec texte clair (cream) */
#ft-cta .btn-cta:hover { 
    background: #0f0f0e; /* Var: ink */
    color: #f7f4ef; /* Var: cream */
    transform: translateY(-2px); 
}

#ft-cta .cta-note {
    font-size: 0.8rem;
    color: rgba(247,244,239,0.5);
    margin-top: 1.2rem;
    font-style: italic;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 900px) {
    #ft-cta { 
        padding: 4rem 1.5rem; 
    }
}