/* Site footer band: brand/logo, footer columns, socials, base row — split out of
   style.css. Used in the shared footer include on every page. */


/* Full-bleed band: without an opaque surface the fixed hex canvas shows through the footer. */
.site-footer { margin-top: 3rem; background: var(--clr-surface); border-top: 1px solid var(--clr-border); font-size: 0.9rem; }
.site-footer-inner { max-width: var(--content-width); margin: 0 auto; padding: 2rem 1.25rem 1.5rem; }
html.full-width .site-footer-inner { max-width: none; }

.site-footer-cols { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 1.5rem 2rem; }
.site-footer-brand p { margin: 0.5rem 0 0.75rem; color: var(--clr-text-muted); max-width: 30ch; }
.site-footer-logo { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; font-size: 1rem; color: var(--clr-text); }
.site-footer-logo:hover { color: var(--clr-link); }
.site-footer-social { display: flex; gap: 0.9rem; }

.site-footer-col { display: flex; flex-direction: column; gap: 0.4rem; }
.site-footer-col h2 { margin: 0 0 0.2rem; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--clr-text-muted); }
.site-footer a { color: var(--clr-text-muted); }
.site-footer a:hover { color: var(--clr-link); }
.site-footer-logo img { display: block; border-radius: var(--radius-small); }

.site-footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 1.5rem; margin-top: 1.75rem; padding-top: 1rem; border-top: 1px solid var(--clr-border); color: var(--clr-text-muted); font-size: 0.82rem; }

@media (max-width: 700px) {
	.site-footer-cols { grid-template-columns: 1fr 1fr; }
	.site-footer-brand { grid-column: 1 / -1; }
}
/* One column on phones: a short list beside a long one leaves a gap under the short one. */
@media (max-width: 480px) {
	.site-footer-cols { grid-template-columns: 1fr; gap: 1.25rem; }
}
