/* =========================================================================
   Component: fm-footer
   Dark footer with column links, legal strip and contact info.
   ========================================================================= */

.fm-footer {
  background: var(--fm-black);
  color: var(--fm-gray-200);
  padding: var(--fm-sp-8) 0 var(--fm-sp-6);
  margin-top: var(--fm-sp-9);
}

.fm-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--fm-sp-6);
}

@media (min-width: 992px) {
  .fm-footer__cols {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--fm-sp-7);
  }
}

.fm-footer__title {
  font-size: var(--fm-fs-sm);
  color: var(--fm-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 var(--fm-sp-4);
  font-weight: var(--fm-fw-bold);
}

.fm-footer__col ul li { margin: 0 0 var(--fm-sp-2); }

.fm-footer__col a {
  color: var(--fm-gray-200);
  font-size: var(--fm-fs-sm);
}
.fm-footer__col a:hover { color: var(--fm-white); }

.fm-footer__contact {
  border-top: 1px solid var(--fm-gray-600);
  border-bottom: 1px solid var(--fm-gray-600);
  margin: var(--fm-sp-7) 0 var(--fm-sp-5);
  padding: var(--fm-sp-5) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--fm-sp-5);
  align-items: center;
  justify-content: space-between;
}

.fm-footer__phone {
  font-size: var(--fm-fs-lg);
  color: var(--fm-white);
  font-weight: var(--fm-fw-bold);
}

.fm-footer__legal {
  font-size: var(--fm-fs-xs);
  color: var(--fm-gray-200);
  display: flex;
  flex-wrap: wrap;
  gap: var(--fm-sp-4);
  justify-content: space-between;
}

.fm-footer__legal a { color: var(--fm-gray-200); }
