/* Site Footer - links, logo, contact */
.site-footer {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 48px 24px 32px;
    background: #006d8f;
    border-top: 2px solid rgba(175, 200, 160, 0.5);
    font-family: 'Source Sans Pro', sans-serif;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 252, 247, 0.25);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.footer-logo {
    height: 140px;
    width: auto;
    max-width: 770px;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: filter 0.25s ease;
    margin-top: -55px;
    margin-bottom: -10px;
    clip-path: inset(20px 0 20px 0);
}

.footer-brand:hover .footer-logo,
.footer-brand:active .footer-logo {
    filter: drop-shadow(0 0 12px rgba(255, 252, 247, 0.95));
}

.footer-brand:active .footer-logo {
    filter: drop-shadow(0 0 18px rgba(255, 252, 247, 1));
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    align-items: center;
}

.footer-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 252, 247, 0.9);
    text-decoration: none;
}

.footer-links a:hover {
    color: #fffcf7;
    text-decoration: underline;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: rgba(255, 252, 247, 0.85);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #afc8a0;
}

.footer-contact-icon svg {
    display: block;
}

.footer-contact a,
.footer-contact-item span {
    color: rgba(255, 252, 247, 0.9);
}

.footer-contact a {
    font-weight: 500;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fffcf7;
    text-decoration: underline;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 252, 247, 0.7);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #afc8a0;
    text-decoration: none;
}

.footer-social a:hover {
    color: #fffcf7;
    text-decoration: underline;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 32px 16px 24px;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 28px;
        padding-bottom: 24px;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
