/* ============================================================================
   MODULE ABOUT [ft-about] - CSS PURE ET SCOPÉ
   ============================================================================ */

#ft-about {
    padding: 7rem 4rem;
    background: #f7f4ef; /* Var: cream */
    font-family: 'DM Sans', system-ui, sans-serif;
}

#ft-about .about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

#ft-about .about-visual {
    position: relative;
}

/* --- GESTION DE L'IMAGE --- */
#ft-about .about-img-block {
    background: #2b4a3f; /* Var: forest (Fond de secours) */
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
}

#ft-about .about-wp-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* L'image remplit le cadre sans se déformer */
    z-index: 1;
}

/* Le motif de rayures diagonales par-dessus l'image */
#ft-about .about-img-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 8px,
      rgba(255,255,255,0.05) 8px,
      rgba(255,255,255,0.05) 9px
    );
    z-index: 2; /* Posé au-dessus de l'image */
    pointer-events: none; /* Permet de cliquer sur l'image à travers le motif */
}

/* --- CITATION FLOTTANTE --- */
#ft-about .about-quote-float {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: #b85c38; /* Var: terracotta */
    color: #f7f4ef; /* Var: cream */
    padding: 1.8rem 2rem;
    max-width: 260px;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Petite ombre pour détacher la boîte */
}

#ft-about .about-quote-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
}

/* --- CONTENU TEXTE (Droite) --- */
#ft-about .about-content { 
    padding-top: 1rem; 
}

#ft-about .section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #b85c38; /* Var: terracotta */
    margin-bottom: 0.75rem;
    display: block;
}

#ft-about .about-intro {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.45rem;
    line-height: 1.5;
    color: #0f0f0e; /* Var: ink */
    margin-bottom: 1.5rem;
    font-weight: 400;
}

#ft-about .about-body {
    font-size: 0.94rem;
    line-height: 1.8;
    color: #3a3734;
    margin-bottom: 1.5rem;
}

#ft-about .diff-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(15,15,14,0.04);
    border-left: 3px solid #b85c38; /* Var: terracotta */
}

#ft-about .diff-list li {
    font-size: 0.9rem;
    color: #0f0f0e; /* Var: ink */
    line-height: 1.6;
    font-weight: 500;
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 900px) {
    #ft-about { 
        padding: 4rem 1.5rem; 
    }
    #ft-about .about-inner { 
        grid-template-columns: 1fr; 
        gap: 2.5rem; 
    }
    /* Sur mobile, on annule la position absolue de la citation pour qu'elle s'affiche sous l'image proprement */
    #ft-about .about-quote-float { 
        position: relative; 
        bottom: auto; 
        right: auto; 
        margin-top: -1rem; 
        margin-left: auto;
        max-width: 90%; 
    }
}