:root {
    --orange-strong: #f07a1f;
    --orange-deep: #d85a12;
    --text-dark: #2f1c0e;
}

.site-footer {
    background: linear-gradient(180deg, rgba(255, 244, 230, 0.4) 0%, #fff3e0 100%);
    border: 1px solid #ffd9b3;
    border-radius: 16px;
    margin-top: 64px;
    padding: 32px 20px 40px;
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

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

.footer-copy a {
    color: var(--orange-deep);
    text-decoration: none;
    font-weight: 700;
}

.footer-copy a:hover {
    color: var(--orange-strong);
}