/* ═══════════════════════════════════════════════════════════
   VERBATIM — Footer  ·  Minimalist Modern
═══════════════════════════════════════════════════════════ */

#footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-16) 0 0;
}

#footer h4,
#footer .footer-col-title { color: #FFFFFF; }
#footer p,
#footer .footer-tagline   { color: rgba(255,255,255,0.5); }
#footer .footer-links a   { color: rgba(255,255,255,0.6); }
#footer .footer-links a:hover { color: #FFFFFF; }
#footer .footer-legal     { color: rgba(255,255,255,0.4); }
#footer .footer-legal a   { color: rgba(255,255,255,0.5); }
#footer .footer-legal a:hover { color: #FFFFFF; }

.footer-grid {
  display: grid; gap: var(--space-10);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-12);
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* ── Brand column ── */
.footer-logo {
  font-family: var(--font-display); font-size: 24px; font-weight: 400;
  margin-bottom: var(--space-3);
  display: block; text-decoration: none;
  color: #FFFFFF;
}
.footer-logo:hover { opacity: 0.8; }
.footer-tagline {
  font-size: 14px; font-style: italic;
  margin-bottom: var(--space-5); line-height: 1.6;
}

/* Social icons */
.footer-social { display: flex; gap: var(--space-3); }
.footer-social-link {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--trans-fast); text-decoration: none;
}
.footer-social-link:hover { border-color: rgba(255,255,255,0.3); color: #FFFFFF; background: rgba(255,255,255,0.1); }
.footer-social-link svg { width: 16px; height: 16px; stroke: currentColor; }

/* ── Link columns ── */
.footer-col-title {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  font-family: var(--font-mono);
}
.footer-links li { margin-bottom: var(--space-3); }
.footer-links a {
  font-size: 14px; text-decoration: none;
  transition: color 0.2s;
}

/* ── Bottom bar ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-5) 0;
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  align-items: flex-start; justify-content: space-between;
}
.footer-legal {
  font-size: 12px; line-height: 1.6; max-width: 640px;
}
.footer-legal a { text-decoration: underline; }
