/* Site footer — minimal dark band */

.site-footer {
  --footer-bg: #0c1520;
  --footer-text: rgba(255, 255, 255, 0.88);
  --footer-muted: rgba(255, 255, 255, 0.5);
  --footer-border: rgba(255, 255, 255, 0.08);
  --footer-accent: #5ecfad;

  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  background: var(--footer-bg);
  color: var(--footer-text);
  border-top: 1px solid var(--footer-border);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding: clamp(2rem, 4vw, 2.75rem) 0 clamp(1.35rem, 3vw, 1.75rem);
}

/* Brand row */
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.site-footer .logo {
  display: inline-flex;
}

.site-footer .logo-img--footer,
.site-footer .logo-img {
  height: 36px;
  width: auto;
  opacity: 0.92;
}

.site-footer__tagline {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--footer-muted);
  max-width: 36ch;
}

/* Social */
.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: var(--footer-muted);
  transition: color 0.15s, background 0.15s;
}

.site-footer__social-link:hover {
  color: var(--footer-accent);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

/* Flat link row */
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 1.35rem;
}

.site-footer__nav a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--footer-muted);
  letter-spacing: 0.01em;
  transition: color 0.15s;
}

.site-footer__nav a:hover {
  color: var(--footer-text);
  text-decoration: none;
}

/* Contact line */
.site-footer__contact {
  margin: 0;
  font-size: 0.82rem;
  color: var(--footer-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.site-footer__contact a {
  color: var(--footer-muted);
  transition: color 0.15s;
}

.site-footer__contact a:hover {
  color: var(--footer-accent);
  text-decoration: none;
}

.site-footer__sep {
  color: var(--footer-muted);
  opacity: 0.55;
  user-select: none;
}

/* Bottom bar */
.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--footer-border);
}

.site-footer__copy,
.site-footer__credit {
  margin: 0;
  font-size: 0.78rem;
  color: var(--footer-muted);
  line-height: 1.45;
}

.site-footer__credit a {
  color: var(--footer-muted);
  font-weight: 500;
  transition: color 0.15s;
}

.site-footer__credit a:hover {
  color: var(--footer-accent);
  text-decoration: none;
}

@media (max-width: 640px) {
  .site-footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__nav {
    gap: 0.4rem 1rem;
  }

  .site-footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

html[dir="rtl"] .site-footer__contact {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
