.efm-site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0d;
  color: rgba(255, 255, 255, 0.94);
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

.efm-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.25rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 2fr);
  gap: 2.5rem 2rem;
  align-items: start;
}

.efm-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.efm-footer-logo {
  display: inline-block;
  line-height: 0;
}

.efm-footer-logo img {
  display: block;
  height: auto;
  max-width: 100%;
}

.efm-footer-tagline {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.48);
  max-width: 300px;
}

.efm-footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

.efm-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.efm-footer-col h4 {
  margin: 0 0 0.35rem;
  font-family: Outfit, Inter, system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.2;
}

.efm-footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.92rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.15s ease;
}

.efm-footer-col a:hover {
  color: rgba(255, 255, 255, 0.88);
}

.efm-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.1rem 1.5rem 1.4rem;
}

.efm-footer-bottom p {
  margin: 0;
  max-width: 1200px;
  margin-inline: auto;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 960px) {
  .efm-footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .efm-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .efm-footer-inner {
    padding-top: 2.5rem;
  }

  .efm-footer-nav {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
