/* Self-contained agentis-style footer.
   Values are inlined (no design-token vars) so this file works without
   loading agentis' tokens.css. Mirrors agentis/assets/css/global.css:156–192
   and responsive.css:98–99, 302–306. */

.site-footer {
  background: #FAFAFA;
  border-top: none;
  padding: 64px clamp(24px, 6vw, 139px) 32px;
  min-height: 414px;
  color: #6B6560;
  box-sizing: border-box;
}
.site-footer *,
.site-footer *::before,
.site-footer *::after { box-sizing: border-box; }
.site-footer a { text-decoration: none; }

.site-footer .footer-inner { max-width: none; margin: 0; }

.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1fr 192px 192px 192px;
  gap: 64px;
  padding-bottom: 64px;
}

.site-footer .footer-logo {
  display: block;
  height: 34px;
  width: auto;
  margin-left: -10px;
  margin-bottom: 16px;
}

.site-footer .footer-brand address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.8;
  color: #6B6560;
  margin: 0;
  padding: 0;
}
.site-footer .footer-brand address a { color: #6B6560; }

.site-footer .footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.site-footer .footer-social a {
  display: inline-flex;
  transition: opacity 0.2s;
}
.site-footer .footer-social a img {
  width: 22px;
  height: 22px;
  display: block;
}
.site-footer .footer-social a:hover { opacity: 0.75; }

.site-footer .footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 25px;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: #000000;
}
.site-footer .footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}
.site-footer .footer-col ul a {
  font-size: 13px;
  line-height: 25px;
  font-weight: 400;
  color: #808080;
  transition: color 0.2s;
}
.site-footer .footer-col ul a:hover { color: #1A1714; }

.site-footer .footer-bottom {
  border-top: 1px solid #E8E2DC;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-bottom p,
.site-footer .footer-bottom a {
  font-size: 12px;
  color: #6B6560;
  margin: 0;
}
.site-footer .footer-legal { display: flex; gap: 32px; }

@media (max-width: 1024px) {
  .site-footer { padding: 48px 32px 32px; }
  .site-footer .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .site-footer { padding: 32px 20px 20px; }
  .site-footer .footer-top { grid-template-columns: 1fr; gap: 20px; }
  .site-footer .footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .site-footer .footer-legal { flex-wrap: wrap; gap: 10px; }
  .site-footer .footer-col h4 { margin-bottom: 6px; }
}
