/* Footer */
.footer {
  background: var(--green-900);
  padding: 80px 0 40px;
  color: var(--white);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 48px;
  filter: brightness(0) invert(1); /* Ensure logo is white if it's black by default */
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 13px;
  color: var(--white);
  transition: opacity 0.3s ease;
}

.footer-col a:hover {
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

.legal-links {
  display: flex;
  gap: 24px;
}

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

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 60px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer-col {
    min-width: 40%;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.footer-tagline {
  text-align: center;
  padding: 64px 0 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: 1.5px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  max-width: 320px;
}

.footer-address-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.footer-address-title {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.footer-address {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}
