:root {
  --vep-accent: #22d3ee;
  --vep-navy: #0f172a;
}

html {
  scroll-behavior: smooth;
}

.font-display {
  font-family:
    "Playfair Display",
    Georgia,
    "Times New Roman",
    serif;
}

body {
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    sans-serif;
}

/* Fade-up reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* Gradient accent text */
.gradient-gold-text {
  background: linear-gradient(105deg, #fbbf24 0%, #22d3ee 55%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-nav {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Masonry */
.masonry {
  column-gap: 1.25rem;
}
.masonry > * {
  break-inside: avoid;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .masonry {
    column-count: 2;
  }
}
@media (min-width: 1024px) {
  .masonry {
    column-count: 3;
  }
}

.cookie-banner-enter {
  animation: cookie-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes cookie-rise {
  from {
    transform: translateY(110%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(34, 211, 238, 0.12),
    transparent 45%
  );
  pointer-events: none;
}

.card-luxe {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}
.card-luxe:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.15),
    0 0 0 1px rgba(34, 211, 238, 0.18);
}

.dark .card-luxe:hover {
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(34, 211, 238, 0.25);
}

#scroll-top {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
#scroll-top:hover {
  transform: translateY(-3px);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #f8fafc;
}
.dark ::-webkit-scrollbar-track {
  background: #0b1224;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(#0f172a, #075985);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
