.luxe-foot-wrapper {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

/* Pre-footer CTA */
.luxe-foot-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxe-foot-cta-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.luxe-foot-cta-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.luxe-foot-cta-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.3;
}

.luxe-foot-cta-desc {
    font-size: 1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.luxe-foot-cta-btn {
    display: inline-block;
    border: 1px solid;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
}

/* Footer core */
.luxe-foot-main {
    margin: 0 auto;
}

/* Grid column variants */
.luxe-foot-grid {
    display: grid;
    border-bottom: 1px solid;
    padding-bottom: 60px;
}

.luxe-foot-cols-2 { grid-template-columns: 1fr 1fr; }
.luxe-foot-cols-3 { grid-template-columns: 2fr 1fr 1fr; }
.luxe-foot-cols-4 { grid-template-columns: 2fr 1fr 1fr 2fr; }

.luxe-foot-col {
    display: flex;
    flex-direction: column;
}

/* Logo */
.luxe-foot-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.luxe-foot-logo img {
    max-height: 40px;
    width: auto;
}

.luxe-foot-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
}

.luxe-foot-brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Social */
.luxe-foot-socials {
    display: flex;
    align-items: center;
}

.luxe-foot-socials a {
    transition: color 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.luxe-foot-socials a svg {
    width: 1em;
    height: 1em;
}

/* Column titles */
.luxe-foot-col-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 1px;
}

/* Links */
.luxe-foot-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.luxe-foot-links a {
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.luxe-foot-links a:hover {
    transform: translateX(5px);
}

/* Newsletter */
.luxe-foot-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
}

.luxe-foot-newsletter-input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid;
    font-size: 0.9rem;
    border-radius: 4px;
    outline: none;
    box-sizing: border-box;
    color: inherit;
}

.luxe-foot-newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.25);
}

.luxe-foot-newsletter-btn {
    padding: 14px 20px;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Bottom Bar */
.luxe-foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.luxe-foot-slogan {
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .luxe-foot-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .luxe-foot-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .luxe-foot-grid { grid-template-columns: 1fr !important; }
    .luxe-foot-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .luxe-foot-cta-title { font-size: 1.8rem; }
}
