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

.footer {
  background: var(--color-dark);
  color: var(--color-beige);
  padding: 5.5rem 4rem 3.5rem;
}

/* ── Top row ────────────────────────────────────────────── */
.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-light);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.footer__statement {
  font-size: .88rem;
  font-weight: 300;
  color: rgba(245, 240, 232, .35);
  margin-top: .5rem;
  line-height: 1.5;
}

.footer__tagline {
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .12em;
  color: rgba(245, 240, 232, .2);
  margin-top: 1.2rem;
}

/* ── Nav columns ────────────────────────────────────────── */
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.footer__col {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, .28);
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
}

.footer__col li a {
  font-size: .82rem;
  font-weight: 300;
  color: rgba(245, 240, 232, .45);
  transition: color .2s;
}

.footer__col li a:hover {
  color: var(--color-beige);
}

/* ── Bottom row ─────────────────────────────────────────── */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: rgba(245, 240, 232, .18);
  letter-spacing: .06em;
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__links a {
  font-family: var(--font-mono);
  font-size: .62rem;
  color: rgba(245, 240, 232, .18);
  transition: color .2s;
}

.footer__links a:hover {
  color: rgba(245, 240, 232, .5);
}
