.site-footer{
margin-top:var(--space-7);
border-top:var(--border);
background:var(--color-bg-secondary);
}

.site-footer__inner{
padding-top:var(--space-6);
padding-bottom:var(--space-6);
}

.site-footer__top{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:32px;
}

.site-footer__brand{
display:flex;
gap:16px;
align-items:flex-start;
}

.site-footer__logo{
height:48px;
width:auto;
}

.site-footer ul{margin:0;padding:0}

.site-footer a{
color:var(--color-text-secondary);
font-size:var(--fs-6);
}

.site-footer a:hover{color:var(--color-accent-gold)}

.site-footer__newsletter form{
display:flex;
flex-direction:column;
gap:12px;
}

.site-footer__bottom{
margin-top:var(--space-5);
border-top:var(--border);
padding-top:var(--space-3);
text-align:center;
}

.consent{
position:fixed;
bottom:16px;
left:50%;
transform:translateX(-50%);
background:var(--color-bg-elevated);
border:var(--border);
border-radius:var(--radius-lg);
padding:16px 20px;
box-shadow:var(--shadow-elevated);
max-width:480px;
width:calc(100% - 32px);
display:none;
}

.consent.show{display:block}

.consent__inner{
display:flex;
flex-direction:column;
gap:12px;
text-align:center;
}

.consent__actions{
display:flex;
justify-content:center;
gap:12px;
}
