/* ── FOOTER ─────────────────────────────────────────────────── */
#site-footer {
  background: #0a0a0a;
  border-top: .5px solid #1a1a1a;
  padding: 4rem 2.5rem 3rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-direction: row;
}


.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #f0f0f0;
}

.footer-claim {
  font-size: 16px;
  color: #444;
  font-style: italic;
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #666;
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-copy {
  font-size: 10px;
  letter-spacing: .1em;
  color: #333;
  margin-top: .5rem;
  text-transform: uppercase;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2.5rem;
}

@media (max-width: 768px) {
  #site-footer { padding: 3rem 1.2rem 2rem; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-brand img { width: 160px; }
  .footer-claim { font-size: 15px; color: #888; }
  .footer-links { gap: 1.2rem; }
  .footer-links a { font-size: 13px; color: #888; }
  .footer-copy {
    padding: 0;
    font-size: 12px;
    color: #666;
    margin-top: 1.5rem;
  }
}