/* === Footer === */
.site-footer {
    background: #4D3F36;
    color: #F4EFEA;
    margin-top: auto;
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr 0.8fr;
    gap: 40px;
}

/* Headings */
.site-footer__heading {
    font-family: 'Inter Tight', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.site-footer__subheading {
    font-family: 'Inter Tight', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 20px 0 10px;
}

/* About */
.site-footer__col--about p {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #F4EFEA;
    opacity: 0.85;
}

/* Footer CTA Button */
.footer-cta {
    display: inline-block;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    padding: 10px 24px;
    border-radius: 50px;
    margin-top: 20px;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    opacity: 0;
    transform: translateY(12px);
    animation: footerCtaFadeUp 0.6s ease 0.3s forwards;
}

.footer-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
}

@keyframes footerCtaFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Quick Links */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-links .menu-item a {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    color: #F4EFEA;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.footer-links a:hover,
.footer-links .menu-item a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Contact */
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact__item {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    color: #F4EFEA;
    opacity: 0.85;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact__item svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.8;
}

.footer-contact__item a {
    color: #F4EFEA;
    transition: opacity 0.2s ease;
}

.footer-contact__item a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Hours */
.footer-hours {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-hours li {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    color: #F4EFEA;
    opacity: 0.85;
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}

/* Social */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(244, 239, 234, 0.3);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-social__link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(244, 239, 234, 0.6);
    transform: translateY(-2px);
}

.footer-social__link:active {
    transform: translateY(0) scale(0.95);
}

.footer-social__link svg {
    width: 18px;
    height: 18px;
}

/* Bottom Bar */
.site-footer__bottom {
    background: #3d322a;
}

.site-footer__bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.site-footer__copyright,
.site-footer__credit {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    color: rgba(244, 239, 234, 0.6);
}

.site-footer__credit a {
    color: rgba(244, 239, 234, 0.85);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.site-footer__credit a:hover {
    color: #F4EFEA;
    text-decoration: underline;
}

/* === Footer Responsive === */
@media (max-width: 900px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 20px 32px;
    }
}

@media (max-width: 600px) {
    .site-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
}
