/* Site footer — a proper dark footer used on every page. Uses its own
   semantic classes (not the old GeneratePress gb-* grid), so it renders
   the same everywhere and doesn't depend on the home-only stylesheet. */

.site-footer {
  background: #101615;
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Figtree', -apple-system, system-ui, sans-serif;
}
.site-footer .footer-inner {
  max-width: 1040px;
  margin-inline: auto;
  padding: 56px 24px 28px;
}

/* Top: contact on the left, social on the right */
.site-footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px 32px;
  flex-wrap: wrap;
}
.site-footer .footer-heading {
  font-family: 'Livvic', sans-serif;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
}
.site-footer .footer-contact p { margin: 0; font-size: 16px; }
.site-footer .footer-contact a {
  color: #86d1c3;
  font-weight: 600;
  text-decoration: none;
}
.site-footer .footer-contact a:hover { text-decoration: underline; }

.site-footer .footer-social { display: flex; gap: 12px; }
.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 18px;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.site-footer .footer-social a svg { width: 1em; height: 1em; fill: currentColor; }
.site-footer .footer-social a:hover {
  background: var(--accent-green);
  transform: translateY(-2px);
}

/* Bottom: copyright left, legal links right, divided by a hairline */
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px 28px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer .footer-copy {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.site-footer .footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}
.site-footer .footer-legal a:hover { color: #ffffff; text-decoration: underline; }

@media (max-width: 640px) {
  .site-footer .footer-inner { padding: 40px 20px 28px; }
  .site-footer .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 32px;
  }
  .site-footer .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
}
