/* ─── STICKY CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.5);
}

.sticky-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@media (max-width: 768px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    justify-content: center;
    padding: 14px 20px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

