/* ===================================
   FOOTER STYLES
   =================================== */

.footer {
    background: #f0ece4;
    padding: 0;
    color: var(--color-text-dark);
    transition: background 0.5s ease, color 0.5s ease;
    border-top: none !important;
    border: none !important;
}

.section-contact-cta {
    border-bottom: none !important;
    border: none !important;
}

.footer.cta-hovered {
    background: #944b2e;
}

.footer-inner {
    padding: 28px var(--spacing-md) 8px;
    border-top: none !important;
}

/* ----- Services row ----- */
.footer-services {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 28px;
}

.footer-services span {
    font-family: var(--font-logo);
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: inherit;
    transition: color 0.5s ease;
}



/* ----- Divider ----- */
.footer-divider {
    width: 100%;
    height: 1px;
    background: currentColor;
    margin-bottom: 27px;
    transition: background 0.5s ease;
}

/* ----- Copyright ----- */
.footer-copy {
    font-family: var(--font-primary);
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.6;
    font-weight: 400;
    text-align: center;
    margin-bottom: 13px;
    color: inherit;
    transition: color 0.5s ease;
}



/* ----- Bottom row: lang + social ----- */
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Social icons */
.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer .social-circle {
    border: 1.5px solid currentColor;
    color: inherit;
    width: 32px;
    height: 32px;
    font-family: var(--font-logo);
    font-size: 8px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
    transition: all 0.5s ease;
    text-decoration: none;
    opacity: 0.85;
}



.footer .social-circle:active {
    background: var(--color-text-dark);
    color: #f0ece4;
    opacity: 1;
}

/* ===================================
   MOBILE RESPONSIVE — Footer
   =================================== */
@media (max-width: 768px) {
    .footer-inner {
        padding: 20px 16px 8px;
    }

    .footer-services {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        padding-bottom: 20px;
    }

    .footer-services span {
        font-size: 7.5px;
        letter-spacing: 0.8px;
    }

    .footer-copy {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .footer .social-circle {
        width: 28px;
        height: 28px;
    }

    .footer .social-circle svg {
        width: 8px;
        height: 8px;
    }
}