html {
  scroll-behavior: smooth;
}

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.in,
.reveal-left.in,
.reveal-right.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
.d5 {
  transition-delay: 0.5s;
}
.d6 {
  transition-delay: 0.6s;
}

/* ── Card lift ── */
.card-lift {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.card-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(245, 193, 0, 0.12);
  border-color: #f5c100 !important;
}

/* ── Buttons ── */
.btn-gold {
  background: linear-gradient(135deg, #f5c100, #ffd93d);
  color: #0d0d0d;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 193, 0, 0.45);
}

/* ── Gradient text ── */
.text-gold {
  background: linear-gradient(135deg, #f5c100, #ffd93d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero glow & dots ── */
.hero-glow {
  background: radial-gradient(
    ellipse at 50% 60%,
    rgba(245, 193, 0, 0.14) 0%,
    transparent 70%
  );
}
.dot-grid {
  background-image: radial-gradient(circle, #f5c100 1px, transparent 1px);
  background-size: 36px 36px;
}

/* ── Divider ── */
hr.dim {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2a2a2a, transparent);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #0d0d0d;
}
::-webkit-scrollbar-thumb {
  background: #f5c100;
  border-radius: 3px;
}

/* ── Tag pill ── */
.tag {
  background: #1a1a1a;
  color: #888;
  font-size: 0.72rem;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid #2a2a2a;
}

/* ── Service card overlay ── */
.svc-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.svc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.93);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transform: translateY(102%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1rem;
}
.svc-card:hover .svc-overlay {
  transform: translateY(0);
}
.svc-overlay-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: -4px;
}
.svc-overlay-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: #f5c100;
  line-height: 1.3;
}
.svc-overlay-cta {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #888;
  border: 1px solid #2a2a2a;
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.svc-card:hover .svc-overlay-cta {
  border-color: #f5c100;
  color: #f5c100;
}

/* ── Tier highlight (pulsing gold glow) ── */
.tier-card {
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
.tier-active {
  border-color: #f5c100 !important;
  animation: tier-pulse 1.1s ease-in-out 3;
}
@keyframes tier-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 2px rgba(245, 193, 0, 0.35),
      0 20px 50px rgba(245, 193, 0, 0.18);
  }
  50% {
    box-shadow:
      0 0 0 6px rgba(245, 193, 0, 0.2),
      0 24px 60px rgba(245, 193, 0, 0.3);
  }
}

/* ── Quote cards ── */
.quote-mark {
  font-size: 4.5rem;
  line-height: 0.8;
  color: #f5c100;
  font-family: Georgia, serif;
  user-select: none;
}
