/* ============================================================
   FOOTER — Brenom Systems
   ============================================================ */

.site-footer {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 80px 40px 24px;
  width: 100%;
}

/* ---- Top Row ---- */
.site-footer__top {
  display: flex;
  align-items: flex-start;
  gap: 370px;
}

/* ---- Brand Column ---- */
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 322px;
  flex-shrink: 0;
}

.site-footer__brand-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.site-footer__logo img {
  display: block;
}

.site-footer__desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
}

.site-footer__email {
  font-size: 16px;
  font-weight: 500;
  color: var(--orange);
  text-decoration: none;
}

.site-footer__email:hover {
  text-decoration: underline;
}

/* ---- Nav Columns ---- */
.site-footer__nav {
  display: flex;
  gap: 104px;
  align-items: flex-start;
}

.site-footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__nav-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-footer);
  letter-spacing: 1.6px;
  white-space: nowrap;
}

.site-footer__nav-col a {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer__nav-col a:hover {
  color: var(--orange);
}

/* ---- Bottom Bar ---- */
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-footer__legal a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer__legal a:hover {
  color: var(--orange);
}
