.site-footer {
    background: var(--dark-bg, #1a1a1a);
    color: rgba(255, 255, 255, 0.6);
    padding: 3rem 5%;
    text-align: center;
}

.site-footer p {
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.2rem 0;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.footer-social-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social-icon:nth-child(2) svg,
.footer-social-icon:nth-child(3) svg {
    fill: currentColor;
    stroke: none;
}

.footer-social-icon:hover {
    color: #ffffff;
    border-color: var(--primary-red, #e12802);
    background: var(--primary-red, #e12802);
    transform: translateY(-2px);
}

.site-footer p:last-child {
    margin-bottom: 0;
}
