.footer {
  background: #1A2420;
  padding: var(--space-8) var(--space-4);
}

@media (min-width: 1100px) {
  .footer {
    padding: var(--space-8) 80px;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__logo-svg {
  display: block;
  color: var(--brand);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--text-3);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__links a {
  font-size: 0.9375rem;
  color: #9EB2AA;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--text-inverse);
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-1);
}

@media (min-width: 768px) {
  .footer__right {
    align-items: flex-end;
  }
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: var(--text-sm);
  transition: color 0.2s;
}

.footer__social:hover {
  color: #9EB2AA;
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-3);
  opacity: 0.7;
}
