.site-footer {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--rich-black) 100%);
    color: var(--cream);
    padding: 60px 0 0;
    margin-top: auto;
    border-top: 3px solid var(--gold);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-title {
    font-family: var(--font-elegant);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--gold);
    margin: 0 0 12px 0;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
}

.footer-text {
    color: var(--cream-dark);
    line-height: var(--leading-relaxed);
    font-size: var(--text-sm);
    margin: 0;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cream);
    font-size: var(--text-sm);
    margin-top: 8px;
}

.footer-location svg {
    color: var(--gold);
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--cream-dark);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
    padding-left: 16px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-5px);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-schedule {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-schedule li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-schedule .day {
    color: var(--gold);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

.footer-schedule .time {
    color: var(--cream-dark);
    font-size: var(--text-sm);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.social-link:hover {
    background: var(--gold);
    color: var(--rich-black);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cream-dark);
    font-size: var(--text-sm);
}

.contact-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.footer-bottom {
    background: var(--pure-black);
    padding: 24px 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    margin: 0;
    color: var(--cream-dark);
    font-size: var(--text-xs);
    line-height: 1.6;
}

.footer-bottom p + p {
    margin-top: 8px;
}

.footer-credit {
    color: rgba(250, 249, 246, 0.6);
}

.footer-credit .heart {
    color: var(--gold);
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-links a {
        padding-left: 0;
    }

    .footer-links a::before {
        display: none;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-location {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-schedule li {
        align-items: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}
