/* ── Footer ── */
.site-footer {
  background: var(--bg);
  padding: 3rem 1.5rem 2rem;
  border-top: 1px solid var(--border2);
}
.footer-inner { max-width: 80rem; margin-inline: auto; }
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}
.footer-nav a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text2);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--accent); }
.footer-phone a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--accent);
  transition: color 0.2s;
}
.footer-phone a:hover { color: var(--accent-d); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: center;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text3);
}

/* Mobile sticky CTA bar */
.mobile-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark);
  padding: 1rem 1.5rem;
  z-index: 50;
  justify-content: center;
}
.mobile-cta-link {
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 700;
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: background 0.2s;
}
.mobile-cta-link:hover { background: var(--accent-l); }

/* Spacer so footer content doesn't hide behind mobile CTA */
.footer-mobile-spacer { height: 4rem; }

@media (min-width: 1024px) {
  .mobile-cta-bar { display: none; }
  .footer-mobile-spacer { display: none; }
  .footer-top { flex-direction: row; justify-content: space-between; }
  .footer-bottom { justify-content: flex-start; }
}
