/* ============================================================
   block: sticky-cta — mobile only ticker bar
   ============================================================ */

.sticky-cta {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--brass);
  padding: 10px 12px 10px 16px;
  box-shadow: 4px 4px 0 0 var(--rouge-deep);
  align-items: center;
  gap: 12px;
}
.sticky-cta--visible { display: flex; }

.sticky-cta__text {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-body);
  font-size: .82rem;
  line-height: 1.3;
  color: rgba(241, 232, 210, .82);
}
.sticky-cta__text strong {
  display: block;
  color: var(--brass-bright);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .02em;
  margin-bottom: 1px;
}

.sticky-cta__cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.sticky-cta__close {
  position: absolute;
  top: -10px; right: -8px;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--brass);
  background: var(--ink);
  color: var(--brass-bright);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  font-family: var(--font-display);
}
.sticky-cta__close:hover { background: var(--rouge-deep); color: var(--paper); }

@media (min-width: 769px) {
  .sticky-cta--visible { display: none; }
}
@media (max-width: 768px) {
  body.has-sticky-cta { padding-bottom: 80px; }
}
