/* ============================================
   FOOTER
============================================ */
footer {
    min-height: 70vh;
    padding: 0 5rem 0;
    display: flex;
    flex-direction: column;
    background: #0a0a0a;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5rem;
    right: 5rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: clamp(6rem, 20vw, 14rem);
    letter-spacing: -0.05em;
    line-height: 0.85;
    padding: 3rem 0;
    color: white;
    text-align: center;
}

.tagline-logo {
    width: 80px;
    height: 80px;
}

.footer-logo sup {
    font-size: 0.12em;
    position: relative;
    top: -0.5em;
    margin-left: 0.05em;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex: 1;
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-left {
    display: flex;
    gap: 5rem;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: white;
}

.footer-column .nav-list {
    list-style: none;
    display: inline-block;
    vertical-align: top;
    margin-right: 1.5rem;
}

.footer-column .nav-list li {
    margin-bottom: 0.25rem;
}

.footer-column .nav-list a {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column .nav-list a:hover {
    color: white;
}

.location-item {
    margin-bottom: 0.75rem;
}

.location-name {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.1rem;
}

.location-address {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
}

.footer-colors {
    width: 300px;
    height: 8px;
    border-radius: 4px;
    background: var(--gradient-main);
    filter: blur(0.5px);
}

.footer-colors span {
    display: none;
}

.footer-tagline {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.tagline-icon {
    color: white;
}

.tagline-text {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-top: auto;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-legal {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.footer-privacy {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-privacy:hover {
    color: white;
}

.footer-bar {
    height: 8px;
    background: #0a0a0a;
    margin: 0 -5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .footer-left {
        text-align: center;
        justify-content: center;
    }

    .footer-right {
        align-items: center;
    }

    .tagline-text {
        font-size: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 0 1.5rem 0;
        min-height: 60vh;
        /* Ensure all children are centered */
        align-items: center;
    }

    footer::before {
        left: 1.5rem;
        right: 1.5rem;
    }

    .footer-logo {
        font-size: clamp(4rem, 20vw, 8rem);
        padding: 2rem 0;
        text-align: center;
        width: 100%;
    }

    .footer-main {
        align-items: center;
        width: 100%;
    }

    .footer-left {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 2rem;
    }

    .footer-column {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column .nav-list {
        margin-right: 1rem;
        margin-left: 1rem;
        text-align: center;
    }

    .footer-right {
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .footer-colors {
        width: 200px;
        margin: 0 auto;
    }

    .footer-tagline {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        gap: 1rem;
    }

    .tagline-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .tagline-icon svg {
        display: block;
        margin: 0 auto;
    }

    .tagline-text {
        font-size: 1.25rem;
        text-align: center;
        width: 100%;
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        width: 100%;
    }

    .footer-legal {
        text-align: center;
        width: 100%;
    }

    .footer-bar {
        margin: 0 -1.5rem;
        width: calc(100% + 3rem);
    }
}
