/* ── footer.css ─────────────────────────────────────────────────
   Site footer, footer grid, social icons, footer bottom bar.
──────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.footer-brand p { font-size: .88rem; line-height: 1.6; }

.footer-col h4 {
  color: var(--white);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--sans);
  margin-bottom: 1rem;
}
.footer-col ul  { list-style: none; }
.footer-col li  { margin-bottom: .5rem; }
.footer-col a   { color: rgba(255,255,255,.65); font-size: .9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }

.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  color: var(--white);
  font-size: .85rem;
  transition: background var(--transition);
  text-decoration: none;
}
.footer-social a:hover { background: var(--accent); color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}
.footer-bottom a       { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
  /* Quick links redundant on mobile — nav dropdown covers them */
  .footer-col--links { display: none; }
}