/* ============================
   Sticky Mobile CTA
   ============================ */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
}
.mobile-cta a {
  padding: 1rem 0.5rem;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  border-right: 1px solid var(--c-line);
}
.mobile-cta a:last-child { border-right: none; }
.mobile-cta a.primary {
  background: var(--c-accent);
}
@media (min-width: 900px) {
  .mobile-cta { display: none; }
}
