body {
  background: #060708;
  color: #F0EDE8;
  font-family: 'Inter', sans-serif;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}
::selection {
  background: rgba(201,168,76,0.18);
  color: #E2C46A;
}
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); }

.marquee-wrap {
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-inner {
  display: flex;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 0 40px;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.sticky-el {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}