.site-footer {
  margin-top: 10px;
  border-top: 1px solid rgba(38, 42, 32, 0.95);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 28%),
    linear-gradient(180deg, rgba(5, 7, 5, 0.96), rgba(2, 3, 2, 0.99));
}

/* ── Stats row ──────────────────────────────────────────── */

.footer-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  padding: 9px 0 8px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 6px 11px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.stat-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  border: none;
  background: transparent;
}

.stat-icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8a9d58;
}

.stat-icon::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 8px;
  border-radius: 7px 7px 0 0;
  background: #8a9d58;
}

.stat-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.stat-value {
  font-size: 20px;
  font-family: var(--font-heading);
  line-height: 1;
  font-weight: 700;
  color: #c8b87c;
  white-space: nowrap;
}

.stat-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #5e6259;
  white-space: nowrap;
}

/* ── Footer bottom bar ──────────────────────────────────── */

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 7px 0 8px;
  border-top: 1px solid rgba(32, 35, 28, 0.9);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.footer-social-link {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(72, 82, 50, 0.45);
  background: rgba(8, 10, 7, 0.7);
  color: #7a8470;
  font-size: 10px;
  font-weight: 700;
  transition: border-color 0.15s, color 0.15s;
}

.footer-social-link:hover {
  border-color: rgba(120, 140, 50, 0.65);
  color: #a8b87a;
}

.footer-copyright {
  flex: 1;
  text-align: center;
  font-size: 9px;
  color: #4a4d44;
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.footer-links a {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5a5e54;
  padding: 0 10px;
  border-left: 1px solid rgba(50, 54, 44, 0.7);
  line-height: 1;
}

.footer-links a:first-child {
  border-left: 0;
  padding-left: 0;
}

.footer-links a:hover {
  color: #c0b07a;
}

/* ── Mobile nav ─────────────────────────────────────────── */

.mobile-bottom-nav {
  display: none;
}
