.footer {
    position: relative;
    z-index: 5;
    padding: 1.75rem 1.5rem;
    background: var(--black);
    border-top: 1px solid var(--slate);
}

@media (min-width: 768px) {
    .footer { padding: 2.25rem 3rem; }
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--slate);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
    }
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-flag {
    width: 28px;
    height: 16px;
}

.footer-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

.footer-brand-desc {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.7;
}

.footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-link {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 550px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-company {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}

.footer-address {
    font-size: 0.7rem;
    font-weight: 400;
    font-style: normal;
    color: var(--gray);
    line-height: 1.6;
}

.footer-tagline {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 0.02em;
}

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

@media (min-width: 550px) {
    .footer-right { text-align: right; }
}

.footer-copy {
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--gray-dark);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.footer-legal-link {
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--silver);
}

.footer--simple {
    margin-top: auto;
}

.footer--simple .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 550px) {
    .footer--simple .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}
