/*
 * Sia.L — site footer / copyright bar
 * ------------------------------------------------------------
 * Required on EVERY page. Year may change per page/work:
 *   <span class="site-foot__year">2026</span>
 *
 * Style lock:
 *   ~10px (0.625rem), letter-spacing opened,
 *   gray (not white), opacity 60%
 * ------------------------------------------------------------
 */

.site-foot {
  border-top: 1px solid rgba(217, 210, 226, 0.14);
  padding-top: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}

.site-foot__rights {
  max-width: 36rem;
  margin: 0;
  opacity: 0.6;
}

.site-foot__rights p {
  font-family: "Jost", "Futura", "Helvetica Neue", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.625rem; /* ~10px */
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1.75;
  color: #9a93a3; /* gray, not white */
  margin: 0 0 0.55rem;
}

.site-foot__rights p:last-child {
  margin-bottom: 0;
}

.site-foot__brand {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem !important;
}

.site-foot__year {
  font-variant-numeric: tabular-nums;
}

/* Homepage keeps statement row; rights sit under it */
.site-foot--home {
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
  border-top: none;
  padding-top: 0;
}

.site-foot--home .site-foot__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.site-foot--home .site-foot__rights {
  max-width: 40rem;
}
