/* =====================================================
   Fun & Calm – Lieu d'Être  |  fcld-lieudetre.css
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;600&family=Playfair+Display:ital,wght@0,500;0,700;1,400&display=swap');

/* --- Layout deux colonnes --- */
.fcld-intro {
    padding: 72px 48px;
    font-family: 'Mulish', sans-serif;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    box-sizing: border-box;
}

/* ── COLONNE GAUCHE ── */

.fcld-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: #A89F98;
    margin: 0 0 12px;
}

.fcld-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 500;
    color: #2C2420;
    line-height: 1.1;
    margin: 0 0 28px;
}

.fcld-title em {
    color: #7FA6B1;
    font-style: italic;
}

.fcld-body {
    font-size: 16px;
    color: #7A6F68;
    line-height: 1.85;
    font-weight: 300;
    margin: 0 0 18px;
}

.fcld-body strong {
    color: #2C2420;
    font-weight: 600;
}

.fcld-body em {
    font-style: italic;
}

.fcld-signature {
    margin: 28px 0 0;
    padding-top: 20px;
    border-top: 1px solid #EFE9E0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    color: #7FA6B1;
    font-style: italic;
}

/* ── COLONNE DROITE ── */

.fcld-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Carte stat */
.fcld-stat {
    background: #F7F3EE;
    border-radius: 16px;
    border: 1px solid #DDD5C8;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: border-color .2s;
    box-sizing: border-box;
}

.fcld-stat:hover {
    border-color: #7FA6B1;
}

.fcld-stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 40px;
    font-weight: 700;
    color: #7FA6B1;
    line-height: 1;
    flex-shrink: 0;
    width: 64px;
    text-align: center;
}

.fcld-stat-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2C2420;
    margin-bottom: 3px;
}

.fcld-stat-text p {
    font-size: 13px;
    color: #7A6F68;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* Encart collection */
.fcld-collection {
    background: #EBF3F6;
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(127, 166, 177, .2);
    box-sizing: border-box;
}

.fcld-collection-ico {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.fcld-collection-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #527A87;
    margin-bottom: 4px;
}

.fcld-collection-text p {
    font-size: 13px;
    color: #7A6F68;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
    .fcld-intro {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 56px 24px;
    }
}
