/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    border-top: 1px solid rgba(212, 175, 125, 0.15);
    padding: 20px 20px 90px;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 100px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 125, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--gold);
    background-color: rgba(212, 175, 125, 0.1);
}

.footer-social img {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1440px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-contact-icon {
    width: 15px;
    height: 15px;
    opacity: 0.7;
}

.footer-contact-sep {
    display: none;
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.footer-contact-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* ---- Responsive: Footer ---- */

@media (min-width: 600px) {
    .site-footer {
        padding: 70px 30px 100px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-brand {
        text-align: left;
        flex: 1;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-links {
        flex: 1.5;
        text-align: left;
    }
}

@media (min-width: 900px) {
    .site-footer {
        padding: 50px 60px;
    }

    .footer-content {
        gap: 60px;
    }

    .footer-logo {
        height: 70px;
    }

    .footer-tagline {
        font-size: 18px;
    }

    .footer-social a {
        width: 45px;
        height: 45px;
    }

    .footer-social img {
        width: 22px;
        height: 22px;
    }

    .footer-links {
        gap: 40px;
    }

    .footer-column h4 {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .footer-column a {
        font-size: 13px;
    }

    .footer-column a:hover {
        color: var(--gold-light);
    }

    .footer-contact {
        flex-direction: row;
        justify-content: center;
        font-size: 13px;
    }

    .footer-contact-sep {
        display: inline;
    }

    .footer-copyright {
        font-size: 12px;
    }
}
