/*
  PINTA FILM STUDIOS
  Clean Dark Horse rebuild.
  Palette reference:
  yellow #feda6a, silver #d4d4dc, deep matte grey #393f4d, dark slate #1d1e22.
*/

@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 500 900;
  font-stretch: 92% 100%;
  font-display: swap;
  src: url("assets/fonts/archivo-latin-variable.woff2") format("woff2");
}

@font-face {
  font-family: "Archivo Black";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/archivo-black-latin.woff2") format("woff2");
}

:root {
  --color-yellow: #feda6a;
  --color-silver: #d4d4dc;
  --color-deep-grey: #393f4d;
  --color-dark-slate: #1d1e22;
  --bg: var(--color-dark-slate);
  --fg: var(--color-silver);
  --muted: var(--color-deep-grey);
  --accent: var(--color-yellow);
  --yellow: var(--color-yellow);
  --logo-gold: #d6bb5f;
  --silver: var(--color-silver);
  --deep: var(--color-deep-grey);
  --slate: var(--color-dark-slate);
  --black: #121316;
  --ink: #18191d;
  --page-bg: var(--bg);
  --page-panel: var(--color-deep-grey);
  --page-fg: var(--fg);
  --page-soft: rgba(212, 212, 220, 0.74);
  --page-muted: rgba(212, 212, 220, 0.52);
  --page-accent: var(--accent);
  --page-glow: rgba(254, 218, 106, 0.09);
  --line: rgba(212, 212, 220, 0.16);
  --line-strong: rgba(212, 212, 220, 0.28);
  --soft: rgba(212, 212, 220, 0.72);
  --text-muted: rgba(212, 212, 220, 0.52);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snap: cubic-bezier(0.16, 1, 0.3, 1);
  --frame-radius: 8px;
  --page-pad: clamp(18px, 2vw, 56px);
  --max: 2440px;
  --frame-max: 2560px;
  --hero-content-max: 2200px;
  --display: "Archivo Black", "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --label: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "Archivo", "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Archivo Black", "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --type-hero: clamp(4.7rem, 7.1vw, 11.8rem);
  --type-page-title: clamp(4.2rem, 8vw, 10.6rem);
  --type-section-title: clamp(3.8rem, 7.35vw, 10rem);
  --type-card-title: clamp(1.8rem, 2.05vw, 3.25rem);
  --type-body: clamp(1.08rem, 1.12vw, 1.42rem);
  --type-body-large: clamp(1.38rem, 1.72vw, 2.42rem);
  --type-label: clamp(0.84rem, 0.78vw, 1.12rem);
  --leading-display: 0.96;
  --leading-heading: 1;
  --leading-body: 1.58;
}

@property --page-bg {
  syntax: "<color>";
  inherits: true;
  initial-value: #1d1e22;
}

@property --page-panel {
  syntax: "<color>";
  inherits: true;
  initial-value: #393f4d;
}

@property --page-fg {
  syntax: "<color>";
  inherits: true;
  initial-value: #d4d4dc;
}

@property --page-accent {
  syntax: "<color>";
  inherits: true;
  initial-value: #feda6a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-width: 320px;
  overflow-x: clip;
  background: var(--black);
  color: var(--silver);
  scroll-padding-top: var(--anchor-offset, 110px);
  scroll-behavior: auto;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at var(--pointer-x, 84%) var(--pointer-y, 18%), var(--page-glow), transparent 24rem),
    linear-gradient(112deg, rgba(18, 19, 22, 0.99) 0%, var(--page-bg) 46%, var(--page-panel) 100%);
  background-attachment: scroll;
  color: var(--page-fg);
  font-family: var(--sans);
  font-size: var(--type-body);
  line-height: var(--leading-body);
  letter-spacing: 0;
  overscroll-behavior-y: auto;
  overflow-x: hidden;
  transition:
    --page-bg 520ms var(--ease-snap),
    --page-panel 520ms var(--ease-snap),
    --page-fg 420ms var(--ease-snap),
    --page-accent 420ms var(--ease-snap),
    color 420ms var(--ease-snap),
    background-color 520ms var(--ease-snap);
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--yellow);
  color: var(--slate);
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 40;
  width: 100%;
  height: clamp(62px, 4.2vw, 88px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 var(--page-pad);
  color: var(--silver);
  background: linear-gradient(180deg, rgba(18, 19, 22, 0.82), rgba(18, 19, 22, 0.18));
  border-bottom: 1px solid rgba(212, 212, 220, 0.1);
  border-radius: 0;
  backdrop-filter: blur(18px);
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(18, 19, 22, 0.86);
  border-color: rgba(254, 218, 106, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: max-content;
  font-family: var(--display);
  font-size: clamp(1rem, 0.78vw, 1.36rem);
  line-height: 1.1;
  color: var(--silver);
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: clamp(66px, 4.2vw, 82px);
  height: auto;
  flex: 0 0 auto;
  margin: -9px -17px -9px -15px;
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

.brand-wordmark {
  display: block;
  transform: translateY(1px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.site-nav a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(14px, 0.95vw, 22px) clamp(16px, 1.12vw, 28px);
  border: 1px solid transparent;
  border-radius: 0;
  color: rgba(212, 212, 220, 0.78);
  font-family: var(--label);
  font-size: var(--type-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms var(--ease-out);
}

.site-nav a::before,
.site-nav a::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 360ms var(--ease-out);
}

.site-nav a::before {
  border-top: 1px solid var(--yellow);
  border-bottom: 1px solid var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-nav a::after {
  border-right: 1px solid var(--yellow);
  border-left: 1px solid var(--yellow);
  transform: scaleY(0);
  transform-origin: bottom center;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: var(--yellow);
  border-color: transparent;
  background: rgba(254, 218, 106, 0.05);
  outline: 0;
  transform: translateY(-1px);
}

.site-nav a:hover::before,
.site-nav a:hover::after,
.site-nav a:focus-visible::before,
.site-nav a:focus-visible::after,
.site-nav a.is-current::before,
.site-nav a.is-current::after {
  opacity: 1;
  transform: scale(1);
}

main {
  min-height: 100vh;
}

.section {
  position: relative;
  isolation: isolate;
  width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  min-height: auto;
  margin: 0 auto;
  padding: clamp(96px, 7.4vw, 190px) 0;
  --section-progress: 0;
  --section-drift: 0px;
}

.section:not(.hero):not(.site-hero):not(.page-hero)::before {
  content: "";
  position: absolute;
  inset: clamp(20px, 3vw, 72px) calc(var(--page-pad) * -0.45);
  z-index: -1;
  opacity: calc(0.12 + (var(--section-progress, 0) * 0.22));
  background:
    radial-gradient(circle at 78% 28%, rgba(254, 218, 106, 0.08), transparent 22rem),
    linear-gradient(115deg, rgba(212, 212, 220, 0.02), rgba(57, 63, 77, 0.1) 56%, transparent);
  transform: translate3d(0, var(--section-drift), 0);
  transition: opacity 420ms var(--ease-snap);
  pointer-events: none;
}

.hero-title,
.page-title,
.section-title {
  overflow: visible;
  color: var(--page-fg);
  text-wrap: balance;
}

.hero-title {
  font-size: var(--type-hero);
  line-height: var(--leading-display);
  letter-spacing: -0.035em;
}

.page-title {
  font-size: var(--type-page-title);
  line-height: var(--leading-heading);
  letter-spacing: -0.03em;
}

.section-title {
  font-size: var(--type-section-title);
  line-height: var(--leading-heading);
  letter-spacing: -0.025em;
}

.body-large {
  font-size: var(--type-body-large);
  line-height: var(--leading-body);
}

.text-reveal-mask {
  overflow: hidden;
  padding-block: 0.14em 0.18em;
  padding-inline: 0.06em;
  margin-inline: -0.06em;
}

.text-reveal-inner {
  display: block;
  will-change: transform;
}

.home-page main,
.home-page .section:first-child {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero,
.site-hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--frame-radius);
  background:
    linear-gradient(110deg, rgba(29, 30, 34, 0.98) 0%, rgba(42, 46, 56, 0.96) 52%, rgba(57, 63, 77, 0.94) 100%),
    var(--slate);
  border: 1px solid rgba(212, 212, 220, 0.12);
  box-shadow: var(--shadow);
}

.hero,
.site-hero {
  width: 100%;
  min-height: 100svh;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  touch-action: pan-y pinch-zoom;
}

.site-hero {
  width: 100%;
}

.hero::before,
.site-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 19, 22, 0.56), rgba(18, 19, 22, 0.3) 46%, rgba(18, 19, 22, 0.62)),
    linear-gradient(180deg, rgba(18, 19, 22, 0.22), rgba(18, 19, 22, 0.72)),
    radial-gradient(circle at 58% 38%, rgba(254, 218, 106, 0.12), transparent 23rem);
}

.hero::after,
.site-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(18, 19, 22, 0.1), rgba(18, 19, 22, 0.58)),
    linear-gradient(90deg, rgba(18, 19, 22, 0.18), transparent 38%, rgba(18, 19, 22, 0.18));
  pointer-events: none;
}

.hero::after,
.site-hero::after {
  background:
    linear-gradient(180deg, rgba(18, 19, 22, 0.08) 0%, rgba(18, 19, 22, 0.58) 78%, var(--page-bg) 100%),
    linear-gradient(90deg, rgba(18, 19, 22, 0.18), transparent 38%, rgba(18, 19, 22, 0.18));
}

.hero-image,
.site-hero-image,
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
  filter: saturate(0.82) contrast(1.08) brightness(0.78);
  transform: scale(1.03);
  animation: heroMediaDrift 18s var(--ease-out) infinite alternate;
}

.hero-video {
  inset: auto;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  opacity: 0.01;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-overlay-play-button,
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.has-video.video-is-playing .hero-video {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.78;
  filter: saturate(0.88) contrast(1.04) brightness(0.9);
}

.has-video.video-is-playing .hero-image,
.has-video.video-is-playing .site-hero-image {
  opacity: 0;
}

.hero-content,
.site-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--hero-content-max), calc(100% - clamp(48px, 7vw, 180px)));
  min-height: 100svh;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: clamp(108px, 9vw, 180px) 0 clamp(76px, 7vw, 150px);
}

.hero-pretitle,
.section-kicker {
  margin: 0;
  color: var(--page-accent);
  font-family: var(--label);
  font-size: var(--type-label);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-pretitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  color: var(--yellow);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  font-size: clamp(2.117rem, 1.966vw, 2.822rem);
}

.hero-pretitle span + span::before {
  content: " ";
}

.hero h1,
.site-hero h1 {
  max-width: none;
  width: auto;
  max-width: calc(100vw - (var(--page-pad) * 1.6));
  margin: clamp(20px, 2.2vw, 38px) auto 0;
  padding-block: 0.1em 0.14em;
  color: var(--page-fg);
  font-family: var(--display);
  font-size: clamp(4.65rem, 6.8vw, 11.1rem);
  line-height: var(--leading-display);
  text-transform: uppercase;
  text-wrap: nowrap;
  white-space: nowrap;
  letter-spacing: 0.035em;
  font-kerning: none;
  font-feature-settings: "kern" 0;
  overflow: visible;
  text-shadow: none;
  filter: none;
  -webkit-text-stroke: 0;
  -webkit-text-fill-color: currentColor;
}

.clean-hero-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.22em, 2.2vw, 0.54em);
  text-align: center;
}

.clean-hero-title .hero-title-word {
  display: block;
  min-width: 0;
  letter-spacing: inherit;
  line-height: inherit;
  text-shadow: none;
  filter: none;
  transform: translateZ(0);
}

.js .clean-hero-title .hero-title-word {
  opacity: 0;
  transform: translate3d(0, 0.16em, 0) scale(0.985);
  animation: heroTitleWordIn 940ms var(--ease-snap) forwards;
}

.js .clean-hero-title .hero-title-word:nth-child(2) {
  animation-delay: 95ms;
}

.js .clean-hero-title .hero-title-word:nth-child(3) {
  animation-delay: 190ms;
}

.hero-role,
.site-hero-copy {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  max-width: min(960px, 100%);
  min-height: 0;
  align-items: center;
  margin: clamp(26px, 3vw, 52px) 0 0;
  padding: 0;
  color: rgba(245, 245, 248, 0.92);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-family: var(--label);
  font-size: clamp(1.12rem, 1.45vw, 2.35rem);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  width: min(760px, 100%);
  margin: clamp(42px, 4.2vw, 86px) auto 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.button,
.filter-button,
.filter-link,
.mini-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: clamp(58px, 3.1vw, 82px);
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid rgba(212, 212, 220, 0.2);
  border-radius: 2px;
  color: var(--silver);
  background: rgba(18, 19, 22, 0.1);
  font-family: var(--label);
  font-size: var(--type-label);
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  will-change: transform;
  transition:
    color 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    transform 260ms var(--ease-out),
    box-shadow 260ms ease;
}

.button::before,
.button::after,
.filter-button::before,
.filter-button::after,
.filter-link::before,
.filter-link::after,
.mini-button::before,
.mini-button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 420ms var(--ease-out);
}

.button::before,
.filter-button::before,
.filter-link::before,
.mini-button::before {
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
}

.button::after,
.filter-button::after,
.filter-link::after,
.mini-button::after {
  border-right: 2px solid var(--yellow);
  border-left: 2px solid var(--yellow);
  transform: scaleY(0);
  transform-origin: bottom center;
}

.filter-button.is-active {
  color: var(--yellow);
  background: rgba(18, 19, 22, 0.12);
  border-color: rgba(254, 218, 106, 0.22);
}

.filter-button.is-active::before,
.filter-button.is-active::after {
  opacity: 1;
  transform: scale(1);
}

.button.primary {
  color: rgba(245, 245, 248, 0.9);
  background: rgba(18, 19, 22, 0.1);
  border-color: rgba(245, 245, 248, 0.38);
}

.button.secondary,
.filter-link {
  color: rgba(212, 212, 220, 0.88);
  background: rgba(18, 19, 22, 0.12);
  border-color: rgba(212, 212, 220, 0.32);
}

.button:hover,
.button:focus-visible,
.filter-button:hover,
.filter-button:focus-visible,
.filter-link:hover,
.filter-link:focus-visible,
.mini-button:hover,
.mini-button:focus-visible {
  color: var(--yellow);
  border-color: rgba(254, 218, 106, 0.22);
  background: rgba(18, 19, 22, 0.14);
  outline: 0;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.button:hover::before,
.button:hover::after,
.button:focus-visible::before,
.button:focus-visible::after,
.filter-button:hover::before,
.filter-button:hover::after,
.filter-button:focus-visible::before,
.filter-button:focus-visible::after,
.filter-link:hover::before,
.filter-link:hover::after,
.filter-link:focus-visible::before,
.filter-link:focus-visible::after,
.mini-button:hover::before,
.mini-button:hover::after,
.mini-button:focus-visible::before,
.mini-button:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.button:hover::after,
.button:focus-visible::after,
.filter-button:hover::after,
.filter-button:focus-visible::after,
.filter-link:hover::after,
.filter-link:focus-visible::after,
.mini-button:hover::after,
.mini-button:focus-visible::after {
  transform: scaleY(1);
}

.hero-actions .button {
  min-width: clamp(170px, 14vw, 290px);
  min-height: clamp(64px, 4.8vw, 92px);
  border-width: 2px;
  background: rgba(18, 19, 22, 0.08);
  backdrop-filter: blur(12px);
}

.hero-actions .button.primary {
  color: rgba(245, 245, 248, 0.9);
  background: rgba(18, 19, 22, 0.1);
  border-color: rgba(245, 245, 248, 0.56);
}

.hero-actions .button.secondary {
  color: rgba(245, 245, 248, 0.9);
  background: rgba(18, 19, 22, 0.1);
  border-color: rgba(245, 245, 248, 0.56);
}

.hero-actions .button.secondary:hover,
.hero-actions .button.secondary:focus-visible {
  color: var(--yellow);
  background: rgba(18, 19, 22, 0.14);
  border-color: rgba(254, 218, 106, 0.22);
}

.button-label-motion {
  position: relative;
  z-index: 1;
  display: inline-grid;
  overflow: hidden;
  line-height: 1.08;
  padding-block: 0.12em;
  white-space: nowrap;
}

.work-filters .button-label-motion {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  line-height: 1.12;
  white-space: normal;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.button-label-motion > span,
.button-label-motion::after {
  grid-area: 1 / 1;
  transition:
    transform 520ms var(--ease-snap),
    opacity 360ms ease;
  will-change: transform;
}

.button-label-motion::after {
  content: attr(data-text);
  transform: translate3d(0, 125%, 0);
  color: currentColor;
}

.button:hover .button-label-motion > span,
.button:focus-visible .button-label-motion > span,
.filter-button:hover .button-label-motion > span,
.filter-button:focus-visible .button-label-motion > span,
.filter-link:hover .button-label-motion > span,
.filter-link:focus-visible .button-label-motion > span,
.mini-button:hover .button-label-motion > span,
.mini-button:focus-visible .button-label-motion > span,
.site-nav a:hover .button-label-motion > span,
.site-nav a:focus-visible .button-label-motion > span {
  opacity: 0.12;
  transform: translate3d(0, -125%, 0);
}

.button:hover .button-label-motion::after,
.button:focus-visible .button-label-motion::after,
.filter-button:hover .button-label-motion::after,
.filter-button:focus-visible .button-label-motion::after,
.filter-link:hover .button-label-motion::after,
.filter-link:focus-visible .button-label-motion::after,
.mini-button:hover .button-label-motion::after,
.mini-button:focus-visible .button-label-motion::after,
.site-nav a:hover .button-label-motion::after,
.site-nav a:focus-visible .button-label-motion::after {
  transform: translate3d(0, 0, 0);
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.hero-socials a {
  position: relative;
  display: grid;
  width: clamp(54px, 3vw, 76px);
  height: clamp(54px, 3vw, 76px);
  place-items: center;
  border: 1px solid rgba(212, 212, 220, 0.32);
  border-radius: 999px;
  background: rgba(18, 19, 22, 0.18);
  transition:
    border-color 220ms ease,
    transform 260ms var(--ease-out),
    background 220ms ease;
}

.hero-socials a[data-hover-label]::after {
  content: attr(data-hover-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 8;
  padding: 7px 10px;
  border: 1px solid rgba(254, 218, 106, 0.42);
  border-radius: 4px;
  color: var(--silver);
  background: rgba(18, 19, 22, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, 6px, 0);
  transition: opacity 180ms ease, transform 220ms var(--ease-out);
}

.hero-socials a[data-hover-label]:hover::after,
.hero-socials a[data-hover-label]:focus-visible::after {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.hero-socials a:hover,
.hero-socials a:focus-visible {
  border-color: var(--yellow);
  background: rgba(254, 218, 106, 0.12);
  outline: 0;
  transform: translateY(-4px);
}

.hero-socials img {
  width: clamp(22px, 1.2vw, 30px);
  height: clamp(22px, 1.2vw, 30px);
  object-fit: contain;
}

.hero-sound-toggle {
  position: absolute;
  right: 0;
  bottom: clamp(24px, 3vw, 48px);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border: 0;
  color: rgba(245, 245, 248, 0.8);
  background: transparent;
  font-family: var(--label);
  font-size: clamp(0.68rem, 0.72vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 220ms ease, transform 260ms var(--ease-out);
}

.hero-sound-toggle[hidden] {
  display: none;
}

.hero-sound-dot {
  width: 11px;
  height: 11px;
  border: 1px solid var(--yellow);
  background: transparent;
  transition: background 220ms ease, box-shadow 220ms ease, transform 260ms var(--ease-out);
}

.hero-sound-toggle:hover,
.hero-sound-toggle:focus-visible {
  color: var(--yellow);
  outline: 0;
  transform: translateY(-3px);
}

.hero-sound-toggle.is-audible .hero-sound-dot {
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(254, 218, 106, 0.42);
  transform: scale(1.08);
}

.hero-sound-toggle.needs-gesture {
  padding: 12px 14px;
  border: 1px solid rgba(254, 218, 106, 0.62);
  color: var(--yellow);
  background: rgba(18, 19, 22, 0.74);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

.page-sound-toggle {
  position: fixed;
  right: max(clamp(18px, 3vw, 48px), env(safe-area-inset-right));
  bottom: max(clamp(18px, 3vw, 40px), env(safe-area-inset-bottom));
  z-index: 30;
  min-height: 44px;
  padding: 12px 14px;
  background: rgba(18, 19, 22, 0.78);
  backdrop-filter: blur(10px);
}

body.landing-sound-gate-open {
  overflow: hidden;
}

.landing-sound-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: max(24px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
  background:
    radial-gradient(circle at 50% 34%, rgba(60, 96, 150, 0.24), transparent 44%),
    rgba(8, 11, 17, 0.78);
  backdrop-filter: blur(14px);
}

.landing-sound-gate[hidden] {
  display: none;
}

.landing-sound-gate-card {
  width: min(560px, 100%);
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(254, 218, 106, 0.5);
  border-radius: 10px;
  color: var(--silver);
  background: rgba(18, 19, 22, 0.94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  text-align: center;
}

.landing-sound-gate-kicker {
  margin: 0 0 16px;
  color: var(--yellow);
  font-family: var(--label);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.landing-sound-gate h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.landing-sound-gate-card > p:not(.landing-sound-gate-kicker) {
  max-width: 38ch;
  margin: 20px auto 0;
  color: var(--page-muted);
  line-height: 1.55;
}

.landing-sound-gate-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.landing-sound-enter,
.landing-sound-skip {
  min-height: 48px;
  padding: 14px 18px;
  border-radius: 4px;
  font-family: var(--label);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.landing-sound-enter {
  border: 1px solid var(--yellow);
  color: var(--page-bg);
  background: var(--yellow);
}

.landing-sound-skip {
  border: 1px solid rgba(245, 245, 248, 0.3);
  color: var(--silver);
  background: transparent;
}

.landing-sound-enter:hover,
.landing-sound-enter:focus-visible,
.landing-sound-skip:hover,
.landing-sound-skip:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

.hero-scroll-link {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 3vw, 48px);
  z-index: 5;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-family: var(--label);
  font-size: clamp(0.68rem, 0.72vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
  transition:
    color 220ms ease,
    transform 260ms var(--ease-out);
}

.hero-scroll-copy {
  text-indent: 0.22em;
}

.hero-scroll-line {
  display: block;
  width: 11px;
  height: 11px;
  margin-top: 2px;
  border-right: 1px solid var(--yellow);
  border-bottom: 1px solid var(--yellow);
  background: transparent;
  animation: scrollCue 1.65s var(--ease-snap) infinite;
}

.hero-scroll-link:hover,
.hero-scroll-link:focus-visible {
  color: var(--silver);
  outline: 0;
  transform: translateX(-50%) translateY(-4px);
}

.hero-scroll-link:hover .hero-scroll-line,
.hero-scroll-link:focus-visible .hero-scroll-line {
  border-color: var(--silver);
  background: transparent;
}

@keyframes scrollCue {
  0% {
    opacity: 0.35;
    transform: translateY(-3px) rotate(45deg);
  }

  50% {
    opacity: 1;
    transform: translateY(3px) rotate(45deg);
  }

  100% {
    opacity: 0.35;
    transform: translateY(-3px) rotate(45deg);
  }
}

.hero::marker,
.site-hero::marker {
  color: var(--yellow);
}

.hero-content::before,
.site-hero-inner::before {
  content: none;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  color: rgba(212, 212, 220, 0.055);
  font-family: var(--display);
  font-size: clamp(15rem, 20vw, 42rem);
  line-height: 1;
}

.hero-content::after,
.site-hero-inner::after {
  content: none;
  position: absolute;
  left: 50%;
  bottom: 66px;
  transform: translateX(-50%);
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.home-page .site-header {
  background: linear-gradient(180deg, rgba(18, 19, 22, 0.72), rgba(18, 19, 22, 0));
  border-bottom: 0;
  backdrop-filter: none;
}

.intro,
.studio-reel,
.partners,
.work,
.services,
.network,
.directors,
.contact,
.blog-index,
.blog-category,
.acting-profiles {
  position: relative;
}

.partners {
  min-height: auto;
  padding-block: clamp(64px, 4.4vw, 118px) clamp(48px, 3.4vw, 88px);
}

.partners.about-partners {
  margin-top: clamp(-18px, -1vw, -6px);
  padding-block: clamp(8px, 0.8vw, 16px) clamp(8px, 1vw, 20px);
  background: transparent;
}

.partners.about-partners::before {
  content: none;
}

.section-heading,
.intro-grid,
.reel-layout,
.work-browser,
.service-list,
.network-grid,
.director-grid,
.acting-grid,
.blog-grid,
.contact-inner,
.partners-window {
  width: 100%;
}

.section-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  gap: clamp(44px, 4.8vw, 128px);
  align-items: end;
  margin-bottom: clamp(44px, 4vw, 92px);
  border-top: 0;
  padding-top: 18px;
}

.section-heading::before,
.partners-window::before,
.blog-category-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--yellow), rgba(212, 212, 220, 0.16));
  opacity: 0.74;
  transition: width 980ms var(--ease-snap);
}

.section-heading.is-visible::before,
.partners-window.is-visible::before,
.blog-category-head.is-visible::before {
  width: 100%;
}

.section-heading h2,
.intro-grid h2,
.contact-inner h2,
.blog-category-head h2,
.page-hero h1 {
  margin: 10px 0 0;
  padding-block: 0.06em 0.12em;
  color: var(--page-fg);
  font-family: var(--serif);
  font-weight: 500;
  font-size: var(--type-section-title);
  line-height: var(--leading-heading);
  letter-spacing: -0.025em;
  overflow: visible;
  text-wrap: balance;
}

.section-heading p,
.intro-summary,
.short-bio-text,
.page-hero p,
.contact-inner > p,
.blog-card > span,
.network-card > span,
.director-card > div > span,
.service-list p,
.work-detail span,
.reel-notes > span {
  color: var(--page-soft);
  font-size: var(--type-body-large);
  line-height: var(--leading-body);
}

.section-heading > p {
  margin: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: start;
}

.intro-copy {
  position: sticky;
  top: 112px;
}

.intro-summary {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: clamp(1.55rem, 1.9vw, 3rem);
  line-height: 1.5;
}

.about-page .intro-grid {
  grid-template-columns: minmax(420px, 0.72fr) minmax(560px, 1fr);
  gap: clamp(56px, 4.4vw, 112px);
}

.about-page .intro-grid h2 {
  max-width: 820px;
  font-size: clamp(3.8rem, 5vw, 7.5rem);
  line-height: 0.94;
  text-wrap: balance;
}

.about-page .intro-summary {
  max-width: 760px;
  font-size: clamp(1.45rem, 1.72vw, 2.6rem);
  line-height: 1.52;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.about-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--slate);
}

.about-frame img {
  --parallax-y: 0px;
  --settled-scale: 1;
  --hover-scale: 1.045;
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  object-position: center 34%;
  opacity: 0.9;
  clip-path: inset(100% 0 0 0);
  transform: translate3d(0, var(--parallax-y), 0) scale(1.055);
  transition:
    clip-path 720ms var(--ease-snap),
    transform 860ms var(--ease-snap),
    filter 520ms var(--ease-snap),
    opacity 520ms var(--ease-snap);
}

.about-frame.is-visible img {
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, var(--parallax-y), 0) scale(var(--settled-scale));
}

.about-frame figcaption {
  padding: 18px 22px;
  color: var(--soft);
  border-top: 1px solid rgba(254, 218, 106, 0.24);
}

.studio-snapshot,
.service-list,
.network-grid,
.director-grid,
.acting-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.studio-snapshot {
  margin-top: 14px;
}

.studio-snapshot article,
.service-list article,
.work-list {
  border: 1px solid rgba(212, 212, 220, 0.12);
  border-radius: 0;
  background: rgba(29, 30, 34, 0.42);
}

.floating-window,
.director-card,
.blog-card,
.contact-inner,
.reel-notes,
.partners-window {
  border: 1px solid rgba(212, 212, 220, 0.12);
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
}

.studio-snapshot article,
.service-list article,
.floating-window,
.blog-card {
  padding: 26px;
}

.studio-snapshot article,
.service-list article,
.network-card,
.director-card,
.blog-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    border-color 260ms ease,
    background 260ms ease;
}

.studio-snapshot article::before,
.service-list article::before,
.network-card::before,
.director-card::before,
.blog-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(circle at var(--spot-x, 70%) var(--spot-y, 18%), rgba(254, 218, 106, 0.13), transparent 17rem),
    linear-gradient(135deg, rgba(254, 218, 106, 0.03), transparent 48%);
  transition: opacity 300ms ease;
  pointer-events: none;
}

.studio-snapshot article > span,
.service-list article > span,
.work-detail p,
.blog-card p,
.network-card p,
.director-card p,
.reel-notes p {
  display: block;
  margin: 0 0 12px;
  color: var(--page-accent);
  font-family: var(--label);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.18;
  text-transform: uppercase;
}

.studio-snapshot article > span {
  margin-bottom: clamp(2px, 0.4vw, 8px);
}

.studio-snapshot strong,
.service-list h3,
.network-card h3,
.director-card h3,
.blog-card h3,
.reel-notes h3 {
  display: block;
  margin: 0;
  padding-block: 0.04em 0.08em;
  color: var(--page-fg);
  font-family: var(--serif);
  font-size: var(--type-card-title);
  font-weight: 500;
  line-height: 1.16;
  overflow: visible;
}

.service-list h3 {
  font-size: clamp(2.35rem, 2.75vw, 5.35rem);
  line-height: 1.08;
}

.about-page .studio-snapshot strong {
  font-size: clamp(1.68rem, 1.48vw, 2.5rem);
  line-height: 1.18;
}

.about-page .studio-snapshot article {
  min-height: clamp(142px, 8vw, 190px);
  gap: clamp(10px, 1vw, 18px);
  padding:
    clamp(22px, 2vw, 34px)
    clamp(22px, 2.2vw, 38px)
    clamp(24px, 2.2vw, 38px);
}

.about-page .studio-snapshot p {
  font-size: clamp(1.08rem, 1.02vw, 1.42rem);
  line-height: 1.5;
}

.studio-snapshot p,
.service-list p,
.network-card > span,
.blog-card > span {
  margin: clamp(12px, 1vw, 20px) 0 0;
}

.service-list p {
  max-width: 680px;
  margin: 0;
}

.about-story {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 60px;
  width: min(940px, 100%);
  margin: 64px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.short-bio-text {
  margin: 0;
  font-size: var(--type-body-large);
  line-height: var(--leading-body);
}

.about-page .about-story {
  width: min(1240px, 100%);
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.3vw, 24px);
  margin-top: clamp(38px, 3vw, 68px);
  padding-top: clamp(20px, 1.5vw, 32px);
}

.about-page .short-bio-text {
  max-width: 1120px;
  color: rgba(212, 212, 220, 0.84);
  font-size: clamp(1.85rem, 2.18vw, 3.45rem);
  line-height: 1.42;
}

.about-page {
  padding-top: clamp(72px, 5.4vw, 132px);
  padding-bottom: clamp(36px, 3vw, 68px);
}

.reel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.55fr);
  gap: clamp(24px, 3vw, 72px);
  align-items: center;
}

.reel-player,
.work-player {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 212, 220, 0.14);
  border-radius: 0;
  background: var(--black);
  transition:
    border-color 260ms ease,
    box-shadow 360ms ease,
    transform 360ms var(--ease-out);
}

.reel-player:hover,
.work-player:hover {
  border-color: rgba(254, 218, 106, 0.36);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  transform: translate3d(0, -4px, 0);
}

.reel-player:not(.is-player-active)::after,
.work-player:not(.is-player-active)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  cursor: none;
}

.reel-player {
  display: block;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9;
  align-self: center;
}

.reel-player iframe,
.reel-player video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--black);
}

.reel-player video {
  object-fit: contain;
}

.work-player iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: var(--black);
}

.work-player-close {
  position: absolute;
  top: max(10px, env(safe-area-inset-top));
  right: max(10px, env(safe-area-inset-right));
  z-index: 5;
  display: none;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(254, 218, 106, 0.68);
  color: var(--yellow);
  background: rgba(18, 19, 22, 0.86);
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.work-player.is-player-active .work-player-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.work-player-close:hover,
.work-player-close:focus-visible {
  color: var(--black);
  background: var(--yellow);
  outline: 0;
}

.reel-notes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: clamp(12px, 1.4vw, 28px) 0;
}

.reel-notes h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 2.45vw, 3.75rem);
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.partners-window {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

.about-partners .partners-window {
  padding: clamp(10px, 0.9vw, 18px) 0 clamp(8px, 0.8vw, 16px);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-partners .partners-window::before {
  content: none;
  display: none;
}

.about-partners .logo-title {
  max-width: min(1040px, 86vw);
  margin-bottom: clamp(8px, 0.7vw, 14px);
  font-size: clamp(1.5rem, 2.1vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: 0.055em;
}

.about-partners .logo-marquee {
  padding: clamp(6px, 0.5vw, 10px) 0 clamp(6px, 0.6vw, 12px);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-partners .logo-cloud {
  min-height: clamp(92px, 6vw, 118px);
}

.about-partners + .studio-reel {
  padding-top: clamp(28px, 2.4vw, 52px);
}

.about-partners + .studio-reel .section-heading {
  padding-top: 0;
}

.about-partners + .studio-reel .section-heading::before {
  content: none;
  display: none;
}

.logo-title {
  max-width: min(1120px, 88vw);
  margin: 0 auto clamp(22px, 2.2vw, 48px);
  padding-block: 0.06em 0.1em;
  color: var(--page-fg);
  font-family: var(--display);
  font-size: clamp(2.05rem, 3vw, 4.8rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.logo-touch-hint {
  display: none;
  max-width: 760px;
  margin: -18px auto 20px;
  color: var(--yellow);
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.logo-marquee {
  overflow: hidden;
  padding: clamp(18px, 1.4vw, 36px) 0 clamp(34px, 2.2vw, 64px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  touch-action: pan-y pinch-zoom;
  -webkit-user-select: none;
  user-select: none;
  cursor: grab;
}

.logo-marquee.is-user-driving {
  cursor: ew-resize;
}

.logo-marquee.is-touch-driving {
  cursor: grabbing;
}

.logo-cloud {
  display: flex;
  width: max-content;
  min-height: clamp(126px, 9vw, 188px);
  align-items: center;
  gap: clamp(44px, 3.2vw, 72px);
  will-change: transform;
}

.logo-pill {
  --logo-w: clamp(144px, 8.2vw, 182px);
  --logo-h: clamp(104px, 6.4vw, 132px);
  --logo-art-w: 94%;
  --logo-art-h: 72%;
  --logo-shift-y: 0px;
  display: inline-flex;
  width: var(--logo-w);
  height: var(--logo-h);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition:
    opacity 240ms ease,
    transform 280ms var(--ease-out);
}

.logo-spacer {
  display: none;
}

.logo-pill:hover,
.logo-pill:focus-visible {
  transform: translateY(-4px);
  outline: 0;
}

.logo-pill img {
  width: var(--logo-art-w);
  height: var(--logo-art-h);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(77%) sepia(40%) saturate(496%) hue-rotate(4deg) brightness(96%) contrast(88%);
  transition:
    filter 240ms ease,
    opacity 240ms ease,
    transform 280ms var(--ease-out);
}

@media (max-width: 900px), (pointer: coarse), (any-pointer: coarse) {
  .logo-touch-hint {
    display: block;
  }
}

.logo-pill:hover img,
.logo-pill:focus-visible img {
  opacity: 1;
  transform: scale(1.03);
  filter:
    brightness(0) saturate(100%) invert(77%) sepia(40%) saturate(496%) hue-rotate(4deg) brightness(102%) contrast(92%)
    drop-shadow(0 0 18px rgba(214, 187, 95, 0.2));
}

.logo-pill.logo-original-color img,
.logo-pill.logo-original-color:hover img,
.logo-pill.logo-original-color:focus-visible img {
  filter: none;
}

.logo-pill.logo-wide {
  --logo-w: clamp(194px, 11vw, 244px);
  --logo-art-w: 100%;
  --logo-art-h: 64%;
}

.logo-pill.logo-extra-wide {
  --logo-w: clamp(226px, 13vw, 286px);
  --logo-art-w: 100%;
  --logo-art-h: 62%;
}

.logo-pill.logo-badge,
.logo-pill.logo-pbs {
  --logo-w: clamp(116px, 6.8vw, 148px);
  --logo-art-w: 100%;
  --logo-art-h: 78%;
}

.logo-pill.logo-dazn {
  --logo-w: clamp(112px, 6.4vw, 142px);
  --logo-art-w: 100%;
  --logo-art-h: 72%;
}

.logo-pill.logo-cbc-gem {
  --logo-w: clamp(120px, 7vw, 154px);
  --logo-art-w: 100%;
  --logo-art-h: 78%;
}

.logo-pill.logo-history {
  --logo-art-w: 62%;
  --logo-art-h: 72%;
}

.logo-pill.logo-napoli {
  --logo-art-w: 63%;
  --logo-art-h: 74%;
}

.logo-pill.logo-adidas {
  --logo-art-w: 64%;
  --logo-art-h: 72%;
}

.logo-pill.logo-bmw {
  --logo-art-w: 63%;
  --logo-art-h: 74%;
}

.logo-pill.logo-ee {
  --logo-art-w: 55%;
  --logo-art-h: 82%;
}

.logo-pill.logo-visit-britain {
  --logo-art-w: 92%;
  --logo-art-h: 66%;
}

.logo-pill.logo-round {
  --logo-art-w: 63%;
  --logo-art-h: 74%;
}

.logo-pill.logo-boxxer {
  --logo-art-w: 58%;
  --logo-art-h: 68%;
}

.logo-pill.logo-barin {
  --logo-art-w: 58%;
  --logo-art-h: 68%;
}

.logo-pill.logo-angel {
  --logo-art-w: 90%;
  --logo-art-h: 60%;
}

.logo-pill.logo-creative-equals {
  --logo-w: clamp(226px, 13vw, 286px);
  --logo-art-w: 100%;
  --logo-art-h: 64%;
}

.logo-pill.logo-sent {
  --logo-art-w: 82%;
  --logo-art-h: 58%;
}

.logo-pill.logo-pinzutu {
  --logo-w: clamp(170px, 9.8vw, 218px);
  --logo-art-w: 100%;
  --logo-art-h: 68%;
  --logo-shift-y: 0px;
}

.logo-pill.logo-ecstasy {
  --logo-art-w: 92%;
  --logo-art-h: 58%;
}

.logo-pill.logo-radical {
  --logo-art-w: 88%;
  --logo-art-h: 56%;
}

.logo-pill.logo-sky-studios {
  --logo-w: clamp(220px, 12.8vw, 282px);
  --logo-art-w: 96%;
  --logo-art-h: 58%;
}

.logo-pill.logo-banijay {
  --logo-art-w: 88%;
  --logo-art-h: 62%;
}

.logo-pill.logo-specsavers {
  --logo-art-w: 90%;
  --logo-art-h: 58%;
}

.logo-pill.logo-lseg {
  --logo-art-w: 70%;
  --logo-art-h: 76%;
}

.logo-pill.logo-balance {
  --logo-w: clamp(174px, 10vw, 220px);
  --logo-art-w: 100%;
  --logo-art-h: 92%;
}

.logo-pill.logo-netflix {
  --logo-w: clamp(58px, 3.6vw, 76px);
  --logo-art-w: 100%;
  --logo-art-h: 76%;
}

.logo-pill.logo-new-wordmark {
  --logo-art-w: 90%;
  --logo-art-h: 58%;
}

.logo-pill.logo-tangerine {
  --logo-w: clamp(226px, 13vw, 286px);
  --logo-art-w: 100%;
  --logo-art-h: 64%;
}

.logo-pill.logo-lowkey {
  --logo-w: clamp(226px, 13vw, 286px);
  --logo-art-w: 100%;
  --logo-art-h: 62%;
}

/* Logo widths follow the visible artwork, keeping the marquee rhythm even. */
.about-partners .logo-cloud {
  gap: clamp(28px, 1.65vw, 38px);
}

.about-partners .logo-pill {
  --logo-w: clamp(136px, 7.3vw, 168px);
  --logo-h: clamp(98px, 5.8vw, 124px);
  --logo-art-w: 100%;
  --logo-art-h: 82%;
}

.about-partners .logo-pill.logo-wide { --logo-w: clamp(164px, 9.2vw, 198px); }
.about-partners .logo-pill.logo-extra-wide { --logo-w: clamp(192px, 10.8vw, 228px); }
.about-partners .logo-pill.logo-badge { --logo-w: clamp(86px, 5vw, 108px); }

.about-partners .logo-pill.logo-creative-equals { --logo-w: clamp(208px, 11.6vw, 246px); }
.about-partners .logo-pill.logo-tangerine { --logo-w: clamp(214px, 12vw, 252px); }
.about-partners .logo-pill.logo-lowkey { --logo-w: clamp(202px, 11.4vw, 238px); }
.about-partners .logo-pill.logo-vigilante { --logo-w: clamp(82px, 4.8vw, 104px); }
.about-partners .logo-pill.logo-sent { --logo-w: clamp(180px, 10vw, 216px); }
.about-partners .logo-pill.logo-pinzutu {
  --logo-w: clamp(150px, 8.4vw, 184px);
  --logo-shift-y: 0px;
}
.about-partners .logo-pill.logo-ecstasy { --logo-w: clamp(186px, 10.4vw, 224px); }
.about-partners .logo-pill.logo-radical { --logo-w: clamp(166px, 9.2vw, 202px); }
.about-partners .logo-pill.logo-netflix { --logo-w: clamp(56px, 3.2vw, 72px); }
.about-partners .logo-pill.logo-prime-video { --logo-w: clamp(202px, 11.2vw, 238px); }
.about-partners .logo-pill.brand-logo-only:not(.logo-prime-video):not(.logo-lseg) { --logo-w: clamp(164px, 9.2vw, 198px); }
.about-partners .logo-pill.logo-children { --logo-w: clamp(198px, 11vw, 232px); }
.about-partners .logo-pill.logo-sky-studios { --logo-w: clamp(198px, 11vw, 234px); }
.about-partners .logo-pill.logo-pbs,
.about-partners .logo-pill.logo-dazn,
.about-partners .logo-pill.logo-cbc-gem,
.about-partners .logo-pill.logo-round,
.about-partners .logo-pill.logo-napoli,
.about-partners .logo-pill.logo-bmw,
.about-partners .logo-pill.logo-como,
.about-partners .logo-pill.logo-west-ham { --logo-w: clamp(92px, 5.3vw, 116px); }
.about-partners .logo-pill.logo-dazn { --logo-w: clamp(88px, 5vw, 108px); }
.about-partners .logo-pill.logo-history { --logo-w: clamp(76px, 4.3vw, 94px); }
.about-partners .logo-pill.logo-adidas { --logo-w: clamp(88px, 5vw, 108px); }
.about-partners .logo-pill.logo-ee { --logo-w: clamp(64px, 3.8vw, 82px); }
.about-partners .logo-pill.logo-visit-britain { --logo-w: clamp(136px, 7.8vw, 166px); }
.about-partners .logo-pill.logo-mclaren { --logo-w: clamp(202px, 11.3vw, 240px); }
.about-partners .logo-pill.logo-android { --logo-w: clamp(72px, 4.1vw, 90px); }
.about-partners .logo-pill.logo-specsavers { --logo-w: clamp(184px, 10.3vw, 220px); }
.about-partners .logo-pill.logo-lseg { --logo-w: clamp(132px, 7.5vw, 160px); }
.about-partners .logo-pill.logo-mediapro { --logo-w: clamp(158px, 8.9vw, 190px); }
.about-partners .logo-pill.logo-boxxer,
.about-partners .logo-pill.logo-barin,
.about-partners .logo-pill.logo-raeburn { --logo-w: clamp(80px, 4.6vw, 100px); }
.about-partners .logo-pill.logo-angel { --logo-w: clamp(168px, 9.5vw, 202px); }
.about-partners .logo-pill.logo-arena { --logo-w: clamp(146px, 8.3vw, 178px); }
.about-partners .logo-pill.logo-cine1 { --logo-w: clamp(160px, 9vw, 194px); }
.about-partners .logo-pill.logo-high-stakes { --logo-w: clamp(108px, 6.2vw, 132px); }
.about-partners .logo-pill.logo-balance { --logo-w: clamp(144px, 8.1vw, 174px); }

/* Space the marquee by visible artwork, not transparent pixels inside logo files. */
.about-partners .logo-pill.is-art-trimmed {
  position: relative;
  width: var(--logo-visible-w);
  overflow: visible;
}

.about-partners .logo-pill.is-art-trimmed img {
  position: absolute;
  top: var(--logo-render-top);
  left: var(--logo-render-left);
  width: var(--logo-render-w);
  height: var(--logo-render-h);
  max-width: none;
  max-height: none;
  transform: none;
}

.about-partners .logo-pill.is-art-trimmed:hover img,
.about-partners .logo-pill.is-art-trimmed:focus-visible img {
  transform: none;
}

/* The logo field belongs to the About page; it must never read as a separate panel. */
.partners.about-partners,
.partners.about-partners::before,
.partners.about-partners::after,
.about-partners .partners-window,
.about-partners .partners-window::before,
.about-partners .partners-window::after,
.about-partners .logo-marquee,
.about-partners .logo-marquee::before,
.about-partners .logo-marquee::after,
.about-partners .logo-cloud {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.partners.about-partners::before,
.partners.about-partners::after,
.about-partners .partners-window::before,
.about-partners .partners-window::after,
.about-partners .logo-marquee::before,
.about-partners .logo-marquee::after {
  content: none !important;
  display: none !important;
}

.logo-pill.logo-vigilante {
  --logo-art-w: 54%;
  --logo-art-h: 70%;
}

.logo-pill.is-logo-missing .logo-label {
  position: static;
  width: auto;
  height: auto;
  clip: auto;
  color: var(--logo-gold);
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.2vw, 2rem);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
}

.logo-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.work-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(168px, 10.5vw, 270px), 1fr));
  gap: 1px;
  margin-bottom: clamp(36px, 3vw, 72px);
  border: 1px solid rgba(212, 212, 220, 0.13);
  border-width: 1px 0;
}

.work-filters .filter-button,
.work-filters .filter-link {
  min-width: 0;
  min-height: clamp(72px, 4.4vw, 104px);
  padding: clamp(10px, 1vw, 16px) clamp(12px, 1.15vw, 24px);
  font-size: clamp(0.72rem, 0.62vw, 0.92rem);
  line-height: 1.12;
  letter-spacing: 0.14em;
}

.work-browser {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2vw, 34px);
  align-items: start;
}

.work-list {
  display: flex;
  max-height: clamp(760px, 45vw, 1060px);
  min-height: clamp(520px, 32vw, 760px);
  flex-direction: column;
  overflow: auto;
  padding: 10px;
  scrollbar-color: var(--yellow) rgba(212, 212, 220, 0.08);
}

.work-list.project-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 22vw, 440px);
  align-items: start;
  gap: clamp(16px, 1.6vw, 32px);
  max-height: none;
  min-height: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 18px;
  border: 0;
  background: transparent;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--yellow) rgba(212, 212, 220, 0.08);
}

.work-item {
  width: 100%;
  min-height: 102px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(212, 212, 220, 0.11);
  color: var(--silver);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.work-item span {
  display: grid;
  gap: 10px;
  padding: 18px 14px;
}

.work-item small {
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(0.82rem, 0.74vw, 1.04rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.work-item strong {
  color: rgba(212, 212, 220, 0.9);
  font-size: clamp(1.04rem, 0.98vw, 1.42rem);
  line-height: 1.35;
}

.work-item:hover,
.work-item:focus-visible,
.work-item.is-active {
  outline: 0;
  background: rgba(254, 218, 106, 0.08);
}

.work-item.is-active strong {
  color: var(--silver);
}

.work-detail {
  padding: 36px 0 0;
  border: 1px solid rgba(212, 212, 220, 0.12);
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
}

.work-detail h3 {
  max-width: 1200px;
  margin: 0 0 18px;
  padding-block: 0.04em 0.1em;
  color: var(--silver);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 3.65vw, 6.2rem);
  font-weight: 500;
  line-height: 1.08;
  overflow: visible;
  overflow-wrap: anywhere;
}

.work-tags,
.profile-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.work-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  color: var(--yellow);
  border: 1px solid rgba(254, 218, 106, 0.34);
  border-radius: 999px;
  font-family: var(--display);
  font-size: clamp(0.8rem, 0.7vw, 1rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.visual-flow {
  padding-top: clamp(42px, 4vw, 88px);
}

.vertical-drama {
  padding-top: clamp(84px, 6vw, 152px);
}

.vertical-drama-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: clamp(48px, 7vw, 180px);
  align-items: center;
}

.vertical-drama-statement {
  display: grid;
  align-content: center;
  gap: clamp(22px, 2.2vw, 40px);
  min-height: clamp(560px, 46vw, 920px);
  padding: clamp(28px, 3.8vw, 78px) 0;
}

.vertical-format-mark {
  margin: 0;
  color: var(--yellow);
  font-family: var(--label);
  font-size: clamp(1rem, 1vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.2em;
}

.vertical-drama-statement h3,
.vertical-ledger-heading h3,
.vertical-company-block h3 {
  margin: 0;
  padding-block: 0.04em 0.1em;
  color: var(--page-fg);
  font-family: var(--display);
  font-weight: 900;
  overflow: visible;
  text-wrap: balance;
}

.vertical-drama-statement h3 {
  max-width: 1180px;
  font-size: clamp(4.3rem, 7.1vw, 11.5rem);
  line-height: 0.94;
}

.vertical-drama-statement > p {
  max-width: 980px;
  margin: 0;
  color: var(--page-soft);
  font-size: clamp(1.3rem, 1.7vw, 2.5rem);
  line-height: 1.5;
}

.vertical-format-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(16px, 2vw, 32px) 0 0;
  border-block: 1px solid rgba(212, 212, 220, 0.16);
}

.vertical-format-notes div {
  display: grid;
  gap: 8px;
  padding: clamp(20px, 2vw, 36px) clamp(12px, 1.8vw, 30px);
  border-right: 1px solid rgba(212, 212, 220, 0.12);
}

.vertical-format-notes div:last-child {
  border-right: 0;
}

.vertical-format-notes dt,
.vertical-project p,
.vertical-company-slot span,
.vertical-drama-visual figcaption span {
  color: var(--yellow);
  font-family: var(--label);
  font-size: var(--type-label);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vertical-format-notes dd {
  margin: 0;
  color: var(--page-fg);
  font-size: clamp(1rem, 1vw, 1.35rem);
  line-height: 1.35;
}

.vertical-drama-visual {
  position: relative;
  isolation: isolate;
  width: min(100%, 560px);
  margin: 0;
  justify-self: end;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--black);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.38);
  transform: translate3d(0, 0, 0);
  transition:
    transform 520ms var(--ease-out),
    box-shadow 520ms ease;
}

.vertical-drama-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at var(--spot-x, 68%) var(--spot-y, 24%), rgba(254, 218, 106, 0.2), transparent 16rem),
    linear-gradient(180deg, transparent 42%, rgba(18, 19, 22, 0.88));
  pointer-events: none;
}

.vertical-drama-visual::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: clamp(58px, 5vw, 112px);
  aspect-ratio: 1;
  background: var(--yellow);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  pointer-events: none;
}

.vertical-drama-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.08) brightness(0.78);
  transform: scale(1.035);
  transition:
    filter 520ms var(--ease-out),
    transform 760ms var(--ease-out);
}

.vertical-drama-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 10px;
  padding: clamp(24px, 2.8vw, 50px);
}

.vertical-drama-visual figcaption strong {
  max-width: 440px;
  color: var(--silver);
  font-size: clamp(1.35rem, 1.7vw, 2.45rem);
  line-height: 1.2;
}

.vertical-drama-credits,
.vertical-company-block {
  margin-top: clamp(72px, 6.5vw, 150px);
}

.vertical-ledger-heading,
.vertical-company-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 150px);
  align-items: end;
}

.vertical-ledger-heading {
  margin-bottom: clamp(36px, 4vw, 82px);
}

.vertical-ledger-heading h3,
.vertical-company-block h3 {
  font-size: clamp(2.8rem, 4.4vw, 7rem);
  line-height: 1;
}

.vertical-ledger-heading > span {
  max-width: 760px;
  justify-self: end;
  color: var(--page-soft);
  font-size: clamp(1.08rem, 1.18vw, 1.55rem);
  line-height: 1.55;
}

.vertical-project-list {
  border-bottom: 1px solid rgba(212, 212, 220, 0.16);
}

.vertical-project {
  position: relative;
  display: grid;
  grid-template-columns: clamp(56px, 5vw, 108px) minmax(260px, 1.2fr) minmax(210px, 0.8fr) minmax(210px, 0.8fr);
  gap: clamp(24px, 3vw, 72px);
  align-items: center;
  min-height: clamp(150px, 9vw, 220px);
  padding: clamp(26px, 2.4vw, 48px) clamp(18px, 1.8vw, 36px);
  border-top: 1px solid rgba(212, 212, 220, 0.16);
  transition:
    background 360ms ease,
    transform 420ms var(--ease-out);
}

.vertical-project::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at var(--spot-x, 75%) var(--spot-y, 50%), rgba(254, 218, 106, 0.13), transparent 22rem);
  opacity: 0;
  transition: opacity 360ms ease;
}

.vertical-project-number {
  align-self: start;
  color: var(--yellow);
  font-family: var(--label);
  font-size: clamp(1rem, 1vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.vertical-project div {
  display: grid;
  gap: 12px;
}

.vertical-project p,
.vertical-project h4 {
  margin: 0;
}

.vertical-project h4 {
  padding-block: 0.04em 0.1em;
  color: var(--page-fg);
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.15vw, 3.4rem);
  line-height: 1;
  overflow: visible;
}

.vertical-project strong {
  color: var(--page-soft);
  font-size: clamp(1.05rem, 1.08vw, 1.48rem);
  font-weight: 600;
  line-height: 1.4;
}

.vertical-company-block {
  align-items: start;
  padding-top: clamp(24px, 3vw, 54px);
  border-top: 1px solid rgba(254, 218, 106, 0.42);
}

.vertical-company-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 64px);
}

.vertical-company-slot {
  display: grid;
  min-height: clamp(140px, 10vw, 220px);
  align-content: space-between;
  padding: clamp(20px, 2vw, 34px) 0;
  border-top: 1px solid rgba(212, 212, 220, 0.16);
}

.vertical-company-slot strong {
  color: var(--page-soft);
  font-family: var(--label);
  font-size: clamp(1rem, 1vw, 1.35rem);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.visual-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(14px, 1.6vw, 28px);
  align-items: stretch;
}

.visual-flow-side {
  display: grid;
  gap: clamp(14px, 1.6vw, 28px);
}

.media-card,
.project-card,
.blog-card,
.about-frame {
  position: relative;
}

.media-card,
.project-card {
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(280px, 26vw, 620px);
  color: var(--silver);
  border: 0;
  background: var(--black);
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition:
    transform 440ms var(--ease-out),
    box-shadow 440ms ease,
    filter 360ms ease;
}

.media-card img,
.project-card img,
.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card img,
.project-card img {
  --parallax-y: 0px;
  --settled-scale: 1.02;
  --hover-scale: 1.075;
  position: absolute;
  inset: 0;
  opacity: 0.86;
  clip-path: inset(100% 0 0 0);
  filter: saturate(0.85) contrast(1.08) brightness(0.72);
  transform: translate3d(0, var(--parallax-y), 0) scale(1.055);
  transition:
    clip-path 720ms var(--ease-snap),
    transform 860ms var(--ease-snap),
    filter 520ms var(--ease-snap),
    opacity 520ms var(--ease-snap);
}

.media-card.is-visible img,
.project-card.is-visible img {
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, var(--parallax-y), 0) scale(var(--settled-scale));
}

.media-card::before,
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at var(--spot-x, 68%) var(--spot-y, 22%), rgba(254, 218, 106, 0.2), transparent 18rem),
    linear-gradient(180deg, transparent 20%, rgba(18, 19, 22, 0.78)),
    linear-gradient(90deg, rgba(18, 19, 22, 0.36), transparent 60%);
  opacity: 0.94;
  transition: opacity 360ms ease;
}

.media-card::after,
.project-card::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: 3;
  width: clamp(44px, 5vw, 98px);
  aspect-ratio: 1;
  background: var(--yellow);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  opacity: 0;
  transform: translate(46%, -46%) rotate(12deg);
  transform-origin: top right;
  transition:
    opacity 300ms ease,
    transform 520ms var(--ease-out);
  pointer-events: none;
}

.media-card:hover img,
.media-card:focus-visible img,
.project-card:hover img,
.project-card:focus-visible img {
  opacity: 0.98;
  filter: saturate(0.95) contrast(1.12) brightness(0.82);
  transform: translate3d(0, var(--parallax-y), 0) scale(var(--hover-scale));
}

.media-card:hover::before,
.media-card:focus-visible::before,
.project-card:hover::before,
.project-card:focus-visible::before {
  opacity: 1;
}

.media-card:hover::after,
.media-card:focus-visible::after,
.project-card:hover::after,
.project-card:focus-visible::after {
  opacity: 1;
  transform: translate(0, 0) rotate(0);
}

.media-card:focus-visible,
.project-card:focus-visible {
  outline: 2px solid rgba(254, 218, 106, 0.72);
  outline-offset: 4px;
}

.media-card-content,
.project-card span {
  position: relative;
  z-index: 2;
}

.media-card-content {
  display: grid;
  min-height: inherit;
  align-content: end;
  gap: 12px;
  padding: clamp(24px, 3vw, 58px);
  transition: transform 360ms var(--ease-out);
}

.media-card p,
.media-card h3,
.media-card-content > span {
  margin: 0;
}

.media-card p {
  color: var(--page-accent);
  font-family: var(--label);
  font-size: var(--type-label);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.media-card h3 {
  max-width: 780px;
  padding-block: 0.04em 0.1em;
  color: var(--page-fg);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 3.3vw, 6rem);
  font-weight: 500;
  line-height: 1.08;
  overflow: visible;
}

.media-card-content > span {
  max-width: 540px;
  color: var(--page-soft);
  font-size: clamp(1.08rem, 1.02vw, 1.42rem);
  line-height: 1.5;
}

.media-card.is-tall {
  min-height: clamp(480px, 43vw, 860px);
}

.project-card {
  display: grid;
  grid-template-rows: auto minmax(118px, auto);
  min-height: 0;
  padding: 0;
  text-align: left;
  scroll-snap-align: center;
}

.project-card img {
  --settled-scale: 1;
  --hover-scale: 1;
  position: relative;
  inset: auto;
  grid-row: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: #0c0d0f;
}

.project-card.is-visible img,
.project-card:hover img,
.project-card:focus-visible img {
  transform: none;
}

.project-card span {
  display: grid;
  grid-row: 2;
  align-content: start;
  min-width: 0;
  min-height: 118px;
  gap: 8px;
  padding: clamp(16px, 1.25vw, 22px);
  background: rgba(18, 19, 22, 0.98);
  transform: translate3d(0, 0, 0);
  transition: transform 360ms var(--ease-out);
}

.project-card small {
  color: var(--page-accent);
  font-family: var(--label);
  font-size: clamp(0.72rem, 0.62vw, 0.88rem);
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.project-card strong {
  color: rgba(245, 245, 248, 0.94);
  font-size: clamp(1rem, 0.9vw, 1.32rem);
  line-height: 1.28;
  overflow-wrap: anywhere;
  word-break: normal;
}

.project-card.is-active,
.project-card:hover,
.project-card:focus-visible {
  outline: 1px solid rgba(254, 218, 106, 0.58);
  outline-offset: -1px;
}

.media-card:hover,
.media-card:focus-visible,
.project-card:hover,
.project-card:focus-visible {
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  filter: saturate(1.05);
  transform: translate3d(0, -8px, 0) scale(1.008);
}

.media-card:hover .media-card-content,
.media-card:focus-visible .media-card-content,
.project-card:hover span,
.project-card:focus-visible span {
  transform: translate3d(0, -6px, 0);
}

.service-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(42px, 4.8vw, 130px);
}

.service-list article,
.studio-snapshot article {
  background: transparent;
  border-width: 1px 0 0;
  box-sizing: border-box;
}

.studio-snapshot article {
  display: grid;
  align-content: start;
  gap: clamp(16px, 1.6vw, 26px);
  min-height: clamp(170px, 10vw, 240px);
  padding:
    clamp(28px, 3vw, 48px)
    clamp(28px, 3vw, 52px)
    clamp(30px, 3.2vw, 54px)
    clamp(36px, 4vw, 64px);
}

.service-list article {
  display: grid;
  grid-template-columns: clamp(52px, 4vw, 92px) minmax(0, 1fr);
  column-gap: clamp(24px, 2.8vw, 64px);
  row-gap: clamp(16px, 1.8vw, 30px);
  align-content: start;
  min-height: clamp(178px, 11vw, 270px);
  padding:
    clamp(30px, 3vw, 56px)
    clamp(28px, 3vw, 56px)
    clamp(32px, 3.4vw, 64px)
    clamp(36px, 4vw, 72px);
}

.service-list article > span {
  grid-row: 1 / span 2;
  align-self: start;
  margin: 0;
  font-size: clamp(1rem, 0.9vw, 1.3rem);
  line-height: 1.2;
}

/* Flickr-inspired energy layer: bigger friendly type, brighter CTAs, and a looser photo-stream rhythm. */
.site-page .section-heading h2,
.site-page .intro-grid h2,
.site-page .contact-inner h2,
.site-page .blog-category-head h2,
.page-hero h1 {
  max-width: 16ch;
  font-family: var(--sans);
  font-weight: 850;
  line-height: 0.92;
  letter-spacing: -0.045em;
  word-spacing: 0.08em;
}

.site-page .section-heading h2 .motion-word,
.site-page .intro-grid h2 .motion-word,
.site-page .contact-inner h2 .motion-word,
.site-page .blog-category-head h2 .motion-word,
.page-hero h1 .motion-word {
  margin-inline: 0;
  padding-inline: 0.035em;
}

.site-page .section-heading > p,
.site-page .intro-summary,
.site-page .short-bio-text,
.site-page .contact-inner > p,
.site-page .page-hero p:not(.section-kicker) {
  max-width: 62ch;
  font-size: clamp(1.22rem, 1.42vw, 2.05rem);
  line-height: 1.48;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.72em;
  width: fit-content;
  color: rgba(247, 247, 249, 0.92);
  font-family: var(--sans);
  font-weight: 850;
  letter-spacing: 0.14em;
}

.section-kicker::before {
  content: "";
  width: 0.72em;
  height: 0.72em;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow:
    0.82em 0 0 rgba(212, 212, 220, 0.5),
    1.64em 0 0 rgba(254, 218, 106, 0.34);
}

.button,
.filter-button,
.filter-link,
.mini-button {
  border-radius: 8px;
}

.button.primary,
.hero-actions .button.primary {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
  box-shadow: 0 18px 42px rgba(254, 218, 106, 0.14);
}

.button:hover,
.button:focus-visible,
.filter-button:hover,
.filter-button:focus-visible,
.filter-link:hover,
.filter-link:focus-visible,
.mini-button:hover,
.mini-button:focus-visible {
  color: var(--black);
  border-color: var(--yellow);
  background: var(--yellow);
  transform: translateY(-4px) scale(1.012);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
}

.filter-button.is-active {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.visual-flow {
  padding-top: clamp(60px, 5vw, 118px);
}

.visual-flow-grid {
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.76fr);
  gap: clamp(18px, 2.2vw, 56px);
}

.visual-flow-side {
  gap: clamp(18px, 2.2vw, 46px);
  transform: translateY(clamp(18px, 2.8vw, 72px));
}

.media-card,
.project-card {
  border-radius: 8px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.22);
}

.media-card {
  min-height: clamp(360px, 32vw, 760px);
}

.media-card.is-tall {
  min-height: clamp(560px, 48vw, 980px);
}

.media-card img,
.project-card img {
  opacity: 0.92;
  filter: saturate(0.98) contrast(1.08) brightness(0.76);
}

.media-card::before,
.project-card::before {
  background:
    radial-gradient(circle at var(--spot-x, 68%) var(--spot-y, 22%), rgba(254, 218, 106, 0.2), transparent 18rem),
    linear-gradient(180deg, rgba(18, 19, 22, 0.04), rgba(18, 19, 22, 0.72)),
    linear-gradient(90deg, rgba(18, 19, 22, 0.12), transparent 66%);
}

.media-card h3 {
  max-width: 12ch;
  font-family: var(--sans);
  font-size: clamp(3rem, 5.8vw, 9rem);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.visual-flow-side .media-card h3 {
  font-size: clamp(2.15rem, 3.15vw, 5.1rem);
}

.media-card-content > span {
  max-width: 48ch;
  font-size: clamp(1.12rem, 1.14vw, 1.55rem);
}

.project-card strong {
  font-family: var(--sans);
  font-size: clamp(1rem, 0.9vw, 1.32rem);
  font-weight: 850;
  letter-spacing: -0.02em;
}

.service-list article {
  min-height: clamp(220px, 13vw, 340px);
  border-top-color: rgba(212, 212, 220, 0.2);
}

.service-list h3 {
  font-family: var(--sans);
  font-size: clamp(2rem, 2.45vw, 4.4rem);
  font-weight: 850;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.service-list article > span {
  color: var(--yellow);
  font-family: var(--sans);
  font-size: clamp(1.15rem, 1.08vw, 1.7rem);
  font-weight: 850;
}

.network-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.director-grid,
.acting-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.director-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: clamp(220px, 17vw, 320px) minmax(0, 1fr);
  gap: clamp(24px, 2.4vw, 46px);
  align-items: center;
  padding: 30px 0;
  transition:
    border-color 260ms ease,
    transform 320ms var(--ease-out),
    background 260ms ease;
}

.portrait {
  overflow: hidden;
  width: 100%;
  min-height: clamp(280px, 22vw, 390px);
  aspect-ratio: 4 / 5;
  border: 0;
  border-radius: 0;
  background-size: cover;
  background-position: center 18%;
}

.portrait-one {
  background:
    linear-gradient(135deg, rgba(254, 218, 106, 0.2), transparent 38%),
    linear-gradient(0deg, rgba(18, 19, 22, 0.1), rgba(18, 19, 22, 0.1)),
    url("assets/people/luca-stifani-laughing.jpg");
  background-size: cover;
  background-position: center;
}

.portrait-two {
  background:
    linear-gradient(215deg, rgba(254, 218, 106, 0.2), transparent 38%),
    linear-gradient(0deg, rgba(18, 19, 22, 0.1), rgba(18, 19, 22, 0.1)),
    url("assets/people/gabriele-stifani-laughing.jpg");
  background-size: cover;
  background-position: center;
}

.performer-plate .portrait-one {
  background:
    linear-gradient(135deg, rgba(254, 218, 106, 0.18), transparent 38%),
    linear-gradient(0deg, rgba(18, 19, 22, 0.08), rgba(18, 19, 22, 0.08)),
    url("assets/people/luca-stifani-actor.jpg");
  background-size: cover;
  background-position: center 10%;
}

.performer-plate .portrait-two {
  background:
    linear-gradient(215deg, rgba(254, 218, 106, 0.18), transparent 38%),
    linear-gradient(0deg, rgba(18, 19, 22, 0.08), rgba(18, 19, 22, 0.08)),
    url("assets/people/gabriele-stifani-actor.jpg");
  background-size: cover;
  background-position: center 10%;
}

.mini-button {
  min-height: 42px;
  padding: 0 15px;
  font-size: clamp(0.82rem, 0.72vw, 1rem);
}

.mini-icon,
.button-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: filter 180ms ease, opacity 180ms ease;
}

.imdb-button:hover .mini-icon,
.imdb-button:focus-visible .mini-icon,
.imdb-button:active .mini-icon {
  filter: brightness(0) saturate(100%);
  opacity: 0.82;
}

.mini-mark {
  color: var(--yellow);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: 60px;
  padding: 54px 0 0;
  background: transparent;
}

.contact-inner .section-kicker,
.contact-inner h2,
.contact-inner > p,
.contact-actions {
  grid-column: 1;
}

.contact-form {
  grid-column: 2;
  grid-row: 1 / span 4;
  display: grid;
  gap: 20px;
  padding: 0;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--silver);
  font-family: var(--display);
  font-size: var(--type-label);
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--silver);
  border: 1px solid rgba(212, 212, 220, 0.26);
  border-radius: 3px;
  background: rgba(57, 63, 77, 0.28);
  padding: 15px;
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact {
  display: grid;
  min-height: calc(100svh - var(--anchor-offset, 110px));
  align-items: center;
  padding-block: clamp(36px, 3.4vw, 66px);
}

.contact .contact-inner {
  grid-template-columns: minmax(360px, 0.74fr) minmax(440px, 1fr);
  grid-template-rows: auto auto auto 1fr;
  gap: clamp(42px, 4.4vw, 96px);
  align-items: stretch;
  padding-top: clamp(24px, 2.15vw, 44px);
}

.site-page .contact .contact-inner h2 {
  max-width: 100%;
  font-size: clamp(3.2rem, 3.85vw, 6.05rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  word-spacing: 0.04em;
}

.site-page .contact .contact-inner > p {
  max-width: 46ch;
  margin: clamp(16px, 1.5vw, 28px) 0 0;
  font-size: clamp(1.02rem, 1vw, 1.36rem);
  line-height: 1.54;
}

.contact .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-self: end;
  max-width: 760px;
  margin-top: clamp(26px, 3vw, 54px);
}

.contact-social-link {
  position: relative;
  display: grid;
  width: clamp(58px, 3.8vw, 74px);
  aspect-ratio: 1;
  place-items: center;
  flex: 0 0 auto;
  color: var(--silver);
  border: 1px solid rgba(212, 212, 220, 0.36);
  border-radius: 8px;
  background: rgba(18, 19, 22, 0.18);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 220ms var(--ease-out);
}

.contact-social-link img {
  width: clamp(25px, 1.65vw, 32px);
  height: clamp(25px, 1.65vw, 32px);
  object-fit: contain;
}

.contact-social-link:hover,
.contact-social-link:focus-visible {
  border-color: var(--yellow);
  background: rgba(254, 218, 106, 0.08);
  outline: 0;
  transform: translate3d(0, -3px, 0);
}

.contact-social-link[data-hover-label]::after {
  content: attr(data-hover-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 8;
  padding: 7px 10px;
  color: var(--silver);
  border: 1px solid rgba(254, 218, 106, 0.42);
  border-radius: 4px;
  background: rgba(18, 19, 22, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  font-family: var(--label);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, 6px, 0);
  transition: opacity 180ms ease, transform 220ms var(--ease-out);
}

.contact-social-link[data-hover-label]:hover::after,
.contact-social-link[data-hover-label]:focus-visible::after {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.contact .button {
  min-height: clamp(44px, 2.35vw, 58px);
  padding-inline: clamp(12px, 1vw, 18px);
  border-radius: 6px;
  font-size: clamp(0.72rem, 0.62vw, 0.92rem);
  letter-spacing: 0.14em;
}

.contact-form {
  height: 100%;
  min-height: 100%;
  align-self: stretch;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: clamp(12px, 1vw, 18px);
}

.contact-form label {
  gap: 7px;
}

.contact-form .message-field {
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr);
}

.contact-form input,
.contact-form textarea {
  padding: clamp(11px, 0.8vw, 14px);
  font-family: var(--sans);
  font-size: clamp(0.96rem, 0.88vw, 1.14rem);
  line-height: 1.35;
}

.contact-form input {
  min-height: clamp(46px, 2.5vw, 58px);
}

.contact-form textarea {
  height: 100%;
  min-height: clamp(180px, 16vw, 420px);
}

.contact-form .button {
  width: 100%;
  min-height: clamp(56px, 3.2vw, 74px);
  align-self: start;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  padding: 34px 0 42px;
  color: var(--page-muted);
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(0.9rem, 0.78vw, 1.1rem);
  line-height: 1.25;
  text-transform: uppercase;
}

body[data-page="site"] .site-footer {
  padding-bottom: clamp(128px, 10vh, 190px);
}

body[data-page="blog"] .site-footer {
  padding-bottom: max(112px, calc(86px + env(safe-area-inset-bottom)));
}

.page-hero {
  overflow: hidden;
  min-height: clamp(480px, 33vw, 720px);
  display: grid;
  align-content: end;
  margin-top: 18px;
  padding: clamp(132px, 9vw, 210px) clamp(56px, 4vw, 110px) clamp(56px, 4vw, 110px);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-hero-image {
  --parallax-y: 0px;
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.54;
  clip-path: inset(100% 0 0 0);
  filter: saturate(0.82) contrast(1.08) brightness(0.68);
  transform: translate3d(0, var(--parallax-y), 0) scale(1.06);
  transition:
    clip-path 1100ms var(--ease-out),
    transform 1400ms var(--ease-out),
    opacity 900ms var(--ease-out),
    filter 900ms var(--ease-out);
}

.page-hero.is-visible .page-hero-image {
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, var(--parallax-y), 0) scale(1.01);
}

body[data-page="theatre"] .page-hero-image,
body[data-page="theatre"] .media-card img {
  object-position: center 24%;
}

.page-hero h1 {
  max-width: min(1420px, 84vw);
  font-size: var(--type-page-title);
  line-height: var(--leading-heading);
  letter-spacing: -0.03em;
}

.page-hero p:not(.section-kicker) {
  max-width: min(980px, 62vw);
  margin: 22px 0 0;
  font-size: clamp(1.22rem, 1.2vw, 1.78rem);
  line-height: 1.58;
}

.page-hero::after {
  opacity: 0.86;
}

.page-hero::marker {
  color: var(--yellow);
}

.blog-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(212, 212, 220, 0.13);
  border-width: 1px 0;
}

.blog-tabs a {
  display: inline-flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--display);
  font-size: clamp(0.94rem, 0.82vw, 1.22rem);
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.blog-tabs a:hover,
.blog-tabs a:focus-visible {
  color: var(--slate);
  background: var(--yellow);
  outline: 0;
}

.blog-category-head {
  position: relative;
  margin-bottom: 28px;
  border-top: 0;
  padding-top: 18px;
}

.blog-card {
  overflow: hidden;
  padding: 0;
  border-width: 1px 0 0;
  background: transparent;
}

.blog-card-image {
  aspect-ratio: 16 / 9;
  opacity: 0.78;
  clip-path: inset(100% 0 0 0);
  filter: saturate(0.82) contrast(1.05) brightness(0.72);
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.055);
  transition:
    clip-path 720ms var(--ease-snap),
    opacity 420ms var(--ease-snap),
    transform 860ms var(--ease-snap),
    filter 520ms var(--ease-snap);
}

.blog-card.is-visible .blog-card-image {
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.01);
}

.blog-card p,
.blog-card h3,
.blog-card > span {
  padding-inline: 0;
}

.blog-card p {
  margin-top: 24px;
}

.blog-card > span {
  display: block;
  padding-bottom: 28px;
}

.page-return {
  margin-top: 24px;
}

.project-grid .project-card {
  display: grid;
}

.js .section-heading,
.js .floating-window,
.js .work-browser,
.js .media-card,
.js .about-frame,
.js .project-card,
.js .studio-snapshot article,
.js .service-list article,
.js .network-card,
.js .acting-card,
.js .director-card,
.js .contact-inner,
.js .contact-form label,
.js .contact-actions .button,
.js .blog-card,
.js .vertical-drama-statement,
.js .vertical-drama-visual,
.js .vertical-ledger-heading,
.js .vertical-project,
.js .vertical-company-block,
.js .vertical-company-slot {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, clamp(28px, 4vw, 72px), 0) scale(0.985);
  transition:
    opacity 420ms ease,
    filter 680ms ease,
    transform 860ms var(--ease-snap);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .section-heading.is-visible,
.js .floating-window.is-visible,
.js .work-browser.is-visible,
.js .media-card.is-visible,
.js .about-frame.is-visible,
.js .project-card.is-visible,
.js .studio-snapshot article.is-visible,
.js .service-list article.is-visible,
.js .network-card.is-visible,
.js .acting-card.is-visible,
.js .director-card.is-visible,
.js .contact-inner.is-visible,
.js .contact-form label.is-visible,
.js .contact-actions .button.is-visible,
.js .blog-card.is-visible,
.js .vertical-drama-statement.is-visible,
.js .vertical-drama-visual.is-visible,
.js .vertical-ledger-heading.is-visible,
.js .vertical-project.is-visible,
.js .vertical-company-block.is-visible,
.js .vertical-company-slot.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.js .media-card.is-visible:hover,
.js .media-card.is-visible:focus-visible,
.js .project-card.is-visible:hover,
.js .project-card.is-visible:focus-visible {
  transform: translate3d(0, -8px, 0) scale(1.008);
}

.motion-text {
  display: block;
  overflow: visible;
  perspective: 900px;
}

.motion-word {
  display: inline-block;
  overflow: hidden;
  padding-block: 0.2em 0.24em;
  padding-inline: 0.065em;
  margin-block: -0.14em;
  margin-inline: -0.065em;
  line-height: inherit;
  vertical-align: baseline;
  white-space: nowrap;
}

.motion-char {
  display: inline-block;
  opacity: 0;
  line-height: inherit;
  transform: translateY(1.02em) rotateX(42deg) skewY(2deg);
  transform-origin: 50% 100%;
  filter: blur(5px);
  transition:
    opacity 260ms var(--ease-snap),
    transform 780ms var(--ease-snap),
    filter 460ms ease;
  transition-delay: calc(var(--text-delay, 0ms) + (var(--char-index) * 10ms));
}

.is-text-visible .motion-char {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.section.is-visible .motion-text .motion-char,
.section-heading.is-visible .motion-text .motion-char,
.page-hero .motion-text .motion-char {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes heroTitleWordIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroMediaDrift {
  from {
    transform: scale(1.03) translate3d(-0.6%, -0.4%, 0);
  }

  to {
    transform: scale(1.08) translate3d(0.7%, 0.5%, 0);
  }
}

.motion-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(254, 218, 106, 0.92);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition:
    width 150ms ease,
    height 150ms ease,
    border-color 150ms ease,
    background 150ms ease,
    opacity 150ms ease;
}

.motion-cursor::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--yellow);
}

.motion-cursor.is-visible {
  opacity: 1;
}

.has-motion-cursor {
  cursor: none;
}

.has-motion-cursor a,
.has-motion-cursor button,
.has-motion-cursor iframe,
.has-motion-cursor input,
.has-motion-cursor textarea {
  cursor: none;
}

.is-cursor-action .motion-cursor {
  width: 54px;
  height: 54px;
  border-color: rgba(212, 212, 220, 0.78);
  background: rgba(254, 218, 106, 0.08);
}

.is-cursor-pressing .motion-cursor {
  width: 42px;
  height: 42px;
  background: rgba(254, 218, 106, 0.18);
}

@media (min-width: 760px) {
  :root {
    --page-pad: clamp(28px, 2vw, 52px);
  }

  .hero h1,
  .site-hero h1 {
    max-width: none;
    font-size: clamp(4.65rem, 6.8vw, 11.1rem);
    text-wrap: nowrap;
    white-space: nowrap;
  }

  .hero-content::before,
  .site-hero-inner::before {
    font-size: clamp(20rem, 20vw, 42rem);
  }
}

@media (min-width: 1180px) {
  :root {
    --page-pad: clamp(40px, 2vw, 64px);
  }

  .hero h1,
  .site-hero h1 {
    font-size: clamp(4.65rem, 6.8vw, 11.1rem);
    max-width: none;
  }
}

@media (min-width: 1540px) {
  .hero h1,
  .site-hero h1 {
    font-size: clamp(4.65rem, 6.8vw, 11.1rem);
  }
}

@media (min-width: 1800px) {
  :root {
    --max: 2400px;
    --frame-max: 3200px;
    --hero-content-max: 2600px;
  }

  .section {
    padding-block: clamp(108px, 6vw, 168px);
  }

  .section-heading {
    gap: clamp(72px, 6vw, 150px);
  }
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding-inline: clamp(9px, 1vw, 15px);
    font-size: clamp(0.72rem, 0.68vw, 0.88rem);
    letter-spacing: 0.11em;
  }

  .work-filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .work-browser,
  .visual-flow-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact {
    min-height: auto;
    align-items: start;
  }

  .contact .contact-inner {
    grid-template-columns: minmax(280px, 0.72fr) minmax(340px, 1fr);
    gap: clamp(28px, 3.6vw, 54px);
  }

  .contact .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin-top: clamp(22px, 3vw, 34px);
  }

  .contact .contact-inner .section-kicker,
  .contact .contact-inner h2,
  .contact .contact-inner > p,
  .contact .contact-actions {
    grid-column: 1;
  }

  .contact .contact-form {
    grid-column: 2;
    grid-row: 1 / span 4;
  }

  .visual-flow-side {
    transform: none;
  }

  .about-page .intro-grid,
  .about-page .about-story {
    grid-template-columns: 1fr;
  }

  .vertical-drama-intro {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
    gap: clamp(38px, 5vw, 72px);
  }

  .vertical-project {
    grid-template-columns: clamp(48px, 5vw, 76px) minmax(240px, 1.1fr) repeat(2, minmax(180px, 0.8fr));
    gap: clamp(18px, 2.2vw, 34px);
  }

  .intro-copy {
    position: static;
  }

  .contact-inner .section-kicker,
  .contact-inner h2,
  .contact-inner > p,
  .contact-actions,
  .contact-form {
    grid-column: auto;
    grid-row: auto;
  }

  .contact .contact-inner .section-kicker,
  .contact .contact-inner h2,
  .contact .contact-inner > p,
  .contact .contact-actions {
    grid-column: 1;
  }

  .contact .contact-form {
    grid-column: 2;
    grid-row: 1 / span 4;
  }
}

@media (max-width: 900px) {
  :root {
    --page-pad: 16px;
  }

  .site-header {
    top: 0;
    height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .brand {
    justify-content: center;
  }

  .brand-logo {
    width: 64px;
    margin: -7px -14px -7px -13px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    justify-content: stretch;
    overflow: visible;
    padding-bottom: 0;
    gap: 2px 4px;
  }

  .site-nav a {
    padding: 8px 7px;
    font-size: clamp(0.72rem, 2.3vw, 0.96rem);
    text-align: center;
    white-space: normal;
  }

  .hero,
  .site-hero {
    min-height: 100svh;
    margin: 0;
  }

  .hero-content,
  .site-hero-inner {
    width: min(100% - 30px, 720px);
    min-height: 72vh;
    padding: 154px 0 96px;
  }

  .hero h1,
  .site-hero h1 {
    max-width: min(840px, 96vw);
    font-size: clamp(3.4rem, 14vw, 5.9rem);
    line-height: 0.9;
    letter-spacing: 0.028em;
    text-wrap: balance;
    white-space: normal;
  }

  .hero h1.clean-hero-title,
  .site-hero h1.clean-hero-title {
    flex-direction: column;
    gap: 0.04em;
  }

  .hero-pretitle {
    min-height: 0;
    padding: 0;
    letter-spacing: 0.18em;
    text-indent: 0.18em;
  }

  .hero-role,
  .site-hero-copy {
    width: 100%;
    min-height: auto;
    padding: 0;
    font-size: clamp(1rem, 3.8vw, 1.55rem);
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    margin-top: 44px;
  }

  .hero-actions .button {
    min-height: 58px;
  }

  .hero-content::before,
  .site-hero-inner::before {
    top: 30%;
    font-size: 12rem;
  }

  .hero-content::after,
  .site-hero-inner::after {
    bottom: 40px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading,
  .about-story,
  .reel-layout,
  .visual-flow-grid,
  .vertical-drama-intro,
  .vertical-ledger-heading,
  .vertical-company-block,
  .studio-snapshot,
  .service-list,
  .network-grid,
  .director-grid,
  .acting-grid,
  .blog-grid,
  .blog-tabs {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
  }

  .studio-snapshot article,
  .service-list article {
    padding:
      clamp(24px, 4.8vw, 36px)
      clamp(24px, 5vw, 38px)
      clamp(26px, 5.2vw, 40px);
  }

  .service-list article {
    grid-template-columns: clamp(44px, 7vw, 64px) minmax(0, 1fr);
    column-gap: clamp(18px, 4vw, 30px);
    row-gap: clamp(14px, 3vw, 22px);
  }

  .visual-flow-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vertical-drama-statement {
    min-height: 0;
    padding-bottom: 0;
  }

  .vertical-drama-statement h3 {
    font-size: clamp(3.8rem, 12vw, 7rem);
  }

  .vertical-drama-visual {
    width: min(100%, 430px);
    justify-self: center;
  }

  .vertical-ledger-heading > span {
    justify-self: start;
  }

  .vertical-project {
    grid-template-columns: clamp(42px, 7vw, 62px) minmax(0, 1fr);
    gap: 18px clamp(18px, 4vw, 34px);
  }

  .vertical-project-number {
    grid-row: 1 / span 3;
  }

  .vertical-project > div {
    grid-column: 2;
  }

  .vertical-company-slots {
    gap: 18px;
  }

  .section-heading h2,
  .intro-grid h2,
  .contact-inner h2,
  .blog-category-head h2,
  .page-hero h1 {
    font-size: clamp(2.85rem, 10.2vw, 5.25rem);
    line-height: 1.1;
  }

  .about-page .intro-grid h2 {
    font-size: clamp(2.9rem, 10vw, 5rem);
    line-height: 1.1;
  }

  .about-page .intro-summary,
  .about-page .short-bio-text {
    font-size: clamp(1.18rem, 4.5vw, 1.72rem);
    line-height: 1.55;
  }

  .about-page .about-story {
    gap: 18px;
    margin-top: 48px;
  }

  .work-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-list {
    max-height: 440px;
    min-height: 0;
  }

  .work-detail h3 {
    font-size: clamp(2.35rem, 8.2vw, 3.9rem);
  }

  .director-card {
    grid-template-columns: 1fr;
  }

  .portrait {
    width: min(100%, 360px);
    min-height: 0;
    justify-self: start;
  }

  .contact-inner {
    padding: 28px;
  }

  .contact .contact-inner {
    grid-template-columns: 1fr;
    gap: clamp(24px, 5vw, 42px);
  }

  .contact .contact-inner .section-kicker,
  .contact .contact-inner h2,
  .contact .contact-inner > p,
  .contact .contact-actions,
  .contact .contact-form {
    grid-column: auto;
    grid-row: auto;
  }

  .contact .contact-form {
    height: auto;
    min-height: 0;
    align-self: auto;
    grid-template-rows: auto;
  }

  .contact-form .message-field {
    grid-template-rows: auto;
  }

  .contact-form textarea {
    height: auto;
  }

  .site-page .contact .contact-inner h2 {
    font-size: clamp(2.9rem, 10vw, 5rem);
    line-height: 1.02;
  }

  .site-page .contact .contact-inner > p {
    font-size: clamp(1rem, 3.6vw, 1.28rem);
  }

  .contact .contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero {
    min-height: 420px;
    padding: 148px 28px 36px;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .hero h1,
  .site-hero h1 {
    font-size: clamp(3.05rem, 13.6vw, 4.55rem);
    letter-spacing: 0.024em;
  }

  .site-header {
    width: 100%;
    top: 0;
  }

  .site-nav a {
    padding: 7px 6px;
    font-size: clamp(0.68rem, 2.7vw, 0.82rem);
  }

  .hero-role,
  .site-hero-copy {
    font-size: clamp(0.88rem, 3.8vw, 1.08rem);
  }

  .hero-actions,
  .work-filters {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .visual-flow-side {
    grid-template-columns: 1fr;
  }

  .vertical-format-notes,
  .vertical-company-slots {
    grid-template-columns: 1fr;
  }

  .vertical-format-notes div {
    border-right: 0;
    border-bottom: 1px solid rgba(212, 212, 220, 0.12);
  }

  .vertical-format-notes div:last-child {
    border-bottom: 0;
  }

  .vertical-company-slot {
    min-height: 110px;
  }

  .work-list.project-grid {
    grid-auto-columns: minmax(254px, 78vw);
  }

  .project-card {
    grid-template-rows: auto minmax(124px, auto);
  }

  .project-card span {
    min-height: 124px;
    padding: 16px;
  }

  .project-card strong {
    font-size: clamp(0.98rem, 4.3vw, 1.16rem);
  }

  .hero-socials a {
    width: 48px;
    height: 48px;
  }

  .section-heading h2,
  .intro-grid h2,
  .contact-inner h2,
  .blog-category-head h2,
  .page-hero h1 {
    font-size: clamp(2.55rem, 11.4vw, 3.9rem);
    line-height: 1.1;
  }

  .button,
  .filter-button,
  .filter-link {
    min-height: 52px;
  }

  .contact .contact-inner {
    padding: 22px 0 0;
  }

  .studio-snapshot article,
  .service-list article {
    padding: 24px;
  }

  .service-list article {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .service-list article > span {
    grid-row: auto;
  }

  .contact .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-form textarea {
    min-height: 128px;
  }
}

/* Launch audit: keep the established visual language while making its rhythm
   consistent across wide screens, compact navigation, and portfolio filters. */
.site-page .site-hero {
  min-height: 100svh;
  padding: 0;
}

@media (min-width: 901px) {
  .hero-content,
  .site-hero-inner {
    min-height: 100svh;
    padding: clamp(88px, 8vh, 126px) 0 clamp(64px, 6vh, 96px);
  }

  .hero h1,
  .site-hero h1 {
    margin-top: clamp(18px, 2.5vh, 30px);
  }

  .hero-role,
  .site-hero-copy {
    margin-top: clamp(24px, 3.4vh, 40px);
  }

  .hero-actions {
    margin-top: clamp(34px, 5vh, 58px);
  }

  .hero-socials {
    margin-top: clamp(22px, 3vh, 32px);
  }
}

@media (min-width: 1181px) {
  .work-filters {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body {
    overscroll-behavior-y: auto;
  }

  .home-page .site-header.is-scrolled {
    background: rgba(18, 19, 22, 0.96);
    border-bottom: 1px solid rgba(254, 218, 106, 0.18);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }

  .hero::before,
  .site-hero::before {
    background:
      linear-gradient(90deg, rgba(18, 19, 22, 0.26), rgba(18, 19, 22, 0.1) 46%, rgba(18, 19, 22, 0.34)),
      linear-gradient(180deg, rgba(18, 19, 22, 0.08), rgba(18, 19, 22, 0.36)),
      radial-gradient(circle at 58% 38%, rgba(254, 218, 106, 0.1), transparent 23rem);
  }

  .hero::after,
  .site-hero::after {
    background:
      linear-gradient(180deg, rgba(18, 19, 22, 0.02) 0%, rgba(18, 19, 22, 0.26) 78%, var(--page-bg) 100%),
      linear-gradient(90deg, rgba(18, 19, 22, 0.08), transparent 38%, rgba(18, 19, 22, 0.08));
  }

  .has-video.video-is-playing .hero-video {
    opacity: 0.96;
    filter: saturate(0.94) contrast(1.04) brightness(1.02);
    transform: scale(1.01);
  }

  .hero-sound-toggle.needs-gesture {
    right: 0;
    bottom: 58px;
    max-width: min(240px, 74vw);
    line-height: 1.25;
    text-align: left;
  }

  .page-sound-toggle.needs-gesture {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .site-header {
    gap: 8px;
    padding: 10px 12px 8px;
  }

  .site-nav {
    display: flex;
    width: calc(100% + 24px);
    margin-inline: -12px;
    padding: 0 12px 3px;
    gap: 4px;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 8px 11px;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .hero-content,
  .site-hero-inner {
    min-height: 100svh;
    padding: clamp(122px, 16vh, 142px) 0 clamp(62px, 8vh, 78px);
  }

  .hero-actions {
    margin-top: clamp(28px, 5vh, 38px);
  }

  .hero-socials {
    margin-top: clamp(20px, 3.5vh, 28px);
  }

  .work-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-filters .filter-button,
  .work-filters .filter-link {
    min-height: 62px;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 560px) {
  .vertical-project {
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 12px;
    padding-inline: 12px;
  }

  .vertical-project > div,
  .visual-flow-grid .media-card-content {
    min-width: 0;
  }

  .vertical-project h4 {
    max-width: 100%;
    font-size: clamp(1.2rem, 6.15vw, 1.8rem);
    letter-spacing: -0.02em;
  }

  .visual-flow-grid .media-card h3 {
    max-width: 100%;
    font-size: clamp(1.85rem, 9.7vw, 2.6rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
  }

  .about-page .studio-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .about-page .studio-snapshot article {
    min-height: 0;
    padding: 18px 16px 20px;
  }

  .about-page .studio-snapshot strong {
    font-size: clamp(1.15rem, 5.2vw, 1.35rem);
    line-height: 1.15;
  }

  .about-page .studio-snapshot p {
    margin-top: 8px;
    font-size: clamp(0.88rem, 3.8vw, 1rem);
    line-height: 1.4;
  }

  .work-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-filters .filter-button,
  .work-filters .filter-link {
    min-height: 58px;
    padding-inline: 9px;
    font-size: clamp(0.66rem, 3vw, 0.78rem);
    letter-spacing: 0.1em;
  }
}

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

  .motion-char {
    opacity: 1;
    transform: none;
  }

  .media-card img,
  .project-card img,
  .about-frame img,
  .blog-card-image,
  .page-hero-image {
    clip-path: inset(0 0 0 0) !important;
    transform: none !important;
  }

  .motion-cursor {
    display: none;
  }
}
