/* ══ STICKY FOOTER ══════════════════════════════════════════════════════════ */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.site-footer {
    margin-top: auto;
}

/* ══ SHARED FOOTER ══════════════════════════════════════════════════════════ */
.site-footer {
    background: #0f0f0f;
    color: rgba(255,255,255,.45);
    padding: 40px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: .78rem;
    letter-spacing: .03em;
    line-height: 1.7;
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}
.footer-col strong {
    color: rgba(255,255,255,.75);
    font-weight: 600;
}
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}
.footer-contact {
    text-align: right;
}
.site-footer a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .2s;
}
.site-footer a:hover {
    color: #c8963e;
}

@media (max-width: 768px) {
    .site-footer { padding: 32px 20px; }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: left;
    }
    .footer-legal { align-items: flex-start; }
    .footer-contact { text-align: left; }
}

/* ══ COOKIE BAR ═════════════════════════════════════════════════════════════ */
#cookie-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: #111;
    border-top: 1px solid rgba(200,150,62,.3);
    padding: 14px 32px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: .82rem;
    color: rgba(255,255,255,.7);
    flex-wrap: wrap;
}
#cookie-bar a { color: #c8963e; }
#cookie-bar-btn {
    background: #c8963e; color: #fff; border: none; border-radius: 6px;
    padding: 8px 20px; font-size: .8rem; font-weight: 600; cursor: pointer;
    white-space: nowrap; font-family: inherit; flex-shrink: 0;
    transition: background .2s;
}
#cookie-bar-btn:hover { background: #b07830; }
@media (max-width: 600px) {
    #cookie-bar { flex-direction: column; align-items: flex-start; padding: 14px 20px; }
}
