:root {
  color-scheme: light;
  --bg: #f4f3ef;
  --paper: #fffefb;
  --ink: #171717;
  --ink-soft: #34312d;
  --muted: #68645d;
  --soft: #8a857d;
  --line: #d9d3c8;
  --accent: #7c3328;
  --accent-soft: #e5d8d1;
  --dark: #111111;
  --max: 1200px;
  --pad: clamp(18px, 4vw, 56px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Roboto, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

body.sparse-home {
  background: var(--paper);
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.skip-link {
  left: 12px;
  position: fixed;
  top: -120px;
  z-index: 30;
  background: var(--paper);
  padding: 10px 12px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  color: var(--paper);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-solid {
  background: rgba(247, 245, 241, 0.94);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand-logo {
  width: clamp(118px, 12vw, 168px);
  height: auto;
  display: block;
}

.site-header.is-solid .brand-logo {
  filter: invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.88rem;
}

.main-nav a {
  text-decoration: none;
  opacity: 0.88;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid currentColor;
  padding: 3px;
}

.language-switch button {
  min-width: 34px;
  height: 28px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
}

.language-switch button.is-active {
  background: currentColor;
  color: var(--bg);
}

.site-header:not(.is-solid) .language-switch button.is-active {
  color: var(--dark);
}

body.sparse-home .site-header:not(.is-solid) .language-switch button.is-active {
  color: var(--bg);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  min-height: 94svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--dark);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.62));
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - var(--pad) * 2));
  margin: 0 auto;
  padding: 120px 0 72px;
  color: var(--paper);
}

.kicker,
.section-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker {
  color: #f2ddd3;
}

body.sparse-home .site-header {
  color: var(--ink);
}

body.sparse-home .site-header.is-solid .brand-logo {
  filter: none;
}

body.sparse-home .hero {
  min-height: clamp(390px, 61svh, 620px);
  display: grid;
  place-items: end center;
  background: var(--paper);
  padding: clamp(8px, 2svh, 26px) 0 0;
}

body.sparse-home .hero::after {
  display: none;
}

body.sparse-home .hero-image {
  position: relative;
  inset: auto;
  width: min(112vw, 1904px);
  max-width: none;
  height: min(57svh, 560px);
  max-height: none;
  place-self: end center;
  object-fit: cover;
  object-position: center 60%;
  opacity: 1;
  transform: none;
}

body.sparse-home .hero-copy {
  display: grid;
  gap: 12px;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 32px 0 0;
  color: var(--ink);
}

body.sparse-home .hero .kicker {
  max-width: 520px;
  margin: 0;
  color: var(--accent);
}

body.sparse-home .hero h1 {
  margin: 0;
  font-size: 6.4rem;
  line-height: 0.94;
}

body.sparse-home .hero p,
body.sparse-home .hero-copy p {
  color: var(--muted);
}

body.sparse-home .hero .text-link {
  justify-self: start;
}

body.sparse-home .sparse-panel {
  position: relative;
  z-index: 2;
  max-width: none;
  margin-top: -1px;
  background: var(--paper);
  padding-top: clamp(2px, 0.8vw, 8px);
  padding-bottom: clamp(46px, 6vw, 72px);
}

body.sparse-home .sparse-panel > * {
  max-width: min(1360px, calc(100vw - (var(--pad) * 2)));
  margin-left: auto;
  margin-right: auto;
}

body.sparse-home .sparse-panel .section-head {
  align-items: center;
  margin-bottom: 22px;
}

body.sparse-home .sparse-panel .section-label {
  margin-bottom: 8px;
}

body.sparse-home .sparse-panel h2 {
  max-width: 620px;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  line-height: 1.06;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.6rem, 7vw, 6.8rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0;
}

h2 {
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: 0;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.hero p,
.hero-copy p,
.light {
  color: var(--paper);
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 96px) var(--pad);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 8vw, 120px);
  align-items: start;
}

.intro-grid p,
.wide-statement p,
.split-copy p,
.company-copy p,
.contact-section p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.section-head {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.8vw, 34px);
}

.film-card {
  border-top: 1px solid var(--ink);
  padding-top: 16px;
  text-decoration: none;
}

.film-poster {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: transparent;
}

.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.film-card:hover img,
.film-card:focus-visible img {
  transform: scale(1.025);
}

.film-card h3 {
  margin: 16px 0 4px;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  font-weight: 500;
}

.film-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.muted-band {
  max-width: none;
  background: #e9e4db;
}

.muted-band > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.project-list {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
}

.archive-index-section--cards .project-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  min-height: 282px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}

.archive-index-section--cards .project-card {
  display: block;
  min-height: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.project-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  align-self: center;
  overflow: hidden;
}

.archive-index-section--cards .project-media {
  border-top: 1px solid var(--ink);
  padding-top: 16px;
}

.project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.project-media.is-fill img {
  object-fit: cover;
}

.project-card.is-wide-image {
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
}

.project-copy {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 4vw, 42px);
  align-self: center;
  overflow: hidden;
}

.archive-index-section--cards .project-copy {
  padding: 16px 0 0;
}

.project-meta {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 12px 0;
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.archive-index-section--cards .project-copy h3 {
  margin: 9px 0 8px;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1.05;
}

.project-copy p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.archive-index-section--cards .project-copy p {
  margin-bottom: 10px;
  font-size: 0.96rem;
  line-height: 1.45;
  -webkit-line-clamp: 3;
}

.directory-section {
  border-top: 1px solid var(--line);
}

.directory-intro {
  max-width: 820px;
  margin-bottom: 54px;
}

.directory-intro h2 {
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1.04;
}

.directory-intro p {
  max-width: 680px;
  font-size: 1.08rem;
}

.directory-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
}

.directory-column {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}

.directory-column h3 {
  margin: 0 0 12px;
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1;
}

.directory-column > p {
  max-width: 520px;
  min-height: 3em;
  margin-bottom: 24px;
}

.directory-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.directory-link {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.directory-link span {
  font-weight: 700;
}

.directory-link small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.directory-link:hover span,
.directory-link:focus-visible span {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.directory-link.is-static {
  color: var(--muted);
  cursor: default;
}

.directory-link.is-static:hover span {
  text-decoration: none;
}

.press-home {
  border-top: 1px solid var(--line);
}

body.sparse-home .press-home {
  border-top: 0;
}

.home-panel-box {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(18px, 3vw, 36px);
  border: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(24px, 4.5vw, 48px);
}

body.sparse-home .home-panel-box {
  --home-row-height: clamp(136px, 8vw, 154px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 68px);
  align-items: start;
  border: 0;
  background: transparent;
  padding: 0;
}

.home-panel-column {
  display: grid;
  align-content: start;
  gap: 18px;
}

body.sparse-home .home-panel-column {
  grid-template-rows: auto 1fr;
  min-width: 0;
  gap: 0;
  justify-items: stretch;
}

body.sparse-home .watch-online-column > div:first-child {
  display: grid;
  justify-items: center;
}

.home-panel-column > h3,
.home-panel-column > div > h3 {
  margin: 0;
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  font-weight: 400;
  line-height: 1;
}

body.sparse-home .home-panel-column > h3,
body.sparse-home .home-panel-column > div > h3 {
  justify-self: center;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.home-panel-column > div > p {
  margin-top: 8px;
  color: var(--muted);
}

body.sparse-home .home-panel-column > div > p {
  display: none;
}

.home-news-list,
.home-focus-list,
.watch-online-list {
  display: grid;
  gap: 0;
}

body.sparse-home .home-news-list,
body.sparse-home .home-focus-list,
body.sparse-home .watch-online-list {
  grid-auto-rows: minmax(var(--home-row-height), auto);
  justify-items: stretch;
}

.home-news-item,
.watch-online-item {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.home-news-item {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

body.sparse-home .home-news-item,
body.sparse-home .home-focus-item,
body.sparse-home .watch-online-item {
  min-height: var(--home-row-height);
  height: auto;
  padding: 15px 0;
  overflow: hidden;
}

body.sparse-home .home-news-item:first-child,
body.sparse-home .home-focus-item:first-child,
body.sparse-home .watch-online-item:first-child {
  border-top: 0;
}

body.sparse-home .home-news-item {
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

body.sparse-home .home-focus-item {
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.home-news-item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--bg);
}

.home-focus-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: var(--ink);
}

.home-focus-thumb--text {
  display: grid;
  align-content: space-between;
  padding: 10px;
  color: var(--paper);
  text-transform: uppercase;
}

.home-focus-thumb--text span {
  color: color-mix(in srgb, var(--paper), transparent 28%);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
}

.home-focus-thumb--text strong {
  display: grid;
  gap: 1px;
  font-size: clamp(0.92rem, 1.25vw, 1.12rem);
  font-weight: 700;
  line-height: 0.9;
}

.home-focus-thumb--text em {
  font-style: normal;
}

body.sparse-home .home-focus-item img.home-focus-image--contain {
  object-fit: contain;
  padding: 3px;
  background: color-mix(in srgb, var(--paper), var(--line) 28%);
}

body.sparse-home .home-news-item img {
  width: 74px;
  height: 74px;
  aspect-ratio: 1;
}

body.sparse-home .home-focus-item img,
body.sparse-home .home-focus-thumb {
  width: 74px;
  height: 74px;
  aspect-ratio: 1;
}

.home-news-item:last-child,
.watch-online-item:last-child {
  padding-bottom: 0;
}

.home-news-item h3,
.watch-online-item h3 {
  margin: 0 0 8px;
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.12;
}

body.sparse-home .home-news-item h3,
body.sparse-home .home-focus-item h3,
body.sparse-home .watch-online-item h3 {
  display: -webkit-box;
  margin-bottom: 5px;
  overflow: hidden;
  font-size: clamp(1rem, 1.05vw, 1.16rem);
  font-weight: 500;
  line-height: 1.15;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-news-item p:not(.press-meta) {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.98rem;
}

.home-item-credit {
  margin: -2px 0 9px;
  color: var(--accent);
  font-size: 0.84rem;
  line-height: 1.22;
}

body.sparse-home .home-item-credit {
  display: block;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.18;
}

body.sparse-home .home-news-item p:not(.press-meta):not(.home-item-credit) {
  display: none;
}

body.sparse-home .home-focus-item p:not(.press-meta):not(.home-item-credit) {
  display: none;
}

.watch-online-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

body.sparse-home .watch-online-item {
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.watch-online-poster {
  display: block;
  width: 72px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--bg);
}

.watch-online-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.sparse-home .watch-online-poster {
  width: 74px;
}

.watch-online-content {
  min-width: 0;
}

body.sparse-home .watch-online-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  align-content: center;
  align-items: center;
}

.watch-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 8px 0 12px;
}

body.sparse-home .watch-platforms {
  gap: 6px;
  margin: 6px 0 0;
}

.watch-platforms a {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

body.sparse-home .watch-platforms a {
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  padding: 4px 7px;
  font-size: 0.68rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

body.sparse-home .watch-platforms a:hover,
body.sparse-home .watch-platforms a:focus-visible {
  background: var(--accent);
  color: var(--paper);
}

body.sparse-home .watch-film-link {
  align-self: center;
  justify-self: start;
  font-size: 0.78rem;
  text-align: left;
  white-space: nowrap;
}

body.sparse-home .home-news-item .text-link {
  align-self: start;
  font-size: 0.78rem;
  line-height: 1.1;
}

body.sparse-home .home-news-item .press-meta,
body.sparse-home .home-focus-item .press-meta,
body.sparse-home .watch-online-item .press-meta {
  display: -webkit-box;
  margin-bottom: 4px;
  overflow: hidden;
  font-size: 0.68rem;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.press-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.press-card,
.press-row {
  border: 1px solid var(--line);
  background: var(--paper);
}

.press-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  min-height: 240px;
}

.press-card.is-text-only {
  grid-template-columns: 1fr;
}

.press-card img,
.press-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-card > div {
  align-self: center;
  padding: clamp(22px, 4vw, 36px);
}

.press-meta {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.press-card h3,
.press-row h3 {
  margin-bottom: 12px;
}

.press-claim {
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 2px solid color-mix(in srgb, var(--accent) 55%, var(--line));
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.45;
}

.press-card p:not(.press-meta),
.press-row p:not(.press-meta) {
  font-size: 0.98rem;
}

.press-page {
  background: var(--paper);
}

.press-hero {
  padding-top: 92px;
  padding-bottom: 28px;
}

.press-hero h1 {
  margin-bottom: 18px;
}

.press-hero > p:last-child {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.press-archive {
  padding-top: 16px;
}

.press-archive .section-head {
  margin-bottom: 22px;
}

.archive-index-page .press-hero {
  padding-bottom: 28px;
}

.archive-index-section {
  max-width: 960px;
  padding-top: 10px;
}

.archive-index-section--cards {
  max-width: var(--max);
}

.press-archive-list,
.film-press-list {
  display: grid;
  gap: 14px;
}

.press-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px;
}

.press-row-large {
  grid-template-columns: 132px minmax(0, 1fr) auto;
  min-height: 132px;
  padding: 0 22px 0 0;
}

.press-row-large.is-text-only {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 22px;
}

.press-row-large img {
  aspect-ratio: 1 / 1;
}

.news-detail-hero {
  padding-top: 124px;
  padding-bottom: 34px;
}

.news-detail-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  padding-top: 18px;
}

.news-detail-main,
.news-detail-source {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.news-detail-image {
  margin: 0 0 28px;
}

.news-detail-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.news-detail-excerpt {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.58;
}

.news-detail-source {
  display: grid;
  gap: 14px;
}

.news-detail-source h2 {
  margin: 0;
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 400;
}

.news-detail-source p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.news-related-link,
.news-source-link {
  justify-self: start;
}

.about-page {
  --about-max: 1240px;
  --about-warm: #e8dfd4;
  --about-shadow: rgba(23, 23, 23, 0.12);
}

.about-page main {
  overflow: hidden;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.56fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  max-width: var(--about-max);
  padding-top: clamp(96px, 10vw, 132px);
  padding-bottom: clamp(22px, 4vw, 54px);
}

.about-hero h1 {
  max-width: 780px;
  margin-bottom: clamp(18px, 2.4vw, 28px);
  font-size: clamp(3.1rem, 5.8vw, 6.1rem);
  line-height: 0.94;
}

.about-hero-copy > p:last-child {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.58;
}

.about-hero-image {
  justify-self: end;
  width: min(100%, 520px);
  margin: 0;
}

.about-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 58%;
  filter: grayscale(1) contrast(1.08);
  box-shadow: 0 18px 52px var(--about-shadow);
}

.about-editorial,
.about-method,
.about-markets,
.about-thread,
.about-company {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 90px);
  max-width: var(--about-max);
  border-top: 0;
}

.about-services {
  max-width: var(--about-max);
  padding-top: clamp(30px, 3.8vw, 46px);
  padding-bottom: clamp(32px, 4vw, 50px);
  background: transparent;
  color: var(--ink);
  border-top: 0;
}

.about-services .section-head {
  margin-bottom: clamp(20px, 3vw, 34px);
}

.about-services-intro {
  margin-bottom: clamp(24px, 3.2vw, 38px);
}

.about-services h2 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
  font-weight: 400;
  line-height: 1.02;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
  background: transparent;
}

.about-services-grid article {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.about-services-grid h3 {
  max-width: none;
  margin: 0 0 16px;
  color: var(--ink);
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 2.3rem);
  font-weight: 400;
  line-height: 1.08;
}

.about-services-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.about-editorial--story {
  display: block;
  padding-top: clamp(26px, 3.2vw, 40px);
  padding-bottom: clamp(14px, 2vw, 26px);
}

.about-editorial {
  align-items: start;
}

.about-editorial article,
.about-thread article,
.about-team-list article {
  padding-top: 0;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 68px);
}

.about-story-copy {
  display: grid;
  gap: 18px;
}

.about-story-copy p {
  margin: 0;
}

.about-signature {
  max-width: var(--about-max);
  padding-top: clamp(12px, 2vw, 24px);
  padding-bottom: clamp(30px, 3.6vw, 46px);
}

.about-signature-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.3fr) minmax(0, 1fr);
  gap: clamp(24px, 3.6vw, 52px);
  min-height: 0;
  padding: clamp(28px, 4vw, 54px);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  align-items: stretch;
}

.about-signature-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 340px;
}

.about-signature-copy .section-label {
  color: color-mix(in srgb, var(--paper), transparent 28%);
}

.about-signature-copy p:last-child {
  margin: 0;
  color: color-mix(in srgb, var(--paper), transparent 13%);
  font-size: clamp(1.12rem, 1.8vw, 1.5rem);
  line-height: 1.42;
}

.about-signature-frames {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.42fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  height: clamp(280px, 29vw, 390px);
  min-width: 0;
  min-height: 0;
}

.about-signature-frame {
  margin: 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #1f1f1f;
}

.about-signature-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06);
  opacity: 1;
  transform: scale(1);
  transition: opacity 720ms ease, transform 1400ms ease;
}

.about-signature-frame img.is-changing {
  opacity: 0;
  transform: scale(1.025);
}

.about-signature-frame--one {
  grid-column: 1;
  grid-row: 1 / 3;
}

.about-signature-frame--two {
  grid-column: 2;
  grid-row: 1;
}

.about-signature-frame--three {
  grid-column: 2;
  grid-row: 2;
}

.about-editorial h2,
.about-method h2,
.about-markets h2,
.about-thread h2,
.about-company h2 {
  margin: 0;
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.85rem, 3.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.04;
}

.about-editorial p:not(.section-label),
.about-markets > p,
.about-thread p,
.about-company p,
.about-team-list p:not(.press-meta) {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.62;
}

.about-markets {
  align-items: end;
}

.about-markets > p,
.about-company > div:last-child {
  align-self: end;
}

.about-thread {
  align-items: start;
  padding-top: clamp(30px, 3.8vw, 48px);
  padding-bottom: clamp(30px, 3.8vw, 48px);
}

.about-thread article {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.about-thread p {
  margin: 0;
}

.about-thread .text-link {
  display: inline-block;
  margin-top: 18px;
}

.about-cultural-minis {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.about-cultural-mini {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.about-cultural-mini img {
  display: block;
  width: 92px;
  aspect-ratio: 16 / 10;
}

.about-cultural-mini img {
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.03);
}

.about-cultural-mini img.about-cultural-mini-artwork {
  object-fit: contain;
  padding: 3px;
  background: color-mix(in srgb, var(--paper), var(--line) 28%);
}

.about-cultural-mini small,
.about-cultural-mini strong {
  display: block;
}

.about-cultural-mini small {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 0.74rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.about-cultural-mini strong {
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 400;
  line-height: 1.12;
}

.about-cultural-mini:hover strong,
.about-cultural-mini:focus-visible strong {
  color: var(--accent);
}

.about-team {
  max-width: var(--about-max);
  padding-top: clamp(30px, 3.8vw, 48px);
  padding-bottom: clamp(28px, 3.5vw, 44px);
  border-top: 0;
}

.about-team-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
}

.about-team-list article:first-child,
.about-team-list article:nth-child(2) {
  display: grid;
  grid-template-columns: minmax(124px, 0.28fr) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: end;
  min-height: 0;
  padding: 0 0 clamp(18px, 2vw, 24px);
  border-bottom: 1px solid var(--line);
}

.about-team-list article:nth-child(n + 3) {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.team-portrait {
  grid-row: 1 / span 5;
  width: 100%;
  margin: 0;
}

.team-portrait img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
}

.about-team-list h3 {
  margin: 0 0 8px;
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  font-weight: 400;
  line-height: 1.08;
}

.about-team-list p:last-child {
  margin-bottom: 0;
}

.about-company {
  align-items: end;
  max-width: var(--about-max);
  padding-top: clamp(28px, 3.4vw, 42px);
  padding-bottom: clamp(40px, 4.8vw, 60px);
  background: transparent;
}

.about-company .text-link {
  display: inline-block;
  margin-top: 10px;
}

.person-profile-link {
  display: inline-block;
  margin-top: 18px;
}

.person-hero,
.person-bio,
.person-credits,
.person-sources {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.58fr);
  gap: clamp(30px, 7vw, 90px);
  max-width: var(--about-max);
}

.person-hero {
  align-items: end;
  padding-top: 126px;
  padding-bottom: 62px;
}

.person-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(3.8rem, 8.5vw, 8.8rem);
  line-height: 0.88;
}

.person-hero-copy > p:last-of-type {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  line-height: 1.58;
}

.person-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 28px;
}

.person-portrait-large {
  margin: 0;
}

.person-portrait-large img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
}

.person-bio,
.person-podcast,
.person-credits,
.person-sources {
  border-top: 1px solid var(--line);
}

.person-bio h2,
.person-podcast h2,
.person-credits h2 {
  margin: 0;
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  font-weight: 400;
  line-height: 1.02;
}

.person-body {
  align-self: end;
  display: grid;
  gap: 16px;
}

.person-body p,
.person-sources p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.66;
}

.person-highlights {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  max-width: var(--about-max);
  padding-top: 0;
  padding-bottom: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.person-highlights p {
  display: flex;
  align-items: center;
  min-height: 118px;
  margin: 0;
  padding: 18px 18px 18px 0;
  color: var(--accent);
  font-size: 0.9rem;
  line-height: 1.3;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
}

.person-highlights p:last-child {
  border-right: 0;
}

.person-podcast {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  max-width: var(--about-max);
}

.person-podcast-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.person-podcast-image {
  display: block;
  align-self: start;
  width: min(100%, 220px);
  overflow: hidden;
  background: transparent;
  text-decoration: none;
}

.person-podcast-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.person-podcast-card h3 {
  margin: 8px 0 14px;
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 2.1rem);
  font-weight: 400;
  line-height: 1.12;
}

.person-podcast-card p:not(.press-meta) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.person-credits {
  display: block;
}

.person-credit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 52px);
}

.person-credit-grid article {
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}

.person-credit-grid--expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.person-credit-grid--expanded .is-wide {
  grid-column: span 2;
}

.person-credit-grid h3 {
  margin: 0 0 18px;
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
}

.person-credit-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.person-credit-grid li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.42;
}

.person-credit-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(22px, 3vw, 42px);
}

.person-credit-grid a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent), transparent 58%);
}

.person-credit-grid a:hover,
.person-credit-grid a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.person-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: var(--about-max);
  padding-top: 118px;
  padding-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.person-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.person-breadcrumb a:hover,
.person-breadcrumb a:focus-visible {
  color: var(--accent);
}

.artist-hero,
.artist-bio,
.artist-roles,
.artist-editorial,
.artist-presskit {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(360px, 0.82fr);
  gap: clamp(30px, 7vw, 90px);
  max-width: var(--about-max);
}

.artist-hero {
  align-items: end;
  padding-top: 50px;
  padding-bottom: 72px;
}

.artist-page .artist-hero {
  padding-bottom: 56px;
}

.artist-hero h1 {
  max-width: 760px;
  margin: 0 0 20px;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 400;
  line-height: 0.86;
}

.artist-hero-copy > p:last-of-type {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.45vw, 1.26rem);
  line-height: 1.58;
}

.artist-hero-media {
  margin: 0;
  justify-self: end;
  width: min(100%, 760px);
}

.artist-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: none;
}

.artist-hero-image img {
  max-height: min(58vh, 520px);
}

.artist-hero-sequence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.75fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  aspect-ratio: 16 / 9;
}

.artist-hero-sequence-grid img {
  height: 100%;
  aspect-ratio: auto;
}

.artist-hero-sequence-grid img:first-child {
  grid-row: 1 / span 2;
}

.artist-hero-media figcaption {
  margin-top: 10px;
  color: var(--soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

.artist-bio,
.artist-works,
.artist-roles,
.artist-editorial,
.artist-presskit {
  max-width: var(--about-max);
  border-top: 1px solid var(--line);
}

.artist-page .artist-bio,
.artist-page .artist-works,
.artist-page .artist-roles,
.artist-page .artist-editorial,
.artist-page .artist-presskit {
  padding-top: clamp(56px, 5.2vw, 72px);
  padding-bottom: clamp(56px, 5.2vw, 72px);
}

.artist-bio h2,
.artist-works h2,
.artist-roles h2,
.artist-editorial h2,
.artist-presskit h2 {
  margin: 0;
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4.1vw, 4.2rem);
  font-weight: 400;
  line-height: 1.02;
}

.artist-bio-copy {
  display: grid;
  gap: 24px;
}

.artist-bio-copy article,
.artist-editorial-list article,
.artist-role-grid article {
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}

.artist-bio-copy h3,
.artist-work-card h3,
.artist-role-grid h3,
.artist-editorial-list h3 {
  margin: 0 0 14px;
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.12;
}

.artist-bio-copy p,
.artist-work-card p,
.artist-editorial-list p,
.artist-footnote {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.66;
}

.artist-section-head {
  margin-bottom: 24px;
}

.artist-work-list {
  display: grid;
  gap: 0;
}

.artist-work-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(24px, 3.4vw, 44px);
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.artist-work-card:first-child {
  border-top-color: var(--ink);
}

.artist-work-card.is-text-only {
  grid-template-columns: minmax(0, 1fr);
  margin-left: min(280px, 28vw);
}

.artist-work-card.is-text-only.is-major {
  margin-left: 0;
  max-width: 960px;
}

.artist-work-media {
  display: block;
  align-self: start;
  width: 240px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: transparent;
}

.artist-work-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  filter: none;
  transition: transform 360ms ease, filter 360ms ease;
}

.artist-work-media--poster {
  justify-self: start;
}

.artist-work-media--poster img {
  aspect-ratio: auto;
  max-height: none;
  object-fit: contain;
}

.artist-work-media:hover img,
.artist-work-media:focus-visible img {
  transform: scale(1.025);
  filter: grayscale(0);
}

.artist-work-card h3 a,
.artist-role-grid a,
.artist-editorial-list a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent), transparent 58%);
}

.artist-work-card h3 a:hover,
.artist-work-card h3 a:focus-visible,
.artist-role-grid a:hover,
.artist-role-grid a:focus-visible,
.artist-editorial-list a:hover,
.artist-editorial-list a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.artist-work-card h3 span {
  color: var(--muted);
}

.artist-meta-list,
.artist-role-grid ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.artist-meta-list li,
.artist-role-grid li {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.42;
}

.artist-meta-list li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--accent);
}

.artist-role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3.2vw, 40px);
}

.artist-editorial-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 38px) clamp(28px, 4vw, 56px);
}

.artist-editorial-list article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.artist-editorial-media {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

.artist-editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.04);
  transition: transform 360ms ease, filter 360ms ease;
}

.artist-editorial-media--podcast {
  background: transparent;
}

.artist-editorial-media--podcast img {
  object-fit: cover;
  filter: none;
}

.artist-editorial-media:hover img,
.artist-editorial-media:focus-visible img {
  transform: scale(1.04);
  filter: grayscale(0);
}

.artist-presskit-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  align-self: start;
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}

.artist-footnote {
  grid-column: 2;
  max-width: 680px;
  margin-top: -54px;
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  .artist-work-media img {
    transition: none;
  }
}

.collaboration-intro-grid,
.collaboration-method,
.cultural-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: start;
}

.collaboration-intro-grid {
  border-top: 1px solid var(--line);
}

.collaboration-intro-grid h2,
.collaboration-method h2,
.cultural-contact h2 {
  margin: 0;
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.02;
}

.collaboration-intro-grid p,
.collaboration-method p,
.cultural-contact p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.collaboration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

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

.collaboration-card {
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}

.collaboration-card img,
.collaboration-thumbnail {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  background: var(--bg);
}

.collaboration-card img {
  object-fit: cover;
}

.collaboration-card img.collaboration-card-artwork {
  object-fit: contain;
  padding: clamp(8px, 1.6vw, 18px);
  background: color-mix(in srgb, var(--paper), var(--line) 28%);
}

.collaboration-card h3 {
  margin: 0 0 12px;
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 400;
  line-height: 1.08;
}

.collaboration-card p:not(.press-meta) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.collaboration-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
}

.collaboration-method {
  border-top: 1px solid var(--line);
}

.collaboration-method h3 {
  margin: 0 0 18px;
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.collaboration-areas,
.partner-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.collaboration-areas span,
.partner-cloud a,
.partner-cloud span {
  border: 1px solid var(--line);
  padding: 9px 12px;
  color: var(--muted);
  text-decoration: none;
}

.partner-cloud a:hover,
.partner-cloud a:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
}

.cultural-contact {
  border-top: 1px solid var(--ink);
  align-items: end;
}

.cultural-contact .text-link {
  justify-self: end;
  font-size: 1rem;
}

.split-section,
.company-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 720px;
}

.split-image,
.company-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy,
.company-copy {
  align-self: center;
  padding: clamp(42px, 8vw, 110px);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.service-list span {
  border: 1px solid var(--line);
  padding: 9px 12px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.88rem;
}

.wide-statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: end;
}

.company-section {
  background: var(--dark);
  color: var(--paper);
}

.company-section p {
  color: #c9c1b8;
}

.contact-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 108px var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(30px, 8vw, 100px);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-cards article {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 26px;
}

.contact-section--forms {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(56px, 7vw, 92px);
  border-top: 1px solid var(--line);
  align-items: start;
}

.contact-page .contact-section--forms {
  padding-top: 132px;
  border-top: 0;
}

.home-contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 6vw, 80px);
  max-width: min(1120px, calc(100vw - var(--pad) * 2));
  margin: 0 auto;
  padding: clamp(8px, 1vw, 16px) 0 clamp(56px, 7vw, 84px);
  background: var(--paper);
  text-align: center;
}

.home-contact-cta .section-label {
  margin-bottom: 8px;
}

.home-contact-cta h2 {
  max-width: 17em;
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.12;
}

.home-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
}

.contact-intro {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-intro h1,
.contact-intro h2 {
  margin: 0;
  max-width: 9em;
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0;
}

.contact-intro p:not(.section-label) {
  max-width: 32rem;
  margin: 0;
  color: var(--muted);
}

.contact-mail {
  width: max-content;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 16px;
  align-content: start;
  padding-top: 20px;
  border-top: 2px solid var(--ink);
}

.contact-form-head {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  min-height: 118px;
}

.contact-form h2,
.contact-form h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
  font-weight: 400;
}

.contact-form-head p {
  margin: 0;
  color: var(--muted);
}

.contact-form label {
  display: grid;
  gap: 7px;
  align-content: start;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form .is-wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.96rem;
  letter-spacing: 0;
  padding: 10px 12px;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(124, 51, 40, 0.18);
  outline-offset: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--soft);
}

.form-consent {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.form-consent input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-submit {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 4px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 11px 16px;
  text-transform: uppercase;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px var(--pad);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer > div {
  display: grid;
  gap: 6px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: start;
}

.footer-link-groups {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.social-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.social-nav::before {
  content: "Social";
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-right: 2px;
  text-transform: uppercase;
}

.legal-nav a,
.social-nav a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.social-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid rgba(124, 51, 40, 0.42);
}

.legal-nav a:hover,
.legal-nav a:focus-visible,
.social-nav a:hover,
.social-nav a:focus-visible {
  border-color: var(--accent);
  text-decoration: none;
}

.legal-page {
  background: var(--paper);
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 124px var(--pad) 90px;
}

.legal-content h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.legal-content section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-content p {
  max-width: 760px;
}

.legal-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.film-page {
  background: var(--paper);
}

.film-header {
  position: sticky;
}

.film-detail-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 104px var(--pad) 64px;
}

.film-detail-poster {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--accent-soft);
  max-width: 280px;
}

.film-detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-detail-copy h1 {
  margin-bottom: 16px;
}

.film-detail-copy {
  max-width: 920px;
  padding-top: clamp(28px, 5vw, 56px);
}

.eyebrow-link {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.eyebrow-link:hover,
.eyebrow-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.film-detail-meta,
.film-detail-director {
  max-width: 680px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.film-detail-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 96px;
}

.film-detail-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.film-detail-section > p {
  max-width: 820px;
  color: var(--muted);
  font-family: Roboto, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.55;
  text-align: justify;
  text-wrap: pretty;
}

.project-intentions {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.project-intentions p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.58;
  text-align: justify;
  text-wrap: pretty;
}

body.film-page {
  --page-bg: var(--bg);
  --page-ink: var(--ink);
  --page-muted: var(--muted);
  --page-accent: var(--accent);
  --page-accent-soft: var(--accent-soft);
  --page-line: var(--line);
  --page-header-bg: rgba(247, 245, 241, 0.92);
  background: var(--page-bg);
  color: var(--page-ink);
}

body.film-page .site-header,
body.film-page .site-footer {
  background: var(--page-header-bg);
}

body.film-page .section-label,
body.film-page .project-status {
  color: var(--page-accent);
}

body.film-page .film-detail-section {
  border-top-color: var(--page-line);
}

body.film-page .film-detail-section > p,
body.film-page .project-intentions p {
  color: var(--page-muted);
}

body.film-page .gallery-controls button,
body.film-page .project-back {
  border-color: var(--page-accent-soft);
}

body.film-page .gallery-controls button:hover,
body.film-page .gallery-controls button:focus-visible,
body.film-page .project-back:hover,
body.film-page .project-back:focus-visible {
  background: var(--page-accent);
  border-color: var(--page-accent);
  color: #ffffff;
}

body.film-page--restare {
  --page-bg: #eef2ef;
  --page-ink: #121716;
  --page-muted: #5f6864;
  --page-accent: #3f6f78;
  --page-accent-soft: rgba(63, 111, 120, 0.32);
  --page-line: rgba(63, 111, 120, 0.24);
  --page-header-bg: rgba(238, 242, 239, 0.92);
}

body.film-page--dove-non-fa-buio {
  --page-bg: #eef0f3;
  --page-ink: #14151c;
  --page-muted: #626574;
  --page-accent: #5e6078;
  --page-accent-soft: rgba(94, 96, 120, 0.3);
  --page-line: rgba(94, 96, 120, 0.24);
  --page-header-bg: rgba(238, 240, 243, 0.92);
}

body.film-page--le-prime-volte {
  --page-bg: #f7eee9;
  --page-ink: #201615;
  --page-muted: #725f59;
  --page-accent: #b75543;
  --page-accent-soft: rgba(183, 85, 67, 0.28);
  --page-line: rgba(183, 85, 67, 0.22);
  --page-header-bg: rgba(247, 238, 233, 0.92);
}

body.film-page--domenica-sera {
  --page-bg: #f2ece8;
  --page-ink: #1c1414;
  --page-muted: #6a5d5a;
  --page-accent: #7b3f45;
  --page-accent-soft: rgba(123, 63, 69, 0.3);
  --page-line: rgba(123, 63, 69, 0.24);
  --page-header-bg: rgba(242, 236, 232, 0.92);
}

body.film-page--bosco-grande {
  --page-bg: #edf1e8;
  --page-ink: #11180f;
  --page-muted: #5d6658;
  --page-accent: #48633c;
  --page-accent-soft: rgba(72, 99, 60, 0.3);
  --page-line: rgba(72, 99, 60, 0.24);
  --page-header-bg: rgba(237, 241, 232, 0.92);
}

body.film-page--a-million-grains-of-sand {
  --page-bg: #f1eadc;
  --page-ink: #1f1912;
  --page-muted: #706454;
  --page-accent: #a76f39;
  --page-accent-soft: rgba(167, 111, 57, 0.3);
  --page-line: rgba(167, 111, 57, 0.22);
  --page-header-bg: rgba(241, 234, 220, 0.92);
}

body.film-page--mother-lode {
  --page-bg: #ede7dc;
  --page-ink: #14110e;
  --page-muted: #665f56;
  --page-accent: #7f5a33;
  --page-accent-soft: rgba(127, 90, 51, 0.32);
  --page-line: rgba(83, 63, 43, 0.3);
  --page-header-bg: rgba(237, 231, 220, 0.92);
}

body.film-page--zheng {
  --page-bg: #f2eee9;
  --page-ink: #171210;
  --page-muted: #675c56;
  --page-accent: #8f372e;
  --page-accent-soft: rgba(143, 55, 46, 0.3);
  --page-line: rgba(143, 55, 46, 0.22);
  --page-header-bg: rgba(242, 238, 233, 0.92);
}

body.film-page--a-man-must-be-strong {
  --page-bg: #eef1f4;
  --page-ink: #12161a;
  --page-muted: #5e6871;
  --page-accent: #435a70;
  --page-accent-soft: rgba(67, 90, 112, 0.3);
  --page-line: rgba(67, 90, 112, 0.24);
  --page-header-bg: rgba(238, 241, 244, 0.92);
}

body.film-page--swahili-tales {
  --page-bg: #f3f1ec;
  --page-ink: #151514;
  --page-muted: #67635c;
  --page-accent: #625d52;
  --page-accent-soft: rgba(98, 93, 82, 0.28);
  --page-line: rgba(98, 93, 82, 0.22);
  --page-header-bg: rgba(243, 241, 236, 0.92);
}

body.film-page--white-men {
  --page-bg: #eeeeea;
  --page-ink: #111111;
  --page-muted: #5f5f5a;
  --page-accent: #333333;
  --page-accent-soft: rgba(51, 51, 51, 0.26);
  --page-line: rgba(51, 51, 51, 0.2);
  --page-header-bg: rgba(238, 238, 234, 0.92);
}

body.film-page--torino-shadow {
  --page-bg: #f3eee8;
  --page-ink: #151210;
  --page-muted: #675d55;
  --page-accent: #b6244f;
  --page-accent-soft: rgba(182, 36, 79, 0.28);
  --page-line: rgba(182, 36, 79, 0.22);
  --page-header-bg: rgba(243, 238, 232, 0.92);
}

body.film-page--il-senso-della-terra {
  --page-bg: #f1eee9;
  --page-ink: #161514;
  --page-muted: #67615b;
  --page-accent: #3d3530;
  --page-accent-soft: rgba(61, 53, 48, 0.28);
  --page-line: rgba(61, 53, 48, 0.22);
  --page-header-bg: rgba(241, 238, 233, 0.92);
}

body.project-page--inverno {
  --page-bg: #edf1ef;
  --page-ink: #101414;
  --page-muted: #5f6866;
  --page-accent: #2f6f73;
  --page-accent-soft: rgba(47, 111, 115, 0.3);
  --page-line: rgba(62, 89, 90, 0.28);
  --page-header-bg: rgba(237, 241, 239, 0.92);
}

body.project-page--dollhouse {
  --page-bg: #f4efe6;
  --page-ink: #17110f;
  --page-muted: #665f56;
  --page-accent: #e80080;
  --page-accent-soft: rgba(232, 0, 128, 0.34);
  --page-line: rgba(92, 110, 96, 0.32);
  --page-header-bg: rgba(244, 239, 230, 0.92);
}

body.project-page--im-in-heaven {
  --page-bg: #f1f5f7;
  --page-ink: #141719;
  --page-muted: #5f6b72;
  --page-accent: #3f7fa8;
  --page-accent-soft: rgba(63, 127, 168, 0.3);
  --page-line: rgba(77, 105, 128, 0.26);
  --page-header-bg: rgba(241, 245, 247, 0.92);
}

body.project-page--la-riparazione {
  --page-bg: #eef2ef;
  --page-ink: #101514;
  --page-muted: #5f6966;
  --page-accent: #496f68;
  --page-accent-soft: rgba(73, 111, 104, 0.3);
  --page-line: rgba(73, 111, 104, 0.24);
  --page-header-bg: rgba(238, 242, 239, 0.92);
}

.info-grid,
.film-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(28px, 6vw, 84px);
}

.clean-list,
.link-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  color: var(--muted);
}

.film-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-content: start;
}

.film-technical-aside {
  display: grid;
  gap: 22px;
  align-content: start;
}

.gallery-section[hidden] {
  display: none;
}

.hero-gallery {
  padding: 0;
  border-top: 0;
}

.gallery-stage {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--accent-soft);
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1.01);
  transition: opacity 900ms ease, transform 5200ms ease;
}

.gallery-stage img.is-fading {
  opacity: 0.12;
  transform: scale(1.035);
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 14px;
  color: var(--muted);
}

.gallery-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 1.35rem;
}

.gallery-controls button:hover,
.gallery-controls button:focus-visible {
  border-color: var(--ink);
}

.trailer-section[hidden] {
  display: none;
}

.film-press-section[hidden] {
  display: none;
}

.trailer-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}

.trailer-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.trailer-link-card {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.trailer-link-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
}

.trailer-link-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 420ms ease;
}

.trailer-link-card span {
  position: absolute;
  z-index: 1;
  border: 1px solid currentColor;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.34);
  font-weight: 700;
}

.trailer-link-card:hover img,
.trailer-link-card:focus-visible img {
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-stage img {
    transform: none;
    transition: none;
  }
}

.streaming-section[hidden] {
  display: none;
}

.streaming-section h2 {
  margin-bottom: 22px;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
}

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

.streaming-list a {
  display: grid;
  place-items: center;
  min-width: 180px;
  min-height: 74px;
  padding: 18px 24px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
}

.streaming-list img {
  max-width: 150px;
  max-height: 36px;
  object-fit: contain;
}

.cinema-section[hidden] {
  display: none;
}

.cinema-section-head {
  margin-bottom: 24px;
}

.cinema-section-head h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.cinema-section-head p {
  margin-bottom: 0;
}

.cinema-live-box {
  border: 1px solid var(--line);
  background: #f7f5f1;
}

.cinema-live-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.cinema-live-top strong {
  color: var(--ink);
}

.cinema-table {
  width: 100%;
  border-collapse: collapse;
}

.cinema-table th,
.cinema-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.cinema-table th {
  width: 110px;
  color: var(--accent);
  font-weight: 700;
}

.cinema-table td {
  color: var(--ink);
}

.cinema-awards ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cinema-list li,
.cinema-awards li {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.cinema-awards {
  background: var(--paper);
}

.cinema-awards h3 {
  margin: 0;
  padding: 16px 18px 2px;
  color: var(--accent);
  font-size: 0.92rem;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .film-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .wide-statement,
  .contact-section,
  .film-detail-hero,
  .info-grid,
  .film-columns,
  .home-panel-box,
  .directory-columns,
  .press-feature-grid,
  .about-hero,
  .about-editorial,
  .about-story,
  .about-method,
  .about-markets,
  .about-thread,
  .about-company,
  .person-hero,
  .person-bio,
  .person-podcast,
  .person-sources,
  .artist-hero,
  .artist-bio,
  .artist-roles,
  .artist-editorial,
  .artist-presskit,
  .collaboration-intro-grid,
  .collaboration-method,
  .cultural-contact,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .home-contact-cta {
    flex-direction: column;
    gap: 18px;
  }

  .contact-form-head {
    min-height: 0;
  }

  .about-hero {
    padding-bottom: 32px;
  }

  .about-hero,
  .about-editorial,
  .about-story,
  .about-thread,
  .about-company {
    gap: 24px;
  }

  .about-hero-image {
    order: -1;
  }

  .about-signature-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-signature-copy {
    max-width: 620px;
  }

  .about-signature-frames {
    min-height: 0;
  }

  .person-hero {
    padding-top: 108px;
  }

  .person-portrait-large {
    order: -1;
    max-width: 460px;
  }

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

  .person-highlights p {
    min-height: 96px;
  }

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

  .person-credit-grid {
    grid-template-columns: 1fr;
  }

  .person-credit-grid--expanded .is-wide {
    grid-column: auto;
  }

  .person-credit-columns {
    grid-template-columns: 1fr;
  }

  .person-breadcrumb {
    padding-top: 96px;
  }

  .artist-hero {
    padding-top: 38px;
  }

  .artist-page .artist-hero {
    padding-top: 30px;
    padding-bottom: 44px;
  }

  .artist-page .artist-bio,
  .artist-page .artist-works,
  .artist-page .artist-roles,
  .artist-page .artist-editorial,
  .artist-page .artist-presskit {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .artist-hero-media {
    order: -1;
    justify-self: start;
    width: 100%;
  }

  .artist-hero-media img {
    aspect-ratio: 16 / 9;
  }

  .artist-hero-sequence-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    aspect-ratio: auto;
  }

  .artist-hero-sequence-grid img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .artist-hero-sequence-grid img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .artist-work-card,
  .artist-work-card.is-text-only {
    grid-template-columns: 1fr;
    margin-left: 0;
    padding: 24px 0;
  }

  .artist-work-media {
    width: min(100%, 420px);
    max-width: 100%;
  }

  .artist-role-grid,
  .artist-editorial-list,
  .artist-presskit-actions {
    grid-template-columns: 1fr;
  }

  .artist-footnote {
    grid-column: auto;
    margin-top: 16px;
  }

  .about-services-grid {
    grid-template-columns: 1fr;
  }

  .about-services-grid article {
    min-height: 0;
  }

  .about-services-grid h3 {
    margin-bottom: 14px;
  }

  .archive-index-section--cards .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-team-list article:first-child,
  .about-team-list article:nth-child(2) {
    min-height: 0;
  }

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

  .split-section,
  .company-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .split-image,
  .company-image {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 64px 0 0;
    z-index: 95;
    display: grid;
    align-content: start;
    gap: 0;
    min-height: calc(100svh - 64px);
    padding: 22px var(--pad) 32px;
    background: var(--paper);
    color: var(--ink);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.14);
    transform: translateX(100%);
    transition: transform 180ms ease;
    overflow-y: auto;
  }

  body.nav-open .main-nav {
    transform: translateX(0);
  }

  body.nav-open .site-header {
    background: var(--paper);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open:not(.sparse-home) .site-header .brand-logo {
    filter: invert(1);
  }

  body.sparse-home.nav-open .site-header .brand-logo {
    filter: none;
  }

  .main-nav a {
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.2rem;
    opacity: 1;
  }

  .language-switch {
    position: fixed;
    right: calc(var(--pad) + 54px);
    top: 11px;
  }

  .hero {
    min-height: 88svh;
  }

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

  .contact-intro h2 {
    max-width: 12em;
  }

  .about-signature {
    padding-top: 18px;
    padding-bottom: 36px;
  }

  .about-signature-shell {
    padding: 22px;
  }

  .about-signature-frames {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
    min-height: 0;
  }

  .about-signature-frame,
  .about-signature-frame--one,
  .about-signature-frame--two,
  .about-signature-frame--three {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .about-team-list article:first-child,
  .about-team-list article:nth-child(2) {
    grid-template-columns: minmax(86px, 0.3fr) minmax(0, 1fr);
    gap: 14px;
  }

  .artist-editorial-list article {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
  }

  .team-portrait img {
    min-height: 138px;
  }

  body.sparse-home .hero {
    padding: 0;
    min-height: clamp(360px, 58svh, 520px);
  }

  body.sparse-home .hero-image {
    width: 116vw;
    height: min(52svh, 460px);
    max-height: none;
    place-self: end center;
    object-fit: cover;
    object-position: center 62%;
  }

  body.sparse-home .hero h1 {
    font-size: 3.7rem;
  }

  .hero-copy {
    padding-bottom: 48px;
  }

  body.sparse-home .hero-copy {
    padding-bottom: 0;
  }

  body.sparse-home .sparse-panel {
    padding-top: 18px;
  }

  body.sparse-home .home-panel-box {
    --home-row-height: 128px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.sparse-home .home-news-item,
  body.sparse-home .home-focus-item,
  body.sparse-home .watch-online-item {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 0;
    height: auto;
    min-height: var(--home-row-height);
    padding: 10px 0;
  }

  body.sparse-home .home-news-item > div,
  body.sparse-home .home-focus-item > div,
  body.sparse-home .watch-online-content {
    align-self: center;
  }

  body.sparse-home .watch-online-content {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  body.sparse-home .home-news-item img {
    width: 62px;
    height: 62px;
  }

  body.sparse-home .home-focus-item img,
  body.sparse-home .home-focus-thumb {
    width: 62px;
    height: 62px;
  }

  body.sparse-home .home-focus-item img.home-focus-image--contain {
    padding: 2px;
  }

  body.sparse-home .home-focus-thumb--text {
    padding: 7px;
  }

  body.sparse-home .home-focus-thumb--text span {
    font-size: 0.48rem;
  }

  body.sparse-home .home-focus-thumb--text strong {
    font-size: 0.7rem;
  }

  body.sparse-home .watch-online-poster {
    width: 62px;
    grid-row: auto;
  }

  body.sparse-home .watch-film-link {
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }

  .directory-intro h2 {
    font-size: 2.15rem;
  }

  .directory-column > p {
    min-height: 0;
  }

  .directory-link {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .section-pad,
  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .contact-page .contact-section--forms {
    padding-top: 92px;
  }

  .home-contact-cta {
    padding-bottom: 54px;
  }

  .about-hero {
    padding-top: 76px;
    padding-bottom: 28px;
  }

  .about-editorial--story {
    padding-top: 24px;
    padding-bottom: 12px;
  }

  .about-signature {
    padding-top: 12px;
    padding-bottom: 30px;
  }

  .about-services {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .about-services-intro {
    margin-bottom: 22px;
  }

  .about-thread,
  .about-team {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .about-company {
    padding-top: 30px;
    padding-bottom: 44px;
  }

  .press-hero {
    padding-top: 84px;
    padding-bottom: 22px;
  }

  .press-archive {
    padding-top: 12px;
    padding-bottom: 54px;
  }

  .press-archive .section-head {
    margin-bottom: 18px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .project-card {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .archive-index-section--cards .project-list {
    grid-template-columns: 1fr;
  }

  .project-media {
    aspect-ratio: 16 / 9;
  }

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

  .press-card,
  .press-row,
  .press-row-large {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .home-news-item {
    grid-template-columns: 1fr;
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
  }

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

  .cultural-page .collaboration-grid {
    grid-template-columns: 1fr;
  }

  .cultural-contact .text-link {
    justify-self: start;
  }

  .press-row > div,
  .press-row > a {
    margin: 0 22px;
  }

  .press-row > div {
    margin-top: 22px;
  }

  .press-row > a {
    margin-bottom: 22px;
  }

  .press-row-large img,
  .press-card img {
    aspect-ratio: 16 / 9;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-link-groups {
    justify-items: start;
  }
}
