/* Site footer (shared): partial `view/partial/site-footer.html` */
:root{
  --sf-max: 1200px;
  --sf-ink:#111827;
  --sf-blue:#007aff;
}

.site-footer {
  background: #ffffff;
  color: var(--sf-ink);
  padding: 48px 16px 36px;
}
.site-footer__inner {
  max-width: var(--sf-max);
  margin: 0 auto;
}
.site-footer__brand {
  margin: 0 0 36px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #000000;
  text-align: center;
}
.site-footer__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.site-footer__col {
  width: 100%;
  max-width: 320px;
}
.site-footer__heading {
  margin: 0 0 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000000;
  line-height: 1.3;
}
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__list li { margin: 0; padding: 0; }
.site-footer__link {
  display: inline-block;
  padding: 5px 0;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--sf-ink);
  text-decoration: none;
}
.site-footer__link:hover { color: var(--sf-blue); }
.site-footer__link--active {
  color: var(--sf-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer__bar {
  margin-top: 48px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.site-footer__copy {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sf-ink);
  line-height: 1.4;
}
.site-footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.site-footer__legal-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--sf-ink);
  text-decoration: none;
}
.site-footer__legal-link:hover { color: var(--sf-blue); }

.site-footer__divider{
  border: 0;
  height: 1px;
  margin: 18px 0 14px;
  background: linear-gradient(90deg, rgba(17,24,39,0) 0%, rgba(17,24,39,0.08) 18%, rgba(17,24,39,0.08) 82%, rgba(17,24,39,0) 100%);
  transform: scaleY(0.6);
  transform-origin: 0 0;
}

.site-footer__company{
  text-align: center;
  line-height: 1.65;
  font-size: 0.8125rem;
  color: rgba(17,24,39,0.9);
}
.site-footer__company .site-footer__link{
  display: inline;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

@media (min-width: 768px) {
  .site-footer { padding: 56px 24px 40px; }
  .site-footer__brand {
    text-align: left;
    margin-bottom: 44px;
    font-size: 1.375rem;
  }
  .site-footer__brand,
  .site-footer__grid,
  .site-footer__bar { text-align: left; }

  .site-footer__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px 28px;
    align-items: start;
  }
  .site-footer__col { max-width: none; text-align: left; }
  .site-footer__list { text-align: left; }
  .site-footer__link { display: block; padding: 6px 0; }

  .site-footer__bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 56px;
    gap: 16px;
  }
  .site-footer__legal {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0 28px;
    align-items: center;
  }
  .site-footer__legal-link { white-space: nowrap; }

  .site-footer__divider{ margin: 22px 0 16px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

