/* Harvey-style footer - shared across all Locarda landing pages */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 3rem clamp(1.5rem, 5vw, 3rem) 2.5rem;
    background: #0a0a0a;
}

.footer-inner {
    max-width: min(1280px, 94vw);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem 4rem;
    justify-content: space-between;
}

.footer-brand {
    flex-shrink: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 36px;
    width: 36px;
    border-radius: 8px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #6b6b6b;
    line-height: 1.5;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 3rem;
    flex: 1;
    justify-content: flex-end;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a0a0a0;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.9375rem;
    color: #6b6b6b;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-col a[href^="mailto:"] {
    color: #3b82f6;
}

.footer-col a[href^="mailto:"]:hover {
    color: #60a5fa;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 1.25rem 2rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 2rem;
        max-width: 100%;
        min-width: 0;
    }

    .footer-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 2rem;
        justify-content: stretch;
        width: 100%;
    }

    .footer-col {
        min-width: 0;
    }

    .footer-col h4 {
        margin-bottom: 0.75rem;
    }

    .footer-col a {
        padding: 0.35rem 0;
        margin-bottom: 0;
    }
}
