footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .7);
  padding: 56px 0 0;
}

.footer-logo {
  display: block;
  width: auto;
  height: clamp(72px, 10vw, 96px);
  max-width: 100%;
  object-fit: contain;
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: white;
}

.footer-brand-sub {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 2px;
}

.footer-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
}

footer a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  font-size: .83rem;
  transition: color .2s;
}

footer a:hover {
  color: var(--cyan);
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background .2s;
}

.footer-social a:hover {
  background: var(--cyan);
  color: white;
}

.footer-bottom {
  background: rgba(0, 0, 0, .25);
  text-align: center;
  padding: 16px;
  font-size: .72rem;
  margin-top: 40px;
  color: rgba(255, 255, 255, .4);
}

.footer-bottom span {
  color: var(--cyan);
}
