:root {
  color-scheme: dark;
  --bg: #11110f;
  --surface: #1b1b18;
  --ink: #edede7;
  --muted: #aaa9a0;
  --line: rgba(237, 237, 231, 0.18);
  --accent: #ff4e2f;
  --on-media: #f2f2ec;
  --header-height: 74px;
  --page-pad: clamp(18px, 3vw, 48px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  text-rendering: geometricPrecision;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--accent);
  color: #fff;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 90;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  animation: page-progress linear both;
  animation-timeline: scroll(root);
}

@keyframes page-progress {
  to { transform: scaleX(1); }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  background: rgba(8, 8, 7, 0.28);
  color: var(--on-media);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: color 300ms ease, background 300ms ease, transform 300ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto var(--page-pad) 0;
  height: 1px;
  background: currentColor;
  opacity: 0.24;
}

.site-header.is-solid {
  background: var(--bg);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  color: var(--ink);
  text-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  width: 112px;
  filter: invert(1);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 34px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  opacity: 0.76;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-link:active {
  transform: translateY(1px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  overflow: clip;
  background: #151512;
  color: var(--on-media);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  animation: hero-breathe 12s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__poster {
  position: absolute;
  inset: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: 55% center;
  pointer-events: none;
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.74) 0%, rgba(8, 8, 7, 0.34) 48%, rgba(8, 8, 7, 0.04) 78%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.48), transparent 48%);
}

@keyframes hero-breathe {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100dvh;
  max-width: 1440px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0 auto;
  padding: var(--header-height) var(--page-pad) clamp(42px, 7vh, 88px);
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(58px, 9vw, 138px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.hero__intro {
  max-width: 430px;
  margin: 28px 0 30px;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.35;
}

.primary-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  padding: 0 20px;
  background: rgba(10, 10, 8, 0.22);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  backdrop-filter: blur(8px);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-link:hover,
.primary-link:focus-visible {
  background: #fff;
  color: #171715;
}

.curtain {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
}

.curtain span {
  background: #11110f;
  transform-origin: top;
  animation: curtain-open 1.1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.curtain span:nth-child(2) { animation-delay: 70ms; }
.curtain span:nth-child(3) { animation-delay: 140ms; }
.curtain span:nth-child(4) { animation-delay: 210ms; }

@keyframes curtain-open {
  to { transform: scaleY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: intro-reveal 800ms 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__title.reveal { animation-delay: 840ms; }
.hero__intro.reveal { animation-delay: 930ms; }
.primary-link.reveal { animation-delay: 1020ms; }

@keyframes intro-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.work-intro {
  display: grid;
  min-height: 72dvh;
  place-items: end start;
  padding: clamp(110px, 16vw, 230px) var(--page-pad) clamp(60px, 8vw, 110px);
}

.work-intro__copy {
  max-width: 780px;
}

.work-intro h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(50px, 8vw, 116px);
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.featured {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--page-pad) clamp(120px, 14vw, 210px);
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 78px) clamp(16px, 2.2vw, 34px);
}

.video-card {
  display: block;
  grid-column: 1 / -1;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.video-card__image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b0b0a;
}

.video-card__image::after {
  content: "Play";
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(10, 10, 8, 0.28);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(7px);
  transition: background 220ms ease, color 220ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.video-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 500ms ease;
}

.video-card:hover .video-card__image img,
.video-card:focus-visible .video-card__image img {
  filter: contrast(1.06);
}

.video-card:hover .video-card__image::after,
.video-card:focus-visible .video-card__image::after {
  background: #fff;
  color: #171715;
  transform: translate(-50%, -50%) scale(1.08);
}

.video-card__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 20px;
  padding-top: 15px;
}

.video-card__artist,
.video-card__meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card__title {
  grid-column: 1;
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.video-card__meta {
  grid-row: 1 / 3;
  grid-column: 2;
  align-self: end;
}

.video-skeleton {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
  background: linear-gradient(90deg, #1b1b18, #292925, #1b1b18);
  background-size: 220% 100%;
  animation: skeleton-shift 1.4s ease infinite;
}

.video-skeleton:first-child {
  grid-column: 1 / -1;
}

@keyframes skeleton-shift {
  to { background-position: -220% 0; }
}

.featured-error {
  grid-column: 1 / -1;
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  color: var(--muted);
}

.manifesto {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(100px, 15vw, 220px) var(--page-pad);
}

.manifesto__line {
  margin: 0;
  font-size: clamp(54px, 10.5vw, 158px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.manifesto__line--offset {
  align-self: flex-end;
  color: var(--accent);
}

.reveal-on-view {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1), transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-view.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.photo-reel {
  overflow: hidden;
  padding: clamp(100px, 13vw, 190px) 0;
  background: var(--surface);
}

.photo-reel__heading {
  width: min(760px, calc(100% - 2 * var(--page-pad)));
  margin: 0 0 clamp(42px, 6vw, 74px) var(--page-pad);
}

.photo-reel__heading h2 {
  margin: 0;
  font-size: clamp(48px, 7vw, 104px);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.photo-reel__heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.photo-carousel {
  width: 100%;
  overflow: hidden;
}

.photo-carousel__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  animation: photo-carousel var(--carousel-duration, 210s) linear infinite;
  will-change: transform;
}

.photo-carousel__track:hover,
.photo-carousel__track:focus-within {
  animation-play-state: paused;
}

.photo-carousel__item {
  width: clamp(310px, 42vw, 660px);
  height: clamp(280px, 48vh, 520px);
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-carousel__item:nth-child(3n + 2) {
  width: clamp(250px, 32vw, 500px);
  height: clamp(320px, 54vh, 580px);
}

.photo-carousel__item:hover,
.photo-carousel__item:focus-within {
  z-index: 2;
  transform: scale(1.045);
}

.photo-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 420ms ease;
}

.photo-carousel__item:hover img,
.photo-carousel__item:focus-within img {
  filter: contrast(1.06) saturate(1.04);
}

@keyframes photo-carousel {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 15px)); }
}

.contact {
  display: grid;
  min-height: 100dvh;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: start;
  gap: clamp(70px, 9vw, 150px);
  padding: clamp(110px, 14vw, 200px) var(--page-pad) 32px;
}

.contact__name {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(54px, 10.2vw, 148px);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.contact__email {
  display: inline-block;
  margin: 52px 0 120px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 7px;
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 28px;
  margin-top: 34px;
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  line-height: 1.4;
  transition: border-color 180ms ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  outline: 0;
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--accent);
}

.form-error,
.form-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.form-error {
  color: #ff826e;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-submit {
  width: max-content;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 15px 20px;
  background: var(--ink);
  color: var(--bg);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  background: var(--accent);
  color: #fff;
}

.form-submit:active {
  transform: translateY(1px);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.58;
}

.contact__meta {
  grid-column: 1 / -1;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 26px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__meta a {
  margin-left: auto;
  color: var(--ink);
}

.contact__meta a + a {
  margin-left: 0;
}

.video-modal {
  width: min(1180px, calc(100vw - 34px));
  max-width: none;
  max-height: calc(100dvh - 34px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  padding: 0;
  overflow: auto;
  background: #11110f;
  color: var(--ink);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.56);
}

.video-modal::backdrop {
  background: rgba(5, 5, 4, 0.48);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.video-modal__panel {
  position: relative;
  padding: clamp(12px, 2vw, 28px);
}

.video-modal__close {
  display: block;
  margin: 0 0 12px auto;
  border: 0;
  padding: 8px 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-modal__frame {
  aspect-ratio: 16 / 9;
  background: #050504;
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__info {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 40px;
  padding: clamp(28px, 4vw, 52px) 0 18px;
}

.video-modal__artist {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-modal__description {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.work-hero {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  overflow: clip;
  background: #090908;
  color: var(--on-media);
}

.work-hero__media,
.work-hero__shade {
  position: absolute;
  inset: 0;
}

.work-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: contrast(1.04);
  animation: hero-breathe 12s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.work-hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.88) 0%, rgba(8, 8, 7, 0.56) 48%, rgba(8, 8, 7, 0.16) 82%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.65), transparent 50%);
}

.work-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100dvh;
  max-width: 1440px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 0 auto;
  padding: var(--header-height) var(--page-pad) clamp(48px, 8vh, 96px);
}

.work-hero__title {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(64px, 11vw, 164px);
  font-weight: 700;
  letter-spacing: -0.078em;
  line-height: 0.82;
}

.work-hero__intro {
  max-width: 610px;
  margin: 30px 0;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.48;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-archive {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(110px, 14vw, 200px) var(--page-pad);
}

.work-archive__header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: clamp(40px, 8vw, 140px);
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(48px, 7vw, 92px);
}

.work-archive__header h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(54px, 9vw, 132px);
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.work-archive__intro {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 32px 0 clamp(58px, 7vw, 94px);
}

.work-filters button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.work-filters button:hover,
.work-filters button:focus-visible,
.work-filters button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(64px, 8vw, 120px) clamp(20px, 3vw, 48px);
}

.work-project {
  min-width: 0;
}

.work-group-divider {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(34px, 7vw, 120px);
  border-top: 1px solid var(--line);
  padding-top: clamp(72px, 10vw, 148px);
}

.work-group-divider .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.work-group-divider h2 {
  margin: 0;
  font-size: clamp(58px, 9vw, 132px);
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.work-group-divider > p:last-child {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}

.work-project--case-study {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(28px, 4.5vw, 76px);
  border-bottom: 1px solid var(--line);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.work-project--case-study .work-project__body {
  padding-top: 0;
}

.work-project--case-study h3 {
  font-size: clamp(52px, 7vw, 106px);
}

.work-project--case-study .work-project__description {
  min-height: 0;
}

.work-project__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #050504;
  cursor: pointer;
}

.work-project__media::after {
  content: "Play";
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: rgba(8, 8, 7, 0.3);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: background 220ms ease, color 220ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.work-project__media--case-study::after {
  content: "View";
}

.work-project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 420ms ease, transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.work-project__media:hover img,
.work-project__media:focus-visible img {
  filter: contrast(1.08);
  transform: scale(1.015);
}

.work-project__media:hover::after,
.work-project__media:focus-visible::after {
  background: #fff;
  color: #11110f;
  transform: scale(1.08);
}

.work-project__body {
  padding-top: 20px;
}

.work-project__topline,
.work-project__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-project__roles {
  color: var(--accent);
}

.work-project__artist {
  margin: 36px 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-project h3 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.work-project__description {
  max-width: 540px;
  min-height: 3em;
  margin: 22px 0 34px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.work-project__footer {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.work-project__footer button {
  border: 0;
  border-bottom: 1px solid var(--accent);
  padding: 0 0 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.work-project-skeleton {
  aspect-ratio: 16 / 10;
  background: linear-gradient(90deg, #1b1b18, #292925, #1b1b18);
  background-size: 220% 100%;
  animation: skeleton-shift 1.4s ease infinite;
}

.work-empty {
  grid-column: 1 / -1;
  min-height: 42dvh;
  border-top: 1px solid var(--line);
  padding-top: 42px;
}

.work-empty h3 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(46px, 8vw, 112px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.work-empty p {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.work-cta {
  display: flex;
  min-height: 86dvh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(100px, 14vw, 210px) var(--page-pad);
  background: var(--surface);
}

.work-cta h2 {
  max-width: 1220px;
  margin: 0 0 48px;
  font-size: clamp(54px, 10vw, 148px);
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.video-modal__info h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 6vw, 86px);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.video-modal__credits {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: start;
  gap: 13px 22px;
  margin: 0;
  padding-top: 8px;
  font-size: 13px;
  line-height: 1.4;
}

.video-modal__credits dt {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
}

.video-modal__credits dd {
  margin: 0;
}

.video-modal__credits dd a {
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.video-modal__credits dd a:hover,
.video-modal__credits dd a:focus-visible {
  border-color: var(--accent);
  color: var(--ink);
}

.video-modal__source {
  display: inline-block;
  margin-top: 28px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 5px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.modal-open {
  overflow: hidden;
}

body.modal-open > header,
body.modal-open > main {
  filter: blur(12px);
}

.noscript {
  position: fixed;
  inset: auto 0 0;
  z-index: 100;
  margin: 0;
  padding: 12px var(--page-pad);
  background: var(--accent);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

@media (max-width: 767px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    align-items: center;
  }

  .brand {
    width: 82px;
  }

  .site-nav {
    gap: 13px;
    font-size: 10px;
  }

  .site-nav a:nth-child(2) {
    display: none;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(8, 8, 7, 0.8), rgba(8, 8, 7, 0.03) 72%);
  }

  .hero__content {
    padding-bottom: 28px;
  }

  .hero__title {
    font-size: clamp(48px, 15.5vw, 72px);
    line-height: 0.86;
  }

  .hero__intro {
    max-width: 330px;
    margin: 20px 0 22px;
    font-size: 15px;
  }

  .work-intro {
    min-height: 64dvh;
    padding-top: 110px;
  }

  .featured__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .video-card,
  .video-skeleton,
  .video-skeleton:first-child {
    grid-column: 1;
    margin-top: 0;
  }

  .video-card__image::after {
    width: 62px;
    height: 62px;
  }

  .video-card__title {
    font-size: clamp(34px, 11vw, 52px);
  }

  .video-card__meta {
    display: none;
  }

  .manifesto {
    min-height: 82dvh;
    padding-right: 18px;
    padding-left: 18px;
  }

  .manifesto__line {
    font-size: clamp(50px, 16.7vw, 84px);
    line-height: 0.9;
  }

  .photo-reel {
    padding: 100px 0 84px;
  }

  .photo-carousel__item,
  .photo-carousel__item:nth-child(3n + 2) {
    width: 78vw;
    height: 48dvh;
  }

  .contact {
    min-height: 90dvh;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 110px;
  }

  .contact__email {
    margin-bottom: 90px;
  }

  .contact__meta {
    flex-wrap: wrap;
  }

  .contact__meta a,
  .contact__meta a + a {
    margin-left: 0;
  }

  .video-modal__info {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .video-modal__credits {
    grid-template-columns: minmax(84px, auto) minmax(0, 1fr);
  }

  .work-hero__media img {
    object-position: 63% center;
  }

  .work-hero__shade {
    background: linear-gradient(0deg, rgba(8, 8, 7, 0.92), rgba(8, 8, 7, 0.2) 78%);
  }

  .work-hero__content {
    padding-bottom: 30px;
  }

  .work-hero__title {
    font-size: clamp(62px, 18vw, 94px);
  }

  .work-hero__intro {
    margin: 22px 0;
    font-size: 15px;
  }

  .work-archive__header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
  }

  .work-filters {
    gap: 8px;
    padding-top: 24px;
  }

  .work-filters button {
    padding: 9px 12px;
    font-size: 10px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 78px;
  }

  .work-project h3 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .work-group-divider {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 84px;
  }

  .work-group-divider .section-kicker {
    grid-column: 1;
  }

  .work-group-divider h2 {
    font-size: clamp(58px, 18vw, 88px);
  }

  .work-project--case-study {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .work-project--case-study .work-project__body {
    padding-top: 20px;
  }

  .work-project--case-study h3 {
    font-size: clamp(46px, 15vw, 72px);
  }

  .work-project__description {
    min-height: 0;
  }

  .work-project__footer {
    align-items: flex-end;
  }

  .work-project__footer span {
    max-width: 42%;
  }

  .work-cta {
    min-height: 76dvh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-on-view {
    opacity: 1;
    transform: none;
  }

  .photo-carousel__track {
    animation: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-solid {
    background: var(--bg);
    backdrop-filter: none;
  }

  .primary-link {
    background: rgba(10, 10, 8, 0.82);
    backdrop-filter: none;
  }
}
