        /* ========== FOOTER ========== */
        .footer {
            background: var(--noir);
            color: rgba(255, 255, 255, 0.6);
            padding: 80px 0 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-col h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            color: var(--blanc);
            margin-bottom: 24px;
            font-weight: 500;
        }
        .footer-col p,
        .footer-col address {
            font-size: 0.85rem;
            line-height: 1.9;
            font-style: normal;
            margin-bottom: 8px;
        }
        .footer-col a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
        }
        .footer-col a:hover {
            color: var(--accent-light);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            display: inline-block;
            position: relative;
            padding-left: 0;
            transition: var(--transition);
        }
        .footer-links a:hover {
            padding-left: 8px;
        }
        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 8px;
        }
        .footer-social a {
            width: 42px;
            height: 42px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .footer-social a:hover {
            background: var(--accent);
            border-color: var(--accent);
        }
        .footer-social svg {
            width: 18px;
            height: 18px;
            fill: rgba(255, 255, 255, 0.7);
        }
        .footer-social a:hover svg {
            fill: var(--blanc);
        }
        .footer-bottom {
            padding: 24px 0;
            text-align: center;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 1px;
        }
        .footer-bottom a {
            color: var(--accent-light);
        }
        @media (max-width: 900px) {

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 600px) {
            .form-row {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }
        }
