/* Consistent NYLE site footer — namespaced under .site-footer, self-contained palette
   so it renders identically regardless of the host page's own styles/variables. */
.site-footer {
  background: #08080a;
  border-top: 1px solid #1c1c22;
  padding: 56px 0 32px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.site-footer * { box-sizing: border-box; }
.site-footer .sf-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.site-footer .sf-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid #1c1c22;
}
.site-footer .sf-brand { max-width: 320px; }
.site-footer .sf-logo {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: #f4f4f6;
}
.site-footer .sf-tagline {
  font-size: 14px;
  color: #6b6b78;
  margin: 12px 0 0;
  line-height: 1.6;
}
.site-footer .sf-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.site-footer .sf-social a {
  color: #a0a0ad;
  transition: color .15s ease;
  display: inline-flex;
}
.site-footer .sf-social a:hover { color: #56d68a; }
.site-footer .sf-social svg { width: 20px; height: 20px; }
.site-footer .sf-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.site-footer .sf-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer .sf-h {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6b78;
  margin-bottom: 4px;
}
.site-footer .sf-col a {
  color: #a0a0ad;
  text-decoration: none;
  font-size: 14.5px;
  transition: color .15s ease;
}
.site-footer .sf-col a:hover { color: #f4f4f6; }
.site-footer .sf-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
}
.site-footer .sf-copy { font-size: 13px; color: #6b6b78; margin: 0; }
.site-footer .sf-legal { display: flex; gap: 24px; }
.site-footer .sf-legal a {
  font-size: 13px;
  color: #a0a0ad;
  text-decoration: none;
  transition: color .15s ease;
}
.site-footer .sf-legal a:hover { color: #f4f4f6; }
@media (max-width: 640px) {
  .site-footer .sf-container { padding: 0 20px; }
  .site-footer .sf-top { gap: 32px; }
  .site-footer .sf-cols { gap: 32px; }
}
