/* Shared site footer — product nav + subdued legal meta row */

.site-footer {
  padding: 2.5rem 2.5rem 2rem;
  border-top: 1px solid #161412;
  margin-top: 5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 11, 10, 0.6) 100%);
}

.site-footer__inner {
  max-width: 46rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.site-footer__brand-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-footer__brand {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  color: #3a3530;
  text-transform: uppercase;
}

.site-footer__credit {
  font-size: 0.625rem;
  color: #2a2622;
  letter-spacing: 0.04em;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  align-items: center;
}

.site-footer__nav a {
  font-size: 0.6875rem;
  color: #6a6258;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.18s ease;
}

.site-footer__nav a:hover {
  color: #c9b896;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #141210;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.site-footer__legal a {
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  color: #3d3832;
  text-decoration: none;
  transition: color 0.18s ease;
}

.site-footer__legal a + a::before {
  content: "·";
  margin: 0 0.55em;
  color: #252219;
  pointer-events: none;
}

.site-footer__legal a:hover {
  color: #5c554a;
}

.site-footer__analytics {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.625rem;
  color: #332f2a;
  cursor: pointer;
  letter-spacing: 0.03em;
}

.site-footer__analytics input {
  accent-color: #8a6f30;
}

@media (max-width: 640px) {
  .site-footer {
    padding: 2rem 1.25rem 1.75rem;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 1rem;
  }

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

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

@media print {
  .site-footer,
  .site-footer__analytics {
    display: none !important;
  }
}
