:root {
  --ink: #0a0a09;
  --paper: #f1eee7;
  --acid: #d7ff3f;
  --muted: #9a9890;
  --line: rgba(241, 238, 231, 0.18);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Archivo", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }
a, button { color: inherit; }
button { font: inherit; }
img, video { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(22px, 4vw, 64px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-transform: uppercase;
}

.brand__copy strong { font-size: 11px; letter-spacing: 0.12em; }
.brand__copy small { color: #aaa8a0; font-size: 8px; letter-spacing: 0.24em; }

.nav { display: flex; align-items: center; gap: 32px; }

.nav a {
  position: relative;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--acid);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-button { display: none; }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 120px clamp(22px, 4vw, 64px) clamp(38px, 7vh, 74px);
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
}

.hero::before {
  top: 2%;
  right: 6%;
  width: min(50vw, 660px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 32% 30%, rgba(215, 255, 63, 0.85), transparent 18%),
    radial-gradient(circle at 52% 44%, #5230a5, #171119 61%, transparent 62%);
  opacity: 0.68;
  animation: float 9s ease-in-out infinite;
}

.hero::after {
  top: -24%;
  right: -8%;
  width: 44vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
}

@keyframes float { 50% { transform: translate3d(-3%, 4%, 0) scale(1.035); } }

.hero__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(26px, 5vh, 52px);
  color: #aaa8a0;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(215, 255, 63, 0.08);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(215, 255, 63, 0); } }

.hero h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(66px, 10.7vw, 164px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.72;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  margin-left: 0.42em;
  color: var(--acid);
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 1.08;
}

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 34px;
}

.hero__bottom p {
  max-width: 420px;
  margin: 0 0 6px 8%;
  color: #afada6;
  font-size: 13px;
  line-height: 1.65;
}

.hero__bottom strong { color: var(--paper); font-weight: 500; }

.round-link {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  transition: 250ms ease;
}

.round-link:hover {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
  transform: rotate(-45deg);
}

.hero__number {
  position: absolute;
  right: clamp(22px, 4vw, 64px);
  bottom: 35%;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--display);
  font-size: 18px;
}

.catalog { padding: clamp(76px, 11vw, 150px) clamp(22px, 4vw, 64px); }
.section-heading, .filter-row { display: flex; align-items: flex-end; justify-content: space-between; }

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--acid);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 8.5vw, 124px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.8;
}

.sync {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 7px;
}

.sync > span, .item-count {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sync button {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-bottom: 1px solid var(--paper);
  background: none;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 5px 0;
  text-transform: uppercase;
}

.sync button:disabled { cursor: wait; opacity: 0.55; }
.refresh-icon { display: inline-block; font-size: 15px; }
.is-spinning { animation: spin 750ms linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.filter-row {
  margin: 58px 0 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.filters { display: flex; gap: 7px; }

.filters button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 9px;
  letter-spacing: 0.11em;
  padding: 9px 15px;
  text-transform: uppercase;
  transition: 180ms ease;
}

.filters button:hover, .filters button.is-active {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 28px;
  border-left: 2px solid var(--acid);
  background: rgba(255, 255, 255, 0.035);
  padding: 16px 18px;
}

.notice span {
  color: var(--acid);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.notice p { max-width: 560px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }

.media-grid, .loading-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(10px, 1.3vw, 20px);
}

.media-card { grid-column: span 4; }
.media-card:nth-child(6n + 1), .media-card:nth-child(6n + 4) { grid-column: span 5; }
.media-card:nth-child(6n + 2), .media-card:nth-child(6n + 5) { grid-column: span 3; }

.media-card button {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  background: #171715;
  cursor: zoom-in;
  padding: 0;
  text-align: left;
}

.media-card:nth-child(6n + 1) button, .media-card:nth-child(6n + 5) button { aspect-ratio: 4 / 5; }
.media-card:nth-child(6n + 2) button, .media-card:nth-child(6n + 4) button { aspect-ratio: 3 / 4; }
.media-card:nth-child(6n + 3) button, .media-card:nth-child(6n + 6) button { aspect-ratio: 1; }

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.04);
  transition: filter 500ms ease, transform 750ms cubic-bezier(.16, 1, .3, 1);
}

.media-card button:hover img { filter: saturate(1.08); transform: scale(1.045); }

.media-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 48%);
}

.media-card__index, .media-card__type {
  position: absolute;
  top: 16px;
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.media-card__index { left: 16px; }
.media-card__type { right: 16px; border-radius: 99px; background: rgba(0,0,0,.55); padding: 7px 9px; }

.media-card__meta {
  position: absolute;
  right: 17px;
  bottom: 17px;
  left: 17px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
}

.media-card__meta strong {
  display: -webkit-box;
  overflow: hidden;
  max-width: 78%;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.media-card__meta small { color: #d0cec8; font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }

.loading-grid span {
  grid-column: span 4;
  aspect-ratio: 4 / 5;
  background: linear-gradient(100deg, #141412 20%, #211f1b 45%, #141412 70%);
  background-size: 240% 100%;
  animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer { to { background-position-x: -240%; } }
.empty-state { margin: 80px 0; color: var(--muted); text-align: center; }

.manifesto {
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
  padding: clamp(80px, 12vw, 170px) clamp(22px, 4vw, 64px);
}

.manifesto > span { font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.manifesto p { margin: 9vw 0 0; font-size: clamp(23px, 3vw, 44px); letter-spacing: -.05em; }
.manifesto h2 {
  margin: -.1em 0 0;
  font-family: var(--display);
  font-size: clamp(100px, 18vw, 270px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.085em;
  line-height: .8;
}

footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  align-items: end;
  padding: 70px clamp(22px, 4vw, 64px) 38px;
}

.footer-brand { font-family: var(--display); font-size: clamp(90px, 14vw, 210px); font-style: italic; letter-spacing: -.1em; line-height: .6; }
.footer-brand sup { font-family: var(--sans); font-size: 12px; font-style: normal; }
footer p, footer a, footer small { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
footer p { color: var(--muted); }
footer a { text-decoration-color: var(--acid); text-underline-offset: 5px; }
footer small { color: #77766f; text-align: right; }

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.lightbox__backdrop { position: absolute; inset: 0; border: 0; background: rgba(0,0,0,.89); backdrop-filter: blur(12px); cursor: zoom-out; }
.lightbox__content {
  position: relative;
  display: grid;
  width: min(1100px, 94vw);
  max-height: 88vh;
  grid-template-columns: minmax(0, 1.5fr) minmax(230px, .55fr);
  overflow: hidden;
  background: #11110f;
  animation: enter 280ms cubic-bezier(.16, 1, .3, 1);
}

@keyframes enter { from { opacity: 0; transform: translateY(20px) scale(.985); } }
.lightbox__media { display: grid; min-height: 65vh; place-items: center; background: #050505; }
.lightbox__media img, .lightbox__media video { width: 100%; height: 100%; max-height: 88vh; object-fit: contain; }
.lightbox__copy { display: flex; flex-direction: column; justify-content: flex-end; padding: 38px; }
.lightbox__copy span { color: var(--acid); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.lightbox__copy p { margin: 18px 0 34px; font-family: var(--display); font-size: 24px; line-height: 1.1; }
.lightbox__copy a { font-size: 9px; letter-spacing: .1em; text-decoration-color: var(--acid); text-underline-offset: 5px; text-transform: uppercase; }
.lightbox__close {
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 13px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: rgba(0,0,0,.45);
  cursor: pointer;
  font-size: 24px;
}

.noscript { position: fixed; z-index: 200; right: 20px; bottom: 20px; left: 20px; background: var(--acid); color: var(--ink); padding: 16px; text-align: center; }

@media (max-width: 800px) {
  .topbar { padding-top: 20px; }
  .menu-button {
    z-index: 2;
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(0,0,0,.22);
  }
  .menu-button span { width: 14px; height: 1px; background: var(--paper); }
  .nav {
    position: absolute;
    top: 12px;
    right: 14px;
    display: none;
    width: min(280px, calc(100vw - 28px));
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    border: 1px solid var(--line);
    background: rgba(10,10,9,.96);
    padding: 75px 28px 28px;
  }
  .nav.is-open { display: flex; }
  .hero { min-height: 820px; }
  .hero::before { top: 14%; right: -36%; width: 96vw; }
  .hero h1 { font-size: clamp(64px, 18vw, 98px); line-height: .78; }
  .hero h1 em { margin-left: 0; }
  .hero__bottom p { max-width: 260px; margin-left: 0; }
  .round-link { width: 52px; height: 52px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 35px; }
  .sync { width: 100%; justify-content: space-between; }
  .notice { align-items: flex-start; flex-direction: column; gap: 9px; }
  .media-grid, .loading-grid { grid-template-columns: repeat(2, 1fr); }
  .media-card, .media-card:nth-child(n), .loading-grid span { grid-column: span 1; }
  .media-card:nth-child(3n + 1) { grid-column: span 2; }
  .media-card:nth-child(3n + 1) button { aspect-ratio: 4 / 3; }
  footer { grid-template-columns: 1fr; gap: 35px; }
  footer small { text-align: left; }
  .lightbox__content { max-height: 94vh; grid-template-columns: 1fr; overflow-y: auto; }
  .lightbox__media { min-height: 50vh; }
  .lightbox__copy { padding: 26px; }
}

@media (max-width: 480px) {
  .brand__copy { display: none; }
  .filter-row { align-items: flex-start; flex-direction: column; gap: 16px; }
  .media-grid { display: block; }
  .media-card { margin-bottom: 12px; }
  .media-card:nth-child(n) button { aspect-ratio: 4 / 5; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
