.footer01 {
  background: var(--color-text);
  color: var(--color-bg);
  padding: var(--section-y) var(--page-pad) var(--space-6);
}

.footer01__inner {
  max-width: var(--content-max);
  margin-inline: auto;
}

.footer01__top {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
}

.footer01__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 20rem;
}

.footer01__lead {
  color: color-mix(in srgb, var(--color-bg) 70%, transparent);
  line-height: var(--lh-body);
}

.footer01__bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  padding-top: var(--space-5);
  border-top: var(--line) solid color-mix(in srgb, var(--color-bg) 16%, transparent);
}

.footer01__tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-4) var(--space-5);
}

@media (min-width: 768px) {
  .footer01__top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-6);
  }

  .footer01__bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: start;
  }

  .footer01__tools {
    justify-content: flex-end;
  }
}
