.site-footer {
    background: var(--color-warm-porcelain);
    border-top: 1px solid var(--rule);
    padding: 2rem 1rem;
    font-size: 14px;
    color: var(--rule);
    width: var(--max-width);
    margin: 0 auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo img {
    max-height: 120px;
    width: auto;
}

.footer-subscribe {
    text-align: center;
    flex: 1;
}

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

.subscribe-btn {
    display: inline-block;
    border: 1px solid var(--ink);
    padding: 0.4rem 1rem;
    text-decoration: none;
    color: var(--cream);
    font-weight: 500;
    transition: all 0.3s ease;
    background: var(--ink );
}

.subscribe-btn:hover {
    background: var(--ink-soft );
    color: var(--cream);
}

.footer-right {
    text-align: right;
}

.footer-social a {
    margin-left: 0.5rem;
    font-size: 16px;
    color: var(--rule);
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--color-stone-gray);
}

.footer-privacy {
    margin-top: 0.5rem;
}

.footer-privacy a {
    font-size: 14px;
    color: var(--rule);
    text-decoration: none;
}
.footer-privacy a:hover {
    text-decoration: underline;
}
