.site-footer {
  background: #fff;
  border-top: 1px solid #e6ebf5;
  color: #444;
  position: relative;
  z-index: 1;
}

/* container */
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto; /* brand | nav | socials */
  gap: 1.5rem;
  align-items: center;
}

/* brand */
.footer-logo {
  color: #111;
  font-weight: 800;
  line-height: 0.95;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  text-decoration: none;
  display: inline-block;
}
.footer-tagline { margin: 0.35rem 0 0; color: #666; }

/* nav */
.footer-nav {
  justify-self: center;
  display: flex;
  gap: 1rem 1.25rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: color .2s ease, opacity .2s ease;
}
.footer-nav a:hover { color: #0073e6; }

/* socials */
.footer-socials {
  justify-self: end;
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #222;
  border: 1px solid #e6ebf5;
  background: #fff;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
}
.footer-socials a:hover {
  color: #0073e6;
  border-color: #cfd8ea;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,.06);
}
.footer-socials svg { width: 18px; height: 18px; }

/* bottom strip */
.footer-bottom {
  border-top: 1px solid #f0f3fb;
  padding: .8rem 1.25rem;
  text-align: center;
  color: #666;
}

/* if your last content section has a strong 'end' snap target,
   you can keep it; you’ll still be able to scroll to the footer next */


/* Make sure the section above is allowed to grow; not hard-capped to 100vh */
.snap-section { min-height: 100dvh; height: auto; }
/* responsive */
@media (max-width: 900px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }
  .footer-nav { justify-content: center; }
  .footer-socials { justify-self: center; }
  .footer-logo { font-size: 1.4rem; }
}
