/* --- FOOTER CONTAINER --- */
.site-footer {
    background-color: #0b0b0b; /* Ultra-deep rich black */
    color: #ffffff;
    padding: 100px 0 40px;
    font-family: var(--font-sans);
}

.footer-container {
    max-width: var(--container-width, 1440px);
    margin: 0 auto;
    padding: 0 var(--container-padding, 40px);
}

/* --- MAIN ROW --- */
.footer-main-row {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
}

/* --- BRANDING --- */
.footer-brand-block {
    max-width: 400px;
}

.footer-logo {
    display: block;
    font-family: var(--font-serif);
    font-size: 42px;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.footer-positioning {
    font-family: var(--font-sans);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-email {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #ffffff;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 6px;
    text-decoration: none;
    transition: border-color 0.4s ease, color 0.4s ease;
}

.footer-email:hover {
    border-bottom-color: #ffffff;
}

/* --- NAVIGATION GRID --- */
.footer-nav-block {
    display: flex;
    gap: 80px; /* Reduced from 120px to fit 3 columns perfectly */
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
    font-weight: 600;
}

.lux-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lux-footer-list li {
    margin-bottom: 16px;
}

.lux-footer-list a {
    font-family: var(--font-sans);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.lux-footer-list a:hover {
    color: #ffffff;
    transform: translateX(4px); /* Subtle luxurious slide interaction */
}

/* --- BOTTOM BAR --- */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.copyright {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.3);
}

.footer-socials {
    display: flex;
    gap: 25px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.4);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: #ffffff;
    transform: translateY(-2px); /* Micro-interaction lift */
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .footer-nav-block { gap: 40px; }
}

@media (max-width: 768px) {
    .site-footer { padding: 80px 0 30px; }
    .footer-main-row { flex-direction: column; gap: 60px; }
    .footer-nav-block { flex-wrap: wrap; gap: 40px 60px; }
    .footer-bottom-bar { flex-direction: column-reverse; gap: 25px; text-align: center; }
}