:root {
  --font-body: 'Manrope', 'Montserrat', Arial, sans-serif;
  --font-display: 'Cinzel', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --ease-luxury: cubic-bezier(.22, 1, .36, 1);
}

body {
  font-family: var(--font-body) !important;
  letter-spacing: .006em;
  opacity: 0;
  animation: page-slide-in .85s var(--ease-luxury) forwards;
}

body.page-leaving {
  pointer-events: none;
  animation: page-slide-out .34s ease forwards;
}

h1, h2, h3 {
  font-family: var(--font-display) !important;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.logo-shine {
  background-size: 260% 100% !important;
  animation: logo-gold-shine 3.8s linear infinite;
}

.logo-mark-shine {
  animation: logo-mark-glow 3.8s ease-in-out infinite;
}

.gold-wipe {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
}

.gold-wipe::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: -45%;
  bottom: -45%;
  left: -35%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.86), transparent);
  transform: skewX(-18deg) translateX(-280%);
  pointer-events: none;
}

.gold-wipe:hover::after,
.gold-wipe:focus-visible::after,
.gold-wipe.shine-active::after {
  animation: gold-button-wipe .72s var(--ease-luxury);
}

.collection-cover {
  position: relative !important;
  overflow: hidden !important;
  transition: transform .5s var(--ease-luxury), box-shadow .5s var(--ease-luxury) !important;
  will-change: transform;
}

.collection-cover::before {
  content: '';
  position: absolute;
  z-index: 4;
  top: -35%;
  bottom: -35%;
  left: -48%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255,248,205,.82), transparent);
  transform: skewX(-18deg) translateX(-280%);
  pointer-events: none;
}

.collection-cover:hover,
.collection-cover:focus-visible {
  transform: translateY(-10px) scale(1.025) !important;
  box-shadow: 0 28px 64px rgba(0,0,0,.55), 0 0 28px rgba(168, 141, 45,.18) !important;
}

.collection-cover:hover::before,
.collection-cover:focus-visible::before {
  animation: collection-cover-wipe .92s var(--ease-luxury);
}

.collection-cover img {
  transition: transform .85s var(--ease-luxury), filter .85s ease !important;
}

.collection-cover:hover img,
.collection-cover:focus-visible img {
  transform: scale(1.075) !important;
  filter: brightness(1.08) saturate(1.04);
}

.hero-campaign-art {
  position: relative;
  isolation: isolate;
  width: min(560px, 90vw);
  height: clamp(310px, 44vw, 470px);
  animation: floatY 7s ease-in-out infinite;
}

.hero-campaign-art::before {
  content: none;
}

.hero-campaign-art::after {
  content: none;
}

.hero-campaign-art img {
  position: absolute !important;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100% !important;
  max-width: none;
  height: auto;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: translate(-50%, -50%) scale(1.55);
  filter: none;
  animation: none;
}

[data-count] {
  font-variant-numeric: tabular-nums;
}

[data-reveal] {
  will-change: opacity, transform;
  transition: opacity .9s var(--ease-luxury), transform .9s var(--ease-luxury) !important;
}

[data-reveal][data-slide='left']:not(.is-visible) {
  opacity: 0 !important;
  transform: translate3d(-58px, 0, 0) !important;
}

[data-reveal][data-slide='right']:not(.is-visible) {
  opacity: 0 !important;
  transform: translate3d(58px, 0, 0) !important;
}

[data-reveal][data-slide='up']:not(.is-visible) {
  opacity: 0 !important;
  transform: translate3d(0, 38px, 0) !important;
}

[data-reveal].is-visible {
  opacity: 1 !important;
  transform: none !important;
}

.collection-arrival {
  animation: collection-glow 1.25s var(--ease-luxury);
}

@keyframes page-slide-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes page-slide-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes collection-glow {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(168, 141, 45, 0); }
  35% { box-shadow: inset 0 0 0 2px rgba(168, 141, 45, .5); }
}

@keyframes logo-gold-shine {
  0% { background-position: 140% 50%; filter: brightness(.95); }
  45% { filter: brightness(1.18); }
  100% { background-position: -140% 50%; filter: brightness(.95); }
}

@keyframes logo-mark-glow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(168, 141, 45,0)); }
  48% { filter: drop-shadow(0 0 7px rgba(168, 141, 45,.72)); }
}

@keyframes gold-button-wipe {
  from { transform: skewX(-18deg) translateX(-280%); }
  to { transform: skewX(-18deg) translateX(760%); }
}

@keyframes collection-cover-wipe {
  from { transform: skewX(-18deg) translateX(-280%); }
  to { transform: skewX(-18deg) translateX(780%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body, body.page-leaving { opacity: 1; animation: none; }
  [data-reveal], [data-reveal]:not(.is-visible), .collection-arrival {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .logo-shine, .logo-mark-shine, .gold-wipe::after, .collection-cover::before,
  .hero-campaign-art, .hero-campaign-art img {
    animation: none !important;
  }
  .collection-cover:hover, .collection-cover:focus-visible,
  .collection-cover:hover img, .collection-cover:focus-visible img {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .hero-campaign-art {
    width: min(340px, 75vw);
    height: clamp(220px, 40vw, 300px);
  }
  .hero-campaign-art img {
    transform: translate(-50%, -50%) scale(1.15);
  }
}
