/* ============================================================
   Willow & Moss - Footer
   ============================================================ */

#site-footer {
  background-color: var(--green-dark);
}

.footer-main {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-xl);
}

/* Column headings */
.footer-col-heading {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-faint);
  margin-bottom: 1.1rem;
}

/* Col 1 - Brand */
.footer-brand-logo {
  display: block;
  margin-bottom: 0.85rem;
  text-decoration: none;
}

.footer-brand-logo img {
  display: block;
  width: 160px;
  max-width: 100%;
  height: auto;
}

.footer-brand-blurb {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-faint);
  line-height: 1.65;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: var(--space-md);
}

.footer-badges img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* Col 2 - Explore */
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-links a:hover {
  color: var(--cream);
}

/* Col 3 - Find us */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-contact a {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-contact a:hover {
  color: var(--cream);
}

/* Social row */
.footer-social {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
}

.footer-social a svg {
  flex-shrink: 0;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-faint);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--cream);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 800px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer-col:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 500px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
  }

  .footer-col:first-child {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}
