/* === FOOTER REDESIGN === */
#colophon.site-footer,
.site-footer {
    background-color: #000 !important;
    color: #f0f0f0;
    padding: 0 !important;
    border-top: 1px solid rgba(230, 169, 95, 0.15);
    position: relative;
    z-index: 100;
}

/* --- Footer Top: 3 columns --- */
.footer-top {
    padding: 60px 0 50px;
}

.footer-top .footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Brand column */
.footer-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(230, 169, 95, 0.3));
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #e6a95f;
    letter-spacing: 4px;
    margin: 0 0 8px;
    font-weight: 700;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    color: rgba(240, 240, 240, 0.65);
    letter-spacing: 1px;
    margin: 0;
}

/* Column titles */
.footer-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    color: #e6a95f;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 20px;
    font-weight: 600;
}

/* Navigation column */
.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list a {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: rgba(240, 240, 240, 0.7);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-nav-list a:hover {
    color: #e6a95f;
    padding-left: 5px;
}

/* Social column */
.footer-social-icons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-social-icons a {
    color: rgba(240, 240, 240, 0.6);
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    text-decoration: none;
}

.footer-social-icons a:hover {
    color: #e6a95f;
    transform: translateY(-3px);
    filter: drop-shadow(0 0 6px rgba(230, 169, 95, 0.5));
}

/* --- Footer Bottom bar --- */
.footer-bottom {
    border-top: 1px solid rgba(230, 169, 95, 0.1);
    padding: 20px 0;
}

.footer-bottom .footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copyright {
    font-family: 'Playfair Display', serif;
    font-size: 0.7rem;
    color: rgba(240, 240, 240, 0.4);
    letter-spacing: 1px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-legal a {
    font-family: 'Playfair Display', serif;
    font-size: 0.65rem;
    color: rgba(240, 240, 240, 0.4);
    text-decoration: none;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #e6a95f;
}

.footer-sep {
    color: rgba(240, 240, 240, 0.4);
    font-size: 0.65rem;
}

.footer-legal-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-legal-links a {
    font-family: 'Playfair Display', serif;
    font-size: 0.65rem;
    color: rgba(240, 240, 240, 0.4);
    text-decoration: none;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #e6a95f;
}

.footer-legal-sep {
    color: rgba(240, 240, 240, 0.25);
    font-size: 0.65rem;
}

.footer-credit {
    font-family: 'Playfair Display', serif;
    font-size: 0.65rem;
    color: rgba(240, 240, 240, 0.55);
    letter-spacing: 1px;
    margin: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .footer-top .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-col-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-nav-list a:hover {
        padding-left: 0;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-top .footer-container {
        padding: 0 20px;
        gap: 25px;
    }
    
    .footer-brand-name {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
    
    .footer-col-title {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 375px) {
    .footer-top .footer-container {
        padding: 0 15px;
        gap: 20px;
    }
    
    .footer-brand-name {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .footer-logo {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom .footer-container {
        padding: 0 15px;
    }
}
