/* ============================================================
   Footer Styles - Flat & Minimalist Architectural
   ============================================================ */

.footer-main {
    position: relative;
    background-color: var(--white-primary);
    color: var(--black-primary);
    padding: 50px 0 0 0;
    font-family: 'industry', sans-serif;
}

.footer-main::after {
    content: '';
    position: absolute;
    top: -25px;
    left: 0;
    height: 25px;
    background-color: var(--primary-color);
    width: 90%;
    clip-path: polygon(0 0, 100% 0, 99.5% 100%, 0 100%);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
}

/* Offices */
.footer-offices {
    display: flex;
    gap: 80px;
}

.footer-about {
    max-width: 380px;
}

.footer-brand-name {
    font-family: 'Goldman', sans-serif;
    font-weight: var(--font-weight-black);
    color: var(--primary-color);
    margin-bottom: 12px;
    display: inline-block;
}

.brand-top {
    font-size: var(--font-40);
    line-height: 0.8;
    letter-spacing: 1px;
}

.brand-bottom {
    font-size: var(--font-20);
    font-weight: var(--font-weight-normal);
    line-height: 1;
    letter-spacing: 5px;
    padding-left: 2px;
}

.office-title {
    color: var(--primary-color);
    font-family: var(--fontH);
    font-size: var(--font-16);
    font-weight: var(--font-weight-bold);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.office-address {
    color: var(--black-secondary);
    font-size: var(--font-16);
    line-height: 1.6;
    font-weight: var(--font-weight-medium);
}

/* Right Cluster (Socials + Logo) */
.footer-right-cluster {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-social-icon {
    color: var(--primary-color);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon:hover {
    color: var(--black-primary);
    opacity: 1;
    transform: translateY(-2px);
}

.footer-logo-block {
    background-color: var(--primary-color);
    color: #ffffff;
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: skew(-10deg);
}

.footer-logo-block .logo-text {
    font-family: 'Goldman', sans-serif;
    font-size: var(--font-40);
    font-weight: var(--font-weight-black);
    transform: skew(10deg);
}

/* Bottom Bar */
.footer-bottom {
    text-align: right;
    padding: 0 0 40px 0;
    font-size: var(--font-16);
    color: var(--black-secondary);
    font-weight: var(--font-weight-medium);
}

/* ============================================================
   RESPONSIVE GLOBAL LAYOUT (Breakpoints)
   ============================================================ */

@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-top-bar {
        width: 100%;
        clip-path: none;
    }

    .footer-bottom {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .footer-offices {
        flex-direction: column;
        gap: 30px;
    }

    .footer-right-cluster {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}