/* =========================================================
   FOOTER.CSS — Light footer + full-width graphic at the bottom
   Backgrounds are pure white so the graphic blends seamlessly.
   ========================================================= */

/* ---- Footer main ---- */
.site-footer {
  background: #ffffff;
  border-top: var(--border-1);
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  width: 100%;
}

/* Brand column */
.footer-brand .logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.footer-tagline {
  margin-top: 0.9rem;
  max-width: 300px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: var(--border-1);
  border-radius: 8px;
  background: var(--bg);
  color: var(--navy);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.footer-socials a:hover {
  transform: translate(-2px, -2px);
  background: var(--navy);
  color: #fff;
  box-shadow: 3px 3px 0 rgba(105, 159, 71, 0.6);
}

.footer-socials svg {
  width: 15px;
  height: 15px;
}

/* Link columns */
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy);
  margin-bottom: 0.9rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--green-dark);
  padding-left: 4px;
}

/* Contact column */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.fc-item [data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--green-dark);
  flex-shrink: 0;
  margin-top: 3px; /* keep icon aligned with first text line even when text wraps */
}

.fc-item a {
  color: var(--text-soft);
  transition: color 0.2s var(--ease);
}

.fc-item a:hover {
  color: var(--green-dark);
}

/* Bottom bar */
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(25, 40, 60, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.footer-bottom .made-with {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-bottom .made-with [data-lucide] {
  width: 13px;
  height: 13px;
  color: #e0245e;
  fill: #e0245e;
}

/* ---- Full-width graphic (blends into pure white, never cropped) ---- */
.footer-graphic {
  background: #ffffff;
  line-height: 0; /* removes inline-image gap */
}

.footer-graphic img {
  display: block;
  width: 100%;      /* always full width */
  height: auto;     /* keeps aspect ratio — no crop, no cover */
  object-fit: fill; /* never crops */
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
