/* ============================================
   LXE SITE FOOTER (shared — project & contact pages)
   Mirrors the footer styles in layout.css so pages
   that don't load layout.css render identically.
   ============================================ */
.lxe-footer {
    background: #0F0D0A;
    position: relative;
    z-index: 10;
}

.footer-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 8vh 10vw 4vh;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 5vw;
    padding-bottom: 6vh;
    border-bottom: 1px solid rgba(152, 123, 88, 0.18);
    margin-bottom: 3.5vh;
}

.footer-logo {
    font-size: 4.5rem;
    color: var(--lxe-gold);
    letter-spacing: 0.05em;
    font-weight: 400;
    line-height: 0.85;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.52rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--lxe-gold);
    opacity: 0.55;
    margin-bottom: 2rem;
    display: block;
}

.footer-brand-desc {
    font-size: 0.95rem;
    color: rgba(245, 239, 230, 0.45);
    line-height: 1.75;
    max-width: 32ch;
}

.footer-col h4 {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--lxe-gold);
    opacity: 0.6;
    margin-bottom: 1.8rem;
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 0.95rem;
    color: rgba(245, 239, 230, 0.55);
    text-decoration: none;
    margin-bottom: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 300;
}

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

.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.footer-social a {
    display: inline !important;
    margin-bottom: 0 !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.15em;
    opacity: 0.5;
    border-bottom: 1px solid transparent;
    transition: opacity 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

.footer-social a:hover {
    opacity: 1 !important;
    color: var(--lxe-gold) !important;
    border-bottom-color: var(--lxe-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(245, 239, 230, 0.28);
    letter-spacing: 0.06em;
}

.footer-cta {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lxe-gold) !important;
    text-decoration: none;
    opacity: 0.75;
    border-bottom: 1px solid rgba(152, 123, 88, 0.4);
    padding-bottom: 3px;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

.footer-cta:hover {
    opacity: 1;
    border-bottom-color: var(--lxe-gold);
}

@media screen and (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 5vh 8vw;
    }
}

@media screen and (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 4vh;
    }

    .footer-logo { font-size: 3.5rem; }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}
