#colophon {
    background-color: var(--back-logo-lighter);
    color: var(--nav-item-color);

    .main-footer {
        background-color: var(--deep-blue);
        padding-top: 60px;
    }

    .footer-container {
        padding: 0 20px;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    /* --- LOGO TOP --- */
    .footer-top {
        text-align: center;
        margin-bottom: 80px;
    }

    .since {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        font-family: 'Cinzel', serif;
        letter-spacing: 4px;
        color: var(--beige);
    }

    .logo-area h1 {
        font-family: 'Cinzel', serif;
        font-size: 2.5rem;
        margin: 15px 0;
        line-height: 1.1;
        color: var(--beige);
        letter-spacing: 2px;
    }

    .location {
        font-family: 'Cinzel', serif;
        letter-spacing: 6px;
        font-size: 0.9rem;
        color: var(--beige);
    }

    /* --- CONTENT AREA --- */
    .footer-content {
        padding-bottom: 40px;
    }

    /* Colonne Info */
    .col-info {
        flex: 1;
        font-size: 0.9rem;
    }

    .agency-name {
        font-weight: 600;
        margin-bottom: 10px;
    }

    address {
        font-style: normal;
        line-height: 1.5;
        opacity: 0.9;
    }

    .social-link {
        margin-top: 5em;
        font-size: 0.8rem;
    }

    .social-link a {
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px solid var(--white);
    }

    /* Colonne Boutons */
    .col-contact {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 40px;
    }

    .contact-btn {
        background: var(--white);
        color: var(--back-logo) !important;
        padding: 15px 20px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 15px;
        font-weight: 600;
        font-size: 0.8rem;
        transition: transform 0.2s;
    }

    .contact-btn:hover {
        transform: translateX(5px);
    }

    .contact-btn i {
        font-size: 1.1rem;
    }

    /* Colonne Nav */
    .col-nav {
        flex: 2;
        display: flex;
        justify-content: flex-end;
    }

    .nav-group {
        display: flex;
        flex-direction: column;
        margin-right: 2em;

    }

    .nav-group a {
        color: var(--white);
        text-decoration: none;
        font-size: 0.85rem;
        opacity: 0.9;
        padding-top: 2em
    }

    .nav-group a:hover {
        text-decoration: underline;
    }

    /* --- BOTTOM BAR --- */
    .footer-bottom {
        display: flex;
        justify-content: flex-end;
        padding: 2em;
        padding-right: 4em;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 15px;
        width: 100%;
    }

    .legal-links {
        display: flex;
        gap: 20px;
    }

    .legal-links a {
        color: var(--white);
        text-decoration: none;
        opacity: 0.6;
    }

    .credits {
        opacity: 0.6;
        margin-left: 2em;

    }

    /* Responsive */
    @media (max-width: 992px) {
        .footer-container {
            flex-direction: column !important;
            gap: 40px;
            text-align: center;
            justify-content: center;
            align-items: flex-start;

        }

        .col-nav {
            flex-direction: row;
            gap: 20px;
        }

        .col-contact {
            padding: 0;
            width: 100%;
        }

        .nav-group:nth-child(2) {
            margin-right: 0em;
            flex-direction: end;
        }

        .nav-group:first-child {
            border-right: 1px solid var(--light-grey);
            padding: 1em;
        }


    }
}