/* Footer — matches source exactly */
.site-footer {
    background-color: var(--bg);
    border-top: 1px solid var(--white-10);
}

/* Office Locations Grid */
.footer-offices { padding: 3rem 0 2rem; }

.footer-offices-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-brand-tagline {
    color: var(--white-70);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.footer-brand-accent {
    width: 64px;
    height: 4px;
    background: var(--accent);
    margin-top: 1rem;
}

.footer-office { text-align: center; }

.footer-office-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--accent);
}

.footer-office h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-office p {
    font-size: 0.8125rem;
    color: var(--white-50);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.footer-office-phone {
    display: block;
    color: var(--white-70);
    font-size: 0.8125rem;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.15s;
}
.footer-office-phone:hover { color: var(--accent); }

.footer-office-dir {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    background-color: var(--accent);
    border: none;
    border-radius: 0;
    text-decoration: none;
    transition: background-color 0.15s;
}
.footer-office-dir:hover {
    background-color: var(--accent-hover);
    color: var(--white);
}

/* Links Grid */
.footer-links-section {
    padding: 2rem 0;
    border-top: 1px solid var(--white-10);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-heading {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
    color: var(--white-50);
    font-size: 0.8125rem;
    text-decoration: none;
    transition: color 0.15s;
}
.footer-col a:hover { color: var(--accent); }

/* Social */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--white-50);
    transition: border-color 0.15s, color 0.15s;
}
.social-icon:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Bottom bar */
.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--white-30);
    margin-bottom: 0.75rem;
}

.footer-disclaimer {
    font-size: 0.6875rem;
    color: var(--white-25);
    line-height: 1.6;
}

/* Brand accent bar responsive centering */
@media (max-width: 1024px) {
    .footer-brand-accent { margin: 1rem auto 0; }
}
@media (min-width: 1025px) {
    .footer-brand-accent { margin: 1rem 0 0; }
}

/* Mobile sticky phone CTA — matches source: fixed bottom, hidden on desktop */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--accent);
}
.mobile-sticky-cta__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
}

@media (max-width: 1024px) {
    .mobile-sticky-cta { display: block; }
    /* Add bottom padding to body so footer content isn't hidden behind the sticky bar */
    body { padding-bottom: 52px; }
}
