/* ============================================================
   Site Footer — sticky at bottom, always visible
   Two lines: brand+copyright, then policy links + social
   ============================================================ */

.site-footer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: var(--footer-h);
    z-index: 100;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.55);
    border-top: 1px solid rgba(212, 170, 85, 0.15);
}

.site-footer__inner {
    max-width: var(--container);
    height: 100%;
    margin: 0 auto;
    padding: 1rem var(--gutter);
    display: flex;
    flex-direction: column;
    justify-content: center;
 /*   gap: 0.85rem; */
 }

.site-footer__line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ── Line 1: brand + copyright ─────────────────────────────── */
.site-footer__line--top {
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer__brand {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.site-footer__brand strong {
    color: var(--gold-light);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.site-footer__divider {
    opacity: 0.4;
    margin: 0 0.2rem;
}
.site-footer__copy {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}

/* ── Line 2: policies + social ─────────────────────────────── */
.site-footer__links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.5rem;
    font-size: 0.75rem;
}
.site-footer__links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.site-footer__links a:hover { color: var(--gold-light); }

.site-footer__social {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.site-footer__social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    text-decoration: none;
}
.site-footer__social a:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-2px);
}

/* ── Mobile ────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .site-footer__inner {
        padding: 0.8rem var(--gutter);
        gap: 0.6rem;
    }
    .site-footer__line { gap: 0.8rem; }
    .site-footer__line--top { padding-bottom: 0.6rem; }
    .site-footer__brand,
    .site-footer__copy { font-size: 0.7rem; }
    .site-footer__brand strong { font-size: 0.9rem; }
    .site-footer__links { gap: 0.6rem 1.1rem; font-size: 0.7rem; }
    .site-footer__social a { width: 28px; height: 28px; }
    .site-footer__social svg { width: 15px; height: 15px; }
}
