footer.site-footer {
  background: var(--espresso);
  color: var(--white);
  padding: 4rem 5% 2rem;
  margin-top: auto;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}
.footer-col .logo
{
  color: black;
  font-size: 50px;
}
.footer-col p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}
.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.85rem;
  cursor: pointer;
}
.footer-col ul li a:hover {
  color: rgba(255, 255, 255, 0.8);
  padding-left: 4px;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.footer-socials a {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition-fast);
  font-size: 0.9rem;
}
.footer-socials a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  #site-footer { text-align: center; }
  #footer-2, #footer-3 { display: none; }
  .footer-socials { justify-content: center; }
}
