/* ── SITE FOOTER ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid #eee;
  padding: 52px 40px 32px;
  margin-top: 40px;
  background: #fafafa;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 32px;
  margin-bottom: 48px;
}

.footer-col-title {
  font-family: sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  font-family: sans-serif;
  font-size: 0.78rem;
  color: #888;
  text-decoration: none;
  transition: color 0.15s;
  line-height: 1.3;
  display: block;
}

.footer-col ul li a:hover { color: #111; }
.footer-col ul li a.active { color: #111; font-weight: 600; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo-text {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 0.95rem;
  text-decoration: none;
  color: #111;
}
.footer-logo-text .bold { font-weight: 700; font-style: italic; }
.footer-logo-text .light { font-weight: 300; }

.footer-copy {
  font-family: sans-serif;
  font-size: 0.72rem;
  color: #bbb;
  letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; }
  .site-footer { padding: 36px 20px 24px; }
}

@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; }
}
