/* =====================================================
   FOOTER — LIN XÉN (LUXURY EDITORIAL)
===================================================== */

.lx-footer {
    margin-top: 10px;
    padding: 20px 56px 20px 24px;
    background: #f7f6f4;
    border-top: 1px solid #e5e3df;
    color: #1c1c1c;
}

.lx-footer-inner {
    max-width: 1120px;
    margin: 0 auto;
}

/* ================= TOP ================= */

.lx-footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

/* BRAND */
.lx-footer-brand h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .6px;
    margin-bottom: 6px;
    color: #1c1c1c;
}

.lx-footer-tagline {
    font-size: 14px;
    font-weight: 500;
    color: #b8a48a;
    margin-bottom: 10px;
}

.lx-footer-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: #6b6b6b;
}

/* ================= STATS ================= */

.lx-footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lx-stat {
    padding-left: 14px;
    border-left: 2px solid #b8a48a;
}

.lx-stat strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #1c1c1c;
}

.lx-stat span {
    font-size: 12.5px;
    color: #6b6b6b;
}

/* ================= SERVICES ================= */

.lx-footer-services {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.lx-footer-services span {
    padding: 7px 16px;
    font-size: 12.5px;
    border-radius: 999px;
    background: rgba(184,164,138,.15);
    color: #5a4f43;
}

/* ================= LINKS – EDITORIAL ================= */

.lx-footer-links {
    margin-top: 32px;
    padding-left: 16px;
    border-left: 2px solid #b8a48a;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lx-footer-links a {
    position: relative;
    font-size: 14px;
    color: #1c1c1c;
    text-decoration: none;
    padding-left: 6px;

    transition: color .25s ease, transform .25s ease;
}

.lx-footer-links a::before {
    content: '—';
    position: absolute;
    left: -12px;
    color: #b8a48a;
    opacity: 0;
    transition: opacity .25s ease;
}

.lx-footer-links a:hover {
    color: #111;
    transform: translateX(2px);
}

.lx-footer-links a:hover::before {
    opacity: 1;
}

/* ================= BOTTOM ================= */

.lx-footer-bottom {
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid #e5e3df;
    font-size: 12px;
    color: #8a8a8a;

    display: flex;
    justify-content: space-between;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .lx-footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .lx-footer-stats {
        grid-template-columns: 1fr;
    }

    .lx-footer-links {
        padding-left: 0;
        border-left: none;
    }

    .lx-footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}
