/* ═══════════════════════════════════════════════════
   Подвал сайта (Footer)
═══════════════════════════════════════════════════ */
.site-footer {
    background: var(--surface-dark);
    border-top: 1px solid rgba(214, 175, 107, 0.12);
    padding: 48px 0 0;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214, 175, 107, 0.4), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(214, 175, 107, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo-link {
    flex-shrink: 0;
    display: block;
    opacity: 0.9;
    transition: opacity var(--transition);
}

.footer-logo-link:hover {
    opacity: 1;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.footer-brand-info strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: #f5e4c4;
    line-height: 1.2;
}

.footer-brand-info span {
    font-size: 0.78rem;
    color: rgba(255, 244, 233, 0.45);
    letter-spacing: 0.04em;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info p,
.footer-info a,
.footer-info span {
    font-size: 0.875rem;
    color: rgba(255, 244, 233, 0.6);
    margin: 0;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-info a:hover {
    color: var(--accent-soft);
}

.footer-hours {
    font-size: 0.8rem !important;
    color: rgba(255, 244, 233, 0.4) !important;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-social-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 244, 233, 0.4);
}

.footer-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 244, 226, 0.06);
    border: 1px solid rgba(214, 175, 107, 0.15);
    color: rgba(255, 244, 233, 0.55);
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.footer-social-link:hover {
    background: rgba(74, 118, 168, 0.22);
    border-color: rgba(74, 118, 168, 0.5);
    color: #8ab4e0;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0 24px;
    font-size: 0.8rem;
    color: rgba(255, 244, 233, 0.3);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 244, 233, 0.35);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent-soft);
}

/* ═══════════════════════════════════════════════════
   Sticky CTA — мобильная панель внизу экрана
═══════════════════════════════════════════════════ */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 10px 16px 14px;
    background: var(--surface-dark);
    border-top: 1px solid rgba(214, 175, 107, 0.18);
    gap: 10px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.28);
}


.sticky-cta-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex: 1;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(214, 175, 107, 0.3);
    background: rgba(214, 175, 107, 0.1);
    color: var(--accent-soft);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition);
}

.sticky-cta-phone:hover {
    background: rgba(214, 175, 107, 0.2);
    border-color: rgba(214, 175, 107, 0.5);
}

.sticky-cta-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1.4;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--surface-dark);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background var(--transition), transform var(--transition);
}

.sticky-cta-book:hover {
    background: #e0c070;
    transform: translateY(-1px);
}

