@font-face {
  font-family: "Antonio";
  src: url("assets/fonts/Antonio/Antonio-VariableFont_wght.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}

@font-face {
  font-family: "Safiro";
  src: url("assets/fonts/safiro-regular-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Safiro";
  src: url("assets/fonts/safiro-medium-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Safiro";
  src: url("assets/fonts/safiro-semibold-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Safiro";
  src: url("assets/fonts/safiro-bold-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #171717;
  --ink-soft: #202020;
  --paper: #f0eee8;
  --white: #f8f8f5;
  --grey: #777775;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #d15c4e;
  --display: "Antonio", "Arial Narrow", sans-serif;
  --sans: "Safiro", Arial, sans-serif;
  --page-x: clamp(20px, 5vw, 84px);
  --radius-lg: clamp(12px, 1.35vw, 24px);
}

* {
  box-sizing: border-box;
}

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

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  cursor: none;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  cursor: none;
}

img,
video {
  display: block;
  width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

::selection {
  color: var(--ink);
  background: var(--paper);
}

.section-pad {
  padding-inline: var(--page-x);
}


section[id] {
  scroll-margin-top: 100px;
}

.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #111;
  transition: transform 1.15s cubic-bezier(.76, 0, .24, 1) .2s;
}

.page-curtain.is-hidden {
  transform: translateY(-101%);
}

.page-curtain__mark {
  font-family: var(--display);
  font-size: clamp(62px, 10vw, 150px);
  letter-spacing: -.06em;
}

.page-curtain__line {
  position: absolute;
  right: 8vw;
  bottom: 8vh;
  left: 8vw;
  height: 1px;
  overflow: hidden;
  background: #2d2d2d;
}

.page-curtain__line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: translateX(-100%);
  animation: loading-line 1.1s cubic-bezier(.65, 0, .35, 1) forwards;
}

@keyframes loading-line {
  to { transform: translateX(0); }
}

.fluid-cursor {
  position: fixed;
  inset: 0;
  z-index: 1090;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: .42;
  filter: blur(2px) saturate(5.2);
  mix-blend-mode: screen;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  display: grid;
  width: 7px;
  height: 7px;
  pointer-events: none;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 16px rgba(255, 255, 255, .65);
  mix-blend-mode: difference;
  transform: translate3d(-100px, -100px, 0);
  transition: width .35s ease, height .35s ease, background .35s ease, box-shadow .35s ease;
}

.cursor.is-active {
  width: 88px;
  height: 88px;
  background: var(--white);
  box-shadow: none;
  mix-blend-mode: normal;
}

.cursor__label {
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .2s ease;
}

.cursor.is-active .cursor__label {
  opacity: 1;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 18px var(--page-x) 12px;
  background: linear-gradient(to bottom, rgba(23, 23, 23, .8), transparent);
  transform: translateY(-120%);
  transition: transform .8s cubic-bezier(.22, 1, .36, 1), background .35s ease, padding .35s ease;
}

.site-header.is-visible {
  transform: translateY(0);
}

.site-header.is-scrolled {
  padding-top: 10px;
  background: rgba(23, 23, 23, .84);
  backdrop-filter: blur(12px);
}

.site-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr 1fr 1fr;
  align-items: start;
}

.nav-link,
.menu-button {
  position: relative;
  width: max-content;
  padding-block: 7px;
  font-family: var(--display);
  font-size: clamp(18px, 1.55vw, 27px);
  line-height: 1;
  text-transform: uppercase;
}

.nav-link:nth-of-type(2) {
  justify-self: center;
}

.nav-link:nth-of-type(4) {
  justify-self: center;
}

.nav-link:nth-of-type(5) {
  justify-self: end;
}

.nav-link::after,
.contact-link span::after,
.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

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

.site-logo {
  justify-self: center;
  width: clamp(68px, 5.6vw, 92px);
}

.site-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.menu-button {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  padding: 140px var(--page-x) 40px;
  visibility: hidden;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
  color: var(--ink);
  opacity: 0;
  transform: translateY(-100%);
  transition: transform .8s cubic-bezier(.76, 0, .24, 1), opacity .35s ease, visibility .8s;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: grid;
  padding-block: 8px;
  grid-template-columns: 40px 1fr;
  border-bottom: 1px solid rgba(0, 0, 0, .18);
  font-family: var(--display);
  font-size: clamp(50px, 14vw, 90px);
  line-height: .95;
  text-transform: uppercase;
}

.mobile-menu nav span {
  padding-top: 8px;
  font-family: var(--sans);
  font-size: 11px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 88vh;
  padding: 15vh max(8vw, 40px) 6vh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero__eyebrow {
  margin: 0 0 3vh;
  color: #9c9c98;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  text-align: center;
}

.hero__title span {
  display: block;
  font-family: var(--display);
  /* font-size: clamp(58px, 7vw, 126px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .86;
  text-transform: uppercase; */
   font-size: 7vw;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 7vw;
    letter-spacing: -0.3rem;
    word-spacing: 7px;
}

.hero__footer {
  position: absolute;
  right: var(--page-x);
  bottom: 2.5vh;
  left: var(--page-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  color: #8b8b87;
  font-size: 10px;
  letter-spacing: .06em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero__footer p {
  margin: 0;
}

.hero__footer p:last-child {
  text-align: right;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-cue svg {
  width: 18px;
}

.showreel {
  position: relative;
  display: flex;
  min-height: 135vh;
  padding-bottom: 8vh;
  align-items: flex-start;
  justify-content: center;
}

.showreel__frame {
  position: sticky;
  top: 9vh;
  width: var(--media-width, 80vw);
  height: 82vh;
  overflow: hidden;
  border-radius: var(--media-radius, var(--radius-lg));
  transition: width .08s linear, border-radius .08s linear;
}

.showreel video,
.about-film video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .06), rgba(0, 0, 0, .38));
}

.showreel__caption {
  position: absolute;
  right: 28px;
  bottom: 22px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-size: clamp(20px, 2.1vw, 34px);
  text-transform: uppercase;
}

.studio-facts {
  display: grid;
  padding-top: 8vh;
  padding-bottom: 16vh;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3vw;
  width: 91%;
  margin: 0 auto;
}

.micro-label {
  margin: 0 0 26px;
  color: #8b8b87;
  font-size: 13px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.studio-facts h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(32px, 3.8vw, 68px);
  letter-spacing: -.035em;
  line-height: .97;
  text-transform: uppercase;
}

.fill-text {
  --fill-progress: 0%;
  color: transparent;
  background: linear-gradient(90deg, var(--white) 0%, var(--white) var(--fill-progress), #353535 var(--fill-progress), #353535 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.works {
  padding-top: 8vh;
  padding-bottom: 16vh;
}

.section-head {
  display: grid;
  margin-bottom: 9vh;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.section-head h2,
.why__intro h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(55px, 7vw, 102px);
    letter-spacing: -.03em;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-head > p {
  margin: 0;
  color: #8b8b87;
  font-size: 11px;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  width: 91%;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15vh 12vw;
}

.project-card {
  min-width: 0;
  text-align: left;
}

.project-card--offset {
  margin-top: 15vh;
}

.project-card__media {
  position: relative;
  display: block;
  height: clamp(320px, 46vh, 600px);
  overflow: hidden;
  border-radius: 12px;
  transform: translate3d(0, var(--shift, 0), 0);
}

.project-card__media--portrait {
  height: clamp(410px, 65vh, 780px);
}

.project-card video {
  width: 100%;
  height: 115%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(.22, 1, .36, 1), filter .8s ease;
}

.project-card__media--portrait video {
  object-position: center 42%;
}

.project-card__veil {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: inherit;
  background: rgba(0, 0, 0, .06);
  transition: background .6s ease;
}

.project-card:hover video,
.project-card:focus-visible video {
  filter: saturate(1.08);
  transform: scale(1.08);
}

.project-card:hover .project-card__veil,
.project-card:focus-visible .project-card__veil {
  background: rgba(0, 0, 0, 0);
}

.project-card__meta {
  display: flex;
  padding-top: 17px;
  align-items: flex-start;
  justify-content: space-between;
  color: #8b8b87;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-card__meta > span:first-child {
  display: flex;
  flex-direction: column;
}

.project-card__meta strong {
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1;
}

.project-card__meta small {
  margin-top: 7px;
  font-size: 15px;
}

.round-link {
  display: flex;
  width: max-content;
  margin: 11vh auto 0;
  padding: 16px 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 5px;
  background: #050505;
  gap: 12px;
  text-align: center;
  text-transform: uppercase;
  transition: border-color .35s ease, background .35s ease, transform .35s ease;
}

.round-link span {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1;
}

.round-link svg {
  width: 18px;
}

.round-link:hover,
.round-link:focus-visible {
  border-color: rgba(255, 255, 255, .4);
  background: #0d0d0d;
  transform: translateY(-2px);
}

.partners {
  overflow: hidden;
  padding-top: 3vh;
  padding-bottom: 16vh;
}

.partners .section-head {
  margin-bottom: 7vh;
}

.partner-marquees {
  display: grid;
  gap: 16px;
}

.partner-marquee {
  overflow: hidden;
  padding: 2px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.partner-track {
  display: flex;
  width: max-content;
  animation: partner-scroll 34s linear infinite;
  will-change: transform;
}

.partner-marquee--reverse .partner-track {
  animation-direction: reverse;
  animation-duration: 28s;
}

.partner-marquees:hover .partner-track {
  animation-play-state: paused;
}

.partner-group {
  display: flex;
  margin: 0;
  padding: 0 16px 0 0;
  gap: 16px;
  list-style: none;
}

.partner-logo {
  display: grid;
  width: 220px;
  height: 116px;
  padding: 20px 26px;
  flex: 0 0 220px;
  place-items: center;
  border-radius: 12px;
  background-color: #0808087d;
  transition: background-color .45s ease, border-color .45s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
}

.partner-logo img {
  width: 100%;
  height: 76px;
  object-fit: contain;
  opacity: .88;
  filter: grayscale(1) invert(1) brightness(1.65) contrast(1.1);
  transition: filter .45s ease, opacity .45s ease;
}

.partner-logo:hover {
  border-color: rgba(255, 255, 255, .36);
  background-color: #111;
  transform: scale(.97);
}

.partner-logo:hover img {
  opacity: 1;
  filter: grayscale(1) invert(1) brightness(1.65) contrast(1.1);
}

@keyframes partner-scroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.manifesto {
  min-height: 100vh;
  padding-top: 16vh;
  padding-bottom: 12vh;
}

.manifesto__quote {
  max-width: 1300px;
  margin: 8vh 0 12vh;
  font-family: var(--display);
  font-size: clamp(54px, 7.2vw, 126px);
  letter-spacing: -.05em;
  line-height: .91;
  text-transform: uppercase;
}

.manifesto__signature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #999995;
  font-size: 13px;
}

.manifesto__signature p {
  margin: 0;
}

.manifesto__signature p:last-child {
  justify-self: end;
  text-align: right;
}

.expertise {
  padding-top: 14vh;
  padding-bottom: 14vh;
  background: var(--paper);
  color: var(--ink);
}

.expertise .micro-label,
.expertise .section-head > p {
  color: #77736d;
}

.service-list {
  border-top: 1px solid rgba(0, 0, 0, .22);
}

.service-row {
  display: grid;
  min-height: 185px;
  padding: 28px 0 34px;
  grid-template-columns: 72px 1.7fr 1fr;
  align-items: start;
  gap: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, .22);
  transition: padding .45s ease, color .35s ease;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #77736d;
  transition: color .35s ease, transform .45s cubic-bezier(.22, 1, .36, 1);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-row h3 {
  max-width: 700px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 4.1vw, 70px);
  letter-spacing: -.04em;
  line-height: .95;
  text-transform: uppercase;
}

.service-row p {
  max-width: 410px;
  margin: 5px 0 0;
  color: #5f5c57;
  font-size: 16px;
}

.service-row:hover {
  padding-inline: 18px;
  color: var(--accent);
}

.service-row:hover .service-icon {
  color: var(--accent);
  transform: translateY(-3px) rotate(-4deg);
}

.why {
  padding-top: 16vh;
  padding-bottom: 16vh;
  background: var(--paper);
  color: var(--ink);
}

.why__intro {
  position: relative;
  display: grid;
  margin-bottom: 10vh;
  grid-template-columns: 1fr 2fr;
  align-items: start;
}

.why__intro .micro-label {
  color: #77736d;
}

.why__intro > span {
  position: absolute;
  right: 0;
  top: 0;
  color: #77736d;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0, 0, 0, .2);
}

.pillars article {
  min-height: 330px;
  padding: 28px 34px 36px 0;
  border-right: 1px solid rgba(0, 0, 0, .2);
}

.pillars article:not(:first-child) {
  padding-left: 34px;
}

.pillars article:last-child {
  border-right: 0;
}

.pillars span {
  color: #77736d;
  font-size: 11px;
}

.pillars h3 {
  max-width: 350px;
  margin: 12vh 0 22px;
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 50px);
  letter-spacing: -.035em;
  line-height: .97;
  text-transform: uppercase;
}

.pillars p {
  max-width: 390px;
  margin: 0;
  color: #5f5c57;
  font-size: 14px;
}

.about {
  overflow: hidden;
  padding-top: 16vh;
  padding-bottom: 16vh;
}

.about-film {
  position: relative;
  display: block;
  width: var(--about-width, 100vw);
  height: min(75vh, 780px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--about-radius, 0);
  text-align: left;
}

.about-film video {
  transform: scale(1.02);
  transition: transform 1.3s cubic-bezier(.22, 1, .36, 1);
}

.about-film:hover video,
.about-film:has(.about-film__play:focus-visible) video {
  transform: scale(1.07);
}

.about-film__filter {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 5, 5, .18), rgba(5, 5, 5, .9));
  backdrop-filter: saturate(.72);
  transition: background .6s ease, backdrop-filter .6s ease;
}

.about-film:hover .about-film__filter {
  background: linear-gradient(180deg, rgba(5, 5, 5, .12), rgba(5, 5, 5, .32));
  backdrop-filter: saturate(.9);
}

.about-film__header {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  padding: 8%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  pointer-events: none;
  text-align: center;
}

.about-film__header .micro-label {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .72);
}

.about-film__header h2 {
  max-width: 1200px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6.8vw, 118px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  text-transform: uppercase;
}

.about-film__play {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  color: inherit;
  text-align: left;
}

.about-film__label {
  position: absolute;
  right: 30px;
  bottom: 24px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 50px);
  text-transform: uppercase;
}

.about-film__label > span:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 1.6vw, 26px);
}

.about-film__label svg {
  width: 28px;
}

.contact-cta {
  min-height: 88vh;
  padding-top: 18vh;
  padding-bottom: 10vh;
}

.contact-cta h2 {
  width: max-content;
  max-width: 100%;
  margin: 7vh 0;
  font-family: var(--display);
  font-size: clamp(68px, 10vw, 175px);
  letter-spacing: -.055em;
  line-height: .83;
  text-transform: uppercase;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 48px);
  text-transform: uppercase;
}

.contact-link span {
  position: relative;
}

.contact-link svg {
  width: 34px;
  transition: transform .4s ease;
}

.contact-link:hover svg {
  transform: translateX(10px);
}

.site-footer {
  display: grid;
  padding-top: 8vh;
  padding-bottom: 26px;
  grid-template-columns: 2fr .8fr 1fr;
  gap: 6vw;
  border-top: 1px solid var(--line);
  color: #a4a4a0;
  font-size: 16px;
}

.footer-brand img {
  width: 92px;
  height: 92px;
  margin: -18px 0 10px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  position: relative;
  display: block;
  width: max-content;
  margin-bottom: 6px;
}

.footer-bottom {
  display: flex;
  padding-top: 8vh;
  grid-column: 1 / -1;
  justify-content: space-between;
  color: #676765;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.theme-toggle {
  display: inline-flex;
  width: max-content;
  padding: 0;
  align-items: center;
  gap: 9px;
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.theme-toggle__track {
  position: relative;
  display: block;
  width: 30px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.theme-toggle__track i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  transform: translateX(0);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

html:not(.theme-light) .theme-toggle__track i {
  transform: translateX(14px);
}

.video-modal {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  padding: 0;
  border: 0;
  background: rgba(8, 8, 8, .98);
  color: var(--white);
}

.video-modal::backdrop {
  background: rgba(0, 0, 0, .86);
}

.video-modal__close {
  position: fixed;
  top: 24px;
  right: 30px;
  z-index: 2;
  padding: 10px;
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
}

.video-modal__body {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 8vh 5vw 4vh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.video-modal video {
  width: 100%;
  max-width: 1400px;
  max-height: 82vh;
  object-fit: contain;
}

.video-modal p {
  width: 100%;
  max-width: 1400px;
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
}

/* Light theme */
.theme-light {
  --light-bg: #f7f6f2;
  --light-surface: #eceae4;
  --light-text: #171717;
  --light-muted: #706e68;
  --line: rgba(23, 23, 23, .14);
  color-scheme: light;
  background: var(--light-bg);
}

.theme-light body {
  color: var(--light-text);
  background: var(--light-bg);
}

.theme-light ::selection {
  color: var(--light-bg);
  background: var(--light-text);
}

.theme-light .page-curtain {
  color: var(--light-text);
  background: var(--light-bg);
}

.theme-light .page-curtain__line {
  background: rgba(23, 23, 23, .16);
}

.theme-light .page-curtain__line span {
  background: var(--light-text);
}

.theme-light .fluid-cursor {
  opacity: .3;
  mix-blend-mode: multiply;
}

.theme-light .cursor.is-active {
  background: var(--light-text);
}

.theme-light .cursor.is-active .cursor__label {
  color: var(--light-bg);
}

.theme-light .site-header {
  background: linear-gradient(to bottom, rgba(247, 246, 242, .9), rgba(247, 246, 242, 0));
}

.theme-light .site-header.is-scrolled {
  background: rgba(247, 246, 242, .88);
  box-shadow: 0 1px 0 rgba(23, 23, 23, .08);
}

.theme-light .site-logo img,
.theme-light .footer-brand img {
  filter: invert(1);
}

.theme-light .mobile-menu {
  color: var(--light-text);
  background: var(--light-surface);
}

.theme-light .hero__eyebrow,
.theme-light .hero__footer,
.theme-light .micro-label,
.theme-light .section-head > p,
.theme-light .project-card__meta,
.theme-light .manifesto__signature {
  color: var(--light-muted);
}

.theme-light .showreel__caption,
.theme-light .about-film__header,
.theme-light .about-film__label {
  color: #f8f8f5;
}

.theme-light .fill-text {
  background: linear-gradient(90deg, var(--light-text) 0%, var(--light-text) var(--fill-progress), #d4d1ca var(--fill-progress), #d4d1ca 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.theme-light .project-card__veil {
  border-color: rgba(23, 23, 23, .1);
}

.theme-light .project-card__meta strong {
  color: var(--light-text);
}

.theme-light .round-link {
  border-color: var(--light-text);
  color: var(--light-bg);
  background: var(--light-text);
}

.theme-light .round-link:hover,
.theme-light .round-link:focus-visible {
  border-color: #323232;
  background: #323232;
}

.theme-light .partner-logo {
  border: 1px solid rgba(23, 23, 23, .1);
  background-color: rgba(255, 255, 255, .66);
}

.theme-light .partner-logo img,
.theme-light .partner-logo:hover img {
  filter: grayscale(1) contrast(1.12);
}

.theme-light .partner-logo:hover {
  border-color: rgba(23, 23, 23, .24);
  background-color: #fff;
}

.theme-light .expertise,
.theme-light .why {
  color: var(--light-text);
  background: var(--light-surface);
}

.theme-light .site-footer {
  color: #575650;
}

.theme-light .footer-bottom {
  color: #77756f;
}

.theme-light .video-modal {
  color: #f8f8f5;
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1024px) {
  body,
  button {
    cursor: auto;
  }

  .cursor,
  .fluid-cursor {
    display: none;
  }

  .hero {
    min-height: 76vh;
  }

  .showreel {
    min-height: auto;
  }

  .showreel__frame {
    position: relative;
    top: auto;
    width: 88vw;
    height: 62vh;
  }

  .studio-facts {
    gap: 4vw;
  }

  .work-grid {
    width: 96%;
    gap: 10vh 6vw;
  }

  .project-card--offset {
    margin-top: 9vh;
  }

  .service-row {
    grid-template-columns: .25fr 1.45fr 1fr;
  }

  .why__intro {
    grid-template-columns: .7fr 2fr;
  }
}

@media (max-width: 767px) {
  :root {
    --page-x: 20px;
  }

  .site-header {
    padding-top: 12px;
  }

  .site-nav {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .nav-link,
  .nav-link--desktop {
    display: none;
  }

  .site-logo {
    grid-column: 2;
    width: 66px;
  }

  .menu-button {
    display: flex;
    width: auto;
    grid-column: 3;
    justify-self: end;
    align-items: center;
    gap: 9px;
    font-size: 18px;
  }

  .menu-button i {
    position: absolute;
    right: 0;
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform .3s ease;
  }

  .menu-button span {
    padding-right: 28px;
  }

  .menu-button i:first-of-type {
    transform: translateY(-3px);
  }

  .menu-button i:last-of-type {
    transform: translateY(3px);
  }

  .menu-button[aria-expanded="true"] {
    color: var(--ink);
  }

  .menu-button[aria-expanded="true"] i:first-of-type {
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] i:last-of-type {
    transform: rotate(-45deg);
  }

  .site-header:has(.menu-button[aria-expanded="true"]) {
    background: transparent;
    backdrop-filter: none;
  }

  .site-header:has(.menu-button[aria-expanded="true"]) .site-logo img {
    filter: invert(1);
  }

  .hero {
    min-height: 70vh;
    padding: 20vh 5vw 10vh;
  }

  .hero__eyebrow {
    margin-bottom: 4vh;
  }

  .hero__title span {
    font-size: clamp(49px, 14.1vw, 76px);
    line-height: .9;
  }

  .hero__footer {
    display: none;
  }

  .showreel {
    padding: 5vh 20px 8vh;
  }

  .showreel__frame {
    width: 100%;
    height: 55vh;
  }

  .showreel__caption {
    right: 18px;
    bottom: 16px;
    left: 18px;
  }

  .studio-facts {
    padding-top: 6vh;
    padding-bottom: 12vh;
    grid-template-columns: 1fr;
    gap: 8vh;
  }

  .studio-facts h2 {
    font-size: clamp(42px, 13vw, 70px);
  }

  .section-head {
    margin-bottom: 7vh;
    grid-template-columns: 1fr;
  }

  .section-head > p {
    text-align: left;
  }

  .section-head h2,
  .why__intro h2 {
    font-size: clamp(52px, 15vw, 80px);
  }

  .works {
    padding-top: 4vh;
  }

  .partners {
    padding-top: 0;
    padding-bottom: 11vh;
  }

  .partners .section-head {
    margin-bottom: 5vh;
  }

  .partner-marquees {
    gap: 12px;
  }

  .partner-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  }

  .work-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10vh;
  }

  .project-card--offset {
    margin-top: 0;
  }

  .project-card__media,
  .project-card__media--portrait {
    height: 52vh;
  }

  .round-link {
    margin-top: 11vh;
  }

  .manifesto {
    min-height: auto;
    padding-top: 10vh;
  }

  .manifesto__quote {
    margin: 6vh 0 9vh;
    font-size: clamp(48px, 14vw, 76px);
  }

  .manifesto__signature {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .manifesto__signature p:last-child {
    justify-self: start;
    text-align: left;
  }

  .expertise,
  .why,
  .about {
    padding-top: 11vh;
    padding-bottom: 11vh;
  }

  .service-row {
    min-height: auto;
    padding: 26px 0 32px;
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
  }

  .service-row h3 {
    font-size: 37px;
  }

  .service-row p {
    grid-column: 2;
  }

  .service-row:hover {
    padding-inline: 0;
  }

  .why__intro {
    grid-template-columns: 1fr;
  }

  .why__intro > span {
    top: auto;
    bottom: -36px;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .pillars article,
  .pillars article:not(:first-child) {
    min-height: 0;
    padding: 26px 0 40px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
  }

  .pillars h3 {
    margin: 9vh 0 18px;
    font-size: 40px;
  }

  .about-film {
    height: 54vh;
  }

  .about-film__header {
    padding: 24px;
  }

  .about-film__header .micro-label {
    margin-bottom: 16px;
  }

  .about-film__header h2 {
    font-size: clamp(42px, 12.5vw, 64px);
  }

  .about-film__label {
    right: 18px;
    bottom: 16px;
    left: 18px;
  }

  .contact-cta {
    min-height: 72vh;
    padding-top: 14vh;
  }

  .contact-cta h2 {
    font-size: clamp(62px, 18vw, 94px);
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .video-modal__body {
    padding: 10vh 14px 3vh;
  }
}

@media (hover: none) {
  .project-card video {
    height: 100%;
  }
}

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

  body,
  button {
    cursor: auto;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .fill-text {
    color: var(--white);
    background: none;
  }

  .expertise .fill-text,
  .why .fill-text {
    color: var(--ink);
  }

  .partner-track {
    animation: none;
  }

  .cursor,
  .fluid-cursor {
    display: none;
  }
}
