/* ================================================================
   BlueGlove — footer.css
   ================================================================ */

.site-footer {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 3rem var(--pad-x) 2rem;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
}
.footer__brand small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 2px;
}
.footer__links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer__links a {
  font-size: 0.8rem;
  color: var(--gray-400);
  transition: color var(--ease);
}
.footer__links a:hover { color: var(--copper-light); }
.footer__contact {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-align: right;
  line-height: 1.7;
}
.footer__contact a { color: var(--copper-light); transition: color var(--ease); }
.footer__contact a:hover { color: var(--off-white); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: center;
}
@media (max-width: 640px) {
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__contact { text-align: left; }
}
