footer {
  position: relative;
  width: 100%;
  min-height: auto;
  overflow: hidden;
  background-color: var(--d);
  color: var(--l);
}

#footer-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  cursor: none;
}

#footer-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  min-height: auto;
  padding: 2rem 2.5rem;
  pointer-events: auto;
}

.footer-inner > * {
  pointer-events: auto;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-legal a,
.footer-copy {
  font-family: var(--f-nm);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.125;
  text-transform: uppercase;
  color: var(--l);
}

.footer-bottom {
  position: static;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  width: auto;
  padding: 0;
}

@media (max-width: 1000px) {
  .footer-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
