footer {
  background: var(--ink);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 28px;
}

.fbm {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}
.fbm-box {
  width: 26px;
  height: 26px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .68rem;
  font-weight: 600;
}
.fbm-text {
  font-family: "Instrument Serif", serif;
  font-size: 1.05rem;
  color: #fff;
}
.fbm-text em { font-style: italic; color: var(--red); }

.f-desc {
  font-size: .76rem;
  color: rgba(255,255,255,.3);
  line-height: 1.75;
  max-width: 230px;
  margin-bottom: 18px;
}

.nova-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,.09);
  padding: 5px 11px;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}
.nova-pill b { color: var(--gold); }

.fcol h4 {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.22);
  margin-bottom: 14px;
}
.fcol a {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.42);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color .2s;
}
.fcol a:hover { color: #fff; }

.footer-btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .68rem;
  color: rgba(255,255,255,.18);
}
.footer-btm a {
  color: rgba(255,255,255,.28);
  text-decoration: none;
}
.footer-btm a:hover { color: #fff; }

/* Responsive */
@media(max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media(max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-btm { flex-direction: column; gap: 8px; text-align: center; }
}