:root {
  color-scheme: dark;
  font-family:
    "Helvetica Neue", "Arial Narrow", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --ink: #080706;
  --ink-soft: #14110f;
  --paper: #f2eee6;
  --paper-muted: #bdb7ad;
  --red: #d9473f;
  --day: #ead943;
  --day-ink: #15120d;
  --line: rgb(242 238 230 / 24%);
  --line-dark: rgb(21 18 13 / 34%);
  --content: 1440px;
  --gutter: clamp(20px, 4vw, 72px);
  --header-height: 68px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --layer-base: 0;
  --layer-media: 1;
  --layer-content: 2;
  --layer-header: 20;
  --layer-overlay: 30;
}

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

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

main {
  overflow: clip;
}

section {
  scroll-margin-top: var(--header-height);
}

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

img {
  height: auto;
}

button,
a {
  color: inherit;
}

button {
  border: 0;
  font: inherit;
}

a {
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.section-shell {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  z-index: calc(var(--layer-header) + 1);
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: fixed;
  z-index: var(--layer-header);
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-height);
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-inline: var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgb(8 7 6 / 84%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.wordmark {
  width: fit-content;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  gap: clamp(20px, 2.5vw, 42px);
  align-items: center;
  white-space: nowrap;
}

.site-nav a,
.menu-toggle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease);
}

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

.menu-toggle {
  display: none;
  padding: 10px 0;
  background: transparent;
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100dvh;
  overflow: hidden;
  align-items: end;
  background: var(--ink-soft);
  isolation: isolate;
}

.hero__video,
.hero__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  z-index: var(--layer-base);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.08);
}

.hero__scrim {
  z-index: var(--layer-media);
  background:
    linear-gradient(90deg, rgb(8 7 6 / 80%) 0%, rgb(8 7 6 / 30%) 58%, rgb(8 7 6 / 55%) 100%),
    linear-gradient(0deg, rgb(8 7 6 / 76%) 0%, transparent 52%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: var(--layer-content);
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: calc(var(--header-height) + 24px) var(--gutter) clamp(108px, 12vh, 152px);
}

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

.hero h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(78px, 13.5vw, 214px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.76;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  width: fit-content;
}

.hero h1 span:last-child {
  color: var(--red);
  transform: translateX(clamp(24px, 9vw, 144px));
}

.hero__intro {
  max-width: 460px;
  margin: clamp(28px, 4vh, 48px) 0 0;
  color: rgb(242 238 230 / 86%);
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.55;
}

.hero__actions,
.closing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--paper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  transition:
    background-color 220ms var(--ease),
    border-color 220ms var(--ease),
    color 220ms var(--ease),
    transform 220ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px);
}

.button--primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--ink);
}

.button--primary:hover {
  filter: brightness(1.08);
}

.button--ghost {
  background: rgb(8 7 6 / 30%);
  color: var(--paper);
}

.button--ghost:hover {
  background: var(--paper);
  color: var(--ink);
}

.hero__controls {
  position: absolute;
  z-index: calc(var(--layer-content) + 1);
  right: var(--gutter);
  bottom: 30px;
  display: flex;
  gap: 8px;
}

.hero__controls button {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgb(242 238 230 / 62%);
  background: rgb(8 7 6 / 72%);
  color: var(--paper);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.05em;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.hero__controls button:hover,
.hero__controls button[aria-pressed="true"] {
  background: var(--paper);
  color: var(--ink);
}

.keyword-band {
  overflow: hidden;
  border-block: 1px solid var(--red);
  background: var(--red);
  color: var(--ink);
}

.keyword-band__track {
  display: flex;
  width: max-content;
  min-height: 72px;
  align-items: center;
  animation: keyword-move 28s linear infinite;
  font-size: clamp(24px, 3.2vw, 50px);
  font-weight: 900;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.keyword-band__track span {
  padding-right: 0.35em;
}

@keyframes keyword-move {
  to {
    transform: translateX(-50%);
  }
}

.statement {
  display: grid;
  min-height: 92dvh;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
  padding-block: clamp(92px, 14vw, 190px);
}

.statement__copy {
  grid-column: 1 / span 5;
}

.statement__copy h2,
.section-heading h2,
.culture h2,
.closing h2 {
  margin: 0;
  font-size: clamp(48px, 6.4vw, 102px);
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 0.94;
  text-wrap: balance;
}

.statement__copy p {
  max-width: 36ch;
  margin: 30px 0 0;
  color: var(--paper-muted);
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.72;
}

.statement__visual {
  grid-column: 6 / -1;
  margin: 0;
}

.statement__visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

figcaption {
  margin-top: 12px;
  color: var(--paper-muted);
  font-size: 12px;
  line-height: 1.5;
}

.profile {
  position: relative;
  overflow: hidden;
  padding-block: clamp(84px, 11vw, 150px) 48px;
  background: var(--day);
  color: var(--day-ink);
}

.profile::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 10px;
  background: var(--red);
  content: "";
}

.profile__masthead {
  position: relative;
  z-index: var(--layer-content);
}

.profile__edition {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.profile__masthead h2 {
  margin: 0;
  font-size: clamp(68px, 12.5vw, 194px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.78;
}

.profile__layout {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(260px, 4fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: end;
  margin-top: clamp(40px, 6vw, 86px);
}

.profile__portrait {
  margin: 0;
}

.profile__portrait img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04) saturate(0.85);
}

.profile__story {
  padding: 28px 0 8px clamp(22px, 3vw, 46px);
  border-left: 6px solid var(--red);
}

.profile__lead {
  max-width: 15ch;
  margin: 0;
  font-family: Georgia, "Songti SC", "STSong", serif;
  font-size: clamp(30px, 3.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.profile__columns {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.profile__columns p {
  margin: 0;
  font-family: Georgia, "Songti SC", "STSong", serif;
  font-size: 16px;
  line-height: 1.75;
}

.profile__credits {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.profile__credits li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: baseline;
  padding-block: 13px;
  border-bottom: 1px solid var(--line-dark);
}

.profile__credits strong {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.profile__credits span {
  font-family: Georgia, "Songti SC", "STSong", serif;
  font-size: 13px;
  line-height: 1.45;
}

.profile__signature {
  display: grid;
  margin-top: clamp(56px, 9vw, 128px);
  color: transparent;
  font-size: clamp(88px, 17vw, 260px);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.67;
  -webkit-text-stroke: 2px var(--day-ink);
}

.profile__signature span:last-child {
  justify-self: end;
  color: var(--day-ink);
  -webkit-text-stroke: 0;
}

.watch {
  padding-block: clamp(100px, 12vw, 176px);
}

.section-heading {
  display: grid;
  max-width: 920px;
  gap: 20px;
}

.section-heading > p {
  width: fit-content;
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.section-heading > span {
  max-width: 52ch;
  color: var(--paper-muted);
  font-size: 17px;
  line-height: 1.65;
}

.watch__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(46px, 8vw, 130px);
  align-items: center;
  margin-top: clamp(62px, 8vw, 112px);
}

.watch__player {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  overflow: hidden;
  background: #171310;
  box-shadow: 22px 24px 0 var(--red);
}

.watch__player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.watch__play {
  position: absolute;
  z-index: var(--layer-content);
  top: 50%;
  left: 50%;
  min-width: 148px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--paper);
  background: rgb(8 7 6 / 86%);
  color: var(--paper);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  transform: translate(-50%, -50%);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.watch__play:hover {
  background: var(--paper);
  color: var(--ink);
}

.watch__status {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  margin: 0;
  padding: 9px 10px;
  background: rgb(8 7 6 / 78%);
  color: var(--paper);
  font-size: 11px;
  text-align: center;
  transition: opacity 180ms ease;
}

.watch__player.is-playing .watch__play,
.watch__player.is-playing .watch__status {
  opacity: 0;
  pointer-events: none;
}

.watch__player.has-error .watch__status {
  background: var(--red);
}

.watch__program {
  min-width: 0;
}

.watch__current {
  min-height: 220px;
  padding-bottom: 42px;
}

.watch__current > span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 14px;
  font-weight: 850;
}

.watch__current h3 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.watch__current p {
  max-width: 42ch;
  margin: 24px 0 0;
  color: var(--paper-muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.video-choice {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 24px 18px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  text-align: left;
  transition:
    background-color 220ms var(--ease),
    color 220ms var(--ease),
    padding-left 220ms var(--ease);
}

.video-choice:hover,
.video-choice.is-active {
  padding-left: 24px;
  background: var(--paper);
  color: var(--ink);
}

.video-choice.is-active {
  box-shadow: inset 6px 0 0 var(--red);
}

.video-choice > span {
  display: grid;
  gap: 7px;
}

.video-choice strong {
  font-size: clamp(18px, 2vw, 27px);
  letter-spacing: -0.035em;
}

.video-choice small {
  color: var(--paper-muted);
  font-size: 13px;
  line-height: 1.45;
}

.video-choice:hover small,
.video-choice.is-active small {
  color: rgb(8 7 6 / 68%);
}

.culture {
  padding-bottom: clamp(112px, 15vw, 210px);
}

.section-heading--wide {
  max-width: 1020px;
}

.culture__gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: clamp(16px, 2.5vw, 36px);
  margin-top: clamp(58px, 8vw, 104px);
}

.culture__gallery figure {
  margin: 0;
}

.culture__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transition: filter 420ms var(--ease);
}

.culture__gallery figure:hover img {
  filter: saturate(1) contrast(1.02);
}

.culture__crowd {
  grid-row: 1 / span 2;
  grid-column: 1 / span 7;
}

.culture__crowd img {
  aspect-ratio: 4 / 5;
}

.culture__deck {
  grid-column: 8 / -1;
}

.culture__group {
  grid-column: 8 / -1;
}

.culture__deck img,
.culture__group img {
  aspect-ratio: 16 / 9;
}

.mando {
  position: relative;
  min-height: 94dvh;
  overflow: hidden;
  padding-block: clamp(100px, 13vw, 184px);
  isolation: isolate;
}

.mando__texture,
.mando__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mando__texture {
  z-index: var(--layer-base);
  object-fit: cover;
}

.mando__shade {
  z-index: var(--layer-media);
  background:
    linear-gradient(90deg, rgb(8 7 6 / 88%) 0%, rgb(8 7 6 / 52%) 58%, rgb(8 7 6 / 72%) 100%),
    linear-gradient(0deg, rgb(8 7 6 / 74%) 0%, transparent 70%);
}

.mando__layout {
  position: relative;
  z-index: var(--layer-content);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(44px, 8vw, 128px);
  align-items: end;
}

.mando__copy h2 {
  margin: 0;
  font-size: clamp(58px, 8.6vw, 136px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.mando__copy h2 span {
  display: block;
}

.mando__copy h2 span:last-child {
  margin-left: clamp(22px, 5vw, 82px);
  color: var(--red);
}

.mando__copy p {
  max-width: 40ch;
  margin: 42px 0 0;
  color: rgb(242 238 230 / 78%);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.7;
}

.mando__kicker {
  margin: 0 0 20px !important;
  color: var(--red) !important;
  font-size: 12px !important;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.mando__facts {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
  border-block: 1px solid var(--line);
}

.mando__facts span {
  display: grid;
  gap: 7px;
  padding: 18px 14px 18px 0;
  color: var(--paper-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mando__facts span + span {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.mando__facts strong {
  color: var(--paper);
  font-size: clamp(21px, 2.3vw, 34px);
  letter-spacing: -0.04em;
}

.mando__frame {
  margin: 0;
  padding: 14px;
  border: 1px solid rgb(242 238 230 / 48%);
  background: rgb(8 7 6 / 72%);
}

.mando__frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.programs {
  padding-block: clamp(112px, 14vw, 204px);
}

.programs__head {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
}

.programs__head > div > p,
.crew__head > p,
.studio__head > p,
.archive__intro > p,
.contact__copy > p {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.programs__head h2,
.crew__head h2,
.studio__head h2,
.archive__intro h2,
.contact__copy h2 {
  margin: 0;
  font-size: clamp(64px, 9vw, 142px);
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.84;
}

.programs__head > p {
  max-width: 38ch;
  margin: 0;
  color: var(--paper-muted);
  font-size: 17px;
  line-height: 1.7;
}

.program-groups {
  margin-top: clamp(82px, 10vw, 144px);
}

.program-group {
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(36px, 6vw, 94px);
  padding-block: clamp(50px, 6vw, 84px);
  border-top: 1px solid var(--line);
}

.program-group > header {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-content: start;
}

.program-group > header > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
}

.program-group h3 {
  margin: 0;
  font-size: clamp(25px, 2.8vw, 42px);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.program-group header p {
  max-width: 24ch;
  margin: 14px 0 0;
  color: var(--paper-muted);
  font-size: 13px;
  line-height: 1.55;
}

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

.program-card {
  min-height: 320px;
  padding: clamp(22px, 2.7vw, 38px);
  border: 1px solid var(--line);
  background: var(--ink-soft);
}

.program-card__top {
  display: flex;
  gap: 18px;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.program-card__top span {
  color: var(--red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.program-card__top strong {
  font-size: clamp(21px, 2vw, 31px);
  letter-spacing: -0.045em;
  line-height: 0.9;
  white-space: nowrap;
}

.program-card h4 {
  max-width: 12ch;
  margin: 32px 0 12px;
  font-size: clamp(25px, 2.4vw, 38px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.program-card > p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.program-card ul {
  display: grid;
  gap: 7px;
  margin: 25px 0 0;
  padding: 0;
  color: rgb(242 238 230 / 78%);
  font-size: 12px;
  line-height: 1.55;
  list-style: none;
}

.program-card li::before {
  margin-right: 8px;
  color: var(--red);
  content: "/";
  font-weight: 900;
}

.program-card--red {
  border-color: var(--red);
  box-shadow: inset 7px 0 0 var(--red);
}

.program-card--feature {
  background: var(--red);
  color: var(--ink);
}

.program-card--feature .program-card__top,
.program-card--feature ul {
  border-color: rgb(8 7 6 / 36%);
  color: rgb(8 7 6 / 78%);
}

.program-card--feature .program-card__top span,
.program-card--feature .program-card__top strong,
.program-card--feature > p,
.program-card--feature li::before {
  color: var(--ink);
}

.program-card--custom {
  background: var(--paper);
  color: var(--ink);
}

.program-card--custom .program-card__top {
  border-color: rgb(8 7 6 / 22%);
}

.program-card--custom > p,
.program-card--custom ul {
  color: rgb(8 7 6 / 68%);
}

.programs__note {
  max-width: 78ch;
  margin: 32px 0 0 auto;
  color: var(--paper-muted);
  font-size: 11px;
  line-height: 1.65;
}

.crew {
  padding-block: clamp(106px, 12vw, 176px);
  border-block: 1px solid var(--line);
  background: #0e0c0b;
}

.crew__head {
  display: grid;
  max-width: 1080px;
}

.crew__head > span,
.studio__head > span,
.archive__intro > span,
.contact__copy > span {
  max-width: 56ch;
  margin-top: 30px;
  color: var(--paper-muted);
  font-size: 17px;
  line-height: 1.7;
}

.crew__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(68px, 9vw, 124px);
}

.mentor-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}

.mentor-card--director {
  grid-column: span 2;
}

.mentor-card.mentor-card--director img {
  aspect-ratio: 4 / 3;
}

.mentor-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  transition:
    filter 400ms var(--ease),
    transform 600ms var(--ease);
}

.mentor-card:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
}

.mentor-card > div {
  position: relative;
  min-height: 152px;
  padding: 22px 20px 26px;
  background: var(--ink);
}

.mentor-card--director > div {
  border-top: 6px solid var(--red);
}

.mentor-card span {
  color: var(--red);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.mentor-card h3 {
  margin: 10px 0 0;
  font-size: clamp(22px, 2.5vw, 38px);
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.mentor-card p {
  margin: 14px 0 0;
  color: var(--paper-muted);
  font-size: 11px;
  line-height: 1.55;
}

.studio {
  padding-block: clamp(112px, 14vw, 204px);
}

.studio__head {
  display: grid;
  max-width: 1120px;
}

.studio__gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 32px);
  align-items: start;
  margin-top: clamp(70px, 9vw, 130px);
}

.studio__gallery figure {
  margin: 0;
}

.studio__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.06);
}

.studio__main {
  grid-column: 1 / span 7;
}

.studio__main img {
  aspect-ratio: 3 / 2;
}

.studio__vinyl {
  grid-column: 9 / -1;
  margin-top: clamp(42px, 7vw, 110px) !important;
}

.studio__vinyl img {
  aspect-ratio: 4 / 5;
}

.studio__room {
  grid-column: 3 / span 7;
  margin-top: clamp(12px, 2vw, 34px) !important;
}

.studio__room img {
  aspect-ratio: 16 / 9;
}

.archive {
  padding-block: clamp(110px, 13vw, 190px);
  background: var(--red);
  color: var(--ink);
}

.archive__intro {
  display: grid;
  max-width: var(--content);
}

.archive__intro > p {
  color: var(--ink);
}

.archive__intro > span {
  color: rgb(8 7 6 / 74%);
}

.archive__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(44px, 8vw, 128px);
  align-items: start;
  margin-top: clamp(76px, 10vw, 146px);
}

.archive__record > p {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.archive__record ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(8 7 6 / 38%);
  list-style: none;
}

.archive__record li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: baseline;
  padding-block: 18px;
  border-bottom: 1px solid rgb(8 7 6 / 38%);
}

.archive__record li span {
  font-size: 10px;
  font-weight: 850;
}

.archive__record li strong {
  font-size: clamp(16px, 1.7vw, 24px);
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.archive__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 32px);
  align-items: start;
}

.archive__media figure {
  margin: 0;
}

.archive__media figure:first-child {
  grid-column: 1 / -1;
}

.archive__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.06);
}

.archive__media figure:nth-child(2) img {
  aspect-ratio: 4 / 5;
}

.archive__media figcaption {
  color: rgb(8 7 6 / 72%);
  font-weight: 750;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: clamp(54px, 10vw, 150px);
  align-items: end;
  padding-block: clamp(118px, 15vw, 216px);
}

.contact__copy > span {
  display: block;
}

.contact__numbers {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(46px, 6vw, 82px);
  border-block: 1px solid var(--line);
}

.contact__numbers a {
  display: grid;
  gap: 9px;
  padding: 24px 24px 24px 0;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    padding-left 180ms ease;
}

.contact__numbers a + a {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.contact__numbers a:hover,
.contact__numbers a:focus-visible {
  padding-left: 18px;
  background: var(--red);
  color: var(--ink);
}

.contact__numbers a + a:hover,
.contact__numbers a + a:focus-visible {
  padding-left: 42px;
}

.contact__numbers small {
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.contact__numbers strong {
  font-size: clamp(20px, 2.4vw, 36px);
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.contact address {
  display: grid;
  max-width: 700px;
  gap: 10px;
  margin-top: 34px;
  color: var(--paper-muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.contact address span {
  color: var(--paper);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.contact__qr {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.contact__qr img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.contact__qr figcaption {
  color: var(--ink);
  font-weight: 750;
}

.closing {
  display: grid;
  min-height: 68dvh;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
  padding-block: clamp(112px, 15vw, 210px);
  border-bottom: 1px solid var(--line);
}

.closing h2 {
  max-width: 900px;
}

.closing__actions {
  align-self: end;
  justify-content: flex-end;
  margin: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  gap: 32px;
  align-items: start;
  padding-block: 38px;
  color: var(--paper-muted);
  font-size: 12px;
  line-height: 1.6;
}

.site-footer strong {
  color: var(--paper);
  letter-spacing: 0.08em;
}

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

.site-footer__contact a {
  color: var(--paper);
  font-weight: 750;
}

.noscript-note {
  position: fixed;
  z-index: var(--layer-overlay);
  right: 16px;
  bottom: 16px;
  left: 16px;
  margin: 0;
  padding: 14px 16px;
  background: var(--red);
  color: var(--paper);
  font-size: 13px;
  text-align: center;
}

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

  .hero h1 {
    font-size: clamp(82px, 16vw, 166px);
  }

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

  .statement__copy {
    grid-column: 1 / span 3;
  }

  .statement__visual {
    grid-column: 4 / -1;
  }

  .profile__layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  }

  .profile__story {
    padding-left: 24px;
  }

  .profile__columns {
    margin-top: 28px;
  }

  .watch__layout {
    grid-template-columns: minmax(290px, 0.78fr) minmax(0, 1.22fr);
    gap: 52px;
  }

  .watch__player {
    box-shadow: 14px 16px 0 var(--red);
  }

  .mando__layout {
    gap: 46px;
  }

  .programs__head,
  .program-group {
    grid-template-columns: 1fr;
  }

  .programs__head > p {
    max-width: 52ch;
  }

  .program-group {
    gap: 34px;
  }

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

  .mentor-card--director {
    grid-column: span 2;
  }

  .archive__layout {
    grid-template-columns: minmax(230px, 0.4fr) minmax(0, 0.6fr);
    gap: 48px;
  }

  .contact {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.34fr);
    gap: 46px;
  }

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

  .contact__numbers a + a {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact__numbers a + a:hover,
  .contact__numbers a + a:focus-visible {
    padding-left: 18px;
  }

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

  .closing__actions {
    justify-content: flex-start;
  }

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

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

  .site-header {
    grid-template-columns: 1fr auto;
    background: rgb(8 7 6 / 96%);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 8px var(--gutter) 20px;
    border-bottom: 1px solid var(--line);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition:
      opacity 220ms var(--ease),
      transform 220ms var(--ease),
      visibility 220ms;
  }

  .site-nav[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .site-nav a {
    padding-block: 16px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    align-items: end;
  }

  .hero__video {
    object-position: 58% center;
  }

  .hero__scrim {
    background:
      linear-gradient(90deg, rgb(8 7 6 / 58%), rgb(8 7 6 / 18%)),
      linear-gradient(0deg, rgb(8 7 6 / 88%) 0%, rgb(8 7 6 / 18%) 70%);
  }

  .hero__content {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 154px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(72px, 23.4vw, 112px);
    line-height: 0.8;
  }

  .hero h1 span:last-child {
    transform: translateX(20px);
  }

  .hero__intro {
    max-width: 320px;
    margin-top: 24px;
    font-size: 16px;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .hero__controls {
    right: var(--gutter);
    bottom: 20px;
    left: var(--gutter);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__controls button {
    width: 100%;
  }

  .keyword-band__track {
    min-height: 56px;
    font-size: 25px;
  }

  .statement {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 52px;
    padding-block: 94px;
  }

  .statement__copy,
  .statement__visual {
    grid-column: 1;
  }

  .statement__copy h2,
  .section-heading h2,
  .culture h2,
  .closing h2 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .statement__copy p {
    margin-top: 24px;
    font-size: 16px;
  }

  .statement__visual img {
    aspect-ratio: 4 / 3;
  }

  .profile {
    padding-top: 82px;
  }

  .profile__masthead h2 {
    font-size: clamp(66px, 21vw, 96px);
    line-height: 0.84;
  }

  .profile__layout {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 44px;
  }

  .profile__portrait img {
    aspect-ratio: 4 / 3;
    object-position: 56% center;
  }

  .profile__story {
    padding: 24px 0 0;
    border-top: 6px solid var(--red);
    border-left: 0;
  }

  .profile__lead {
    max-width: 13ch;
    font-size: 35px;
  }

  .profile__columns {
    gap: 14px;
  }

  .profile__credits li {
    grid-template-columns: 68px 1fr;
    gap: 12px;
  }

  .profile__signature {
    margin-top: 78px;
    font-size: clamp(82px, 27vw, 128px);
    line-height: 0.72;
    -webkit-text-stroke-width: 1px;
  }

  .watch {
    padding-block: 96px 120px;
  }

  .section-heading {
    gap: 16px;
  }

  .section-heading > span {
    font-size: 16px;
  }

  .watch__layout {
    grid-template-columns: 1fr;
    gap: 62px;
    margin-top: 58px;
  }

  .watch__player {
    width: min(100% - 24px, 360px);
    box-shadow: 12px 14px 0 var(--red);
  }

  .watch__current {
    min-height: auto;
    padding-bottom: 34px;
  }

  .watch__current h3 {
    font-size: 46px;
  }

  .video-choice {
    padding-inline: 0;
  }

  .video-choice:hover,
  .video-choice.is-active {
    padding-left: 16px;
  }
  .culture {
    padding-bottom: 118px;
  }

  .culture__gallery {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 54px;
  }

  .culture__crowd,
  .culture__deck,
  .culture__group {
    grid-column: 1;
    grid-row: auto;
  }

  .culture__crowd img,
  .culture__deck img,
  .culture__group img {
    aspect-ratio: 4 / 3;
  }

  .mando {
    min-height: auto;
    padding-block: 106px;
  }

  .mando__texture {
    object-position: 68% center;
  }

  .mando__shade {
    background: linear-gradient(0deg, rgb(8 7 6 / 86%), rgb(8 7 6 / 56%));
  }

  .mando__layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .mando__copy h2 {
    font-size: clamp(54px, 16vw, 76px);
  }

  .mando__copy h2 span:last-child {
    margin-left: 18px;
  }

  .mando__copy p {
    margin-top: 30px;
    font-size: 17px;
  }

  .mando__frame {
    padding: 9px;
  }

  .mando__facts {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .mando__facts span {
    padding: 15px 0;
  }

  .mando__facts span + span {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .programs {
    padding-block: 104px 118px;
  }

  .programs__head {
    gap: 30px;
  }

  .programs__head h2,
  .crew__head h2,
  .studio__head h2,
  .archive__intro h2,
  .contact__copy h2 {
    font-size: clamp(56px, 18vw, 82px);
    line-height: 0.88;
  }

  .program-groups {
    margin-top: 68px;
  }

  .program-group {
    padding-block: 44px;
  }

  .program-group > header {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .program-grid,
  .program-grid--two {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 0;
    padding: 26px 22px 30px;
  }

  .program-card h4 {
    font-size: 31px;
  }

  .programs__note {
    margin-top: 26px;
  }

  .crew {
    padding-block: 98px 112px;
  }

  .crew__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 58px;
  }

  .mentor-card--director {
    grid-column: auto;
  }

  .mentor-card {
    display: grid;
    grid-template-columns: minmax(108px, 0.36fr) minmax(0, 0.64fr);
  }

  .mentor-card img {
    height: 100%;
    min-height: 310px;
    aspect-ratio: auto;
  }

  .mentor-card > div {
    display: grid;
    min-height: 0;
    align-content: end;
    padding: 24px 20px;
  }

  .mentor-card--director > div {
    border-top: 0;
    border-left: 6px solid var(--red);
  }

  .mentor-card.mentor-card--director img {
    aspect-ratio: auto;
  }

  .mentor-card h3 {
    font-size: clamp(24px, 7.5vw, 31px);
    overflow-wrap: normal;
  }

  .studio {
    padding-block: 108px;
  }

  .studio__gallery {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 58px;
  }

  .studio__main,
  .studio__vinyl,
  .studio__room {
    grid-column: 1;
    margin-top: 0 !important;
  }

  .studio__main img,
  .studio__vinyl img,
  .studio__room img {
    aspect-ratio: 4 / 3;
  }

  .archive {
    padding-block: 104px 118px;
  }

  .archive__layout {
    grid-template-columns: 1fr;
    gap: 58px;
    margin-top: 68px;
  }

  .archive__media {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .archive__media figure:first-child {
    grid-column: 1;
  }

  .archive__media img,
  .archive__media figure:nth-child(2) img {
    aspect-ratio: 4 / 3;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-block: 108px;
  }

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

  .contact__numbers strong {
    font-size: clamp(24px, 8.6vw, 35px);
  }

  .contact__qr {
    width: min(100%, 340px);
  }

  .closing {
    min-height: 62dvh;
    gap: 38px;
    padding-block: 112px;
  }

  .closing__actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 32px 44px;
  }
}

@media (max-width: 380px) {
  .button {
    padding-inline: 15px;
  }

  .hero__actions {
    gap: 8px;
  }

  .profile__masthead h2 {
    font-size: 64px;
  }

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

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .keyword-band__track {
    animation: none;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .hero__controls button {
    background: var(--ink);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
