.site-footer {
    padding: 3rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(128, 128, 128, 0.2);
}

.footer-content {
    max-width: 6xl;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    gap: 1.5rem;
}

.footer-brand a {
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--text);
}

.footer-brand p {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text);
    opacity: 0.7;
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-copy {
    font-size: 0.875rem;
    color: var(--text);
}

.footer-copy a {
    color: var(--text);
}