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

.footer-wrap {
  border-top: 1px solid var(--border);
  max-width: 1380px;
  margin: 0 auto;
  padding: 4.5rem 4rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 4rem;
}
.footer-brand p {
  color: var(--gray);
  font-size: .875rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-col h5 {
  font-size: .7rem;
  font-family: 'Space Mono', monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.footer-col a {
  text-decoration: none;
  color: var(--off-white);
  font-size: .9rem;
  transition: color .3s;
}
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.75rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
}
.footer-bottom p {
  color: var(--gray);
  font-size: .78rem;
  font-family: 'Space Mono', monospace;
}

.fsocials { display: flex; gap: .75rem; }
.fsocial {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--gray);
  font-size: .75rem;
  font-family: 'Space Mono', monospace;
  transition: border-color .3s, color .3s, background .3s;
  cursor: none;
}
.fsocial:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0,201,177,.05);
}
