:root {
  --ink: #0A0A0A;
  --ink-2: #171717;
  --muted: #737373;
  --line: #E5E5E5;
  --surface: #F5F5F5;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  overflow-x: hidden;
}

.bg-ink { background-color: #0A0A0A !important; }
.text-ink { color: #0A0A0A !important; }
.bg-surface { background-color: #F5F5F5 !important; }
.text-muted, .text-ink-muted { color: #737373 !important; }
.border-line { border-color: #E5E5E5 !important; }
.text-offwhite { color: #FAFAFA !important; }
.bg-offwhite { background-color: #F5F5F5 !important; }
.bg-yellow { background-color: #F5F5F5 !important; }
.text-yellow { color: #A3A3A3 !important; }
.border-yellow { border-color: #E5E5E5 !important; }
.bg-blue { background-color: #171717 !important; }
.text-blue { color: #737373 !important; }
.bg-red { background-color: #0A0A0A !important; }
.text-red { color: #0A0A0A !important; }
.hover\:text-yellow:hover { color: #A3A3A3 !important; }
.hover\:text-red:hover { color: #525252 !important; }
.hover\:bg-red:hover { background-color: #171717 !important; }

.reveal-on-scroll { opacity: 1 !important; transform: none; }
.noise-overlay { display: none; }

@keyframes marquee-scroll {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-50%,0,0); }
}
.marquee-content { display: flex; width: max-content; animation: marquee-scroll 36s linear infinite; will-change: transform; }
.marquee-content:hover { animation-play-state: paused; }

.ui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.ui-btn:hover { transform: translateY(-1px); }
.ui-btn-dark { background: #0A0A0A; color: #fff; }
.ui-btn-dark:hover { background: #262626; color: #fff; }
.ui-btn-light { background: #fff; color: #0A0A0A; border: 1px solid #E5E5E5; }
.ui-btn-light:hover { border-color: #0A0A0A; }
.ui-btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.28); }
.ui-btn-ghost:hover { background: #fff; color: #0A0A0A; }
.ui-btn-white { background: #fff; color: #0A0A0A; }
.ui-btn-white:hover { background: #E5E5E5; color: #0A0A0A; }

.ui-card {
  border: 1px solid #E5E5E5;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ui-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.08); }
.sticker { border: 1px solid #E5E5E5; border-radius: 24px; box-shadow: none; overflow: hidden; }
.pill { border-radius: 999px; border: 1px solid #E5E5E5; }

.eyebrow {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #737373;
  font-weight: 600;
}

.site-logo, .logo-on-dark { background: transparent; }
.logo-on-dark { filter: invert(1); }

img { max-width: 100%; display: block; }
img.img-cover { object-fit: cover; }
.hero-visual { position: absolute; inset: 0; overflow: hidden; }
.hero-visual img,
.hero-visual video,
.hero-visual iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F5F5F5; }
::-webkit-scrollbar-thumb { background: #D4D4D4; border-radius: 99px; }

#photo-lightbox.flex { display: flex; }
#photo-lightbox-img.is-zoomed {
  max-height: none;
  max-width: none;
  width: 160%;
  cursor: zoom-out;
}

.nav-scrolled {
  background: rgba(255,255,255,.86) !important;
  border-color: #E5E5E5 !important;
  backdrop-filter: blur(18px);
}

@media (prefers-reduced-motion: reduce) {
  .marquee-content, .reveal-on-scroll, * { animation: none !important; transition: none !important; }
}
