.site-footer {
    background: var(--ce-color-bg-subtle);
    padding: 64px 0 32px;
}

.site-footer .footer-logo img {
    width: 158px;
}

.site-footer .footer-copyright {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.85rem;
    margin-top: 16px;
    line-height: 1.6;
}

.site-footer .footer-copyright a {
    color: #4b5567;
    text-decoration: none;
}

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

.site-footer h5 {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--ce-color-navy);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 12px;
}

.site-footer ul li a {
    color: #374151;
    font-weight: 500;
    font-size: 0.93rem;
    text-decoration: none;
}

.site-footer ul li a:hover {
    color: var(--ce-color-primary);
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #eef0f4;
    color: var(--ce-color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--ce-color-primary);
    color: #fff;
}

.footer-bottom-row {
    border-top: 1px solid #e2e6ee;
    margin-top: 48px;
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.footer-bottom-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-row i {
    color: var(--ce-color-primary);
    font-size: 1.3rem;
}

.footer-bottom-row a {
    color: #4b5567;
    text-decoration: none;
}

.footer-bottom-row a:hover {
    color: var(--ce-color-primary);
}

/* ---- Scroll-to-top button ---- */
.scroll-to-top {
    position: fixed;
    right: 28px;
    bottom: 100px; /* cleared to sit above the Intercom chat launcher, which occupies the bottom-right corner */
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    color: var(--ce-color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--ce-shadow-sm);
    border: none;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #eef2ff;
}

@media (max-width: 767px) {
    .footer-bottom-row {
        flex-direction: column;
        gap: 12px;
    }
}
