/* ===== FOOTER ===== */

.footer {
  background-color: var(--off-white);
  color: #2a2e2c;
  padding: 3.5rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__logo-img {
  height: 44px;
  width: auto;
  opacity: 0.85;
}

.footer__logo-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2a2e2c;
  letter-spacing: 0.1em;
}

.footer__tagline {
  font-size: 0.88rem;
  color: #2a2e2c;
  line-height: 1.6;
  max-width: 260px;
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.2rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__link {
  font-size: 0.9rem;
  color: #2a2e2c;
  transition: color 0.25s ease;
}

.footer__link:hover {
  color: var(--green-light);
}

.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #2a2e2c;
}

.footer__contact-icon {
  color: var(--green-light);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.8rem;
  color: #2a2e2c;
}

.footer__vat {
  font-size: 0.8rem;
  color: #2a2e2c;
}

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

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
