/* css/sections/footer.css */

#site-footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 4rem;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Logo block */
.footer-logo-wrap { display: flex; flex-direction: column; gap: 10px; }
.footer-logo      { display: flex; align-items: center; gap: 12px; }
.footer-logo img  { height: 32px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; letter-spacing: 0.06em; }
.footer-tagline   { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); }

/* Link columns */
.footer-link-cols { display: flex; gap: 4rem; }
.footer-col-title { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1rem; }
.footer-col ul    { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a  { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color var(--ease-base); }
.footer-col ul a:hover { color: var(--white); }

/* Bottom bar */
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.25);
}

@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr; } }
@media (max-width: 480px)  { .footer-link-cols { flex-direction: column; gap: 2rem; } }
