footer {
  background: rgba(0,0,0,.25);
  border-top: 1px solid var(--bord);
  padding: 36px var(--px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 700px) {
  footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.f-logo {
  font-family: 'Lexend Zetta', sans-serif;
  font-size: 14px;
  font-weight: 200;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.f-base {
  font-size: 8px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--beige);
  opacity: .35;
  margin-top: 4px;
}

.f-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  list-style: none;
}

.f-links a {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--beige);
  opacity: .35;
  text-decoration: none;
  transition: opacity .25s;
  cursor: pointer;
}

.f-links a:hover {
  opacity: .8;
}

.f-copy {
  font-size: 10px;
  color: var(--beige);
  opacity: .2;
}