/* ---- Site Footer ---- */
.site-footer {
  background: #0D0D0D;
  padding-top: 3.75rem;
}
@media (min-width: 768px) {
  .site-footer { padding-top: 5.75rem; }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 2fr; }
}
.footer-cta h2 {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: var(--fw-normal);
  background: linear-gradient(90deg, #fff, #999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.footer-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .footer-cta-row { display: block; }
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2rem;
}
@media (min-width: 640px) {
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-links { grid-template-columns: repeat(4, 1fr); }
}
.footer-links h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: var(--fw-normal);
}
@media (min-width: 768px) {
  .footer-links h3 { margin-bottom: 1.5rem; }
}
.footer-links ul { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a {
  color: #717070;
  font-weight: var(--fw-extralight);
  font-size: 0.875rem;
  padding: 0.5rem 0;
  display: inline-block;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-links a:hover { color: #fff; }
.footer-cta-btn { padding: 0.5rem 2rem; font-size: 0.875rem; }
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr;
  padding: 3.5rem 0 1.25rem;
  font-size: 0.875rem;
  color: #909090;
  font-weight: var(--fw-extralight);
  gap: 1rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer-bottom {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .footer-bottom-right { text-align: right; }
}
