/* Footer */

.site-footer {
  background: white;
  width: 100%;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  margin-top: 3rem;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-branding {
  flex: 1;
}

.footer-company-name {
  font-family: 'Aleo', serif;
  color: var(--green);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-contact {
  flex: 1;
  text-align: center;
}

.footer-address {
  font-style: normal;
  margin-bottom: 0.25rem;
}

.footer-email a {
  color: inherit;
  text-decoration: none;
}

.footer-email a:hover {
  text-decoration: underline;
}

.footer-legal {
  flex: 1;
  text-align: right;
  font-size: 0.95rem;
}

.footer-legal p,
.footer-email,
.footer-address {
  margin: 0;
}

/* Tablet and Mobile */

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-branding,
  .footer-contact,
  .footer-legal {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .footer-company-name {
    font-size: 1.75rem;
  }
}