/**
 * Hespora Luxury Footer Layout Design Architecture System
 */

/* Deactivate all parent theme footer container box limitations */
footer#hespora-colophon,
.hespora-footer {
    background-color: #050505 !important;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 80px 0 0 0 !important;
    box-sizing: border-box !important;
    font-family: inherit;
}

.hespora-footer *,
.hespora-footer *::before,
.hespora-footer *::after {
    box-sizing: border-box !important;
}

/* Master Grid Alignment Wrapper Row */
.hespora-footer-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 6% 60px 6% !important;
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr !important;
    gap: 50px !important;
}

/* Column Element Slices Reset Layouts */
.hespora-footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Brand Cluster / Bio Alignment Rules */
.hespora-footer-brand {
    padding-right: 30px;
}

.hespora-footer-logo img {
    height: 40px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin-bottom: 10px;
}

.hespora-footer-bio {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Header Text Rules Blocks */
.hespora-footer-heading {
    color: #d4af37; /* Hespora Gold Variable */
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 0 10px 0;
}

/* List Nav Link Configurations */
.hespora-footer-links {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.hespora-footer-links li {
    margin: 0 !important;
    padding: 0 !important;
}

.hespora-footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.hespora-footer-links a:hover {
    color: #d4af37;
}

/* Atelier Contact Column Cluster */
.hespora-footer-contact {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.hespora-footer-contact li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.5;
}

.hespora-footer-contact svg {
    width: 18px !important;
    height: 18px !important;
    color: #d4af37 !important;
    flex-shrink: 0 !important;
    margin-top: 2px;
}

.hespora-footer-contact a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hespora-footer-contact a:hover {
    color: #d4af37;
}

/* Bottom Shelf Fine-Print Strip Configs */
.hespora-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0 !important;
    background-color: #020202;
}

.hespora-footer-bottom-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 6% !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}

.hespora-footer-bottom p {
    color: #666666;
    font-size: 12px;
    margin: 0;
}

.hespora-footer-bottom .tracking-gold {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Media Queries Responsiveness Blocks Breakpoints */
@media (max-width: 1024px) {
    .hespora-footer-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
    }
    .hespora-footer-brand {
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .hespora-footer {
        padding: 60px 0 0 0 !important;
    }
    .hespora-footer-container {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        padding-bottom: 40px !important;
    }
    .hespora-footer-bottom-container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 10px !important;
    }
}