@font-face {
  font-family: "Helvetica Neue Bold";
  src: url("assets/fonts/HelveticaNeueBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ABC Diatype";
  src: url("assets/fonts/ABCDiatypeVariable-Trial.ttf") format("truetype-variations"),
       url("assets/fonts/ABCDiatypeVariable-Trial.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #f5f3ee;
  --ink: #0e0e0e;
  --ink-60: rgba(14, 14, 14, 0.6);
  --ink-30: rgba(14, 14, 14, 0.18);
  --rule: rgba(14, 14, 14, 0.12);
  --accent: #c8240e;

  --serif: "ABC Diatype", "Inter", sans-serif;
  --sans: "Inter", -apple-system, system-ui, sans-serif;

  --gutter: clamp(20px, 4vw, 56px);
  --col: 1fr;
  --max: 1680px;

  --t-xs: 11px;
  --t-sm: 13px;
  --t-md: 15px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: var(--t-md);
  line-height: 1.45;
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

img, video { display: block; max-width: 100%; height: auto; }

em { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
}

.meta {
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* ---------- Cursor ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: width 0.2s ease, height 0.2s ease;
  will-change: transform;
}
.cursor.is-hover { width: 32px; height: 32px; }
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}
html, body { cursor: none; }
@media (hover: none), (pointer: coarse) {
  html, body { cursor: auto; }
}
a, button, [role="button"], input, textarea, label { cursor: none; }
@media (hover: none), (pointer: coarse) {
  a, button, [role="button"], input, textarea, label { cursor: auto; }
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader__logo {
  width: clamp(120px, 14vw, 220px);
  height: auto;
  filter: brightness(0) invert(1);
  animation: loader-pulse 1.6s ease-in-out infinite;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
@keyframes loader-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}
body.is-loading { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .loader__logo { animation: none; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Moments slideshow ---------- */
.moments { padding: 0 0 clamp(60px, 9vh, 120px); }
.moments__head { padding: clamp(40px, 6vh, 80px) var(--gutter) 0; margin: 0; border: none; }

.slideshow {
  position: relative;
  width: 100vw;
  height: 80vh;
  overflow: hidden;
  cursor: none;
  user-select: none;
  touch-action: pan-y;
}
.slideshow:active { cursor: none; }
.slideshow img { -webkit-user-drag: none; user-drag: none; }

.hero__video--mobile { display: none; }
@media (max-width: 720px) {
  .hero__video--desktop { display: none; }
  .hero__video--mobile { display: block; }
}
.slideshow__track { position: absolute; inset: 0; }
.slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slideshow__slide.is-active { opacity: 1; }
.slideshow__slide .ph,
.slideshow__slide img,
.slideshow__slide video {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}
.slideshow__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s ease;
}
.slideshow__btn:hover { background: rgba(0,0,0,0.7); }
.slideshow__btn--prev { left: var(--gutter); }
.slideshow__btn--next { right: var(--gutter); }
.slideshow__counter {
  position: absolute;
  bottom: 24px;
  right: var(--gutter);
  color: #fff;
  font-family: var(--sans);
  font-size: var(--t-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  mix-blend-mode: difference;
}
.carousel {
  width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel__track {
  display: flex;
  gap: 24px;
  padding: 0 var(--gutter);
}
.carousel__slide {
  flex: 0 0 min(86vw, 1200px);
  scroll-snap-align: center;
}
.carousel__slide .ph,
.carousel__slide img,
.carousel__slide video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink-30);
}
.carousel__slide figcaption {
  margin-top: 12px;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  background: transparent;
  color: #ffffff;
  transition: color 0.3s ease;
}
.site-header .brand img { transition: filter 0.3s ease; }
.site-header.is-scrolled { color: var(--ink); }
.site-header.is-scrolled .brand img { filter: brightness(0); }
.site-header .brand img { filter: brightness(0) invert(1); }

.brand {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand span { color: var(--accent); }
.brand img { display: block; height: 28px; width: auto; }
@media (max-width: 720px) { .brand img { height: 24px; } }

.nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 36px);
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: var(--t-sm);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav a { position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  z-index: 60;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 24px;
  background: #fff;
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.2s ease;
}
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.is-open span { background: #fff !important; }
.site-header.is-scrolled .nav-toggle.is-open span {
  background: #fff !important;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 20px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 55;
  }
  .nav.is-open { transform: translateY(0); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  background: #1a1a1a;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__placeholder {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 10vw, 140px);
  color: rgba(245, 243, 238, 0.08);
  letter-spacing: -0.02em;
  pointer-events: none;
}

.hero__caption {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(40px, 8vh, 90px);
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 24px;
  color: #f5f3ee;
}
.hero__caption .eyebrow { color: rgba(245,243,238,0.7); grid-column: 1; }
.hero__title {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 13vw, 220px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-top: 14px;
}
.hero__caption .meta {
  font-family: "ABC Diatype", "Inter", sans-serif;
  color: rgba(245,243,238,0.7);
}
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.hero__scroll:hover { color: #fff; }
.hero__scroll-arrow {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  animation: scroll-fade 2s ease-in-out infinite;
}
@keyframes scroll-fade {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll-arrow { animation: none; }
}

/* ---------- Intro ---------- */
.intro {
  padding: clamp(120px, 18vh, 220px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.intro__lede {
  font-family: var(--serif);
  font-size: clamp(28px, 4.6vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 22ch;
}

/* ---------- Section heads ---------- */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(48px, 8vw, 120px);
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 96px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.section-head .count {
  font-family: var(--sans);
  font-size: var(--t-sm);
  color: var(--ink-60);
  margin-left: 14px;
  letter-spacing: 0.04em;
}

/* ---------- Work ---------- */
.work {
  padding: clamp(60px, 10vh, 140px) var(--gutter) clamp(80px, 12vh, 180px);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  row-gap: clamp(80px, 14vh, 200px);
}
.work .section-head { grid-column: 1 / -1; margin-bottom: 0; }

.work__item { display: flex; flex-direction: column; gap: 18px; }
.work__item--lg { grid-column: span 7; }
.work__item--md { grid-column: 7 / span 6; }
.work__item--sm { grid-column: 2 / span 5; }
.work__item--lg:nth-of-type(4) { grid-column: 4 / span 7; }

.work__meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.work__meta .num {
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  color: var(--ink-60);
}
.work__meta h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: -0.01em;
}
.work__meta .tag {
  margin-left: auto;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* placeholders */
.ph {
  width: 100%;
  background:
    linear-gradient(135deg, rgba(14,14,14,.04), rgba(14,14,14,.08));
  position: relative;
  overflow: hidden;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--ink-30) 1px, transparent 1px),
    linear-gradient(to bottom, var(--ink-30) 1px, transparent 1px);
  background-size: 100% 100%;
  opacity: 0.5;
}
.ph::before {
  content: "Image";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  color: var(--ink-30);
  z-index: 1;
}
.ph--portrait { aspect-ratio: 4 / 5; }
.ph--landscape { aspect-ratio: 16 / 10; }
.ph--square { aspect-ratio: 1 / 1; }

/* ---------- Roster (Agency) ---------- */
.roster {
  min-height: 100vh;
  padding: clamp(80px, 12vh, 160px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 56px;
}
.roster__head { margin-bottom: 8px; }
.roster__discipline {
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: var(--t-xs);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 16px;
}
.roster__list {
  list-style: none;
  display: grid;
  gap: 6px;
}
.roster__list a {
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink-30);
  transition: color 0.2s ease;
}
.roster__list a:hover { color: var(--ink); }

.roster__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.roster__preview {
  position: sticky;
  top: 120px;
  width: 100%;
  height: calc(100vh - 160px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}
.roster__preview img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.roster__preview img.is-visible { opacity: 1; }
@media (max-width: 900px) {
  .roster__layout { grid-template-columns: 1fr; }
  .roster__preview { display: none; }
}

/* ---------- Venue form ---------- */
.venue {
  padding: clamp(80px, 12vh, 160px) var(--gutter);
  max-width: 880px;
  margin: 0 auto;
}
.venue__head { margin-bottom: 48px; display: grid; gap: 16px; }
.venue__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.venue__head p { color: var(--ink-60); }
.venue__form { display: grid; gap: 24px; }
.venue__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.venue__form label { display: grid; gap: 8px; }
.venue__form span {
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.venue__form input,
.venue__form textarea {
  font-family: var(--sans);
  font-size: var(--t-md);
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-30);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s ease;
}
.venue__form input:focus,
.venue__form textarea:focus { border-bottom-color: var(--ink); }
.venue__form textarea { resize: vertical; }
.venue__submit {
  justify-self: start;
  margin-top: 8px;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--bg);
  border: none;
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.venue__submit:hover { opacity: 0.85; }
@media (max-width: 720px) {
  .venue__row { grid-template-columns: 1fr; }
}

/* ---------- Events ---------- */
.events {
  padding: clamp(60px, 8vh, 110px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.events__head { margin-bottom: 32px; }
.events__head { text-align: right; }
.events__head h2 {
  font-family: "Helvetica Neue Bold", var(--sans);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.95;
}
.events__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.events__item { display: flex; flex-direction: column; gap: 14px; }
.events__media { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; }
.event-slideshow {
  position: relative;
  overflow: hidden;
}
.event-slideshow__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.event-slideshow__slide.is-active { opacity: 1; }
.events__meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.events__meta .num {
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  color: var(--ink-60);
}
.events__meta h3 {
  font-family: "Helvetica Neue Bold", var(--sans);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px);
  letter-spacing: -0.01em;
}
.events__meta .tag {
  margin-left: auto;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.events__cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 4px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  font-family: "ABC Diatype", "Inter", sans-serif;
  font-size: var(--t-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.events__cta:hover { background: var(--ink); color: var(--bg); }
@media (max-width: 720px) {
  .events__list { grid-template-columns: 1fr; }
}

/* ---------- About ---------- */
.about {
  padding: clamp(100px, 16vh, 200px) var(--gutter);
  max-width: none;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 36px;
  justify-items: center;
}
.about__quote {
  font-family: "Helvetica Neue Bold", var(--sans);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: none;
  margin: 0;
}
.about__attr {
  font-family: var(--sans);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink);
}

/* ---------- Journal ---------- */
.journal {
  padding: clamp(60px, 10vh, 140px) var(--gutter) clamp(120px, 16vh, 220px);
  max-width: var(--max);
  margin: 0 auto;
}
.journal__list { list-style: none; }
.journal__list li {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding .5s cubic-bezier(.2,.8,.2,1);
}
.journal__list li:hover { padding-left: 14px; }
.journal__list .date {
  font-size: var(--t-sm);
  color: var(--ink-60);
  letter-spacing: 0.04em;
}
.journal__list a {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 40px);
  letter-spacing: -0.01em;
}
.journal__list .tag {
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-60);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: clamp(60px, 9vh, 110px) var(--gutter) 28px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
}
.footer__col { display: grid; gap: 14px; align-content: start; }
.footer__col ul { list-style: none; display: grid; gap: 6px; }
.footer__col p, .footer__col a, .footer__col li {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
}
.footer__mail { border-bottom: 1px solid var(--ink-30); padding-bottom: 4px; width: max-content; }
.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: clamp(60px, 10vh, 120px);
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: var(--t-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { gap: 18px; }

  .hero__caption { grid-template-columns: 1fr; }
  .hero__caption .meta { justify-self: start; }

  .work { grid-template-columns: repeat(6, 1fr); row-gap: 80px; }
  .work__item--lg,
  .work__item--md,
  .work__item--sm,
  .work__item--lg:nth-of-type(4) { grid-column: 1 / -1; }

  .journal__list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 24px 0;
  }
  .journal__list li:hover { padding-left: 0; }

  .site-footer { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 8px; margin-top: 60px; }
}

@media (max-width: 560px) {
  .site-header { padding: 18px var(--gutter); }
  .brand { font-size: 24px; }
  .hero { min-height: 560px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
