/* ——— FOOTER ——— */
.footer {
  background: var(--black);
  padding: 4rem clamp(1.25rem, 4vw, 3.5rem) 0;
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1.2fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer__brand {
  display: flex;
  align-items: center;
}

.footer__brand .brand-logo {
  height: 56px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer__col a:hover {
  color: var(--white);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
}

.footer__contact a:hover {
  color: var(--red-soft);
}

.footer__linkedin {
  color: var(--red-soft);
  font-weight: 600;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.5rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__contact {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer__contact {
    text-align: left;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}
