.site-footer {
    background-color: #111110;
    color: #F5F2EC;
    overflow: hidden;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    gap: 64px;
    padding: 80px 20px 64px;
}

/* Column 1 — Identity */
.footer-logo img {
    height: 72px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(1.1);
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.4;
    color: #F5F2EC;
    margin-bottom: 16px;
}

.footer-descriptor {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(245, 242, 236, 0.45);
}

/* Column 2 — Navigation */
.footer-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 28px;
}

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

.footer-nav ul li {
    margin-bottom: 14px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: rgba(245, 242, 236, 0.7);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #F5F2EC;
}

/* Column 3 — Legal / Registration */
.footer-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.footer-details-list li {
    font-size: 14px;
    color: rgba(245, 242, 236, 0.65);
    line-height: 1.7;
    margin-bottom: 8px;
}

.detail-label {
    color: #F5F2EC;
    font-weight: 500;
}

.footer-legal-note {
    font-size: 13px;
    color: rgba(245, 242, 236, 0.35);
    line-height: 1.7;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    margin-top: 8px;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Only hide for animation when JS is available */
.js-loaded .footer-bottom {
    opacity: 0;
    transform: translateY(20px);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(245, 242, 236, 0.4);
    margin: 0;
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(245, 242, 236, 0.25);
    margin: 0;
    font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 60px 20px 48px;
    }

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