/* Footer - chrome partial */
footer.site-footer {
  padding-top: clamp(2rem, 4.5vw, 3.25rem);
  border-top: 1px solid rgba(247, 243, 236, 0.12);
  background: #0c0a09;
  color: rgba(247, 243, 236, 0.82);
}
footer.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.4fr 0.85fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1.75rem, 3.5vw, 3rem);
  padding-bottom: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: start;
  width: var(--container, min(1200px, calc(100% - 2.5rem)));
  max-width: var(--layout-max, 1200px);
  margin-inline: auto;
}
footer.site-footer .footer-brand {
  min-width: 0;
  max-width: 20rem;
}
footer.site-footer .footer-col {
  min-width: 0;
}
footer.site-footer .footer-logo-img {
  display: block;
  height: auto;
  max-height: 48px;
  width: auto;
  max-width: min(180px, 68vw);
  margin: 0 0 0.75rem;
}
footer.site-footer .footer-desc {
  margin: 0;
  max-width: none;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(247, 243, 236, 0.7);
  overflow-wrap: anywhere;
}
footer.site-footer .footer-heading {
  position: relative;
  display: inline-block;
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 0.5rem;
}
footer.site-footer .footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 2px;
  background: var(--accent, #e85d04);
  border-radius: 2px;
  transition: width 0.35s ease, background-color 0.35s ease;
}
footer.site-footer .footer-col:hover .footer-heading::after,
footer.site-footer .footer-col:focus-within .footer-heading::after {
  width: 100%;
  background: var(--accent, #e85d04);
}
footer.site-footer .footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}
footer.site-footer .footer-list li {
  margin: 0;
  padding: 0;
}
footer.site-footer .footer-list a {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 100%;
  padding: 0.1rem 0;
  color: rgba(247, 243, 236, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: color 0.25s ease, transform 0.25s ease;
}
footer.site-footer .footer-list a::before {
  content: "";
  flex: 0 0 auto;
  width: 0.3rem;
  height: 0.3rem;
  margin-top: 0.55em;
  border-radius: 50%;
  background: rgba(247, 243, 236, 0.5);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
footer.site-footer .footer-list a:hover,
footer.site-footer .footer-list a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}
footer.site-footer .footer-list a:hover::before,
footer.site-footer .footer-list a:focus-visible::before {
  background: var(--accent, #e85d04);
  transform: scale(1.2);
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.18);
}
footer.site-footer .footer-bottom {
  padding: 0.85rem 0 calc(0.95rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(247, 243, 236, 0.08);
  font-size: 0.85rem;
  color: rgba(247, 243, 236, 0.45);
}
footer.site-footer .footer-bottom .container {
  overflow-wrap: anywhere;
}
footer.site-footer .footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.25rem;
}
footer.site-footer .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}
footer.site-footer .footer-legal a {
  color: rgba(247, 243, 236, 0.55);
  text-decoration: none;
  transition: color 0.25s ease;
}
footer.site-footer .footer-legal a:hover,
footer.site-footer .footer-legal a:focus-visible {
  color: #fff;
}
footer.site-footer .footer-stats {
  border-top: 1px solid rgba(247, 243, 236, 0.08);
  padding: 1rem 0 0.85rem;
}
footer.site-footer .footer-stats .container {
  width: var(--container, min(1200px, calc(100% - 2.5rem)));
  max-width: var(--layout-max, 1200px);
  margin-inline: auto;
}
footer.site-footer .footer-stats-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.9);
}
footer.site-footer .footer-stats-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  color: rgba(247, 243, 236, 0.6);
  font-size: 0.84rem;
  line-height: 1.45;
}
footer.site-footer .footer-stats-list li {
  margin: 0;
}
footer.site-footer .footer-stats-list strong {
  color: var(--accent, #e85d04);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 1100px) {
  footer.site-footer .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
  }
  footer.site-footer .footer-brand {
    grid-column: 1 / -1;
    max-width: 30rem;
  }
}
@media (max-width: 560px) {
  footer.site-footer {
    padding-top: 1.5rem;
  }
  footer.site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.25rem;
    padding-bottom: 1.25rem;
  }
  footer.site-footer .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(247, 243, 236, 0.08);
  }
  footer.site-footer .footer-col:first-of-type {
    grid-column: 1 / -1;
  }
  footer.site-footer .footer-col:first-of-type .footer-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem 1.25rem;
  }
  footer.site-footer .footer-heading {
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
  }
  footer.site-footer .footer-desc {
    font-size: 0.84rem;
  }
  footer.site-footer .footer-list {
    gap: 0.35rem;
  }
  footer.site-footer .footer-list a {
    font-size: 0.84rem;
  }
  footer.site-footer .footer-stats {
    padding: 0.75rem 0 0.65rem;
  }
  footer.site-footer .footer-stats-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem 0.75rem;
    font-size: 0.8rem;
  }
  footer.site-footer .footer-stats-list li:last-child {
    grid-column: 1 / -1;
  }
  footer.site-footer .footer-bottom {
    font-size: 0.78rem;
    padding: 0.7rem 0 calc(5.75rem + env(safe-area-inset-bottom, 0px));
  }
}
@media (max-width: 380px) {
  footer.site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
  footer.site-footer .footer-col:last-child {
    grid-column: auto;
  }
  footer.site-footer .footer-stats-list {
    grid-template-columns: 1fr;
  }
  footer.site-footer .footer-stats-list li:last-child {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  footer.site-footer .footer-heading::after,
  footer.site-footer .footer-list a,
  footer.site-footer .footer-list a::before {
    transition: none;
  }
  footer.site-footer .footer-list a:hover,
  footer.site-footer .footer-list a:focus-visible {
    transform: none;
  }
}
