/* ================= FOOTER ================= */

footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.foot__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.foot__brand {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: .04em;
  margin-bottom: .5rem;
}
.foot__brand span {
  color: var(--red);
}
.foot__tagline {
  color: var(--text-muted);
  font-size: .88rem;
  max-width: 28ch;
  line-height: 1.6;
}
.foot__col-title {
  font-family: var(--font-sub);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.foot__links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.foot__links a {
  color: var(--text-muted);
  font-size: .88rem;
  transition: color .2s;
}
.foot__links a:hover {
  color: var(--red);
}

.foot__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.foot__copy {
  color: var(--text-faint);
  font-size: .8rem;
}
.foot__wpp {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-sub);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .2s;
}
.foot__wpp:hover {
  color: #25d366;
}
.foot__wpp svg {
  width: 18px;
  height: 18px;
}
