/* ══════════════════════════════
   SITE FOOTER — shared across every page (loaded via css/footer.css)
   Bordered square social icons, kept in the site's own cream/dark
   theme (same palette as the navbar) instead of a dark navy block.
══════════════════════════════ */
.site-footer {
  background: #f5f3f0;
  padding: 1.2rem 80px;
}

.site-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer-copy {
  font: 400 13px/1.4 'DM Sans', sans-serif;
  color: #6b7280;
  margin: 0;
}

.site-footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* bordered square icon buttons */
.site-footer-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  color: #4a5568;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.site-footer-links a:hover {
  color: #8b0000;
  border-color: #8b0000;
  background: rgba(139, 0, 0, 0.06);
}

.site-footer-links svg {
  width: 17px;
  height: 17px;
}
/* mail icon is drawn with strokes, the logo icons are solid shapes */
.site-footer-links svg.fi-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-footer-links svg.fi-fill { fill: currentColor; }

/* ── TABLET & MOBILE ── */
@media (max-width: 768px) {
  .site-footer-links { gap: 8px; }
  .site-footer-links a { width: 30px; height: 30px; border-radius: 6px; }
  .site-footer-links svg { width: 14px; height: 14px; }
}

/* ── MOBILE ── */
@media (max-width: 560px) {
  .site-footer { padding: 1.25rem 20px; }
  .site-footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}
