/* ==========================================================================
   Forest 1961 - Footer (тёмная тема - фирменный тил)
   ========================================================================== */

.site-footer {
    background: var(--color-teal);
    color: #fff;
    padding: 4rem 0 0;
    margin-top: 0;
}
.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-col h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-stone);
    margin-bottom: 1.1rem;
    font-weight: 600;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-legal-links, .footer-main-menu, .footer-rooms {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-legal-links li, .footer-main-menu li, .footer-rooms li { margin-bottom: 0.6em; }
.footer-legal-links a, .footer-main-menu a, .footer-rooms a {
    font-size: 0.92rem;
    color: #fff;
    opacity: 0.75;
    transition: opacity var(--transition-base);
}
.footer-legal-links a:hover, .footer-main-menu a:hover, .footer-rooms a:hover { opacity: 1; }

.contacts-info { font-size: 0.92rem; font-style: normal; margin-bottom: 1.2rem; }
.contacts-info div { margin-bottom: 0.4em; opacity: 0.85; }
.contacts-info a { color: #fff; }
.contacts-info a:hover { opacity: 1; text-decoration: underline; }

.footer-social { list-style: none; display: flex; gap: 0.6rem; margin: 0; padding: 0; }
.footer-social a {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #fff;
    transition: background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}
.footer-social a:hover { background: #fff; border-color: #fff; color: var(--color-teal); }

.footer-made-by {
    text-align: center;
    padding: 1.5rem var(--container-padding);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.82rem;
}
.footer-made-by a { color: #fff; opacity: 0.6; }
.footer-made-by a:hover { opacity: 1; }

@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .site-footer { margin-top: 4rem; }
}
