footer {
  background: var(--dark);
  border-top: 1px solid rgba(222,192,140,.1);
  padding: 2.5rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.f-logo img {
  height: 26px;
  width: auto;
  opacity: .65;
}
.f-copy {
  font-size: .54rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.18);
}
.f-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}
.f-links a {
  font-size: .54rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  text-decoration: none;
  transition: color .2s;
}
.f-links a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
