:root {
  --ink: #171112;
  --ink-deep: #0d090a;
  --paper: #eee8dc;
  --paper-light: #f8f4ec;
  --red: #8f1f2c;
  --red-bright: #bd3340;
  --muted: #8d8580;
  --line: rgba(23, 17, 18, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
  --sans: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --shell: min(1180px, calc(100% - 80px));
}

/* Gallery archive page */
.gallery-page-hero {
  position: relative;
  display: grid;
  min-height: 76svh;
  color: #fff;
  background: #100a0c;
  overflow: hidden;
  place-items: end stretch;
}

.gallery-page-hero__media,
.gallery-page-hero__veil {
  position: absolute;
  inset: 0;
}

.gallery-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.gallery-page-hero__veil {
  background:
    linear-gradient(90deg, rgba(10, 6, 8, 0.94) 0%, rgba(10, 6, 8, 0.62) 45%, rgba(10, 6, 8, 0.2) 78%),
    linear-gradient(0deg, rgba(10, 6, 8, 0.78), transparent 58%);
}

.gallery-page-hero__content {
  position: relative;
  z-index: 1;
  padding-block: 180px 90px;
}

.gallery-page-hero__kicker {
  margin: 44px 0 20px;
  color: #d8878f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gallery-page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 1.15;
}

.gallery-page-hero__content > p:last-child {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.gallery-intro {
  background: var(--paper);
}

.gallery-intro__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: start;
}

.gallery-intro h2 {
  margin: 22px 0 12px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.3;
}

.gallery-intro__en {
  margin: 0;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.gallery-intro__copy {
  padding-top: 44px;
  color: #5f5854;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  line-height: 2.15;
}

.gallery-intro__copy p {
  margin: 0 0 1.2em;
}

.gallery-intro__copy .text-link {
  margin-top: 22px;
}

.gallery-archive {
  padding-block: 40px 130px;
  color: #fff;
  background: #100b0c;
}

.gallery-chapter {
  padding-block: 92px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-chapter:first-child {
  border-top: 0;
}

.gallery-chapter__header {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: baseline;
  margin-bottom: 44px;
}

.gallery-chapter__header p {
  margin: 0;
  color: #d8878f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gallery-chapter__header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.14em;
}

.gallery-photos {
  columns: 3 280px;
  column-gap: 16px;
}

.gallery-photo {
  margin: 0 0 16px;
  background: #080506;
  break-inside: avoid;
  overflow: hidden;
}

.gallery-photo a {
  display: block;
  overflow: hidden;
}

.gallery-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.86);
  transition: filter 0.35s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-photo a:hover img,
.gallery-photo a:focus-visible img {
  filter: brightness(1.08) saturate(1.05);
  transform: scale(1.025);
}

.gallery-photo a:focus-visible {
  outline: 2px solid #d8878f;
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .gallery-intro__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-intro__copy {
    max-width: 650px;
    padding-top: 12px;
  }

  .gallery-chapter__header {
    grid-template-columns: 100px 1fr;
  }
}

@media (max-width: 600px) {
  .gallery-page-hero {
    min-height: 66svh;
  }

  .gallery-page-hero__media img {
    object-position: 58% center;
  }

  .gallery-page-hero__veil {
    background: linear-gradient(0deg, rgba(10, 6, 8, 0.95), rgba(10, 6, 8, 0.22));
  }

  .gallery-page-hero__content {
    padding-block: 130px 54px;
  }

  .gallery-page-hero__kicker {
    margin-top: 34px;
  }

  .gallery-page-hero h1 {
    font-size: 3.2rem;
  }

  .gallery-archive {
    padding-block: 10px 80px;
  }

  .gallery-chapter {
    padding-block: 64px;
  }

  .gallery-chapter__header {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }

  .gallery-photos {
    columns: 1;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
  font-family: var(--sans);
  line-height: 1.8;
  font-feature-settings: "palt";
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 8px 16px;
  color: var(--ink);
  background: var(--paper-light);
  transform: translateY(-150%);
}

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

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: 140px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 18px 4vw;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(13, 9, 10, 0.94);
  border-bottom-color: var(--line-light);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  z-index: 52;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.brand__project {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
}

.global-nav {
  display: flex;
  gap: clamp(24px, 3vw, 52px);
  align-items: center;
}

.global-nav a {
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: #fff;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.menu-button {
  position: relative;
  z-index: 52;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 9px;
  width: 26px;
  height: 1px;
  background: #fff;
  transition: transform 0.25s ease, top 0.25s ease;
}

.menu-button span:first-child {
  top: 17px;
}

.menu-button span:last-child {
  top: 26px;
}

.menu-button[aria-expanded="true"] span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  color: #fff;
  background: var(--ink-deep);
  overflow: hidden;
}

.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__image {
  left: 28%;
}

.hero__image img {
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(0.9) contrast(1.03);
}

.hero__veil {
  background:
    linear-gradient(90deg, #0a0708 0%, rgba(10, 7, 8, 0.94) 28%, rgba(10, 7, 8, 0.34) 66%, rgba(10, 7, 8, 0.2) 100%),
    linear-gradient(0deg, rgba(10, 7, 8, 0.68), transparent 35%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.eyebrow {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 44px;
  height: 1px;
  background: var(--red-bright);
}

.hero__title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
}

.hero__role {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  letter-spacing: 0.3em;
}

.hero__name {
  display: block;
  font-size: clamp(4rem, 8.5vw, 8rem);
  letter-spacing: 0.09em;
  text-shadow: 0 8px 45px rgba(0, 0, 0, 0.34);
}

.hero__lead {
  margin: 42px 0 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  letter-spacing: 0.13em;
  line-height: 2;
}

.hero__actions {
  display: flex;
  gap: 34px;
  align-items: center;
  margin-top: 44px;
}

.hero__actions .button {
  width: min(285px, 100%);
}

.button {
  display: inline-flex;
  min-width: 190px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 1px solid currentColor;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

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

.button--light {
  color: var(--ink);
  background: var(--paper-light);
  border-color: var(--paper-light);
}

.button--light:hover,
.button--light:focus-visible {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.button--outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(13, 9, 10, 0.2);
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.button--dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  transition: gap 0.25s ease, color 0.25s ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 25px;
  color: var(--red-bright);
}

.text-link--light {
  color: rgba(255, 255, 255, 0.88);
}

.hero__vertical {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 1.8vw;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 4vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.54);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 78px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
}

.introduction {
  background: var(--paper);
}

.introduction__grid {
  display: grid;
  grid-template-columns: 0.65fr 1.8fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.section-index {
  margin: 0;
  color: #766d69;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-index--light {
  color: rgba(255, 255, 255, 0.48);
}

.section-kicker {
  margin: 0 0 24px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-kicker--light {
  color: #d5a5a9;
}

.statement {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.6;
}

.statement__lead {
  white-space: nowrap;
}

.introduction__copy {
  padding-top: 46px;
}

.introduction__copy p {
  margin: 0 0 38px;
  font-family: var(--serif);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  line-height: 2.2;
}

.section--dark {
  color: #fff;
  background: var(--ink-deep);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 70px;
}

.display-title {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
}

.display-title--ink {
  color: var(--ink);
}

.section-heading__note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--serif);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.section-heading--ink .section-heading__note {
  color: #655d59;
}

.works-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 22px;
}

.work-card {
  position: relative;
  min-height: 330px;
  color: #fff;
  overflow: hidden;
}

.work-card--linked {
  display: block;
}

.work-card--linked:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.work-card--featured {
  grid-row: span 2;
  min-height: 682px;
}

.work-card__image,
.work-card__overlay {
  position: absolute;
  inset: 0;
}

.work-card__image img {
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-card:hover .work-card__image img {
  transform: scale(1.035);
}

.work-card__overlay {
  background: linear-gradient(to top, rgba(8, 5, 6, 0.9), transparent 54%);
}

.work-card__content {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  left: 34px;
}

.work-card__content p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.work-card__content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4.6rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.work-card:not(.work-card--featured) .work-card__content h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.work-card__content span {
  display: block;
  margin-top: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.68rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.work-card--featured .work-card__subtitle {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.75vw, 1.45rem);
  letter-spacing: 0.09em;
  line-height: 1.55;
  text-transform: none;
}

.work-card--featured .work-card__en {
  margin-top: 16px;
}

.work-card__detail-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding-bottom: 3px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.work-card__detail-link i {
  font-style: normal;
  transition: transform 0.25s ease;
}

.work-card--linked:hover .work-card__detail-link,
.work-card--linked:focus-visible .work-card__detail-link {
  color: #fff;
  border-bottom-color: #fff;
}

.work-card--linked:hover .work-card__detail-link i,
.work-card--linked:focus-visible .work-card__detail-link i {
  transform: translateX(5px);
}

.work-card__number {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 26px;
  color: rgba(255, 255, 255, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.work-card--graphic {
  background: #25191c;
}

.work-card--moon {
  background:
    radial-gradient(circle at 72% 35%, rgba(231, 221, 196, 0.85) 0 17%, rgba(231, 221, 196, 0.07) 17.4% 18.5%, transparent 18.8%),
    linear-gradient(135deg, #10131c, #26212d);
}

.work-card--red {
  background:
    repeating-linear-gradient(115deg, transparent 0 29px, rgba(255, 255, 255, 0.045) 30px 31px),
    linear-gradient(135deg, #53131d, #1a0b0e 80%);
}

.work-card--crimson {
  background:
    radial-gradient(circle at 72% 28%, rgba(191, 47, 62, 0.34), transparent 30%),
    repeating-linear-gradient(125deg, transparent 0 48px, rgba(255, 255, 255, 0.035) 49px 50px),
    linear-gradient(145deg, #5f111d, #14090c 74%);
}

.work-card__symbol {
  position: absolute;
  top: 50%;
  right: 10%;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--serif);
  font-size: 10rem;
  line-height: 1;
  transform: translateY(-50%);
}

.section-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.section-footer p {
  margin: 0;
}

.about {
  background: var(--paper-light);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.about__portrait {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.about__portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 9, 10, 0.48), transparent 45%);
  content: "";
}

.about__portrait img {
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.04);
  transform: scale(1.02);
}

.about__portrait > p {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  line-height: 1.5;
  text-align: right;
}

.about__name {
  margin: 4px 0 20px;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 1.2;
}

.about__lead {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: 1.12rem;
  letter-spacing: 0.08em;
  line-height: 2;
}

.about__body {
  max-width: 580px;
  margin: 0;
  color: #5f5854;
  font-size: 0.9rem;
  letter-spacing: 0.045em;
  line-height: 2.2;
}

.about__body p {
  margin: 0;
}

.about__body p + p {
  margin-top: 1.25em;
}

.credentials {
  margin: 44px 0;
  border-top: 1px solid var(--line);
}

.credentials div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.credentials dt {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.credentials dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.japanese-dance-title span,
.japanese-dance-title strong,
.japanese-dance-title small {
  display: block;
}

.japanese-dance-title strong {
  margin-top: 3px;
  font-size: 1.08em;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.japanese-dance-title small {
  margin-top: 9px;
  color: #827772;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.career {
  padding-block: 100px;
  color: #fff;
  background: var(--red);
}

.career .page-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(60px, 7vw, 100px);
}

.career__header h2 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
  white-space: nowrap;
}

.career__header .section-kicker {
  color: rgba(255, 255, 255, 0.66);
}

.career-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.career-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.career-list span {
  color: rgba(255, 255, 255, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
}

.career-list p {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.92rem;
  letter-spacing: 0.07em;
}

.activities {
  background: var(--paper);
}

.activities .display-title {
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
  letter-spacing: 0.08em;
}

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

.activity {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.4fr;
  gap: 40px;
  align-items: center;
  min-height: 170px;
  padding: 32px 34px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.activity::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(23, 17, 18, 0.82);
  content: "";
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.activity:hover::before,
.activity:focus-visible::before {
  transform: translateX(0);
}

.activity > * {
  position: relative;
  z-index: 1;
  transition: color 0.35s ease;
}

.activity:hover > *,
.activity:focus-visible > * {
  color: #fff;
}

.activity:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.activity__en {
  margin: 0;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.activity h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.15em;
}

.activity__detail > p {
  margin: 0;
  color: #655d59;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  line-height: 2;
  transition: color 0.35s ease;
}

.activity:hover .activity__detail > p,
.activity:focus-visible .activity__detail > p {
  color: rgba(255, 255, 255, 0.78);
}

.activity__action {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
  padding-bottom: 2px;
  color: #9f2231;
  border-bottom: 1px solid rgba(159, 34, 49, 0.38);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.activity:hover .activity__action,
.activity:focus-visible .activity__action {
  color: #f2c1c7;
  border-bottom-color: rgba(242, 193, 199, 0.72);
}

.activity__action i {
  font-size: 0.9rem;
  font-style: normal;
  transition: transform 0.25s ease;
}

.activity:hover .activity__action i,
.activity:focus-visible .activity__action i {
  transform: translateX(5px);
}

.activity__number {
  position: absolute;
  right: 34px;
  color: rgba(23, 17, 18, 0.08);
  font-family: var(--serif);
  font-size: 5rem;
}

.gallery {
  position: relative;
  min-height: 100svh;
  color: #fff;
  background: var(--ink-deep);
  overflow: hidden;
}

.gallery__image,
.gallery__shade {
  position: absolute;
  inset: 0;
}

.gallery__image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}

.gallery__shade {
  background:
    linear-gradient(90deg, rgba(8, 5, 6, 0.95) 0%, rgba(8, 5, 6, 0.72) 43%, rgba(8, 5, 6, 0.34) 76%),
    linear-gradient(0deg, rgba(8, 5, 6, 0.92) 0%, transparent 52%);
}

.gallery__content {
  position: relative;
  z-index: 2;
  padding-block: 120px 90px;
}

.gallery__content h2 {
  margin: 28px 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.45;
}

.gallery__lead {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
  margin-top: 52px;
}

.gallery-card {
  position: relative;
  min-height: 310px;
  margin: 0;
  background: #140e0f;
  overflow: hidden;
}

.gallery-card img {
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  transition: filter 0.35s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-card:first-child img {
  object-position: center 42%;
}

.gallery-card--archive img {
  filter: grayscale(1) contrast(1.05);
  object-position: center;
}

.gallery-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.gallery-card--archive:hover img {
  filter: grayscale(0.45) contrast(1.06);
}

.gallery-card::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(to top, rgba(8, 5, 6, 0.9), transparent);
  content: "";
}

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.gallery-card figcaption span,
.gallery-card figcaption small {
  display: block;
}

.gallery-card figcaption span {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.gallery-card figcaption small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}

.gallery__link {
  margin-top: 42px;
}

.updates {
  background: var(--paper-light);
}

.updates__title {
  margin: 22px 0 64px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.external-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.external-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.external-card::before {
  position: absolute;
  z-index: 2;
  top: -60%;
  right: -15%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  transition: transform 0.6s ease;
  pointer-events: none;
}

.external-card > * {
  position: relative;
  z-index: 3;
}

.external-card:hover,
.external-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 22px 45px rgba(13, 9, 10, 0.22);
}

.external-card:hover::before,
.external-card:focus-visible::before {
  transform: scale(1.15);
}

.external-card--accent {
  background: var(--red);
}

.external-card--photo {
  background: var(--ink) url("photo/information-instagram-portrait.jpg") center 25% / cover no-repeat;
}

.external-card--x {
  background: var(--ink) url("photo/information-x-dance-scene.jpg") center / cover no-repeat;
}

.external-card--litlink {
  background: var(--ink) url("photo/information-litlink-stage.jpg") center 78% / cover no-repeat;
}

.external-card--photo::after,
.external-card--x::after,
.external-card--litlink::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 9, 10, 0.28), rgba(13, 9, 10, 0.82));
  content: "";
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.external-card--photo:hover::after,
.external-card--photo:focus-visible::after,
.external-card--x:hover::after,
.external-card--x:focus-visible::after,
.external-card--litlink:hover::after,
.external-card--litlink:focus-visible::after {
  opacity: 0.62;
}

.external-card__label {
  position: absolute;
  top: 34px;
  left: 38px;
  color: rgba(255, 255, 255, 0.6);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.external-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.external-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.external-card i {
  position: absolute;
  right: 36px;
  bottom: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-style: normal;
}

.contact {
  position: relative;
  color: #fff;
  background: #160d0f;
  overflow: hidden;
}

.contact::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(143, 31, 44, 0.38), transparent 32%),
    repeating-linear-gradient(90deg, transparent 0 calc(10% - 1px), rgba(255, 255, 255, 0.025) calc(10% - 1px) 10%);
  content: "";
}

.contact__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact--cta .contact__inner {
  text-align: left;
}

.contact__inner .section-index {
  margin-bottom: 50px;
}

.contact__inner h2,
.contact-page-title {
  margin: 10px 0 30px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.contact__copy {
  margin: 0 0 42px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  line-height: 2;
}

.contact-form-panel {
  width: min(900px, 100%);
  margin: 64px auto 0;
  padding: clamp(24px, 5vw, 56px);
  color: var(--ink);
  background: var(--paper-light);
  text-align: left;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.contact-form-panel__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-form-panel__header > span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form-panel__header p {
  margin: 0;
  color: #6d6560;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.required-mark {
  color: var(--red);
  font-size: 0.8em;
}

.contact-form {
  position: relative;
}

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

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

.form-label {
  display: block;
  margin-bottom: 11px;
  font-family: var(--serif);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
}

.form-control {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  color: var(--ink);
  border: 1px solid #c9c0ba;
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.58);
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-control:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(143, 31, 44, 0.1);
}

.form-select {
  appearance: none;
  padding-right: 46px;
  background-image:
    linear-gradient(45deg, transparent 50%, #5e5551 50%),
    linear-gradient(135deg, #5e5551 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 50%,
    calc(100% - 15px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

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

.form-helper {
  margin: 9px 0 0;
  color: #756d68;
  font-size: 0.72rem;
  line-height: 1.7;
}

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

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: fit-content;
  margin: 34px 0 28px;
  color: #514945;
  font-size: 0.82rem;
  line-height: 1.7;
  cursor: pointer;
}

.privacy-consent input {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  accent-color: var(--red);
}

.privacy-consent a {
  color: var(--red);
  border-bottom: 1px solid rgba(143, 31, 44, 0.35);
}

.contact-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(310px, 100%);
  min-height: 64px;
  padding: 0 25px 0 30px;
  color: #fff;
  border: 1px solid var(--red);
  background: var(--red);
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  color: var(--red);
  background: transparent;
}

.contact-submit i {
  font-size: 1.15rem;
  font-style: normal;
}

.contact__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: 38vw;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.site-footer {
  padding: 70px 0 24px;
  color: #fff;
  background: var(--ink-deep);
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 65px;
}

.site-footer__top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
}

.site-footer__top .site-footer__name {
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.site-footer__links {
  display: flex;
  gap: 34px;
}

.site-footer__links a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.34);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.61rem;
  letter-spacing: 0.12em;
}

.site-footer__bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 960px) {
  :root {
    --shell: min(100% - 48px, 760px);
  }

  .section {
    padding-block: 100px;
  }

  .menu-button {
    display: block;
  }

  .global-nav {
    position: fixed;
    inset: 0;
    z-index: 51;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    padding: 90px 12vw;
    background: rgba(13, 9, 10, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav a {
    font-size: 1.8rem;
  }

  .hero__image {
    left: 0;
  }

  .hero__image img {
    object-position: 61% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(10, 7, 8, 0.88), rgba(10, 7, 8, 0.18)),
      linear-gradient(0deg, rgba(10, 7, 8, 0.85), transparent 55%);
  }

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

  .introduction__copy {
    max-width: 540px;
    padding-top: 0;
  }

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

  .about__portrait {
    min-height: 640px;
  }

  .about__portrait img {
    min-height: 640px;
  }

  .activity {
    grid-template-columns: 0.8fr 0.8fr 1.5fr;
  }

  .career .page-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .site-header {
    min-height: 72px;
    padding-inline: 18px;
  }

  .brand__name {
    font-size: 0.82rem;
  }

  .brand__project {
    font-size: 0.5rem;
  }

  .section {
    padding-block: 82px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__image img {
    object-position: 61% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(8, 5, 6, 0.66), rgba(8, 5, 6, 0.08)),
      linear-gradient(0deg, rgba(8, 5, 6, 0.95) 0%, rgba(8, 5, 6, 0.58) 48%, rgba(8, 5, 6, 0.2) 75%);
  }

  .hero__content {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 220px;
    padding-bottom: 100px;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 0.6rem;
  }

  .hero__role {
    font-size: 0.9rem;
  }

  .hero__name {
    font-size: clamp(3.4rem, 17vw, 5rem);
    letter-spacing: 0.04em;
  }

  .hero__lead {
    margin-top: 28px;
    font-size: 0.88rem;
    letter-spacing: 0.07em;
  }

  .hero__actions {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    margin-top: 28px;
  }

  .hero__vertical {
    display: none;
  }

  .hero__scroll {
    right: 18px;
    bottom: 0;
    left: auto;
  }

  .statement {
    font-size: 2.25rem;
  }

  .section-heading {
    display: block;
  }

  .section-heading__note {
    margin-top: 28px;
  }

  .display-title {
    font-size: 3.5rem;
  }

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

  .work-card--featured {
    grid-row: auto;
    min-height: 540px;
  }

  .work-card {
    min-height: 280px;
  }

  .work-card__content {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .section-footer {
    display: block;
  }

  .section-footer .text-link {
    margin-top: 22px;
  }

  .about__portrait,
  .about__portrait img {
    min-height: 500px;
  }

  .about__portrait img {
    object-position: center;
  }

  .about__name {
    font-size: 3.4rem;
  }

  .career {
    padding-block: 76px;
  }

  .activity {
    display: block;
    min-height: 0;
    padding: 34px 20px;
  }

  .activity h3 {
    margin: 8px 0 14px;
  }

  .activity::before {
    display: none;
  }

  .activity:hover > * {
    color: inherit;
  }

  .activity:hover .activity__detail > p,
  .activity:focus-visible .activity__detail > p {
    color: #655d59;
  }

  .activity:hover .activity__action,
  .activity:focus-visible .activity__action {
    color: #9f2231;
    border-bottom-color: rgba(159, 34, 49, 0.38);
  }

  .activity > span {
    top: 50%;
    right: 20px;
    font-size: 3.6rem;
    transform: translateY(-50%);
  }

  .gallery {
    min-height: 0;
  }

  .gallery__image img {
    object-position: 52% center;
  }

  .gallery__shade {
    background:
      linear-gradient(0deg, rgba(8, 5, 6, 0.96), rgba(8, 5, 6, 0.48)),
      linear-gradient(90deg, rgba(8, 5, 6, 0.7), transparent);
  }

  .gallery__content {
    padding-block: 90px 70px;
  }

  .gallery__content h2 {
    font-size: 3.3rem;
  }

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

  .gallery-card,
  .gallery-card img {
    min-height: 360px;
  }

  .external-links {
    grid-template-columns: 1fr;
  }

  .external-card {
    min-height: 230px;
    padding: 30px;
  }

  .external-card__label {
    top: 27px;
    left: 30px;
  }

  .external-card i {
    right: 30px;
    bottom: 28px;
  }

  .contact__inner h2,
  .contact-page-title {
    font-size: 2.6rem;
    line-height: 1.5;
  }

  .contact__copy br {
    display: none;
  }

  .contact-form-panel {
    margin-top: 46px;
    padding: 28px 18px;
  }

  .contact-form-panel__header {
    display: block;
  }

  .contact-form-panel__header p {
    margin-top: 8px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .form-field--wide {
    grid-column: auto;
  }

  .contact-submit {
    width: 100%;
  }

  .site-footer__top,
  .site-footer__bottom {
    display: block;
  }

  .site-footer__links {
    flex-wrap: wrap;
    margin-top: 34px;
  }

  .site-footer__bottom p {
    margin-top: 8px;
  }
}

@media (max-width: 380px) {
  .statement {
    font-size: clamp(1.75rem, 9vw, 2.1rem);
  }

  .career__header h2 {
    font-size: clamp(1.75rem, 8.5vw, 2rem);
  }
}

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

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

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

/* Contact result and privacy pages */
.utility-page {
  min-height: 100vh;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 82% 18%, rgba(143, 31, 44, 0.25), transparent 35%),
    linear-gradient(135deg, #0d090a 0%, #1b1012 100%);
}

.utility-header {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 18px 4vw;
  color: #fff;
  border-bottom: 1px solid var(--line-light);
}

.utility-main {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 92px);
  padding: 64px 20px 90px;
}

.utility-main--policy {
  align-items: start;
}

.utility-card {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(34px, 7vw, 72px);
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.utility-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 78px;
  height: 3px;
  background: var(--red);
  content: "";
}

.utility-card--status {
  overflow: hidden;
}

.utility-status-code {
  position: absolute;
  top: -0.28em;
  right: -0.04em;
  margin: 0;
  color: rgba(143, 31, 44, 0.055);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(9rem, 25vw, 18rem);
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
}

.utility-card--status > *:not(.utility-status-code) {
  position: relative;
  z-index: 1;
}

.utility-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
}

.utility-actions .utility-button {
  margin-top: 0;
}

.utility-actions--equal .utility-button {
  flex: 1 1 0;
  width: auto;
}

.utility-text-link {
  padding-bottom: 3px;
  color: var(--red);
  border-bottom: 1px solid rgba(143, 31, 44, 0.35);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.utility-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.utility-card h1 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 5vw, 3.3rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.utility-card > p:not(.utility-kicker) {
  color: #655d59;
  font-size: 0.9rem;
}

.utility-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  width: min(330px, 100%);
  min-height: 60px;
  margin-top: 36px;
  padding: 0 22px 0 26px;
  color: #fff;
  border: 1px solid var(--red);
  background: var(--red);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  transition: color 180ms ease, background 180ms ease;
}

.utility-button:hover,
.utility-button:focus-visible {
  color: var(--red);
  background: transparent;
}

.utility-button--outline {
  color: var(--red);
  background: transparent;
}

.utility-button--outline:hover,
.utility-button--outline:focus-visible {
  color: #fff;
  background: var(--red);
}

.form-error-list {
  margin: 25px 0 0;
  padding: 20px 20px 20px 42px;
  color: #721f2a;
  border-left: 3px solid var(--red);
  background: rgba(143, 31, 44, 0.07);
  font-size: 0.84rem;
}

.form-error-list li + li {
  margin-top: 6px;
}

.policy-card {
  width: min(860px, 100%);
}

.policy-intro {
  margin-bottom: 42px;
}

.policy-card section {
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.policy-card section h2 {
  margin: 0 0 10px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.policy-card section p {
  margin: 0;
  color: #655d59;
  font-size: 0.86rem;
}

@media (max-width: 640px) {
  .utility-header {
    min-height: 76px;
    padding-inline: 20px;
  }

  .utility-main {
    min-height: calc(100vh - 76px);
    padding: 35px 14px 65px;
  }

  .utility-card {
    padding: 34px 22px 40px;
  }

  .utility-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .utility-text-link {
    align-self: flex-start;
  }

}

/* Profile and works pages */
.site-header--solid {
  background: rgba(13, 9, 10, 0.96);
  border-bottom-color: var(--line-light);
  backdrop-filter: blur(16px);
}

.global-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.subpage-main {
  padding-top: 92px;
}

.subpage-hero {
  position: relative;
  display: flex;
  min-height: 600px;
  align-items: end;
  color: #fff;
  background:
    radial-gradient(circle at 76% 34%, rgba(143, 31, 44, 0.38), transparent 28%),
    repeating-linear-gradient(120deg, transparent 0 58px, rgba(255, 255, 255, 0.025) 59px 60px),
    linear-gradient(140deg, #0d090a, #291216);
  overflow: hidden;
}

.subpage-hero::after {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: -0.2em;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--serif);
  font-size: clamp(10rem, 30vw, 28rem);
  line-height: 1;
  content: "舞";
}

.subpage-hero--works::after {
  content: "作";
}

.subpage-hero__inner {
  position: relative;
  z-index: 3;
  padding-block: 100px 90px;
}

.subpage-hero__media,
.subpage-hero__veil {
  position: absolute;
  inset: 0;
}

.subpage-hero__media {
  z-index: 0;
}

.subpage-hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: center 31%;
}

.subpage-hero__media--works img {
  object-position: center 58%;
}

.subpage-hero__veil {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 6, 7, 0.96) 0%, rgba(10, 6, 7, 0.78) 43%, rgba(10, 6, 7, 0.18) 78%, rgba(10, 6, 7, 0.38) 100%),
    linear-gradient(to top, rgba(10, 6, 7, 0.62), transparent 55%);
}

.subpage-hero__kicker {
  margin: 35px 0 12px;
  color: #d5a5a9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.subpage-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.15;
}

.subpage-hero--works h1 {
  font-size: clamp(3.5rem, 7vw, 7rem);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.subpage-hero__lead {
  margin: 34px 0 0;
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  letter-spacing: 0.1em;
  line-height: 2;
}

.subpage-heading {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.subpage-heading--light {
  color: #fff;
}

.subpage-heading__line {
  white-space: nowrap;
}

.profile-story__heading {
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
}

.profile-story__grid,
.works-note__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: clamp(60px, 9vw, 140px);
}

.rich-copy p {
  margin: 0 0 25px;
  color: #514a46;
  font-family: var(--serif);
  font-size: 0.96rem;
  letter-spacing: 0.05em;
  line-height: 2.2;
}

.profile-facts {
  margin: 52px 0 0;
  border-top: 1px solid var(--line);
}

.profile-facts div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.profile-facts dt {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.86rem;
}

.profile-photo-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 22px;
  width: var(--shell);
  margin: 0 auto;
  padding-bottom: 140px;
}

.profile-photo {
  position: relative;
  height: 560px;
  margin: 0;
  background: var(--ink-deep);
  overflow: hidden;
}

.profile-photo img {
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.profile-photo--landscape img {
  object-position: center 36%;
}

.profile-photo--performance img {
  object-position: center;
}

.profile-photo:hover img,
.works-photo:hover img {
  transform: scale(1.025);
}

.profile-photo figcaption,
.works-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 55px 25px 22px;
  color: #fff;
  background: linear-gradient(to top, rgba(8, 5, 6, 0.88), transparent);
}

.profile-photo figcaption span,
.works-photo figcaption span,
.profile-photo figcaption small,
.works-photo figcaption small {
  display: block;
}

.profile-photo figcaption span,
.works-photo figcaption span {
  font-family: var(--serif);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.profile-photo figcaption small,
.works-photo figcaption small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.artist-statement__inner {
  width: min(980px, calc(100% - 80px));
}

.artist-statement blockquote {
  margin: 25px 0 50px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 5.1rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.artist-statement__inner > p:not(.section-kicker) {
  width: min(680px, 100%);
  margin: 0 0 34px auto;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  line-height: 2.2;
}

.artist-statement footer {
  width: min(680px, 100%);
  margin-left: auto;
  color: #fff;
  font-family: var(--serif);
  line-height: 1.8;
}

.artist-statement footer span {
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.support {
  background: var(--paper);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 65px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.support-grid li {
  min-height: 155px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.support-grid small {
  color: #7b716c;
  font-size: 0.7rem;
}

.career-archive {
  background: var(--paper-light);
}

.archive-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 60px;
}

.archive-group--wide {
  grid-column: 1 / -1;
}

.archive-group > h3 {
  margin: 0 0 25px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.archive-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.archive-list li {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.archive-list time {
  color: #867b76;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.archive-list p {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.8rem;
  line-height: 1.8;
}

.archive-list__meta {
  display: block;
  margin-top: 4px;
  color: #7b716c;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.archive-group__note {
  margin: -12px 0 25px;
  color: #7b716c;
  font-family: var(--serif);
  font-size: 0.78rem;
  line-height: 1.8;
}

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

.archive-period {
  border-bottom: 1px solid var(--line);
}

.archive-period summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}

.archive-period summary::-webkit-details-marker {
  display: none;
}

.archive-period summary span {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}

.archive-period summary small {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #867b76;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archive-period summary small::after {
  content: "+";
  color: var(--red);
  font-size: 1rem;
  line-height: 1;
}

.archive-period[open] summary small::after {
  content: "−";
}

.archive-period .archive-list {
  margin-bottom: 24px;
  border-top: 0;
}

.archive-list--columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
}

.traditional-career__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.traditional-career__heading {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
}

.traditional-career ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  margin: clamp(52px, 4vw, 64px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.traditional-career li {
  padding: 18px 5px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--serif);
  font-size: 0.82rem;
}

.traditional-career li:nth-child(odd) {
  padding-right: 20px;
}

.subpage-cta {
  padding-block: 110px;
  background: var(--paper);
}

.subpage-cta__inner {
  text-align: center;
}

.subpage-cta h2 {
  margin: 0 0 45px;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.55;
}

.featured-work-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 65px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.works-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.7fr);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
  margin-top: 65px;
}

.works-photo {
  position: relative;
  margin: 0;
  background: var(--ink-deep);
  overflow: hidden;
}

.works-photo--wide {
  grid-row: 1 / 3;
}

.works-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.works-photo--wide img {
  object-position: center;
}

.works-photo--tall img {
  object-position: center 38%;
}

.works-photo--small img {
  object-position: center;
}

.featured-work-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  min-height: 150px;
  align-items: center;
  padding: 28px 35px 28px 0;
  border-bottom: 1px solid var(--line);
}

.featured-work-list li:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.featured-work-list li:nth-child(even) {
  padding-left: 35px;
}

.featured-work-list > li > span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.featured-work-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.featured-work-list p {
  margin: 5px 0 0;
  color: #827772;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.featured-work-list .featured-work-jp-subtitle {
  margin-top: 3px;
  color: #706662;
  font-family: var(--serif);
  font-size: clamp(0.82rem, 1.15vw, 0.96rem);
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.featured-work-list__linked h3 a {
  transition: color 0.2s ease;
}

.featured-work-list__linked h3 a:hover,
.featured-work-list__linked h3 a:focus-visible {
  color: var(--red);
}

.featured-work-detail-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding-bottom: 2px;
  color: var(--red);
  border-bottom: 1px solid rgba(143, 31, 44, 0.32);
  font-size: 0.66rem;
  letter-spacing: 0.07em;
}

.featured-work-detail-link i {
  font-style: normal;
  transition: transform 0.2s ease;
}

.featured-work-detail-link:hover i,
.featured-work-detail-link:focus-visible i {
  transform: translateX(4px);
}

.repertoire-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 24px;
}

.repertoire-group {
  min-height: 510px;
  padding: 38px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.025);
}

.repertoire-group > p {
  margin: 0 0 48px;
  color: rgba(255, 255, 255, 0.35);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.68rem;
}

.repertoire-group h3 {
  margin: 0 0 28px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.repertoire-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.repertoire-group li {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--serif);
  font-size: 0.82rem;
}

.works-note {
  background: var(--paper-light);
}

@media (max-width: 900px) {
  .subpage-main {
    padding-top: 76px;
  }

  .subpage-hero {
    min-height: 520px;
  }

  .profile-story__grid,
  .works-note__grid,
  .traditional-career__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .traditional-career ul {
    margin-top: 0;
  }

  .support-grid,
  .repertoire-grid {
    grid-template-columns: 1fr 1fr;
  }

  .repertoire-group {
    min-height: auto;
  }

  .archive-groups {
    grid-template-columns: 1fr;
  }

  .profile-photo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .profile-photo {
    height: 470px;
  }

  .archive-group--wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .subpage-hero {
    min-height: 470px;
  }

  .subpage-hero__inner {
    padding-block: 75px 65px;
  }

  .subpage-hero h1 {
    font-size: 3.5rem;
  }

  .subpage-hero--works h1 {
    font-size: clamp(2.6rem, 13vw, 3.5rem);
    letter-spacing: 0.03em;
  }

  .artist-statement__inner {
    width: min(100% - 40px, 980px);
  }

  .artist-statement blockquote br {
    display: none;
  }

  .profile-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .support-grid,
  .featured-work-list,
  .repertoire-grid,
  .archive-list--columns,
  .traditional-career ul {
    grid-template-columns: 1fr;
  }

  .profile-photo-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(100% - 28px, 1180px);
    padding-bottom: 80px;
  }

  .profile-photo {
    height: 400px;
  }

  .profile-photo--performance {
    height: 340px;
  }

  .works-photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 14px;
    margin-top: 45px;
  }

  .works-photo,
  .works-photo--wide {
    grid-row: auto;
    height: 320px;
  }

  .works-photo--tall {
    height: 460px;
  }

  .featured-work-list li,
  .featured-work-list li:nth-child(even) {
    min-height: 125px;
    padding: 23px 0;
    border-right: 0;
  }

  .archive-list li {
    grid-template-columns: 80px 1fr;
    gap: 13px;
  }

  .repertoire-group {
    padding: 30px 24px;
  }

  .traditional-career li:nth-child(odd) {
    padding-right: 5px;
  }
}

@media (max-width: 380px) {
  .profile-story__heading,
  .traditional-career__heading {
    font-size: clamp(1.95rem, 9.8vw, 2.4rem);
  }
}

/* Featured work: Manjushage */
.work-detail-hero {
  position: relative;
  display: flex;
  min-height: min(820px, calc(100svh - 92px));
  align-items: end;
  color: #fff;
  background: var(--ink-deep);
  overflow: hidden;
}

.work-detail-hero__media,
.work-detail-hero__veil {
  position: absolute;
  inset: 0;
}

.work-detail-hero__media img {
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.015);
}

.work-detail-hero__veil {
  background:
    linear-gradient(90deg, rgba(10, 5, 7, 0.9) 0%, rgba(10, 5, 7, 0.58) 46%, rgba(10, 5, 7, 0.18) 78%),
    linear-gradient(to top, rgba(10, 5, 7, 0.84), transparent 58%);
}

.work-detail-hero__content {
  position: relative;
  z-index: 1;
  padding-block: 110px 80px;
}

.work-detail-hero__index,
.work-detail-hero__type {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.work-detail-hero h1 {
  margin: 30px 0 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
}

.work-detail-hero h1 span,
.work-detail-hero h1 small {
  display: block;
}

.work-detail-hero h1 span {
  font-size: clamp(4.6rem, 10vw, 9rem);
  letter-spacing: 0.12em;
}

.work-detail-hero h1 small {
  margin-top: 15px;
  font-size: clamp(1.45rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.13em;
}

.work-detail-hero__en {
  width: min(620px, 100%);
  margin: 28px 0 20px;
  color: #e2b5ba;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.work-detail-heading {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.55;
}

.work-detail-heading--light {
  color: #fff;
}

.work-overview {
  background: var(--paper-light);
}

.work-overview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(60px, 7vw, 110px);
}

.work-overview .work-detail-heading {
  font-size: clamp(2.5rem, 4.2vw, 4.25rem);
}

.work-overview__heading-line {
  white-space: nowrap;
}

.work-facts {
  margin: 50px 0 0;
  border-top: 1px solid var(--line);
}

.work-facts div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 25px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.work-facts dt {
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.76rem;
}

.work-facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.84rem;
}

.work-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 35px;
}

.work-roles span {
  padding: 8px 13px;
  color: #6b2029;
  border: 1px solid rgba(143, 31, 44, 0.28);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.work-feature-image {
  position: relative;
  width: var(--shell);
  height: min(68vw, 760px);
  margin: 0 auto 140px;
  background: var(--ink-deep);
  overflow: hidden;
}

.work-feature-image img {
  height: 100%;
  object-fit: cover;
}

.work-feature-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 80px 35px 28px;
  color: #fff;
  background: linear-gradient(to top, rgba(8, 5, 6, 0.92), transparent);
}

.work-feature-image figcaption span,
.work-feature-image figcaption small {
  display: block;
}

.work-feature-image figcaption span {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.work-feature-image figcaption small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.work-history {
  background:
    radial-gradient(circle at 82% 18%, rgba(143, 31, 44, 0.3), transparent 32%),
    var(--ink-deep);
}

.work-history-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.work-history-list li {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 130px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-light);
}

.work-history-list > li > span {
  color: #d5a5a9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.work-history-list h3 {
  margin: 0 0 5px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.work-history-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
}

.work-history-list a {
  padding-bottom: 3px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.work-history-list a:hover,
.work-history-list a:focus-visible {
  color: #f2c1c7;
  border-bottom-color: #f2c1c7;
}

.work-program {
  background: var(--paper);
}

.work-edition-selector {
  padding-block: 100px 75px;
  background: var(--paper);
}

.work-edition-selector__intro {
  max-width: 650px;
  margin: 22px 0 0;
  color: #716863;
  font-size: 0.78rem;
  line-height: 2;
}

.work-edition-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 55px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.work-edition-tab {
  position: relative;
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 25px 28px 27px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-left: 1px solid var(--line);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.work-edition-tab:first-child {
  border-left: 0;
}

.work-edition-tab::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.work-edition-tab:hover,
.work-edition-tab:focus-visible,
.work-edition-tab.is-active {
  background: rgba(143, 31, 44, 0.055);
}

.work-edition-tab:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.work-edition-tab.is-active::before {
  opacity: 1;
}

.work-edition-tab small {
  color: var(--red);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-edition-tab strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.work-edition-tab span {
  color: #847873;
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.work-edition-view > .section:first-child {
  padding-top: 95px;
}

.work-edition-view {
  scroll-margin-top: 90px;
}

.work-edition-next {
  padding-block: 48px;
  background: var(--paper-light);
  border-top: 1px solid var(--line);
}

.work-edition-next__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.work-edition-next p {
  display: grid;
  gap: 7px;
  margin: 0;
}

.work-edition-next small {
  color: var(--red);
  font-size: 0.6rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.work-edition-next strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.work-credits-grid--cast-only {
  grid-template-columns: minmax(0, 850px);
}

.work-edition-coming {
  min-height: 460px;
  background: var(--paper);
}

.work-edition-coming p:not(.section-kicker) {
  margin: 28px 0 24px;
  color: #716863;
  font-size: 0.8rem;
  line-height: 2;
}

.work-program-intro {
  max-width: 620px;
  margin: 22px 0 0;
  color: #716863;
  font-size: 0.78rem;
  line-height: 2;
}

.work-program-edition {
  margin-top: 58px;
}

.work-program-edition__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid #a58580;
}

.work-program-edition__heading p {
  margin: 0 0 7px;
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-program-edition__heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.work-program-edition__heading > span {
  color: #847873;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.work-program-edition .work-program-list {
  margin-top: 0;
  border-top: 0;
}

.work-program-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 55px;
  margin: 65px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.work-program-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  min-height: 125px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.work-program-list > li > span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.8rem;
}

.work-program-list h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.work-program-list p,
.work-program-list small {
  margin: 0;
  color: #716863;
  font-size: 0.7rem;
  line-height: 1.7;
}

.work-program-list small {
  display: block;
  margin-top: 5px;
  color: #8f403f;
}

.work-narration {
  margin: 25px 0 0;
  color: #6f6560;
  font-family: var(--serif);
  font-size: 0.8rem;
}

.work-scenes {
  background: #0f0a0b;
}

.work-scenes-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.work-scene {
  position: relative;
  grid-column: span 4;
  height: 520px;
  margin: 0;
  background: #080506;
  overflow: hidden;
}

.work-scene--wide {
  grid-column: span 8;
  height: 420px;
}

.work-scene img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.3s ease;
}

.work-scene:hover img {
  filter: brightness(1.1);
  transform: scale(1.025);
}

.work-scene figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 20px 18px;
  color: #fff;
  background: linear-gradient(to top, rgba(8, 5, 6, 0.88), transparent);
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.work-gallery-note {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
  text-align: right;
}

.work-credits {
  background: var(--paper-light);
}

.work-credits-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  margin-top: 65px;
}

.work-credits-grid section {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.work-credits-grid__wide {
  grid-column: 1 / -1;
}

.work-credits-grid h3 {
  margin: 0 0 20px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.work-credits-grid p {
  margin: 0;
  color: #5f5753;
  font-family: var(--serif);
  font-size: 0.82rem;
  line-height: 2.1;
}

.work-credits-grid dl {
  margin: 0;
}

.work-credits-grid dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 8px 0;
}

.work-credits-grid dt {
  color: #837873;
  font-size: 0.68rem;
}

.work-credits-grid dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.78rem;
}

.work-staff-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 55px;
}

.work-staff-list div {
  border-bottom: 1px solid var(--line);
}

.work-detail-cta__actions {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .work-detail-hero {
    min-height: 680px;
  }

  .work-overview__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .work-scene,
  .work-scene--wide {
    grid-column: span 6;
    height: 500px;
  }
}

@media (max-width: 640px) {
  .work-detail-hero {
    min-height: 610px;
  }

  .work-detail-hero__media img {
    object-position: 54% center;
  }

  .work-detail-hero__veil {
    background: linear-gradient(to top, rgba(10, 5, 7, 0.94), rgba(10, 5, 7, 0.16) 78%);
  }

  .work-detail-hero__content {
    padding-block: 80px 55px;
  }

  .work-detail-hero h1 span {
    font-size: 3.7rem;
    letter-spacing: 0.07em;
  }

  .work-detail-hero h1 small {
    font-size: 1.35rem;
    line-height: 1.55;
  }

  .work-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .work-feature-image {
    width: min(100% - 28px, 1180px);
    height: 64vw;
    min-height: 300px;
    margin-bottom: 80px;
  }

  .work-history-list li {
    grid-template-columns: 70px 1fr;
    gap: 16px;
  }

  .work-history-list a {
    grid-column: 2;
    width: fit-content;
  }

  .work-program-list,
  .work-credits-grid,
  .work-staff-list {
    grid-template-columns: 1fr;
  }

  .work-program-list {
    gap: 0;
  }

  .work-edition-selector {
    padding-block: 75px 55px;
  }

  .work-edition-tabs {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .work-edition-tab {
    padding: 20px 18px 22px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .work-edition-tab:first-child {
    border-top: 0;
  }

  .work-edition-view > .section:first-child {
    padding-top: 75px;
  }

  .work-edition-next__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-program-edition__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .work-credits-grid {
    gap: 42px;
  }

  .work-credits-grid__wide {
    grid-column: auto;
  }

  .work-scenes-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .work-scene,
  .work-scene--wide {
    grid-column: auto;
    height: 118vw;
    max-height: 560px;
  }

  .work-scene--wide {
    height: 70vw;
    min-height: 280px;
  }

  .work-gallery-note {
    text-align: left;
  }

  .work-detail-cta__actions {
    flex-direction: column;
  }
}
