/*
 * Footer V2 — matches header-v2 palette
 * Dark bar, crisp red accents
 */

.site-footer-v2 {
    --footer-v2-bg: #0E0E0E;
    --footer-v2-bg-bottom: #141414;
    --footer-v2-text: rgba(255, 255, 255, 0.92);
    --footer-v2-text-muted: rgba(255, 255, 255, 0.65);
    --footer-v2-accent: #EF4444;
    --footer-v2-accent-hover: #FF6B6B;
    --footer-v2-border: #fff;
    --footer-v2-max-width: 1400px;

    background: var(--footer-v2-bg);
    color: var(--footer-v2-text);
    border-top: 1px solid var(--footer-v2-border);
}

.site-footer-v2__main {
    max-width: var(--footer-v2-max-width);
    margin: 0 auto;
    padding: 80px 24px 64px;
}

.site-footer-v2__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.site-footer-v2__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: var(--footer-v2-text);
    margin: 0 0 24px;
}

.site-footer-v2__address {
    font-family: Inter, Montserrat, system-ui, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-style: normal;
    color: var(--footer-v2-text-muted);
    margin: 0 0 24px;
}

.site-footer-v2__phone {
    color: var(--footer-v2-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.site-footer-v2__phone:hover {
    color: var(--footer-v2-accent-hover);
}

.site-footer-v2__social {
    display: flex;
    gap: 16px;
}

.site-footer-v2__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid var(--footer-v2-border);
    background: transparent;
    color: var(--footer-v2-text);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-footer-v2__social-link:hover {
    background: var(--footer-v2-accent);
    border-color: var(--footer-v2-accent);
    color: #fff;
}

.site-footer-v2__heading {
    font-family: Montserrat, Inter, system-ui, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--footer-v2-text);
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--footer-v2-border);
}

.site-footer-v2__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer-v2__nav a {
    font-family: Inter, Montserrat, system-ui, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--footer-v2-text-muted);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer-v2__nav a:hover {
    color: var(--footer-v2-accent);
    transform: translateX(4px);
}

.site-footer-v2__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.site-footer-v2__badge-img {
    height: 32px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 2px;
}

.site-footer-v2__bottom {
    border-top: 1px solid var(--footer-v2-border);
    background: var(--footer-v2-bg-bottom);
    max-width: var(--footer-v2-max-width);
    margin: 0 auto;
    padding: 32px 24px;
    text-align: center;
}

.site-footer-v2__copyright {
    font-family: Inter, Montserrat, system-ui, sans-serif;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.04em;
    color: var(--footer-v2-text-muted);
    margin: 0;
}

@media (min-width: 768px) {
    .site-footer-v2__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 64px 48px;
    }

    .site-footer-v2__brand {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .site-footer-v2__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 80px 48px;
    }

    .site-footer-v2__brand {
        grid-column: auto;
    }
}
