@font-face {
  font-family: "Google Sans Flex";
  src: url("./fonts/google-sans-flex-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans Flex";
  src: url("./fonts/google-sans-flex-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Google Sans Flex";
  src: url("./fonts/google-sans-flex-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --intro-fade-duration: 720ms;
  --intro-logo-desktop-width: min(34vw, 34rem);
  --intro-logo-mobile-width: min(76vw, 24rem);
  --intro-logo-desktop-right: clamp(1.5rem, 6vw, 7rem);
  --intro-logo-desktop-top: 50%;
  --intro-logo-mobile-top: 50%;
  --intro-text-safe-area: clamp(1.5rem, 5vw, 5rem);
  --page-padding-x: clamp(1.5rem, 3vw, 3rem);
  --page-padding-y: clamp(1.25rem, 2vw, 2rem);
  --copy-color: #111111;
  --muted-surface: #f3f0ea;
  --type-stack: "Google Sans Flex", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --editorial-copy-size-desktop: 15px;
  --brand-logo-width-desktop: clamp(12rem, 17vw, 14rem);
  --brand-logo-width-mobile: 8.7rem;
  --footer-logo-width-desktop: clamp(8rem, 9vw, 9.2rem);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--copy-color);
  font-family: var(--type-stack);
  font-optical-sizing: auto;
}

body.has-intro {
  overflow: hidden;
}

body.has-lightbox {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-root {
  min-height: 100vh;
}

.site-main {
  min-height: 100vh;
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 640ms ease 120ms,
    transform 640ms ease 120ms;
}

.site-root.is-ready .site-main {
  opacity: 1;
  transform: translateY(0);
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #000000;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transition:
    opacity var(--intro-fade-duration) ease,
    visibility 0s linear var(--intro-fade-duration);
}

.intro.is-exiting {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro__video {
  display: block;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.8) contrast(0.9);
  transform: scale(1.015);
}

.intro__image-mobile {
  display: none;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.8) contrast(0.9);
}

.intro__content {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro__logo-frame {
  position: absolute;
  top: var(--intro-logo-desktop-top);
  right: var(--intro-logo-desktop-right);
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--intro-logo-desktop-width);
  max-width: calc(100vw - (2 * var(--intro-text-safe-area)));
  min-height: 3.5rem;
  transform: translateY(-50%);
}

.intro__logo {
  display: block;
  width: 60%;
  height: auto;
  max-height: 20vh;
  object-fit: contain;
}

.intro__logo-frame.is-empty {
  opacity: 0;
}

.home-page {
  background: #ffffff;
}

.home-page__inner {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: var(--page-padding-y) var(--page-padding-x);
  background: #ffffff;
}

.site-header {
  position: relative;
  z-index: 40;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(80vw, 100%);
  gap: 1.5rem;
  margin: 0 auto clamp(1.5rem, 3vh, 2.75rem);
  text-transform: uppercase;
}

.site-brand,
.site-nav__link {
  letter-spacing: 0.22em;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  font-size: 0;
  line-height: 0;
  white-space: nowrap;
}

.site-brand__logo {
  display: block;
  width: var(--brand-logo-width-desktop);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(2rem, 3vw, 3.6rem);
}

.site-nav__link {
  position: relative;
  font-size: 0.7rem;
  line-height: 1.2;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.site-nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav__lang-link,
.site-nav__lang-current {
  font-size: 0.7rem;
  line-height: 1.2;
  letter-spacing: 0.22em;
}

.site-nav__lang-sep {
  font-size: 0.7rem;
  line-height: 1.2;
  opacity: 0.4;
}

.site-nav__lang-link {
  opacity: 0.55;
  transition: opacity 180ms ease;
}

.site-nav__lang-link:hover,
.site-nav__lang-link:focus-visible {
  opacity: 1;
}

.site-nav__lang-current {
  opacity: 1;
}

.site-menu-toggle {
  display: none;
  position: relative;
  z-index: 3;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--copy-color);
  cursor: pointer;
}

.site-menu-toggle span {
  position: absolute;
  left: 0.45rem;
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.site-menu-toggle span:nth-child(1) {
  top: 0.8rem;
}

.site-menu-toggle span:nth-child(2) {
  top: 1.18rem;
}

.site-menu-toggle span:nth-child(3) {
  top: 1.56rem;
}

.site-header.is-menu-open .site-menu-toggle span:nth-child(1) {
  transform: translateY(0.38rem) rotate(45deg);
}

.site-header.is-menu-open .site-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .site-menu-toggle span:nth-child(3) {
  transform: translateY(-0.38rem) rotate(-45deg);
}

.home-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 4rem;
}

.home-hero {
  flex: 1;
}

.desktop-fragments {
  display: block;
}

.home-simple {
  display: grid;
  grid-template-columns: minmax(15rem, 21vw) minmax(0, 1fr);
  align-items: end;
  column-gap: clamp(2.5rem, 5vw, 5rem);
  width: min(80vw, 100%);
  min-height: clamp(29rem, 58vh, 35rem);
  margin: 0 auto;
  padding-top: clamp(0.45rem, 1.8vh, 1rem);
}

.home-simple__copy {
  max-width: min(100%, 26rem);
  margin-top: 0;
  text-align: left;
}

.home-simple__copy p {
  margin: 0 0 1rem;
  font-size: var(--editorial-copy-size-desktop);
  line-height: 1.24;
  letter-spacing: 0.005em;
}

.home-simple__copy p:last-child {
  margin-bottom: 0;
}

.hero-media {
  width: 100%;
  max-width: clamp(21rem, 24vw, 28rem);
  height: auto;
  margin: 0;
  overflow: hidden;
  background: var(--muted-surface);
  aspect-ratio: 1 / 1;
}

.hero-media.is-empty {
  background:
    linear-gradient(145deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.08)),
    var(--muted-surface);
}

.hero-media--desktop {
  max-width: 100%;
  aspect-ratio: auto;
}

.hero-media__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media--desktop .hero-media__image {
  height: auto;
  object-fit: contain;
}

.home-mobile-copy {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: auto auto auto minmax(0, 1fr);
  align-items: flex-end;
  width: min(80vw, 100%);
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  margin: clamp(1.5rem, 3vh, 2.5rem) auto 0;
  padding-top: 0.5rem;
  font-size: clamp(0.58rem, 0.34vw + 0.28rem, 0.68rem);
  line-height: 1.5;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.home-page .site-footer {
  margin: clamp(0.75rem, 1.8vh, 1.2rem) auto 0;
}

.site-footer p,
.site-footer a {
  margin: 0;
}

.site-footer__brand,
.site-footer__email,
.site-footer__phone {
  white-space: nowrap;
  justify-self: start;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
}

.site-footer__brand-logo {
  display: block;
  width: var(--footer-logo-width-desktop);
  height: auto;
}

.site-footer__copyright {
  max-width: none;
  justify-self: end;
  text-align: right;
}

.site-footer__copyright--mobile {
  display: none;
}

.site-nav__link--home-about {
  display: none;
}

.series-page__inner {
  position: relative;
}

.series-showcase {
  flex: 1;
  display: flex;
}

.series-showcase__stage {
  flex: 1;
  max-width: min(84%, 62rem);
  min-height: 0;
  margin: 0 auto;
}

.series-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  gap: clamp(1.5rem, 3vh, 2.25rem) clamp(1.1rem, 1.8vw, 1.75rem);
  align-items: start;
}

.series-card {
  position: relative;
}

.series-card--1 {
  grid-column: 1;
  grid-row: 1;
  transform: translateY(0);
}

.series-card--2 {
  grid-column: 2;
  grid-row: 1;
  transform: translateY(1.3rem);
}

.series-card--3 {
  grid-column: 3;
  grid-row: 1;
  transform: translateY(0.2rem);
}

.series-card--4 {
  grid-column: 4;
  grid-row: 1;
  transform: translateY(2rem);
}

.series-card--5 {
  grid-column: 5;
  grid-row: 1;
  transform: translateY(0.7rem);
}

.series-card--6 {
  grid-column: 1;
  grid-row: 2;
  transform: translateY(0.5rem);
}

.series-card--7 {
  grid-column: 2;
  grid-row: 2;
  transform: translateY(1.5rem);
}

.series-card--8 {
  grid-column: 3;
  grid-row: 2;
  transform: translateY(-0.5rem);
}

.series-card--9 {
  grid-column: 4;
  grid-row: 2;
  transform: translateY(1.1rem);
}

.series-card--10 {
  grid-column: 5;
  grid-row: 2;
  transform: translateY(1.8rem);
}

.series-card__link {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
}

.series-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition:
    background 280ms ease,
    opacity 280ms ease;
  pointer-events: none;
}

.series-card__media-frame {
  width: 100%;
  overflow: hidden;
  background: var(--muted-surface);
}

.series-card__media-frame--empty {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(145deg, rgba(17, 17, 17, 0.03), rgba(17, 17, 17, 0.08)),
    var(--muted-surface);
}

.series-card__media {
  display: block;
  width: 100%;
  height: auto;
  transition:
    opacity 280ms ease,
    filter 280ms ease;
}

.series-card__media--video {
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.series-card--6 .series-card__media--video {
  aspect-ratio: 1 / 1;
}

@media (hover: hover) {
  .series-card__link:hover .series-card__media,
  .series-card__link:focus-visible .series-card__media {
    opacity: 0.38;
    filter: saturate(0.85);
  }

  .series-card__link:hover::after,
  .series-card__link:focus-visible::after {
    background: rgba(255, 255, 255, 0.32);
  }
}

.series-detail {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.series-detail__content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 28rem);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  width: min(100%, 1200px);
  margin: 0 auto;
}

.series-detail__back {
  grid-column: 1 / -1;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.series-detail__frame {
  min-height: clamp(22rem, 56vh, 38rem);
}

.series-detail__frame .series-card__media-frame {
  height: 100%;
}

.series-detail__copy {
  max-width: 24rem;
}

.series-detail__eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.series-detail__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.series-detail__text,
.series-detail__empty p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.series-detail__empty {
  width: 100%;
  padding: 4rem 0;
}

.series-one-page .site-nav__link--series-one-about {
  display: none;
}

.series-one {
  flex: 1 0 auto;
}

.series-one__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.series-one__video-frame,
.series-one__mobile-video-frame {
  margin: 0;
  overflow: hidden;
  line-height: 0;
  background: transparent;
}

.series-one__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.series-one__video-frame--desktop {
  display: block;
  width: min(80vw, 100%);
  margin: clamp(0.5rem, 2vh, 1.25rem) 0 0;
  aspect-ratio: 20 / 9;
}

.series-one__video--desktop {
  object-fit: cover;
  object-position: center;
}

.series-one__mobile-video-frame {
  display: none;
}

.series-one__copy {
  width: min(80vw, 100%);
  margin: clamp(1.1rem, 2.5vh, 1.8rem) 0 0;
}

.series-one__title {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.series-one__poem {
  margin: 0 0 0.9rem;
  text-align: right;
}

.series-one__poem p {
  margin: 0 0 0.18rem;
  font-size: 15px;
  line-height: 1.5;
}

.series-one__author {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: right;
}

.series-one__body {
  max-width: 70rem;
}

.series-one__body p {
  margin: 0 0 0.75rem;
  font-size: 15px;
  line-height: 1.6;
}

.series-one__body p:last-child {
  margin-bottom: 0;
}

.series-two-page .site-nav__link--series-two-about {
  display: none;
}

.series-two {
  flex: 1 0 auto;
}

.series-two__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(80vw, 100%);
  margin: 0 auto;
}

.series-two__figure {
  width: min(100%, 26rem);
  margin: clamp(0.75rem, 2.2vh, 1.5rem) 0 0;
}

.series-two__image {
  display: block;
  width: 100%;
  height: auto;
}

.series-two__copy {
  width: min(100%, 26rem);
  margin-top: clamp(1.5rem, 3.4vh, 2.35rem);
}

.series-two__title {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.series-two__poem {
  margin: 0 0 0.9rem;
  text-align: right;
}

.series-two__poem p {
  margin: 0 0 0.14rem;
  font-size: 15px;
  line-height: 1.45;
}

.series-two__author {
  margin: 0 0 1.8rem;
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: right;
}

.series-two__body {
  max-width: 100%;
}

.series-two__body p {
  margin: 0 0 0.68rem;
  font-size: 15px;
  line-height: 1.6;
}

.series-two__body p:last-child {
  margin-bottom: 0;
}

.series-six-page .site-nav__link--series-six-about {
  display: none;
}

.series-six {
  flex: 1 0 auto;
}

.series-six__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(80vw, 100%);
  margin: 0 auto;
}

.series-six__figure {
  width: min(100%, 26rem);
  margin: clamp(0.75rem, 2.2vh, 1.5rem) 0 0;
}

.series-six__image {
  display: block;
  width: 100%;
  height: auto;
}

.series-six__copy {
  width: min(100%, 26rem);
  margin-top: clamp(1.5rem, 3.4vh, 2.35rem);
}

.series-six__title {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.series-six__body {
  max-width: 100%;
}

.series-six__body p {
  margin: 0 0 0.68rem;
  font-size: 15px;
  line-height: 1.6;
}

.series-six__body p:last-child {
  margin-bottom: 0;
}

.series-nine-page .site-nav__link--series-nine-about {
  display: none;
}

.series-nine {
  flex: 1 0 auto;
}

.series-nine__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(80vw, 100%);
  margin: 0 auto;
}

.series-nine__figure {
  width: min(46vw, 100%);
  max-width: 38rem;
  margin: clamp(0.75rem, 2.2vh, 1.5rem) 0 0;
}

.series-nine__image {
  display: block;
  width: 100%;
  height: auto;
}

.series-nine__copy {
  width: min(46vw, 100%);
  max-width: 38rem;
  margin-top: clamp(1.5rem, 3.4vh, 2.35rem);
}

.series-nine__title {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.series-nine__body {
  max-width: 100%;
}

.series-nine__body p {
  margin: 0 0 0.68rem;
  font-size: 15px;
  line-height: 1.6;
}

.series-nine__body p:last-child {
  margin-bottom: 0;
}

.series-five-page .site-nav__link--series-five-about {
  display: none;
}

.series-five {
  flex: 1 0 auto;
}

.series-five__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.series-five__video-frame,
.series-five__mobile-video-frame {
  margin: 0;
  overflow: hidden;
  line-height: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.series-five__video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.series-five__video-frame--desktop {
  display: block;
  width: min(38vw, 32rem);
  max-width: 100%;
  margin: clamp(0.5rem, 2vh, 1.25rem) 0 0;
  aspect-ratio: 1 / 1;
}

.series-five__video--desktop,
.series-five__video--mobile {
  object-fit: cover;
  object-position: center;
}

.series-five__mobile-video-frame {
  display: none;
}

.series-five__copy {
  width: min(38vw, 32rem);
  max-width: 100%;
  margin: clamp(1.1rem, 2.5vh, 1.8rem) 0 0;
}

.series-five__title {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.series-five__poem {
  margin: 0 0 0.9rem;
  text-align: right;
}

.series-five__poem p {
  margin: 0 0 0.18rem;
  font-size: 15px;
  line-height: 1.5;
}

.series-five__author {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: right;
}

.series-five__body {
  max-width: 70rem;
}

.series-five__body p {
  margin: 0 0 0.75rem;
  font-size: 15px;
  line-height: 1.6;
}

.series-five__body p:last-child {
  margin-bottom: 0;
}

.series-three-page .site-nav__link--series-three-about {
  display: none;
}

.series-three {
  flex: 1 0 auto;
}

.series-three__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(80vw, 100%);
  margin: 0 auto;
}

.series-three__gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  gap: clamp(0.75rem, 1vw, 1.25rem);
  align-items: start;
}

.series-three__item {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 4 / 5;
}

.series-three__trigger,
.series-four__trigger,
.series-seven__trigger,
.series-eight__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.series-three__trigger:focus-visible,
.series-four__trigger:focus-visible,
.series-seven__trigger:focus-visible,
.series-eight__trigger:focus-visible {
  outline: 1px solid #1227ff;
  outline-offset: 0.3rem;
}

.series-three__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.series-three__media--video {
  object-fit: cover;
}

.series-three__copy {
  width: 100%;
  margin-top: clamp(1.8rem, 4vh, 2.6rem);
}

.series-three__title {
  margin: 0 0 0.95rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.series-three__poem {
  margin: 0 0 1rem;
  text-align: right;
}

.series-three__poem p {
  margin: 0 0 0.14rem;
  font-size: 15px;
  line-height: 1.45;
}

.series-three__author {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: right;
}

.series-ten {
  flex: 1 0 auto;
}

.series-ten__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(80vw, 100%);
  margin: 0 auto;
}

.series-ten__gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 40rem);
  gap: 1.1rem 0.6rem;
  align-items: start;
  justify-content: center;
  margin: 0 auto;
}

.series-ten__item {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
}

.series-ten__item--wide {
  grid-column: span 2;
}

.series-ten__title {
  width: min(100%, 40rem);
  margin: clamp(1.75rem, 3.5vh, 2.75rem) auto 0;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
}

.series-ten__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.series-ten__trigger:focus-visible {
  outline: 1px solid #1227ff;
  outline-offset: 0.3rem;
}

.series-ten__media {
  display: block;
  width: 100%;
  height: auto;
  background: #ffffff;
}

.series-four-page .site-nav__link--series-four-about {
  display: none;
}

.series-four {
  flex: 1 0 auto;
}

.series-four__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(80vw, 100%);
  margin: 0 auto;
}

.series-four__gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  gap: 2px;
}

.series-four__item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #ffffff;
}

.series-four__item--7 {
  grid-column: 1;
  grid-row: 2;
}

.series-four__item--8 {
  grid-column: 2;
  grid-row: 2;
}

.series-four__item--9 {
  grid-column: 3;
  grid-row: 2;
}

.series-four__item--10 {
  grid-column: 4;
  grid-row: 2;
}

.series-four__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.series-four__copy {
  width: 100%;
  margin-top: 1rem;
}

.series-four__title {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.series-four__body p {
  margin: 0 0 0.72rem;
  font-size: 15px;
  line-height: 1.58;
}

.series-four__body p:last-child {
  margin-bottom: 0;
}

.series-seven-page .site-nav__link--series-seven-about {
  display: none;
}

.series-seven {
  flex: 1 0 auto;
}

.series-seven__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(80vw, 100%);
  margin: 0 auto;
}

.series-seven__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.5rem);
  align-items: start;
  width: 100%;
}

.series-seven__item {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 5 / 6;
}

.series-seven__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.series-seven__copy {
  width: 100%;
  margin-top: clamp(1.2rem, 3vh, 1.75rem);
}

.series-seven__title {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.series-seven__body p {
  margin: 0 0 0.72rem;
  font-size: 15px;
  line-height: 1.58;
}

.series-seven__body p:last-child {
  margin-bottom: 0;
}

.series-eight-page .site-nav__link--series-eight-about {
  display: none;
}

.series-eight {
  flex: 1 0 auto;
}

.series-eight__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(80vw, 100%);
  margin: 0 auto;
}

.series-eight__gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 51rem);
  gap: 0.18rem;
  align-items: start;
  justify-content: center;
}

.series-eight__item {
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 1 / 1;
}

.series-eight__item--1 {
  grid-column: 1;
  grid-row: 1;
}

.series-eight__item--2 {
  grid-column: 2;
  grid-row: 1;
}

.series-eight__item--3 {
  grid-column: 3;
  grid-row: 1;
}

.series-eight__item--4 {
  grid-column: 4;
  grid-row: 1;
}

.series-eight__item--5 {
  grid-column: 1;
  grid-row: 2;
}

.series-eight__item--6 {
  grid-column: 2;
  grid-row: 2;
}

.series-eight__item--7 {
  grid-column: 3;
  grid-row: 2;
}

.series-eight__item--8 {
  grid-column: 4;
  grid-row: 2;
}

.series-eight__item--9 {
  grid-column: 1;
  grid-row: 3;
}

.series-eight__item--10 {
  grid-column: 2;
  grid-row: 3;
}

.series-eight__item--11 {
  grid-column: 3;
  grid-row: 3;
}

.series-eight__item--12 {
  grid-column: 4;
  grid-row: 3;
}

.series-eight__item--13 {
  grid-column: 5;
  grid-row: 3;
}

.series-eight__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ffffff;
}

.series-eight__copy {
  width: min(100%, 51rem);
  margin-top: clamp(1.6rem, 4vh, 2.3rem);
}

.series-eight__intro {
  width: min(100%, 51rem);
}

.series-eight__title {
  margin: 0 0 0.9rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.series-eight__poem {
  margin: 0;
  text-align: right;
}

.series-eight__poem p {
  margin: 0;
  font-size: 15px;
  line-height: 1.36;
}

.series-eight__body {
  width: 100%;
  margin-top: 1.8rem;
}

.series-eight__body p {
  margin: 0 0 0.72rem;
  font-size: 15px;
  line-height: 1.58;
}

.series-eight__body p:last-child {
  margin-bottom: 0;
}

.series-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10020;
}

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

.series-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.series-gallery-lightbox__dialog {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(96vw, 92rem);
  height: min(90vh, 52rem);
  margin: 5vh auto;
  padding: 2.5rem 4.5rem;
}

.series-gallery-lightbox__viewport {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.series-gallery-lightbox__media {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.series-gallery-lightbox__media--video {
  width: 100%;
  height: 100%;
}

.series-gallery-lightbox__arrow,
.series-gallery-lightbox__close {
  position: absolute;
  z-index: 1;
  border: 0;
  background: transparent;
  color: #111111;
  cursor: pointer;
}

.series-gallery-lightbox__arrow {
  top: 50%;
  transform: translateY(-50%);
  padding: 0.25rem 0.5rem;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1;
}

.series-gallery-lightbox__arrow--prev {
  left: 0.6rem;
}

.series-gallery-lightbox__arrow--next {
  right: 0.6rem;
}

.series-gallery-lightbox__close {
  top: 0.35rem;
  right: 1rem;
  padding: 0.15rem 0.35rem;
  font-size: 2rem;
  line-height: 1;
}

.series-gallery-lightbox__arrow:focus-visible,
.series-gallery-lightbox__close:focus-visible {
  outline: 1px solid #111111;
  outline-offset: 0.2rem;
}

.about-page__inner {
  position: relative;
}

.about-mobile {
  display: none;
}

.about-layout {
  flex: 1 0 auto;
  display: grid;
  grid-template-columns: minmax(13.75rem, 14.75rem) minmax(0, 1fr);
  grid-template-areas:
    "media title"
    "media bio";
  align-items: start;
  column-gap: clamp(2.2rem, 4.6vw, 4.4rem);
  row-gap: clamp(0.8rem, 1.8vh, 1.25rem);
  width: min(80vw, 100%);
  margin: clamp(2.25rem, 7vh, 4.75rem) auto 0;
}

.about-layout__title {
  grid-area: title;
  margin: 0;
  font-size: clamp(1.9rem, 2.4vw, 2.7rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.about-layout__media {
  grid-area: media;
  display: grid;
  gap: 1.2rem;
  align-content: start;
  padding-top: 0;
}

.about-layout__figure {
  margin: 0;
}

.about-layout__image {
  display: block;
  width: 100%;
  height: auto;
}

.about-layout__bio {
  grid-area: bio;
  max-width: min(100%, 57rem);
}

.about-layout__text {
  font-size: 15px;
  line-height: 1.86;
  color: #111111;
}

.about-layout__text p {
  margin: 0 0 0.9rem;
}

.about-layout__text p:nth-child(-n + 3) {
  margin-bottom: 0.52rem;
}

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

.about-press {
  margin-top: 0;
}

.about-press__title {
  margin: 0 0 1.2rem;
  font-size: clamp(1.85rem, 2.2vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.about-press__links {
  display: grid;
  justify-items: start;
  gap: 0.75rem;
}

.about-press__link {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111111;
  font: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.about-mobile__intro,
.about-mobile__copy,
.about-mobile__text-group,
.about-mobile__press-links {
  display: grid;
}

.about-mobile__figure {
  margin: 0;
}

.about-mobile__image {
  display: block;
  width: 100%;
  height: auto;
}

.contact-page__inner {
  position: relative;
}

.contact-layout {
  position: relative;
  flex: 1 0 auto;
  padding: clamp(2.5rem, 10vh, 6.5rem) 0 clamp(2rem, 5vh, 3.5rem);
}

.contact-layout__stack {
  width: min(100%, 31rem);
  margin: 0 auto;
}

.contact-layout__intro {
  display: grid;
  gap: 0.3rem;
  margin-bottom: clamp(3rem, 8vh, 4.8rem);
  color: #111111;
}

.contact-layout__title {
  margin: 0 0 0.4rem;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-layout__detail {
  font-size: clamp(1rem, 0.7vw + 0.55rem, 1.28rem);
  line-height: 1.28;
}

.contact-form {
  width: 100%;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 4.9rem minmax(0, 20rem);
  align-items: center;
  column-gap: clamp(1rem, 2vw, 1.8rem);
  margin-bottom: 1.25rem;
}

.contact-form__row--message {
  align-items: start;
  margin-bottom: 0.9rem;
}

.contact-form__label {
  display: block;
  padding-top: 0.08rem;
  font-size: 0.9rem;
  line-height: 1.2;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0 0 0.32rem;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.82);
  border-radius: 0;
  background: transparent;
  color: #111111;
  font: inherit;
  font-size: 0.98rem;
  appearance: none;
}

.contact-form__input:focus-visible,
.contact-form__textarea:focus-visible {
  outline: none;
  border-bottom-color: #1227ff;
}

.contact-form__textarea {
  min-height: 11rem;
  resize: vertical;
  line-height: 2.2rem;
  border-bottom: 0;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(2.2rem - 1px),
    rgba(17, 17, 17, 0.82) calc(2.2rem - 1px),
    rgba(17, 17, 17, 0.82) 2.2rem
  );
  background-size: 100% 2.2rem;
}

.contact-form__textarea:focus-visible {
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(2.2rem - 1px),
    #1227ff calc(2.2rem - 1px),
    #1227ff 2.2rem
  );
}

.contact-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.9rem;
}

.contact-form__submit {
  padding: 0;
  border: 0;
  background: transparent;
  color: #111111;
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-form__submit:disabled {
  cursor: default;
  opacity: 0.5;
}

.contact-form__honey {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  color: #1227ff;
  outline: none;
}

.contact-form__status {
  margin: 0.95rem 0 0;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.contact-page__wordmark {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  margin: 0;
  color: #1227ff;
  font-size: clamp(4rem, 8vw, 6.6rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 0.9;
  pointer-events: none;
  text-transform: uppercase;
}

.about-press__link {
  font-size: 0.68rem;
}

.contact-layout__detail {
  font-size: clamp(0.76rem, 0.34vw + 0.5rem, 0.92rem);
  line-height: 1.22;
}

.contact-form__label {
  font-size: 0.68rem;
}

.contact-form__input,
.contact-form__textarea {
  font-size: 0.74rem;
}

@media (max-width: 1120px) {
  .series-showcase__stage {
    max-width: min(92%, 72rem);
  }

  .about-layout {
    grid-template-columns: minmax(12.5rem, 14rem) minmax(0, 1fr);
    column-gap: clamp(1.7rem, 3.8vw, 3rem);
  }

  .about-layout__bio {
    max-width: min(100%, 50rem);
  }

  .contact-layout {
    padding-bottom: clamp(7rem, 15vw, 10rem);
  }
}

@media (max-width: 900px) {
  .intro__video {
    display: none;
  }

  .intro__image-mobile {
    display: block;
  }

  .intro__logo-frame {
    top: var(--intro-logo-mobile-top);
    right: auto;
    left: 50%;
    width: var(--intro-logo-mobile-width);
    max-width: calc(100vw - 3rem);
    transform: translate(-50%, -50%);
  }

  .intro__logo {
    max-height: 16vh;
  }

  .home-page__inner {
    padding: 1.1rem 1.15rem 1.75rem;
  }

  .site-header {
    align-items: center;
    width: 100%;
    margin: 0 0 1.6rem;
    z-index: 1000;
  }

  .site-brand {
    font-size: 0;
  }

  .site-brand__logo {
    width: var(--brand-logo-width-mobile);
  }

  .site-menu-toggle {
    display: block;
    margin-left: auto;
    z-index: 1002;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    z-index: 1001;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    min-width: 12rem;
    padding: 1rem 1.1rem;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
  }

  .site-nav__link {
    font-size: 0.74rem;
  }

  .site-nav__lang-link,
  .site-nav__lang-current {
    font-size: 0.74rem;
  }

  .site-nav__link--home-about {
    display: inline-block;
  }

  .series-one-page .site-nav__link--series-one-about {
    display: inline-block;
  }

  .desktop-fragments {
    display: none;
  }

  .mobile-story {
    display: block;
  }

  .series-showcase {
    display: block;
  }

  .series-showcase__stage {
    width: 100%;
    min-height: 0;
  }

  .series-gallery {
    --series-mobile-column-gap: 0.7rem;
    --series-mobile-row-gap: 1.45rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 20rem);
    min-height: 0;
    margin: 0 auto;
    column-gap: var(--series-mobile-column-gap);
    row-gap: var(--series-mobile-row-gap);
  }

  .series-card--1,
  .series-card--2,
  .series-card--3,
  .series-card--4,
  .series-card--5,
  .series-card--6,
  .series-card--7,
  .series-card--8,
  .series-card--9,
  .series-card--10 {
    transform: none;
  }

  .series-card--1 {
    grid-column: 1;
    grid-row: 1;
  }

  .series-card--2 {
    grid-column: 2;
    grid-row: 1;
  }

  .series-card--3 {
    grid-column: 1;
    grid-row: 2;
  }

  .series-card--4 {
    grid-column: 2;
    grid-row: 2;
  }

  .series-card--5 {
    grid-column: 1;
    grid-row: 3;
  }

  .series-card--6 {
    grid-column: 2;
    grid-row: 3;
  }

  .series-card--7 {
    grid-column: 1;
    grid-row: 4;
  }

  .series-card--8 {
    grid-column: 2;
    grid-row: 4;
  }

  .series-card--9 {
    grid-column: 1;
    grid-row: 5;
  }

  .series-card--10 {
    grid-column: 2;
    grid-row: 5;
  }

  .series-detail {
    display: block;
    padding: 0;
  }

  .series-detail__content {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .series-detail__frame {
    min-height: 0;
  }

  .series-detail__copy {
    max-width: none;
  }

  .series-one__mobile-video-frame {
    display: block;
    width: 100%;
    margin: 0 0 1.6rem;
    aspect-ratio: 9 / 16;
    background: #000000;
  }

  .series-one__video-frame--desktop {
    display: none;
  }

  .series-one__copy {
    width: 100%;
    margin-top: 0;
  }

  .series-one__title {
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
  }

  .series-one__poem {
    margin-bottom: 1rem;
  }

  .series-one__poem p {
    font-size: 15px;
  }

  .series-one__author {
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
  }

  .series-one__body p {
    font-size: 15px;
    line-height: 1.78;
  }

  .series-two-page .site-nav__link--series-two-about {
    display: inline-block;
  }

  .series-two__stage {
    width: 100%;
  }

  .series-two__figure {
    width: 100%;
    max-width: 26rem;
    margin-top: 0;
  }

  .series-two__copy {
    width: 100%;
    max-width: 26rem;
    margin-top: 1.6rem;
  }

  .series-two__title {
    margin-bottom: 1rem;
    font-size: 0.8rem;
  }

  .series-two__poem {
    margin-bottom: 0.95rem;
  }

  .series-two__poem p {
    font-size: 15px;
  }

  .series-two__author {
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
  }

  .series-two__body p {
    font-size: 15px;
    line-height: 1.78;
  }

  .series-six-page .site-nav__link--series-six-about {
    display: inline-block;
  }

  .series-six__stage {
    width: 100%;
  }

  .series-six__figure {
    width: 100%;
    max-width: 26rem;
    margin-top: 0;
  }

  .series-six__copy {
    width: 100%;
    max-width: 26rem;
    margin-top: 1.6rem;
  }

  .series-six__title {
    margin-bottom: 1rem;
    font-size: 0.8rem;
  }

  .series-six__body p {
    font-size: 15px;
    line-height: 1.78;
  }

  .series-nine-page .site-nav__link--series-nine-about {
    display: inline-block;
  }

  .series-nine__stage {
    width: 100%;
  }

  .series-nine__figure {
    width: 100%;
    max-width: 28rem;
    margin-top: 0;
  }

  .series-nine__copy {
    width: 100%;
    max-width: 28rem;
    margin-top: 1.6rem;
  }

  .series-nine__title {
    margin-bottom: 1rem;
    font-size: 0.8rem;
  }

  .series-nine__body p {
    font-size: 15px;
    line-height: 1.78;
  }

  .series-five-page .site-nav__link--series-five-about {
    display: inline-block;
  }

  .series-five__stage {
    width: 100%;
  }

  .series-five__mobile-video-frame {
    display: block;
    width: 100%;
    max-width: 28rem;
    margin: 0 0 1.6rem;
    aspect-ratio: 1 / 1;
  }

  .series-five__video-frame--desktop {
    display: none;
  }

  .series-five__copy {
    width: 100%;
    max-width: 28rem;
    margin-top: 0;
  }

  .series-five__title {
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
  }

  .series-five__poem {
    margin-bottom: 1rem;
  }

  .series-five__poem p {
    font-size: 15px;
  }

  .series-five__author {
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
  }

  .series-five__body p {
    font-size: 15px;
    line-height: 1.78;
  }

  .series-three-page .site-nav__link--series-three-about {
    display: inline-block;
  }

  .series-three__stage {
    width: 100%;
  }

  .series-three__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .series-three__copy {
    margin-top: 1.6rem;
  }

  .series-three__title {
    margin-bottom: 1rem;
    font-size: 0.8rem;
  }

  .series-three__poem {
    margin-bottom: 1rem;
  }

  .series-three__poem p {
    font-size: 15px;
  }

  .series-three__author {
    font-size: 0.9rem;
  }

  .series-four-page .site-nav__link--series-four-about {
    display: inline-block;
  }

  .series-ten__stage {
    width: 100%;
  }

  .series-ten__gallery {
    width: min(100%, 24rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 0.6rem;
  }

  .series-ten__item {
    transform: none;
  }

  .series-ten__title {
    width: 100%;
  }

  .series-four__stage {
    width: 100%;
  }

  .series-four__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .series-four__item--7,
  .series-four__item--8,
  .series-four__item--9,
  .series-four__item--10 {
    grid-column: auto;
    grid-row: auto;
  }

  .series-four__copy {
    margin-top: 1.4rem;
  }

  .series-four__title {
    margin-bottom: 1rem;
    font-size: 0.8rem;
  }

  .series-four__body p {
    font-size: 15px;
    line-height: 1.76;
  }

  .series-seven-page .site-nav__link--series-seven-about {
    display: inline-block;
  }

  .series-seven__stage {
    width: 100%;
  }

  .series-seven__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .series-seven__item {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  .series-seven__copy {
    margin-top: 1.4rem;
  }

  .series-seven__title {
    margin-bottom: 1rem;
    font-size: 0.8rem;
  }

  .series-seven__body p {
    font-size: 15px;
    line-height: 1.76;
  }

  .series-eight-page .site-nav__link--series-eight-about {
    display: inline-block;
  }

  .series-eight__stage {
    width: 100%;
  }

  .series-eight__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.75rem;
  }

  .series-eight__item {
    grid-column: auto;
    grid-row: auto;
  }

  .series-eight__item--13 {
    grid-column: 1 / -1;
  }

  .series-eight__copy {
    margin-top: 1.4rem;
  }

  .series-eight__intro {
    width: 100%;
  }

  .series-eight__title {
    margin-bottom: 1rem;
    font-size: 0.8rem;
  }

  .series-eight__poem p,
  .series-eight__body p {
    font-size: 15px;
    line-height: 1.72;
  }

  .series-gallery-lightbox__dialog {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 3.25rem 2.8rem 2.2rem;
  }

  .series-gallery-lightbox__arrow {
    font-size: 2.4rem;
  }

  .series-gallery-lightbox__arrow--prev {
    left: 0.45rem;
  }

  .series-gallery-lightbox__arrow--next {
    right: 0.45rem;
  }

  .series-gallery-lightbox__close {
    top: 0.75rem;
    right: 0.8rem;
  }

  .about-layout {
    display: none;
  }

  .about-mobile {
    display: block;
    width: 100%;
    margin-top: 0.15rem;
  }

  .about-mobile__intro {
    grid-template-columns: minmax(0, 1fr) 5.1rem;
    align-items: start;
    column-gap: 1rem;
    margin-bottom: 1rem;
  }

  .about-mobile__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1;
    text-transform: uppercase;
  }

  .about-mobile__figure--portrait {
    width: 5.1rem;
  }

  .about-mobile__copy {
    gap: 0.95rem;
  }

  .about-mobile__text-group {
    gap: 0.55rem;
  }

  .about-mobile__text-group p {
    margin: 0;
    font-size: 15px;
    line-height: 1.95;
  }

  .about-mobile__figure--exhibition,
  .about-mobile__figure--group,
  .about-mobile__figure--poster {
    width: min(100%, 10rem);
  }

  .about-mobile__press {
    margin-top: 1.15rem;
  }

  .about-mobile__press-title {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1;
    text-transform: uppercase;
  }

  .about-mobile__press-links {
    gap: 1.05rem;
  }

  .about-mobile__press-link {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111111;
    font: inherit;
    font-size: 0.54rem;
    letter-spacing: 0;
    line-height: 1.35;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
  }

  .contact-layout {
    padding: 0.55rem 0 0;
  }

  .contact-layout__stack {
    width: 100%;
    margin: 0;
  }

  .contact-layout__intro {
    margin-bottom: 2rem;
  }

  .contact-layout__title {
    font-size: clamp(2.3rem, 12vw, 3.25rem);
  }

  .contact-layout__detail {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin-bottom: 1.05rem;
  }

  .contact-form__row--message {
    margin-bottom: 0.8rem;
  }

  .contact-form__label {
    padding-top: 0;
  }

  .contact-form__input,
  .contact-form__textarea {
    font-size: 0.88rem;
  }

  .contact-form__textarea {
    min-height: 9.6rem;
    line-height: 1.95rem;
    background-image: repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent calc(1.95rem - 1px),
      rgba(17, 17, 17, 0.82) calc(1.95rem - 1px),
      rgba(17, 17, 17, 0.82) 1.95rem
    );
    background-size: 100% 1.95rem;
  }

  .contact-form__textarea:focus-visible {
    background-image: repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent calc(1.95rem - 1px),
      #1227ff calc(1.95rem - 1px),
      #1227ff 1.95rem
    );
  }

  .contact-form__actions {
    justify-content: flex-start;
    margin-top: 0.65rem;
  }

  .contact-form__status {
    font-size: 0.8rem;
  }

  .contact-page__wordmark {
    position: static;
    margin-top: 2.8rem;
    font-size: clamp(2.8rem, 15vw, 4.6rem);
    line-height: 0.95;
    text-align: left;
  }

  .hero-media--mobile {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: auto;
  }

  .hero-media--mobile .hero-media__image {
    height: auto;
    object-fit: contain;
  }

  .home-mobile-copy__text {
    margin-top: 1.5rem;
    font-size: 15px;
    line-height: 1.88;
    letter-spacing: 0.01em;
  }

  .home-mobile-copy__text p {
    margin: 0 0 1.2rem;
  }

  .home-mobile-copy__text p:last-child {
    margin-bottom: 0;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 16.5rem);
    justify-items: center;
    margin: 3rem auto 0;
    gap: 0.18rem;
    padding-top: 0;
    font-size: 0.74rem;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    white-space: normal;
  }

  .site-footer__brand,
  .site-footer__email,
  .site-footer__phone,
  .site-footer__copyright {
    display: block;
    width: 100%;
    justify-self: center;
    align-self: center;
    white-space: normal;
  }

  .site-footer__brand,
  .site-footer__copyright--desktop {
    display: none;
  }

  .site-footer__email,
  .site-footer__phone,
  .site-footer__copyright {
    text-align: center;
  }

  .site-footer__email {
    font-size: 0.74rem;
    padding: 0.5rem 0;
  }

  .site-footer__phone {
    font-size: 0.84rem;
    line-height: 1.14;
    padding: 0.5rem 0;
  }

  .site-footer__copyright--mobile {
    display: block;
  }

  .site-footer__copyright {
    margin-left: 0;
    max-width: none;
    text-align: center;
  }
}

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

  .intro,
  .site-main,
  .site-nav__link::after,
  .site-menu-toggle span {
    transition-duration: 1ms;
  }
}
