/* ============================================================
   LES FLEURS DE DEM — footer.css
   ============================================================ */

/* =================== FOOTER =================== */
.site-footer {
    background: var(--text);
    color: var(--sand);
    padding: 4rem 0 0;
}

.footer-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand */
.footer-brand .footer-logo {
    display: inline-flex;
    margin-bottom: 1rem;
}

.footer-brand .logo-text em {
    color: var(--rose);
    font-size: 0.88rem;
}

.footer-brand .logo-text strong {
    color: var(--cream);
    font-size: 1.2rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(201,192,180,0.75);
    line-height: 1.7;
    max-width: 30ch;
    margin: 0;
}

/* Nav */
.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav a {
    font-size: 0.83rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(201,192,180,0.7);
    transition: color var(--dur) var(--ease);
}

.footer-nav a:hover { color: var(--rose); }

/* Legal */
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(201,192,180,0.6);
    transition: color var(--dur) var(--ease);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-legal a:hover { color: var(--rose); }

/* Bottom bar */
.footer-bottom {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(0,0,0,0.15);
}

.footer-bottom p {
    font-size: 0.76rem;
    color: rgba(201,192,180,0.5);
    letter-spacing: 0.06em;
    margin: 0 auto;
    max-width: none;
}
