/* ========================================================= */
/* Footer Styles (5-Column Layout + Monogram Mark)           */
/* ========================================================= */

.footer {
  padding: 100px 24px 44px;
  background: #08080A;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #D7E2EA;
  position: relative;
  z-index: 5;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* 5-Column Top Grid */
.footer-columns {
  display: grid;
  grid-template-columns: 2.2fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 72px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

/* Column 1: Brand / Work With Us */
.footer-col--brand {
  padding-right: 24px;
}

.footer-col__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #9BA3AF;
  margin-bottom: 12px;
  font-weight: 400;
  display: block;
}

.footer-col__heading {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #F4F4F4;
  line-height: 1.3;
  max-width: 290px;
  margin-bottom: 26px;
  letter-spacing: -0.015em;
}

.footer-col__cta {
  display: flex;
}

/* Columns 2-5 */
.footer-col__title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #717886;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col__list a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 450;
  color: #9BA3AF;
  text-decoration: none;
  transition: color 0.25s ease;
  line-height: 1.4;
}

.footer-col__list a:hover {
  color: #FFFFFF;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom__monogram {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #4A5160;
  line-height: 1;
  user-select: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-bottom__monogram:hover {
  color: #717886;
}

.footer-bottom__legal {
  display: flex;
  gap: 24px;
}

.footer-bottom__legal a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom__legal a:hover {
  color: #A1A8B0;
}

.footer-bottom__copyright {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #6B7280;
}

@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .footer-col--brand {
    grid-column: span 3;
    margin-bottom: 20px;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 70px 20px 36px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-col--brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-bottom__legal {
    justify-content: center;
  }
}
