/* ─── NALSC LOGO ─── */
.footer-nalsc-img {
  width: 100px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

/* ─── NALSC FOOTER STRIP ─── */
.footer-nalsc {
  background: rgba(0, 184, 162, 0.07);
  border-top: 1px solid rgba(0, 184, 162, 0.18);
  border-bottom: 1px solid rgba(0, 184, 162, 0.1);
  padding: 1.4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.footer-nalsc-seal {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 184, 162, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-nalsc-text {
  display: flex;
  flex-direction: column;
}
.footer-nalsc-text strong {
  font-size: var(--text-ui);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-nalsc-text span {
  font-size: var(--text-ui);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.1rem;
}
.footer-nalsc-divider {
  width: 1px;
  height: 28px;
  background: rgba(0, 184, 162, 0.2);
}
.footer-nalsc-note {
  font-size: var(--text-ui);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
  max-width: 480px;
}

/* ─── FOOTER ─── */
footer {
  background: #080808;
  border-top: none;
}
.footer-main {
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.footer-copy {
  font-size: var(--text-ui-sm);
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
}

@media (max-width: 960px) {
  .footer-nalsc {
    padding: 1.4rem 2rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .footer-nalsc-divider {
    display: none;
  }
  .footer-main {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
  }
}
