:root {
  --ink: #0a0a09;
  --ink-soft: #151411;
  --paper: #ece8df;
  --paper-deep: #d8d1c5;
  --red: #b3261e;
  --red-dark: #711812;
  --gold: #c5a66a;
  --line-dark: rgba(10, 10, 9, 0.18);
  --line-light: rgba(236, 232, 223, 0.18);
  --serif: "Prata", "Noto Serif SC", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --chinese: "Noto Serif SC", serif;
  --page-x: clamp(1.25rem, 4vw, 5rem);
  --header-h: 6rem;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transition: transform 0.2s ease;
}

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

.loader {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.loader__mark {
  width: 5.5rem;
  height: 5.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(197, 166, 106, 0.55);
  color: var(--gold);
  font-family: var(--chinese);
  font-size: 2.5rem;
  transform: rotate(45deg);
}

.loader__mark span {
  transform: rotate(-45deg);
}

.loader__line {
  position: absolute;
  right: var(--page-x);
  bottom: 5rem;
  left: var(--page-x);
  height: 1px;
  overflow: hidden;
  background: rgba(236, 232, 223, 0.14);
}

.loader__line i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
}

.loader__meta {
  position: absolute;
  right: var(--page-x);
  bottom: 2rem;
  left: var(--page-x);
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.63rem;
}

.sound-permission {
  position: fixed;
  z-index: 1100;
  top: 1rem;
  left: 50%;
  width: min(34rem, calc(100% - 2rem));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 0.85rem;
  transform: translateX(-50%);
  border: 1px solid rgba(236, 232, 223, 0.18);
  border-radius: 0.65rem;
  background: rgba(21, 20, 17, 0.94);
  color: var(--paper);
  box-shadow: 0 0.65rem 2rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

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

.sound-permission__icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(197, 166, 106, 0.1);
  color: var(--gold);
}

.sound-permission__icon svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sound-permission__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sound-permission__copy strong {
  font-size: 0.78rem;
  font-weight: 600;
}

.sound-permission__copy span {
  color: rgba(236, 232, 223, 0.55);
  font-size: 0.68rem;
}

.sound-permission__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.sound-permission__actions button {
  padding: 0.55rem 0.7rem;
  border: 0;
  border-radius: 0.35rem;
  background: transparent;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.sound-permission__dismiss {
  color: rgba(236, 232, 223, 0.55);
}

.sound-permission__allow {
  background: rgba(197, 166, 106, 0.14) !important;
  color: var(--gold);
}

.sound-permission__actions button:hover,
.sound-permission__actions button:focus-visible {
  color: var(--paper);
  background: rgba(236, 232, 223, 0.1) !important;
}

@media (max-width: 560px) {
  .sound-permission {
    top: 0.75rem;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .sound-permission__actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

.cursor {
  position: fixed;
  z-index: 4500;
  width: 2.5rem;
  height: 2.5rem;
  left: 0;
  top: 0;
  pointer-events: none;
  border: 1px solid rgba(236, 232, 223, 0.7);
  border-radius: 50%;
  mix-blend-mode: difference;
  opacity: 0;
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
}

.cursor span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3px;
  height: 3px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: white;
}

.cursor.is-hovering {
  width: 4.5rem;
  height: 4.5rem;
}

.page-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.page-progress i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--red);
}

.site-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-x);
  color: var(--paper);
  transition: background 0.35s ease, height 0.35s ease, border-color 0.35s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  right: var(--page-x);
  bottom: 0;
  left: var(--page-x);
  height: 1px;
  background: rgba(236, 232, 223, 0.22);
}

.site-header.is-scrolled {
  height: 4.8rem;
  background: rgba(10, 10, 9, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand__nav-logo {
  display: block;
  width: clamp(2.275rem, 3.15vw, 2.87rem);
  height: auto;
  max-height: 2.87rem;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0.35rem 0.8rem rgba(0, 0, 0, 0.28));
  transition: width 0.35s ease, max-height 0.35s ease;
}

.site-header.is-scrolled .brand__nav-logo {
  width: 2.135rem;
  max-height: 2.24rem;
}

.brand__seal {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  color: var(--red);
  font-family: var(--chinese);
  font-size: 1.2rem;
  line-height: 1;
}

.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 0.94;
}

.brand__name b {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
}

.brand__name i {
  font-family: var(--serif);
  font-size: 0.78rem;
  font-style: normal;
  color: rgba(236, 232, 223, 0.65);
}

.desktop-nav {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.7vw, 3.25rem);
  margin-left: auto;
  margin-right: clamp(2rem, 5vw, 6rem);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.desktop-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red);
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a[aria-current="page"] {
  color: var(--paper);
}

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

.desktop-program-menu {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.desktop-program-menu > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
}

.desktop-program-menu__main-link {
  margin-right: 0;
}

.desktop-program-menu > .desktop-program-menu__main-link + button {
  justify-content: center;
  min-width: 2rem;
  min-height: 2rem;
  padding: 0.4rem;
}

.desktop-program-menu > .desktop-program-menu__main-link + button::after {
  display: none;
}

.desktop-program-menu > button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red);
  transition: transform 0.3s ease;
}

.desktop-program-menu > button svg {
  width: 0.75rem;
  height: 0.75rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: transform 0.25s ease;
}

.desktop-program-menu.is-open > button::after,
.desktop-program-menu > button[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-program-menu.is-open > .desktop-program-menu__main-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-program-menu.is-open > button svg {
  transform: rotate(180deg);
}

.desktop-program-menu__panel {
  --dropdown-x: -50%;
  position: absolute;
  z-index: 30;
  top: 100%;
  left: 50%;
  width: min(22rem, calc(100vw - (var(--page-x) * 2)));
  padding: 0.65rem;
  visibility: hidden;
  transform: translate(var(--dropdown-x), 0.9rem);
  overflow: hidden;
  border: 1px solid rgba(197, 166, 106, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(113, 24, 18, 0.36), rgba(10, 10, 9, 0) 46%),
    rgba(10, 10, 9, 0.96);
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.34), 0 0.6rem 1.3rem rgba(113, 24, 18, 0.18);
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.desktop-program-menu[data-artist-nav] .desktop-program-menu__panel {
  --dropdown-x: 0;
  right: 0;
  left: auto;
  width: min(28rem, calc(100vw - (var(--page-x) * 2)));
}

.desktop-program-menu__panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0.65rem;
  left: 0.65rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 166, 106, 0.72), transparent);
}

.desktop-program-menu.is-open .desktop-program-menu__panel {
  visibility: visible;
  transform: translate(var(--dropdown-x), 0);
  opacity: 1;
  pointer-events: auto;
}

.desktop-nav .desktop-program-menu__panel a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.82rem 0.95rem;
  border-radius: 6px;
  color: rgba(236, 232, 223, 0.76);
  font-size: 0.74rem;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  transition: background 0.2s ease, color 0.2s ease, padding 0.2s ease;
}

.desktop-nav .desktop-program-menu__panel a::after {
  content: "↗";
  position: static;
  width: auto;
  height: auto;
  transform: none;
  background: transparent;
  color: var(--gold);
  font-size: 0.72rem;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.desktop-program-menu__label {
  display: block;
  margin-bottom: 0.45rem;
  padding: 0.82rem 0.95rem;
  border-bottom: 1px solid rgba(236, 232, 223, 0.16);
  border-radius: 6px 6px 2px 2px;
  color: var(--gold);
  font-size: 0.74rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.desktop-program-menu[data-company-nav] .desktop-program-menu__label {
  margin-bottom: 0;
  border-bottom: 0;
  border-radius: 6px;
}

.desktop-nav .desktop-program-menu__panel [data-program-nav-links] a {
  grid-template-columns: 2.1rem minmax(0, 1fr) auto;
}

.desktop-nav .desktop-program-menu__panel [data-program-nav-links] a > span {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  opacity: 0.68;
}

.desktop-nav .desktop-program-menu__panel a:hover,
.desktop-nav .desktop-program-menu__panel a:focus-visible,
.desktop-nav .desktop-program-menu__panel a[aria-current="page"] {
  background: rgba(236, 232, 223, 0.09);
  color: var(--paper);
  padding-right: 0.75rem;
}

.desktop-nav .desktop-program-menu__panel a:hover::after,
.desktop-nav .desktop-program-menu__panel a:focus-visible::after,
.desktop-nav .desktop-program-menu__panel a[aria-current="page"]::after {
  transform: translateX(0.12rem);
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.1rem;
  color: rgba(236, 232, 223, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}

.language button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.language span {
  margin: 0 0.18rem;
  opacity: 0.35;
}

.language button.is-active {
  color: var(--gold);
  font-weight: 600;
}

.mobile-header-language {
  display: none;
  align-items: center;
  padding: 0.5rem 0.1rem;
  color: rgba(236, 232, 223, 0.7);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}

.mobile-header-language button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.mobile-header-language span {
  margin: 0 0.18rem;
  opacity: 0.35;
}

.mobile-header-language button.is-active {
  color: var(--gold);
  font-weight: 600;
}

.button {
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0 1.5rem;
  border: 1px solid var(--red);
  background: var(--red);
  color: white;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

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

.button svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
}

.button--small {
  min-height: 2.6rem;
  padding: 0 1.1rem;
}

.button--outline {
  margin-top: 4rem;
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

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

.menu-toggle {
  width: 2.7rem;
  height: 2.7rem;
  display: none;
  position: relative;
  padding: 0;
  border: 1px solid rgba(236, 232, 223, 0.28);
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease, top 0.3s ease;
}

.menu-toggle span:first-child {
  top: 1rem;
}

.menu-toggle span:last-child {
  top: 1.55rem;
}

.menu-toggle.is-active span:first-child {
  top: 1.3rem;
  transform: rotate(45deg);
}

.menu-toggle.is-active span:last-child {
  top: 1.3rem;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 850;
  inset: 0;
  visibility: hidden;
  transform: translateY(-100%);
  background: var(--red-dark);
  color: var(--paper);
}

.mobile-menu__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 8rem var(--page-x) 2rem;
  overflow-y: auto;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.mobile-menu nav > a {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(236, 232, 223, 0.2);
  font-family: var(--serif);
  font-size: 3.25rem;
}

.mobile-menu nav > a b,
.mobile-program-menu summary b {
  font-weight: 400;
}

.mobile-menu nav > a > span,
.mobile-program-menu summary > span {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  opacity: 0.55;
}

.mobile-program-menu summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(236, 232, 223, 0.2);
  font-family: var(--serif);
  font-size: 3.25rem;
  list-style: none;
  cursor: pointer;
}

.mobile-program-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-program-menu summary b {
  min-width: 0;
  font: inherit;
}

.mobile-program-menu summary > a {
  min-width: 0;
}

.mobile-program-menu summary i {
  align-self: center;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s ease;
}

.mobile-program-menu[open] summary i {
  transform: rotate(45deg);
}

.mobile-program-menu__links {
  padding: 0.55rem 0 1rem 3rem;
  border-bottom: 1px solid rgba(236, 232, 223, 0.2);
}

.mobile-program-menu__label,
.mobile-program-menu__links [data-program-nav-links] a,
.mobile-program-menu__links [data-artist-nav-links] a {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(236, 232, 223, 0.12);
  color: rgba(236, 232, 223, 0.78);
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.45;
}

.mobile-program-menu__label {
  display: block;
  color: var(--gold);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mobile-program-menu__links [data-program-nav-links] a {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.75rem;
}

.mobile-program-menu__links [data-artist-nav-links] a {
  display: block;
  overflow-wrap: anywhere;
}

.mobile-program-menu__links [data-program-nav-links] a > span {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  opacity: 0.55;
}

.mobile-program-menu__links a[aria-current="page"] {
  color: var(--paper);
}

.program-nav__empty {
  display: block;
  padding: 0.8rem 0.85rem;
  color: rgba(236, 232, 223, 0.52);
  font-size: 0.68rem;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 780px) {
  .mobile-menu nav > a,
  .mobile-program-menu summary {
    font-size: 2rem;
  }
}

.mobile-menu__foot {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

.hero {
  position: relative;
  height: max(46rem, 100svh);
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero-video,
.hero-video__player,
.webgl-wrap,
.webgl-wrap canvas,
.webgl-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 45%, rgba(179, 38, 30, 0.2), transparent 38%),
    linear-gradient(135deg, #151412, #050505 65%);
  pointer-events: none;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 50%, rgba(179, 38, 30, 0.12), transparent 36%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.03) 70%);
}

.hero-video__player {
  top: 50%;
  left: 50%;
  width: 177.77777778vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%) scale(1.2);
  filter: saturate(0.68) contrast(1.05) brightness(0.82);
}

.webgl-wrap {
  z-index: 1;
  pointer-events: none;
}

.webgl-wrap canvas {
  display: block;
  opacity: 0.58;
  mix-blend-mode: screen;
}

.webgl-fallback {
  background:
    radial-gradient(circle at 73% 46%, rgba(179, 38, 30, 0.16), transparent 27%),
    radial-gradient(circle at 68% 48%, rgba(197, 166, 106, 0.1), transparent 15%);
}

.webgl-wrap.is-ready .webgl-fallback {
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__grain {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.36'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.58) 0%, rgba(5, 5, 5, 0.1) 52%, rgba(5, 5, 5, 0.05) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.58) 0%, transparent 14%, transparent 60%, rgba(5, 5, 5, 0.82) 94%);
}

.hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) clamp(5rem, 9.3vw, 11rem) 3rem;
}

.hero__kicker {
  width: min(64rem, 82%);
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(1.5rem, 3vh, 3rem);
  color: rgba(236, 232, 223, 0.62);
  font-size: 0.64rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 10.1vw, 10.8rem);
  font-weight: 400;
  line-height: 0.81;
  letter-spacing: -0.055em;
}

.hero__title-line {
  display: block;
  overflow: hidden;
  padding: 0.11em 0;
}

.hero__title-line i {
  display: block;
  font-style: normal;
  transform: translateY(110%);
}

.hero__title-line--offset {
  margin-left: clamp(2rem, 10vw, 11rem);
}

.hero__title-line--accent {
  color: var(--red);
}

.hero__bottom {
  width: min(60rem, 77%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-top: clamp(1.5rem, 4vh, 3rem);
  margin-left: clamp(2rem, 10vw, 11rem);
}

.hero__bottom p {
  max-width: 28rem;
  margin: 0;
  color: rgba(236, 232, 223, 0.66);
  font-size: clamp(0.82rem, 1.05vw, 1rem);
  line-height: 1.7;
}

.round-link {
  width: 7rem;
  height: 7rem;
  flex: 0 0 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 1px solid rgba(236, 232, 223, 0.35);
  border-radius: 50%;
  font-size: 0.61rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.round-link svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.1;
}

.round-link:hover {
  border-color: var(--red);
  background: var(--red);
}

.hero__rail {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: rgba(236, 232, 223, 0.48);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__rail i {
  width: 1px;
  height: 4rem;
  background: rgba(236, 232, 223, 0.25);
}

.hero__rail--left {
  left: var(--page-x);
  transform: translateY(-50%) rotate(180deg);
}

.hero__rail--right {
  right: var(--page-x);
  transform: translateY(-50%);
}

.hero__horse {
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-family: var(--chinese);
  font-size: 1.8rem;
}

.hero__campaign {
  position: absolute;
  z-index: 3;
  right: clamp(5rem, 9.5vw, 11rem);
  top: calc(var(--header-h) + 2rem);
  width: clamp(13rem, 18vw, 19rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.5rem;
  text-align: center;
}

.hero__campaign img {
  display: block;
  width: 100%;
  flex: 0 0 auto;
  height: auto;
  transform: scale(0.75);
  transform-origin: center;
  filter: drop-shadow(0 0.5rem 1.5rem rgba(0, 0, 0, 0.4));
}

.hero__campaign .hero__happy-new-year-logo {
  width: 100%;
  margin-top: 0.75rem;
}

.hero__campaign span {
  color: rgba(236, 232, 223, 0.58);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__interaction {
  position: absolute;
  z-index: 3;
  left: var(--page-x);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(236, 232, 223, 0.38);
  font-size: 0.56rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__interaction i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(179, 38, 30, 0.5);
  animation: pulse 2.2s infinite;
}

.hero__socials {
  position: absolute;
  z-index: 3;
  right: var(--page-x);
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero__socials a {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(236, 232, 223, 0.58);
  background: rgba(10, 10, 9, 0.62);
  color: var(--paper);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.hero__socials a:hover,
.hero__socials a:focus-visible {
  transform: translateY(-0.2rem);
  border-color: var(--red);
  background: var(--red);
  color: white;
  outline: 0;
}

.hero__socials svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes pulse {
  60% {
    box-shadow: 0 0 0 0.65rem rgba(179, 38, 30, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(179, 38, 30, 0);
  }
}

.section-pad {
  position: relative;
  padding: clamp(5.5rem, 9vw, 9rem) var(--page-x);
}

.section-index {
  position: absolute;
  top: clamp(3.5rem, 6vw, 6rem);
  left: var(--page-x);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.57rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-index i {
  width: 3rem;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.section-index--light {
  color: rgba(236, 232, 223, 0.55);
}

.eyebrow {
  margin: 0 0 1.4rem;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.display-heading {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 4.8vw, 7.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.display-heading em {
  color: var(--red);
  font-style: normal;
}

.display-heading--light {
  color: var(--paper);
}

.intro {
  min-height: 50rem;
  background: var(--paper);
}

.intro::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12%;
  width: 1px;
  height: 100%;
  background: var(--line-dark);
  opacity: 0.35;
}

.intro__heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: clamp(2rem, 8vw, 9rem);
}

.intro .display-heading .no-break {
  white-space: nowrap;
  overflow-wrap: normal;
}

.intro__body {
  align-self: center;
  width: min(100%, 64rem);
  padding-top: 2rem;
}

.intro__body p {
  margin: 0 0 1.5rem;
  width: 100%;
  color: rgba(10, 10, 9, 0.7);
  font-size: clamp(1rem, 1.2vw, 1.17rem);
  line-height: 1.75;
}

.intro__history-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  margin: 2.5rem 0 2rem;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink-soft);
  color: var(--paper);
}

.intro__history-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -9rem 7rem rgba(10, 10, 9, 0.55);
  pointer-events: none;
}

.intro__history-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.intro__history-media > span {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.35rem;
  left: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.25;
}

.intro__history-media small {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.intro__history-media i {
  font-family: var(--sans);
  font-style: normal;
}

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

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

.dropcap {
  float: left;
  margin: -0.2rem 0.8rem -0.4rem 0;
  color: var(--red);
  font-family: var(--serif);
  font-size: 5.8rem;
  line-height: 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.3rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
}

.intro__seal {
  position: absolute;
  right: 4%;
  bottom: 9%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  transform: rotate(4deg);
}

.intro__seal span {
  width: 5.5rem;
  height: 5.5rem;
  display: grid;
  place-items: center;
  border: 3px double rgba(179, 38, 30, 0.6);
  color: rgba(179, 38, 30, 0.68);
  font-family: var(--chinese);
  font-size: 1.5rem;
  line-height: 1.15;
  text-align: center;
}

.intro__seal small {
  color: rgba(10, 10, 9, 0.4);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.manifesto {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  background: var(--red);
  color: var(--paper);
}

.manifesto__line {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.7rem;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 6.8rem);
  line-height: 1;
}

.manifesto__line i {
  color: var(--gold);
  font-family: var(--chinese);
  font-size: 0.75em;
  font-style: normal;
}

.manifesto__line--ghost {
  position: absolute;
  top: 4.3rem;
  left: 0.12em;
  opacity: 0.12;
  transform: translateY(0.12em);
}

.instruments {
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
}

.instruments__head {
  display: flex;
  justify-content: center;
  margin: 2rem 0 6rem;
  text-align: center;
}

.instruments__intro {
  align-self: end;
}

.instruments__copy {
  margin: 0 0 0.7rem;
  color: rgba(236, 232, 223, 0.56);
  font-size: 0.9rem;
  line-height: 1.75;
}

.instrument-sound-notice {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: -3rem auto 1.25rem 0;
}

.instrument-sound-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instrument-sound-label svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  transition: transform 0.25s ease;
}

.instrument-sound-notice:hover .instrument-sound-label svg {
  transform: translateX(0.3rem);
}

.instrument-sound-toggle {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0;
  padding: 0.7rem 0;
  border: 0;
  border-bottom: 1px solid rgba(236, 232, 223, 0.35);
  background: transparent;
  color: rgba(236, 232, 223, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.instrument-sound-toggle i {
  width: 0.45rem;
  height: 0.45rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.instrument-sound-toggle:hover,
.instrument-sound-toggle:focus-visible,
.instrument-sound-toggle.is-active {
  border-color: var(--gold);
  color: var(--gold);
}

.instrument-sound-toggle.is-active i {
  background: var(--gold);
  box-shadow: 0 0 0 0.3rem rgba(197, 166, 106, 0.12);
}

.instrument-carousel {
  position: relative;
  --instrument-cards-visible: 3;
}

.instrument-carousel__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.instrument-carousel__count {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(236, 232, 223, 0.58);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
}

.instrument-carousel__count b {
  font-weight: 500;
}

.instrument-carousel__count i {
  width: 3.25rem;
  height: 1px;
  background: rgba(236, 232, 223, 0.3);
}

.instrument-carousel__stage {
  position: relative;
}

.instrument-carousel__arrows {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.instrument-carousel__button {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(236, 232, 223, 0.28);
  border-radius: 50%;
  background: rgba(10, 10, 9, 0.72);
  backdrop-filter: blur(14px);
  color: var(--paper);
  pointer-events: auto;
  box-shadow: 0 0.9rem 1.6rem rgba(0, 0, 0, 0.24);
  transition: border-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.instrument-carousel__button:hover,
.instrument-carousel__button:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.instrument-carousel__button svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}

.instrument-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.48rem;
}

.instrument-carousel__dots button {
  width: 0.46rem;
  height: 0.46rem;
  padding: 0;
  border: 1px solid rgba(236, 232, 223, 0.36);
  border-radius: 50%;
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.instrument-carousel__dots button:hover,
.instrument-carousel__dots button:focus-visible,
.instrument-carousel__dots button.is-active {
  border-color: var(--gold);
  background: var(--gold);
}

.instrument-carousel__dots button.is-active {
  transform: scale(1.35);
}

.instrument-grid {
  position: relative;
  display: flex;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  -webkit-overflow-scrolling: touch;
}

.instrument-grid::-webkit-scrollbar {
  display: none;
}

.instrument-card {
  position: relative;
  flex: 0 0 calc(100% / var(--instrument-cards-visible));
  min-height: 48rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 2rem;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  transition: background 0.5s ease, color 0.5s ease;
}

.instrument-card:hover {
  background: var(--red-dark);
}

.instrument-card__number {
  color: rgba(236, 232, 223, 0.4);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
}

.instrument-card__sound {
  position: absolute;
  top: 1.7rem;
  right: 1.7rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(236, 232, 223, 0.42);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.instrument-card__sound i {
  position: relative;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(236, 232, 223, 0.22);
  border-radius: 50%;
  font-style: normal;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.instrument-card__sound i::before {
  content: "";
  width: 0.28rem;
  height: 0.55rem;
  border-left: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.instrument-card:hover .instrument-card__sound,
.instrument-card:focus-visible .instrument-card__sound,
.instrument-card.is-sounding .instrument-card__sound {
  color: var(--gold);
}

.instrument-card:hover .instrument-card__sound i,
.instrument-card:focus-visible .instrument-card__sound i,
.instrument-card.is-sounding .instrument-card__sound i {
  border-color: var(--gold);
}

.instrument-card.is-sounding .instrument-card__sound i {
  animation: sound-pulse 0.8s ease-in-out infinite alternate;
}

.instrument-card:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: -1px;
}

@keyframes sound-pulse {
  to {
    transform: scale(1.12);
    box-shadow: 0 0 0 0.35rem rgba(197, 166, 106, 0.08);
  }
}

.instrument-art {
  width: 100%;
  height: 27rem;
  display: grid;
  place-items: center;
  align-items: end;
  margin: 0.5rem 0 1rem;
}

.instrument-art svg {
  width: min(78%, 14rem);
  height: 100%;
  overflow: visible;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.instrument-art img {
  display: block;
  width: min(100%, 15.5rem);
  height: 25rem;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 1.35rem 1.8rem rgba(0, 0, 0, 0.35));
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.7s ease;
}

.instrument-art--image {
  width: min(100%, 18rem);
  margin-right: auto;
  margin-left: auto;
}

.instrument-art--paigu img {
  width: min(100%, 17rem);
}

.instrument-art--dizi img {
  width: min(100%, 8rem);
}

.instrument-art--yangqin {
  width: min(100%, 26rem);
}

.instrument-art--yangqin img {
  width: min(100%, 24rem);
  height: auto;
  align-self: center;
  transform: translateY(3.4rem);
}

.instrument-art--guzheng svg,
.instrument-art--paigu svg {
  width: min(88%, 16rem);
}

.instrument-art--suona svg,
.instrument-art--sheng svg {
  width: min(82%, 14.5rem);
}

.instrument-card:hover .instrument-art svg,
.instrument-card:hover .instrument-art img {
  transform: scale(1.05) rotate(-2deg);
}

.instrument-card:hover .instrument-art img {
  filter: drop-shadow(0 1.6rem 2.1rem rgba(0, 0, 0, 0.44));
}

.instrument-card:hover .instrument-art--yangqin img {
  transform: translateY(3.4rem) scale(1.05) rotate(-2deg);
}

.instrument-art .shape {
  fill: rgba(197, 166, 106, 0.06);
  stroke: rgba(197, 166, 106, 0.62);
  stroke-width: 1.2;
}

.instrument-art .line {
  fill: none;
  stroke: rgba(236, 232, 223, 0.42);
  stroke-width: 0.75;
}

.instrument-art .detail {
  fill: none;
  stroke: rgba(179, 38, 30, 0.9);
  stroke-width: 1.5;
}

.instrument-card:hover .instrument-art .detail {
  stroke: var(--gold);
}

.instrument-card__title {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.instrument-card__title span {
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-family: var(--chinese);
  font-size: 1rem;
}

.instrument-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4vw, 4.5rem);
  font-weight: 400;
}

.instrument-card > p {
  max-width: 24rem;
  margin: 0.7rem 0 1.5rem;
  color: rgba(236, 232, 223, 0.55);
  font-size: 0.82rem;
  line-height: 1.6;
}

.instrument-card__artist {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
  color: rgba(236, 232, 223, 0.4);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour {
  overflow: hidden;
  background: var(--paper);
}

.tour__newsletter-link {
  display: flex;
  justify-content: flex-end;
  margin-bottom: -0.5rem;
  transform: translateY(-2.5rem);
}

.tour__newsletter-link .text-link {
  position: relative;
  isolation: isolate;
  gap: 1rem;
  margin-top: 0;
  padding: 1.15rem 2rem;
  border: 0;
  border-radius: 0;
  background: var(--red);
  clip-path: polygon(1.1rem 0, 100% 0, calc(100% - 1.1rem) 100%, 0 100%);
  color: white;
  font-size: 1.1rem;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.tour__newsletter-link .text-link::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--red-dark);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tour__newsletter-link .text-link span,
.tour__newsletter-link .text-link svg {
  position: relative;
  z-index: 1;
}

.tour__newsletter-link .text-link svg {
  width: 1.2rem;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tour__newsletter-link .text-link:hover,
.tour__newsletter-link .text-link:focus-visible {
  transform: translateY(-0.15rem);
}

.tour__newsletter-link .text-link:hover::before,
.tour__newsletter-link .text-link:focus-visible::before {
  transform: scaleX(1);
}

.tour__newsletter-link .text-link:hover svg,
.tour__newsletter-link .text-link:focus-visible svg {
  transform: translateX(0.3rem);
}

.tour__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin: 2rem 0 5rem;
  padding-left: clamp(2rem, 8vw, 9rem);
}

.tour__filters {
  display: flex;
  gap: 0.35rem;
  padding-bottom: 0.5rem;
}

.tour__filters button {
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line-dark);
  border-radius: 2rem;
  background: transparent;
  font-size: 0.57rem;
  letter-spacing: 0.12em;
}

.tour__filters button.is-active,
.tour__filters button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.tour-list {
  border-top: 1px solid var(--ink);
  width: min(80rem, 100%);
  margin: 0 auto;
}

.tour-row {
  position: relative;
  display: grid;
  grid-template-columns: 8rem minmax(13rem, 1.2fr) 1fr 5rem 9rem;
  align-items: center;
  min-height: 8.5rem;
  gap: clamp(1.25rem, 3vw, 4rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  transition: color 0.3s ease;
}

.tour-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  background: var(--red);
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tour-row:hover {
  color: white;
}

.tour-row:hover::before {
  transform: scaleY(1);
}

.tour-row > * {
  position: relative;
  z-index: 1;
}

.tour-row__date {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.tour-row__date b {
  font-family: var(--serif);
  font-size: 3.3rem;
  font-weight: 400;
  line-height: 1;
}

.tour-row__date span {
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.tour-row__city h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.tour-row__city span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.59rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
}

.tour-row__venue,
.tour-row__orchestra {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.tour-row__orchestra {
  text-transform: uppercase;
  opacity: 0.5;
}

.tour-row__ticket {
  width: 9rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  justify-self: end;
  padding: 0.25rem 0;
  border: 0;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tour-row__ticket span {
  flex: 0 0 auto;
  line-height: 1;
}

.tour-row__ticket--form {
  color: inherit;
  cursor: pointer;
  font-family: inherit;
}

.tour-row.is-hidden {
  display: none;
}

.tour-list__empty {
  margin: 0;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(10, 10, 9, 0.6);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.tour__more {
  display: block;
  margin: 2.4rem auto 0;
  padding: 0.95rem 1.4rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.tour__more:hover,
.tour__more:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.tour__more[hidden] {
  display: none;
}

.ticket-interest-dialog {
  width: min(72rem, calc(100vw - 2rem));
  max-width: none;
  max-height: min(52rem, calc(100svh - 2rem));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.38);
}

.ticket-interest-dialog::backdrop {
  background: rgba(10, 10, 9, 0.78);
  backdrop-filter: blur(0.35rem);
}

.ticket-interest-dialog__layout {
  min-height: 42rem;
  display: grid;
  grid-template-columns: minmax(19rem, 0.8fr) minmax(0, 1.2fr);
}

.ticket-interest-dialog__intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(2.25rem, 5vw, 5rem);
  background: var(--ink);
  color: var(--paper);
}

.ticket-interest-dialog__intro .eyebrow {
  position: relative;
  margin: 0 0 2rem;
  color: var(--gold);
}

.ticket-interest-dialog__intro h2 {
  position: relative;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.ticket-interest-dialog__intro h2 em {
  color: var(--red);
  font-style: normal;
}

.ticket-interest-dialog__intro > p:not(.eyebrow, .ticket-interest-dialog__event) {
  position: relative;
  max-width: 31rem;
  margin: 2rem 0 0;
  color: rgba(236, 232, 223, 0.78);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-weight: 400;
  line-height: 1.75;
}

.ticket-interest-dialog__event {
  position: relative;
  margin: 2.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
  color: var(--paper);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.65;
  text-transform: uppercase;
}

.ticket-interest-dialog__form-panel {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(3.5rem, 7vw, 7rem) clamp(2rem, 5vw, 5rem);
}

.ticket-interest-dialog__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.ticket-interest-dialog__close:hover,
.ticket-interest-dialog__close:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.ticket-interest-form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem 1.5rem;
}

.ticket-interest-form__field {
  min-width: 0;
}

.ticket-interest-form__field--wide,
.ticket-interest-form__submit,
.ticket-interest-form__privacy {
  grid-column: 1 / -1;
}

.ticket-interest-form__field label {
  display: block;
  margin-bottom: 0.65rem;
  color: rgba(10, 10, 9, 0.52);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticket-interest-form__field input {
  width: 100%;
  min-width: 0;
  padding: 0.8rem 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
}

.ticket-interest-form__field input::placeholder {
  color: rgba(10, 10, 9, 0.3);
  font-family: var(--serif);
  font-size: 0.5em;
}

.ticket-interest-form__field input:focus {
  border-color: var(--red);
}

.ticket-interest-form__submit {
  min-height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 0 1.4rem;
  border: 1px solid var(--red);
  background: var(--red);
  color: white;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-align: left;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.ticket-interest-form__submit i {
  font-size: 1rem;
  font-style: normal;
}

.ticket-interest-form__submit:hover,
.ticket-interest-form__submit:focus-visible {
  background: transparent;
  color: var(--red);
}

.ticket-interest-form__privacy {
  margin: -0.4rem 0 0;
  color: rgba(10, 10, 9, 0.48);
  font-size: 0.66rem;
  line-height: 1.65;
}

.ticket-interest-form__privacy a {
  border-bottom: 1px solid currentColor;
}

.ticket-interest-form .input--hidden {
  display: none !important;
}

@media (max-width: 780px) {
  .ticket-interest-dialog {
    width: calc(100vw - 1rem);
    max-height: calc(100svh - 1rem);
  }

  .ticket-interest-dialog__layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .ticket-interest-dialog__intro {
    min-height: 21rem;
    padding: 2rem;
  }

  .ticket-interest-dialog__intro h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .ticket-interest-dialog__intro > p:not(.eyebrow, .ticket-interest-dialog__event) {
    margin-top: 1.25rem;
  }

  .ticket-interest-dialog__event {
    margin-top: 1.5rem;
  }

  .ticket-interest-dialog__form-panel {
    padding: 4.5rem 1.5rem 2.5rem;
  }

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

  .ticket-interest-form__field--wide,
  .ticket-interest-form__submit,
  .ticket-interest-form__privacy {
    grid-column: 1;
  }
}

.program {
  overflow: hidden;
  background: var(--red-dark);
  color: var(--paper);
}

.program__pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 36rem;
  opacity: 0.12;
  background-image:
    linear-gradient(45deg, transparent 47%, var(--gold) 48%, var(--gold) 52%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, var(--gold) 48%, var(--gold) 52%, transparent 53%);
  background-size: 3.4rem 3.4rem;
  mask-image: linear-gradient(to left, black, transparent);
}

.program__header {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 5rem;
  margin: 2rem 0 6rem;
  padding-left: clamp(2rem, 8vw, 9rem);
}

.program__switch {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.5rem;
}

.program__switch button {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  color: rgba(236, 232, 223, 0.42);
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 2rem);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.program__switch button span {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
}

.program__switch button b {
  min-width: 0;
  font: inherit;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.program__switch button.is-active {
  padding-left: 1rem;
  color: var(--paper);
}

.program-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 2vw, 10rem);
  padding: 4rem clamp(2rem, 8vw, 9rem);
  border-top: 1px solid var(--line-light);
}

.program-panel[hidden] {
  display: none;
}

.program-preloader {
  position: relative;
  display: flex;
  min-height: 18rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem clamp(2rem, 8vw, 9rem);
  border-top: 1px solid var(--line-light);
  color: rgba(236, 232, 223, 0.72);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.program-preloader__mark {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(236, 232, 223, 0.24);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: program-spin 0.9s linear infinite;
}

@keyframes program-spin {
  to {
    transform: rotate(360deg);
  }
}

.program-panel__link {
  grid-column: 1 / -1;
  justify-self: end;
  margin-top: 1rem;
  border-color: currentColor;
}

.program-panel__intro {
  position: relative;
  min-height: 21rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.program-panel__glyph {
  position: absolute;
  top: -1.8rem;
  left: 0;
  color: rgba(197, 166, 106, 0.16);
  font-family: var(--chinese);
  font-size: clamp(7rem, 14vw, 14rem);
  line-height: 1;
  writing-mode: vertical-rl;
}

.program-panel__intro > div {
  position: relative;
  z-index: 1;
}

.program-panel__intro h3 {
  max-width: 28rem;
  margin: 0 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
}

.program-panel__intro > div > p:last-child {
  color: rgba(236, 232, 223, 0.52);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.setlist {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.setlist > li {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr 2rem;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line-light);
}

.setlist > li > span {
  color: rgba(236, 232, 223, 0.48);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.setlist__piece {
  min-width: 0;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.45rem);
  font-weight: 400;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.setlist__piece > :first-child {
  margin-top: 0;
}

.setlist__piece > :last-child {
  margin-bottom: 0;
}

.setlist__piece p {
  margin: 0;
}

.setlist__piece p + p,
.setlist__piece p + ul,
.setlist__piece p + ol,
.setlist__piece p + blockquote,
.setlist__piece p + pre {
  margin-top: 0.65rem;
}

.setlist__piece h1,
.setlist__piece h2,
.setlist__piece h3,
.setlist__piece h4,
.setlist__piece h5,
.setlist__piece h6 {
  margin: 0 0 0.5rem;
  color: var(--paper);
  font: inherit;
  font-weight: 600;
}

.setlist__piece strong {
  color: var(--paper);
  font-weight: 600;
}

.setlist__piece em {
  color: var(--gold);
}

.setlist__piece a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.setlist__piece ul,
.setlist__piece ol {
  margin: 0.65rem 0 0;
  padding-left: 1.7rem;
  font-size: 0.82em;
  line-height: 1.55;
}

.setlist__piece li {
  margin-top: 0.25rem;
  padding-left: 0.5rem;
}

.setlist__piece blockquote {
  margin: 0;
  padding-left: 0.85rem;
  border-left: 1px solid var(--gold);
  color: rgba(236, 232, 223, 0.68);
}

.setlist__piece code {
  padding: 0.08em 0.28em;
  background: rgba(236, 232, 223, 0.1);
  font-family: monospace;
  font-size: 0.82em;
}

.setlist__piece pre {
  max-width: 100%;
  margin: 0;
  overflow-x: auto;
  padding: 0.75rem;
  background: rgba(236, 232, 223, 0.08);
  font-family: monospace;
  font-size: 0.72rem;
  white-space: pre-wrap;
}

.setlist__piece pre code {
  padding: 0;
  background: transparent;
  font-size: inherit;
}

.setlist__piece hr {
  height: 1px;
  margin: 0.75rem 0;
  border: 0;
  background: var(--line-light);
}

.setlist__piece table {
  width: 100%;
  display: block;
  margin-top: 0.75rem;
  overflow-x: auto;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.68rem;
}

.setlist__piece th,
.setlist__piece td {
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line-light);
  text-align: left;
}

.setlist > li > i {
  justify-self: end;
  color: var(--gold);
  font-size: 0.55rem;
  font-style: normal;
}

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

.artists__heading {
  margin: 2rem 0 5rem;
  padding-left: clamp(2rem, 8vw, 9rem);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: row dense;
  gap: 1rem;
}

.artist-card {
  grid-column: span 4;
  min-height: 37rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-dark);
}

.artist-card--span-3 {
  grid-column: span 3;
}

.artist-card--span-4 {
  grid-column: span 4;
}

.artist-card--span-6 {
  grid-column: span 6;
}

.artist-card--span-12 {
  grid-column: span 12;
}

@media (min-width: 1101px) {
  .artist-grid[data-artist-count="5"] .artist-card:nth-child(4) {
    grid-column: 3 / span 4;
  }

  .artist-grid[data-artist-count="5"] .artist-card:nth-child(5) {
    grid-column: 7 / span 4;
  }
}

.artist-card__visual {
  position: relative;
  flex: 1;
  min-height: 27rem;
  overflow: hidden;
  background: #171611;
}

.artist-card__initial {
  position: absolute;
  z-index: 1;
  right: -0.03em;
  bottom: -0.18em;
  color: rgba(236, 232, 223, 0.08);
  font-family: var(--chinese);
  font-size: clamp(11rem, 23vw, 27rem);
  line-height: 1;
}

.artist-card__photo {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.artist-card__visual.is-image-missing .artist-card__initial {
  right: 50%;
  bottom: 50%;
  transform: translate(50%, 50%);
  color: rgba(236, 232, 223, 0.16);
}

.artists-preloader,
.artists__empty {
  grid-column: 1 / -1;
}

.artists-preloader {
  display: flex;
  min-height: 22rem;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: rgba(10, 10, 9, 0.55);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artists-preloader .program-preloader__mark {
  border-color: rgba(10, 10, 9, 0.18);
  border-top-color: var(--red);
}

.artists__empty {
  margin: 0;
  padding: 4rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: rgba(10, 10, 9, 0.58);
  font-size: 0.88rem;
}

.artist-card__rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25rem;
  height: 25rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(197, 166, 106, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 4rem rgba(197, 166, 106, 0.04),
    0 0 0 8rem rgba(197, 166, 106, 0.03);
}

.artist-card__figure--conductor i {
  position: absolute;
  z-index: 2;
  display: block;
  background: var(--paper);
}

.artist-card__figure--conductor i:nth-child(1) {
  width: 5.5rem;
  height: 5.5rem;
  left: 50%;
  top: 28%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.artist-card__figure--conductor i:nth-child(2) {
  width: 14rem;
  height: 18rem;
  left: 50%;
  top: 39%;
  transform: translateX(-50%);
  clip-path: polygon(30% 0, 70% 0, 100% 100%, 0 100%);
}

.artist-card__figure--conductor i:nth-child(3) {
  width: 18rem;
  height: 2px;
  left: 57%;
  top: 41%;
  transform: rotate(-38deg);
  transform-origin: left;
  background: var(--red);
}

.artist-card__visual--red {
  background: var(--red-dark);
}

.artist-card__visual--paper {
  background: var(--paper-deep);
}

.artist-card__visual--paper .artist-card__initial {
  color: rgba(10, 10, 9, 0.08);
}

.artist-card__visual--ink {
  background: var(--ink);
}

.artist-card__strings {
  position: absolute;
  inset: 10% 23%;
  z-index: 2;
  border: 1px solid rgba(236, 232, 223, 0.35);
  border-radius: 45% 45% 50% 50%;
  background:
    linear-gradient(90deg, transparent 31%, rgba(236, 232, 223, 0.55) 32%, transparent 33%),
    linear-gradient(90deg, transparent 49%, rgba(236, 232, 223, 0.55) 50%, transparent 51%),
    linear-gradient(90deg, transparent 67%, rgba(236, 232, 223, 0.55) 68%, transparent 69%);
}

.artist-card__bow {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 12%;
  width: 2px;
  height: 72%;
  transform: rotate(6deg);
  background: var(--ink);
  box-shadow: 5rem 2rem 0 -0.5px var(--red);
}

.artist-card__wave {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 8rem;
  border-top: 1px solid rgba(197, 166, 106, 0.7);
  border-radius: 50%;
  transform: rotate(-7deg);
  box-shadow:
    0 -1.5rem 0 -1px rgba(197, 166, 106, 0.38),
    0 1.5rem 0 -1px rgba(197, 166, 106, 0.38);
}

.artist-card__info {
  flex: 0 0 auto;
  padding: 1.7rem;
}

.artist-card__info span {
  display: block;
  color: rgba(10, 10, 9, 0.46);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

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

.artists-page .site-header:not(.is-scrolled) {
  color: var(--paper);
}

.artists-page .site-header:not(.is-scrolled)::after {
  background: rgba(236, 232, 223, 0.24);
}

.artists-page .site-header:not(.is-scrolled) .desktop-nav a[aria-current="page"] {
  color: var(--paper);
}

.artists-page .site-header:not(.is-scrolled) .language {
  color: rgba(236, 232, 223, 0.7);
}

.artists-page .site-header:not(.is-scrolled) .menu-toggle {
  border-color: rgba(236, 232, 223, 0.28);
}

.artists-page.menu-open .site-header {
  color: var(--paper);
}

.artists-page .loader__count {
  display: none;
}

.artists-page .display-heading {
  letter-spacing: 0;
}

.artists-page-hero {
  position: relative;
  min-height: 42rem;
  height: 88svh;
  max-height: 54rem;
  overflow: hidden;
  background: #171611;
  color: var(--paper);
}

.artists-page-hero__media,
.artists-page-hero__shade {
  position: absolute;
  inset: 0;
}

.artists-page-hero__media {
  overflow: hidden;
  background: #2a2923;
}

.artists-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(0.9) contrast(1.03);
}

.artists-page-hero__media > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(236, 232, 223, 0.14);
  font-family: var(--chinese);
  font-size: 31rem;
  line-height: 1;
}

.artists-page-hero__media:not(.is-image-missing) > span {
  opacity: 0;
}

.artists-page-hero__shade {
  z-index: 1;
  background: rgba(10, 10, 9, 0.46);
  pointer-events: none;
}

.artists-page-hero__circle {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  pointer-events: none;
}

.artists-page-hero__circle--ring {
  top: 15%;
  right: 8%;
  width: 23rem;
  height: 23rem;
  border: 1px solid rgba(236, 232, 223, 0.48);
  box-shadow: inset 0 0 0 2.5rem rgba(10, 10, 9, 0.08);
}

.artists-page-hero__circle--seal {
  right: 13%;
  bottom: 7.5rem;
  width: 8rem;
  height: 8rem;
  align-content: center;
  background: var(--red);
  color: var(--paper);
}

.artists-page-hero__circle--seal b {
  font-family: var(--chinese);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
}

.artists-page-hero__circle--seal span {
  margin-top: 0.45rem;
  font-size: 0.46rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artists-page-hero__circle--small {
  top: 24%;
  left: 7%;
  width: 4.75rem;
  height: 4.75rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--chinese);
  font-size: 1.4rem;
}

.artists-page-hero__content {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 0 1rem;
  padding: calc(var(--header-h) + 1.5rem) var(--page-x) 2.25rem;
}

.artists-page-hero__content .eyebrow {
  grid-column: 1 / span 3;
  grid-row: 1;
  margin: 0;
  color: var(--gold);
}

.artists-page-hero__content h1 {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: end;
  max-width: none;
  margin: 0 0 2rem;
  font-size: 6.5rem;
  line-height: 0.92;
}

.artists-page-hero__intro {
  grid-column: 7 / span 4;
  grid-row: 3;
  width: auto;
  margin: 0;
  color: rgba(236, 232, 223, 0.78);
  font-family: var(--sans);
  font-size: 0.7rem;
  line-height: 1.55;
}

.artists-page-hero__jump {
  grid-column: 11 / -1;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  color: inherit;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.artists-page-hero__jump i {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(236, 232, 223, 0.44);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
  font-style: normal;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.artists-page-hero__jump:hover i {
  border-color: var(--gold);
  background: rgba(197, 166, 106, 0.12);
}

.artists-directory {
  background: var(--paper);
}

.artists-directory__head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  align-items: end;
  gap: 5rem;
  margin: 2rem 0 5rem;
  padding-left: clamp(2rem, 8vw, 9rem);
}

.artists-directory__head h2 {
  margin: 1rem 0 0;
}

.artists-directory__copy {
  max-width: 30rem;
  margin: 0 0 0.8rem;
  color: rgba(10, 10, 9, 0.62);
  font-family: var(--serif);
  font-size: 0.92rem;
  line-height: 1.75;
}

.artists-directory__meta {
  position: sticky;
  z-index: 5;
  top: var(--header-h);
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(236, 232, 223, 0.96);
}

.artists-directory__meta > span {
  flex: 0 0 auto;
  color: rgba(10, 10, 9, 0.52);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.artists-directory__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
}

.artists-directory__filters button {
  min-height: 2.15rem;
  padding: 0.45rem 0.15rem;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: rgba(10, 10, 9, 0.62);
  font: inherit;
  font-size: 0.54rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.artists-directory__filters button:hover,
.artists-directory__filters button.is-active {
  border-color: var(--red);
  background: transparent;
  color: var(--ink);
}

.artists-directory-grid {
  column-count: 3;
  column-gap: 1rem;
}

.artists-directory-grid.is-compact-roster {
  display: grid;
  grid-template-columns: repeat(var(--artist-roster-columns), minmax(0, 1fr));
  gap: 1rem;
  column-count: auto;
  align-items: start;
}

.artists-directory-grid.is-compact-roster[data-artist-count="1"] {
  grid-template-columns: minmax(0, 30rem);
}

.artists-directory-grid.is-compact-roster .artist-profile {
  display: block;
  margin-bottom: 0;
}

.artist-profile {
  width: 100%;
  min-width: 0;
  display: inline-block;
  overflow: hidden;
  margin: 0 0 1rem;
  border: 1px solid var(--line-dark);
  border-radius: 2px;
  background: #f2eee6;
  break-inside: avoid;
  vertical-align: top;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.artist-profile:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.2rem 2.4rem rgba(10, 10, 9, 0.1);
}

.artist-profile--span-3,
.artist-profile--span-4,
.artist-profile--span-6,
.artist-profile--span-12 {
  width: 100%;
}

.artist-profile__visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1b1914;
}

.artist-profile:nth-child(3n + 2) .artist-profile__visual {
  aspect-ratio: 1 / 1.08;
  background: #34483e;
}

.artist-profile:nth-child(3n) .artist-profile__visual {
  aspect-ratio: 3 / 4;
  background: #7f211a;
}

.artist-profile--brief .artist-profile__visual {
  aspect-ratio: 4 / 3;
}

.artist-profile__photo {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.artist-profile:hover .artist-profile__photo {
  transform: scale(1.025);
}

.artist-profile__initial {
  position: absolute;
  right: 50%;
  bottom: 50%;
  transform: translate(50%, 50%);
  color: rgba(236, 232, 223, 0.17);
  font-family: var(--serif);
  font-size: 10rem;
  line-height: 1;
}

.artist-profile__role {
  display: block;
  color: var(--red);
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.artist-profile__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(10, 10, 9, 0.16);
}

.artist-profile__info {
  position: relative;
  min-height: 11rem;
  overflow: hidden;
  padding: 1.35rem;
}

.artist-profile__mark {
  position: absolute;
  right: -0.04em;
  bottom: -0.28em;
  color: rgba(10, 10, 9, 0.045);
  font-family: var(--chinese);
  font-size: 9rem;
  line-height: 1;
  pointer-events: none;
}

.artist-profile__info h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.08;
}

.artist-profile__bio {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 1rem 0 0;
  color: rgba(10, 10, 9, 0.6);
  font-family: var(--sans);
  font-size: 0.7rem;
  line-height: 1.65;
}

.artists-directory__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 5rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: rgba(10, 10, 9, 0.55);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artist-card__info h3 {
  margin: 0.6rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.artist-card__info p {
  margin: 1.5rem 0 0;
  color: rgba(10, 10, 9, 0.6);
  font-size: 0.75rem;
  line-height: 1.65;
}

.artist-card[data-artist-id="ZhangHongyan"] .artist-card__visual {
  min-height: 32rem;
}

.artist-card[data-artist-id="ZhangHongyan"] .artist-card__info p {
  display: -webkit-box;
  margin-top: 1rem;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.quote {
  position: relative;
  min-height: 47rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem var(--page-x);
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.quote::before,
.quote::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-light);
}

.quote::before {
  left: 18%;
}

.quote::after {
  right: 18%;
}

.quote blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 8rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.quote blockquote em {
  color: var(--red);
  font-style: normal;
}

.quote__meta {
  position: absolute;
  right: var(--page-x);
  bottom: 2.5rem;
  left: var(--page-x);
  display: flex;
  justify-content: space-between;
  color: rgba(236, 232, 223, 0.42);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.newsletter {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 6rem;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 10rem) var(--page-x);
  background: var(--red);
  color: white;
}

.newsletter__glyph {
  position: absolute;
  right: 1%;
  bottom: -0.38em;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--chinese);
  font-size: clamp(18rem, 36vw, 40rem);
  line-height: 1;
}

.newsletter__copy,
.newsletter__form,
.newsletter__brevo {
  position: relative;
  z-index: 1;
}

.newsletter__copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.newsletter .newsletter__brevo {
  width: 100%;
  max-width: 40rem;
  justify-self: end;
  padding: 0;
  background: transparent;
  font-family: var(--sans);
  text-align: left;
}

.newsletter .sib-form-container,
.newsletter #sib-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
}

.newsletter #sib-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.25rem;
}

.newsletter .newsletter__fields {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
}

.newsletter .newsletter__field--email {
  grid-column: 1 / -1;
}

.newsletter [data-newsletter-language-field][hidden] {
  display: none !important;
}

.newsletter .sib-input,
.newsletter .sib-form-block,
.newsletter .form__entry,
.newsletter .form__label-row {
  margin: 0;
  padding: 0;
}

.newsletter .entry__label {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-align: left;
  text-transform: uppercase;
}

.newsletter .entry__field {
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  background: transparent;
}

.newsletter #sib-container .entry__field input {
  width: 100%;
  min-width: 0;
  height: auto;
  padding: 0.85rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.3;
  text-align: left;
}

.newsletter #sib-container .entry__field input::placeholder {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--serif);
  font-size: 0.5em;
}

.newsletter .entry__specification,
.newsletter .entry__error {
  display: block;
  margin-top: 0.65rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--sans);
  font-size: 0.68rem;
  line-height: 1.5;
  text-align: left;
}

.newsletter .entry__error:not(:empty) {
  color: #ffd4cf;
}

.newsletter .newsletter__submit {
  padding-bottom: 2rem;
}

.newsletter #sib-container .sib-form-block__button {
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0;
  padding: 0 1.5rem;
  border: 1px solid white;
  border-radius: 0;
  background: white;
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.newsletter #sib-container .sib-form-block__button:hover,
.newsletter #sib-container .sib-form-block__button:focus-visible {
  background: transparent;
  color: white;
}

.newsletter #sib-container .sib-form-block__button svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.newsletter .sib-form-message-panel {
  max-width: none;
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  background: rgba(10, 10, 9, 0.16);
  color: white;
  font-family: var(--sans);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: left;
}

.newsletter .sib-form-message-panel__text {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.newsletter .sib-notification__icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.newsletter .input--hidden {
  display: none !important;
}

.newsletter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.newsletter__form input {
  min-width: 0;
  padding: 1.3rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.newsletter__form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter__form button {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  color: white;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.newsletter__form button svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
}

.form-note {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  margin: 0;
  font-size: 0.67rem;
}

.site-footer {
  padding: 2rem var(--page-x);
  background: var(--ink);
  color: var(--paper);
}

.footer-logos {
  position: relative;
  margin: 0 calc(var(--page-x) * -1) 2rem;
  padding: 2.5rem 0;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 10.5rem;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.footer-logos__track {
  width: max-content;
  display: flex;
}

.footer-logos.is-ready .footer-logos__track {
  animation: footer-logos-scroll 34s linear infinite;
  animation-play-state: paused;
}

.footer-logos.is-visible .footer-logos__track {
  animation-play-state: running;
  will-change: transform;
}

.footer-logos__group {
  display: flex;
  align-items: center;
  gap: clamp(2.75rem, 5vw, 6rem);
  padding-right: clamp(2.75rem, 5vw, 6rem);
}

.footer-logos__item {
  width: clamp(10rem, 15vw, 15rem);
  height: clamp(3.5rem, 6vw, 5.5rem);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logos__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logos__item img[src$="china_music_conservatory_logo.webp"],
.footer-logos__item img[src$="china_national_arts_logo.webp"] {
  padding: 0.65rem;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.94);
}

.footer-logos__item img[src$="hk_chinese_orchestra_2_logo.webp"] {
  padding: 0.65rem;
  border-radius: 0.35rem;
  background: #fff;
}

@keyframes footer-logos-scroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

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

.about-page .loader__count {
  display: none;
}

.about-page .display-heading {
  letter-spacing: 0;
}

.about-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 7rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
  background:
    radial-gradient(circle at 76% 28%, rgba(179, 38, 30, 0.2), transparent 31rem),
    linear-gradient(135deg, #151411, var(--ink) 62%);
  color: var(--paper);
}

.about-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line-light);
}

.about-hero__glyph {
  position: absolute;
  top: 8%;
  right: 4%;
  color: rgba(236, 232, 223, 0.035);
  font-family: var(--chinese);
  font-size: min(42vw, 40rem);
  line-height: 1;
  pointer-events: none;
}

.about-hero__content,
.about-hero__logo {
  position: relative;
  z-index: 1;
}

.about-hero .display-heading {
  max-width: 67rem;
  margin-top: 1.5rem;
  font-size: clamp(4.2rem, 8vw, 9.2rem);
  line-height: 0.98;
}

.about-hero__title-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 9rem);
}

.about-hero__intro {
  width: min(42rem, 100%);
  margin: 2.2rem 0 0;
  color: rgba(236, 232, 223, 0.7);
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.7;
}

.about-hero__logo {
  width: 70%;
  justify-self: end;
  align-self: end;
  transform: translate(-60%, -1.5rem);
}

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

.about-story {
  position: relative;
  background: var(--paper);
}

.about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: start;
}

.about-story .display-heading {
  margin-top: 1rem;
  font-size: clamp(3.6rem, 6.6vw, 7.5rem);
  line-height: 1;
}

.about-story__copy {
  padding-top: 2.2rem;
  color: rgba(10, 10, 9, 0.7);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.78;
}

.about-story__copy p {
  margin: 0;
}

.about-story__copy p + p {
  margin-top: 1.45rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(5rem, 9vw, 9rem);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.about-stats > div {
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.about-stats > div + div {
  border-left: 1px solid var(--line-dark);
}

.about-stats strong {
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: 1;
}

.about-stats span {
  color: rgba(10, 10, 9, 0.55);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-scope {
  background: #171611;
  color: var(--paper);
}

.about-scope__content {
  width: min(72rem, 100%);
}

.about-scope .display-heading {
  margin-top: 1rem;
  font-size: clamp(3.6rem, 6.5vw, 7.4rem);
  line-height: 1;
}

.about-scope__copy {
  width: min(47rem, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3.5rem;
  color: rgba(236, 232, 223, 0.65);
  line-height: 1.72;
}

.about-scope__copy p {
  margin: 0;
}

@media (max-width: 900px) {
  .about-hero__title-row,
  .about-story__grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 6rem);
  }

  .about-hero__logo {
    width: min(17.5rem, 54.6vw);
    justify-self: start;
    transform: none;
  }

  .about-story__copy {
    padding-top: 0;
  }

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

}

@media (max-width: 620px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stats > div {
    min-height: 10rem;
  }

  .about-stats > div + div {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }
}

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

.contact-page .loader__count {
  display: none;
}

.contact-page .display-heading {
  letter-spacing: 0;
}

.contact-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 0.65fr);
  align-items: end;
  gap: clamp(4rem, 10vw, 12rem);
  overflow: hidden;
  padding-top: calc(var(--header-h) + 7rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
  background:
    radial-gradient(circle at 82% 25%, rgba(179, 38, 30, 0.22), transparent 29rem),
    linear-gradient(145deg, #14130f, var(--ink) 68%);
  color: var(--paper);
}

.contact-hero__glyph {
  position: absolute;
  top: 7%;
  right: 4%;
  color: rgba(236, 232, 223, 0.035);
  font-family: var(--chinese);
  font-size: min(43vw, 41rem);
  line-height: 1;
  pointer-events: none;
}

.contact-hero__content,
.contact-hero__email {
  position: relative;
  z-index: 1;
}

.contact-hero__content {
  container-type: inline-size;
}

.contact-hero .display-heading {
  max-width: 73rem;
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 13cqw, 7.5rem);
  line-height: 0.98;
}

.contact-hero__title-line {
  display: block;
  white-space: nowrap;
}

.contact-hero__title-line + .contact-hero__title-line {
  margin-top: 0.08em;
}

.contact-hero__intro {
  width: min(43rem, 100%);
  margin: 2.3rem 0 0;
  color: rgba(236, 232, 223, 0.68);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.72;
}

.contact-hero__email {
  container-type: inline-size;
  min-height: 17rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 3.5vw, 3.5rem);
  border: 1px solid rgba(236, 232, 223, 0.24);
  background: rgba(236, 232, 223, 0.055);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-hero__email:hover,
.contact-hero__email:focus-visible {
  border-color: var(--red);
  background: rgba(179, 38, 30, 0.12);
}

.contact-hero__email > span {
  color: rgba(236, 232, 223, 0.5);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-hero__email strong {
  max-width: 100%;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 0.9rem;
  font-size: clamp(0.75rem, 6cqw, 1.9rem);
  font-weight: 400;
  line-height: 1.15;
}

.contact-hero__email i {
  align-self: flex-end;
  color: var(--red);
  font-size: 1.4rem;
  font-style: normal;
}

.contact-offices {
  background: var(--paper);
}

.contact-offices__head {
  display: block;
}

.contact-offices__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(5rem, 9vw, 9rem);
  border: 1px solid var(--line-dark);
}

.contact-office {
  position: relative;
  min-height: 36rem;
  display: flex;
  flex-direction: column;
  padding: clamp(2.2rem, 5vw, 5rem);
}

.contact-office + .contact-office {
  border-left: 1px solid var(--line-dark);
}

.contact-office__number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: rgba(10, 10, 9, 0.28);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.contact-office h3 {
  max-width: 30rem;
  margin: 3rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.7rem);
  font-weight: 400;
  line-height: 1.08;
}

.contact-office address {
  margin-top: 3.2rem;
  color: rgba(10, 10, 9, 0.58);
  font-style: normal;
  line-height: 1.75;
}

.contact-office dl {
  margin: auto 0 0;
}

.contact-office dl > div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line-dark);
}

.contact-office dt {
  color: rgba(10, 10, 9, 0.42);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-office dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.contact-office--vienna {
  background: #171611;
  color: var(--paper);
}

.contact-office--vienna .contact-office__number,
.contact-office--vienna address {
  color: rgba(236, 232, 223, 0.52);
}

.contact-office--vienna dl > div {
  border-top-color: var(--line-light);
}

.contact-office--vienna dt {
  color: rgba(236, 232, 223, 0.62);
}

@media (max-width: 900px) {
  .contact-hero,
  .contact-offices__grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 6rem);
  }

  .contact-hero__email {
    width: min(36rem, 100%);
    min-height: 14rem;
  }

  .contact-office + .contact-office {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }
}

.cookie-consent-backdrop {
  position: fixed;
  z-index: 5990;
  inset: 0;
  background: rgba(10, 10, 9, 0.82);
  backdrop-filter: blur(3px);
}

.cookie-consent {
  position: fixed;
  z-index: 6000;
  right: clamp(1rem, 2vw, 1.75rem);
  bottom: clamp(1rem, 2vw, 1.75rem);
  width: min(36rem, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: clamp(1.4rem, 3vw, 2rem);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-top: 4px solid var(--red);
  border-radius: 0;
  box-shadow: 0 1.5rem 4.5rem rgba(0, 0, 0, 0.46);
}

.cookie-consent-backdrop[hidden],
.cookie-consent[hidden],
.cookie-consent__settings[hidden] {
  display: none;
}

.cookie-consent__close {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: 400 1.8rem/1 var(--sans);
  cursor: pointer;
}

.cookie-consent h2 {
  margin: 0 2rem 1.15rem 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 400;
  line-height: 1.15;
  text-align: left;
}

.cookie-consent__copy > p {
  margin: 0;
  max-width: 54ch;
  color: rgba(10, 10, 9, 0.72);
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.65;
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.cookie-consent__button {
  min-height: 3rem;
  padding: 0.7rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-consent__button--primary {
  color: var(--paper);
  background: var(--red);
}

.cookie-consent__button--secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-dark);
}

.cookie-consent__button:focus-visible,
.cookie-consent__close:focus-visible,
.cookie-consent__privacy:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.cookie-consent__settings {
  margin-top: 1rem;
  padding: 0.25rem 0.9rem 0.9rem;
  background: var(--paper-deep);
  border: 1px solid var(--line-dark);
  border-radius: 0;
}

.cookie-consent__setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3rem;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent__setting strong {
  color: var(--red);
  font-size: 0.62rem;
}

.cookie-consent__setting input {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--red);
}

.cookie-consent__save {
  width: 100%;
  margin-top: 0.85rem;
}

.cookie-consent__privacy {
  display: block;
  width: fit-content;
  margin: 1rem 0 0;
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .cookie-consent {
    right: 1rem;
    bottom: 1rem;
    padding: 1.25rem;
  }

  .cookie-consent__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-logos.is-ready .footer-logos__track {
    animation: none;
  }

  .footer-logos {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .footer-logos__group[aria-hidden="true"] {
    display: none;
  }
}

.history-page {
  background: var(--ink);
}

.history-page .history-map,
.history-page .history-insights,
.history-page .history-table {
  padding-right: max(var(--page-x), calc((100vw - 94rem) / 2));
  padding-left: max(var(--page-x), calc((100vw - 94rem) / 2));
}

.history-page .display-heading {
  letter-spacing: 0;
}

.history-hero {
  position: relative;
  min-height: max(46rem, 94svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.history-hero__media {
  position: absolute;
  inset: 0;
}

.history-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.92) 0%, rgba(10, 10, 9, 0.55) 43%, rgba(10, 10, 9, 0.12) 78%),
    linear-gradient(0deg, rgba(10, 10, 9, 0.94) 0%, rgba(10, 10, 9, 0.08) 52%, rgba(10, 10, 9, 0.58) 100%);
}

.history-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.03);
}

.history-hero__content {
  position: relative;
  z-index: 1;
  width: min(94rem, 100%);
  padding: 11rem var(--page-x) 4rem;
}

.history-hero .display-heading {
  max-width: 74rem;
  font-size: 6.6rem;
  line-height: 1.02;
}

.history-hero__copy {
  width: min(43rem, 100%);
  margin: 1.8rem 0 0;
  color: rgba(236, 232, 223, 0.78);
  font-size: 1.15rem;
  line-height: 1.65;
}

.history-hero__meta {
  width: min(70rem, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(236, 232, 223, 0.34);
}

.history-hero__meta > * {
  min-height: 5.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  border-right: 1px solid rgba(236, 232, 223, 0.18);
}

.history-hero__meta > *:first-child {
  padding-left: 0;
}

.history-hero__meta span,
.history-panel__head span,
.history-map__toolbar > span,
.history-countries > div span {
  color: rgba(236, 232, 223, 0.56);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.history-hero__meta b {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.history-hero__meta a {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-right: 0;
  color: var(--paper);
  transition: color 0.25s ease;
}

.history-hero__meta a span {
  color: inherit;
}

.history-hero__meta a i {
  color: var(--gold);
  font-size: 1.2rem;
  font-style: normal;
  transition: transform 0.25s ease;
}

.history-hero__meta a:hover {
  color: var(--gold);
}

.history-hero__meta a:hover i {
  transform: translateY(0.3rem);
}

.history-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding-right: 0;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line-light);
  color: var(--paper);
}

.history-stat {
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  background: #14110f;
}

.history-stat span,
.history-row > span {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.history-stat b {
  display: block;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 4.6rem;
  font-weight: 400;
  line-height: 0.9;
}

.history-stat p {
  margin: 0;
  color: rgba(236, 232, 223, 0.54);
  line-height: 1.5;
}

.history-map {
  background: #f1ede5;
  color: var(--ink);
}

.history-section-head,
.history-table__head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.55fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 4.5rem;
}

.history-section-head__copy {
  max-width: 34rem;
  margin: 0 0 0.35rem;
  color: rgba(10, 10, 9, 0.62);
  font-size: 1.05rem;
  line-height: 1.7;
}

.history-map__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(20rem, 0.55fr);
  gap: 1px;
  align-items: stretch;
  background: rgba(10, 10, 9, 0.14);
}

.history-map__frame {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #e5ddd1;
}

.history-map__toolbar {
  min-height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 1.5rem;
  border-bottom: 1px solid rgba(10, 10, 9, 0.12);
}

.history-map__toolbar > span {
  color: rgba(10, 10, 9, 0.62);
}

.history-map__legend {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(10, 10, 9, 0.5);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.history-map__legend i {
  width: 0.65rem;
  height: 0.65rem;
  display: block;
  border: 1px solid rgba(241, 237, 229, 0.9);
  border-radius: 50%;
  background: #d6c5ae;
}

.history-map__legend i:nth-of-type(2) {
  margin-left: 0.35rem;
  width: 1rem;
  height: 1rem;
  background: var(--red-dark);
}

.history-map__stage {
  position: relative;
  background: #e5ddd1;
}

.history-map__canvas {
  min-height: 39rem;
  background: #e5ddd1;
}

.history-map__loading {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  background: #e5ddd1;
  color: rgba(10, 10, 9, 0.58);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.history-map__stage.is-ready .history-map__loading {
  visibility: hidden;
  opacity: 0;
}

.history-map__canvas.maplibregl-map {
  font-family: var(--sans);
}

.history-map__canvas .maplibregl-ctrl-group {
  overflow: hidden;
  border: 1px solid rgba(10, 10, 9, 0.16);
  border-radius: 0;
  box-shadow: none;
}

.history-map__canvas .maplibregl-ctrl-group button {
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(241, 237, 229, 0.94);
  color: var(--ink);
}

.history-map__canvas .maplibregl-ctrl-group button + button {
  border-top-color: rgba(10, 10, 9, 0.12);
}

.history-map__canvas .maplibregl-ctrl-attrib {
  background: rgba(241, 237, 229, 0.84);
  color: rgba(10, 10, 9, 0.55);
  font-size: 0.55rem;
}

.history-map__canvas .maplibregl-ctrl-attrib a {
  color: inherit;
}

.history-map__canvas .maplibregl-popup {
  max-width: 17rem !important;
}

.history-map__canvas .maplibregl-popup-content {
  padding: 1rem 1.1rem;
  border-radius: 0;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 1rem 2.5rem rgba(10, 10, 9, 0.24);
}

.history-map__canvas .maplibregl-popup-tip {
  border-top-color: var(--ink);
  border-bottom-color: var(--ink);
}

.history-map__canvas .maplibregl-popup-close-button {
  width: 2rem;
  height: 2rem;
  color: rgba(236, 232, 223, 0.6);
  font-size: 1rem;
}

.history-map-popup span {
  color: var(--gold);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.history-map-popup h3 {
  margin: 0.45rem 1.5rem 0.35rem 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.history-map-popup p {
  margin: 0;
  color: rgba(236, 232, 223, 0.62);
  font-size: 0.7rem;
  line-height: 1.45;
}

.history-map__stage.map-error .history-map__loading {
  color: var(--red-dark);
}

.maplibregl-popup {
  border-radius: 0;
}

.history-map__fallback {
  margin: 0;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(10, 10, 9, 0.12);
  color: rgba(10, 10, 9, 0.62);
  font-size: 0.78rem;
}

.history-map__fallback:not([hidden]) {
  display: block;
}

.history-ranking {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  background: var(--ink);
  color: var(--paper);
}

.history-ranking--cities {
  display: grid;
  grid-template-rows: auto 1fr;
}

.history-ranking--cities ol {
  align-self: center;
}

.history-ranking__intro {
  max-width: 21rem;
  margin: 0;
  color: rgba(236, 232, 223, 0.55);
  line-height: 1.6;
}

.history-ranking ol {
  display: grid;
  gap: 0;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.history-ranking li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(236, 232, 223, 0.72);
  line-height: 1.35;
}

.history-ranking b {
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

.history-about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: 3rem 6rem;
  overflow: hidden;
  padding: 6rem 0 5rem;
  border-top: 1px solid rgba(10, 10, 9, 0.16);
  border-bottom: 1px solid rgba(10, 10, 9, 0.16);
}

.history-about::before {
  content: "樂";
  position: absolute;
  right: -1rem;
  bottom: -4rem;
  color: rgba(160, 22, 32, 0.045);
  font-family: var(--chinese);
  font-size: 19rem;
  line-height: 1;
  pointer-events: none;
}

.history-about > .eyebrow {
  grid-column: 1;
  margin-bottom: 0;
  color: var(--red-dark);
}

.history-about h3 {
  grid-column: 1;
  max-width: 30rem;
  margin: 1.5rem 0 0;
  font-family: var(--serif);
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.history-about h3 em {
  color: var(--red);
  font-style: normal;
}

.history-about__copy {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 48rem;
}

.history-about__copy p {
  margin: 0;
  color: rgba(10, 10, 9, 0.68);
  font-size: 0.98rem;
  line-height: 1.78;
}

.history-about__copy > p:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.62;
}

.history-about__copy > p + p {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10, 10, 9, 0.14);
}

.history-about__more[hidden] {
  display: none;
}

.history-about__more:not([hidden]) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(10, 10, 9, 0.14);
}

.history-about__more p {
  position: relative;
  padding-top: 1.1rem;
}

.history-about__more p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
}

.history-about__more p + p {
  margin-top: 0;
}

.history-about__toggle {
  grid-column: 2;
  width: min(48rem, 100%);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: -1rem;
  padding: 1rem 0;
  border: 0;
  border-top: 1px solid rgba(10, 10, 9, 0.18);
  border-bottom: 1px solid rgba(10, 10, 9, 0.18);
  background: transparent;
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.history-about__toggle i {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--red-dark);
  color: var(--paper);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease;
}

.history-about__toggle:hover i,
.history-about__toggle:focus-visible i {
  background: var(--ink);
}

.history-about__gallery {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(12rem, 18vw, 18rem);
  gap: 0.75rem;
  margin-top: 2rem;
}

.history-about__gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.history-about__gallery figure:nth-child(1),
.history-about__gallery figure:nth-child(2),
.history-about__gallery figure:nth-child(8),
.history-about__gallery figure:nth-child(9),
.history-about__gallery figure:nth-child(10),
.history-about__gallery figure:nth-child(11) {
  grid-column: span 6;
}

.history-about__gallery figure:nth-child(3),
.history-about__gallery figure:nth-child(4),
.history-about__gallery figure:nth-child(5) {
  grid-column: span 4;
}

.history-about__gallery figure:nth-child(6) {
  grid-column: span 7;
}

.history-about__gallery figure:nth-child(7) {
  grid-column: span 5;
}

.history-about__gallery.is-collapsed figure:nth-child(n + 6) {
  display: none;
}

.history-about__gallery-button {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.history-about__gallery-button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: -3px;
}

.history-about__gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.history-about__gallery figure:nth-child(3) img {
  object-position: center 28%;
}

.history-about__gallery figure:hover img,
.history-about__gallery-button:focus-visible img {
  transform: scale(1.025);
}

.history-about__gallery-toggle {
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(10, 10, 9, 0.24);
  background: transparent;
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.history-about__gallery-toggle:hover,
.history-about__gallery-toggle:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.history-about__gallery-toggle i {
  font-size: 1rem;
  font-style: normal;
  line-height: 1;
}

.history-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 1.5rem;
  overflow: hidden;
  border: 0;
  background: rgba(8, 8, 7, 0.97);
  color: var(--paper);
}

.history-lightbox[open] {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) 4rem;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.history-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.92);
}

.history-lightbox__stage {
  min-width: 0;
  height: 100%;
  display: grid;
  place-items: center;
}

.history-lightbox__image {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100dvh - 6rem);
  display: block;
  object-fit: contain;
}

.history-lightbox__close,
.history-lightbox__nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(236, 232, 223, 0.38);
  border-radius: 50%;
  background: rgba(10, 10, 9, 0.6);
  color: var(--paper);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.history-lightbox__close:hover,
.history-lightbox__close:focus-visible,
.history-lightbox__nav:hover,
.history-lightbox__nav:focus-visible {
  border-color: var(--paper);
  background: var(--red-dark);
}

.history-lightbox__close {
  position: fixed;
  z-index: 2;
  top: 1.25rem;
  right: 1.25rem;
  width: 3rem;
  height: 3rem;
  font-size: 1.6rem;
}

.history-lightbox__nav {
  width: 3.4rem;
  height: 3.4rem;
  font-size: 1.4rem;
}

.history-lightbox__nav--previous {
  grid-column: 1;
}

.history-lightbox__stage {
  grid-column: 2;
}

.history-lightbox__nav--next {
  grid-column: 3;
}

.history-lightbox__count {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(236, 232, 223, 0.68);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-align: center;
}

.history-countries {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(10, 10, 9, 0.16);
}

.history-countries > div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.history-countries > div span {
  color: rgba(10, 10, 9, 0.5);
}

.history-countries > div b {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
}

.history-countries ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.history-countries li {
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(10, 10, 9, 0.14);
  color: rgba(10, 10, 9, 0.7);
  font-size: 0.68rem;
}

.history-countries li b {
  margin-left: 0.3rem;
  color: var(--red-dark);
  font-weight: 600;
}

.history-insights {
  background: #171411;
  color: var(--paper);
}

.history-insights .history-section-head__copy,
.history-table .history-section-head__copy {
  color: rgba(236, 232, 223, 0.6);
}

.history-insights__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  gap: 1px;
  background: var(--line-light);
}

.history-timeline {
  min-width: 0;
  padding: 2.5rem;
  background: #211d18;
}

.history-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line-light);
}

.history-panel__head b {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
}

.history-year-chart {
  height: 22rem;
  display: grid;
  grid-template-columns: repeat(var(--history-year-count, 1), minmax(1.3rem, 1fr));
  align-items: end;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 3.5rem 0 0.5rem;
}

.history-year-chart > p {
  align-self: center;
  color: rgba(236, 232, 223, 0.5);
}

.history-year-bar {
  min-width: 1.3rem;
  height: 100%;
  display: grid;
  grid-template-rows: 1.3rem minmax(0, 1fr) 1.2rem;
  gap: 0.45rem;
  align-items: end;
  text-align: center;
}

.history-year-bar b {
  color: rgba(236, 232, 223, 0.72);
  font-size: 0.6rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.history-year-bar i {
  width: 100%;
  height: max(2px, var(--history-bar-height));
  display: block;
  align-self: end;
  background: var(--red);
  transform-origin: bottom;
  transition: background 0.2s ease;
}

.history-year-bar span {
  color: rgba(236, 232, 223, 0.36);
  font-size: 0.55rem;
}

.history-year-bar:hover b,
.history-year-bar:focus-within b {
  opacity: 1;
}

.history-year-bar:hover i {
  background: var(--gold);
}

.history-ranking--concerts {
  height: clamp(28rem, 42vw, 33.2rem);
  min-height: 0;
  justify-content: flex-start;
  overflow: hidden;
  background: #0f0e0c;
}

.history-ranking--concerts ol {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  padding-right: 0.75rem;
  scrollbar-color: rgba(211, 168, 91, 0.7) rgba(236, 232, 223, 0.08);
  scrollbar-width: thin;
}

.history-ranking--concerts ol::-webkit-scrollbar {
  width: 0.3rem;
}

.history-ranking--concerts ol::-webkit-scrollbar-track {
  background: rgba(236, 232, 223, 0.08);
}

.history-ranking--concerts ol::-webkit-scrollbar-thumb {
  background: rgba(211, 168, 91, 0.7);
}

.history-table {
  background: #741a15;
  color: var(--paper);
}

.history-table__head {
  margin-bottom: 3rem;
}

.history-filters {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) minmax(11rem, 0.35fr) auto;
  gap: 1px;
  align-items: end;
  margin-bottom: 2.5rem;
  background: rgba(236, 232, 223, 0.2);
}

.history-filters label {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 1.2rem;
  background: #681510;
}

.history-filters label > span {
  color: rgba(236, 232, 223, 0.5);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.history-filters input,
.history-filters select {
  width: 100%;
  min-height: 2rem;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font-size: 0.95rem;
}

.history-filters input::placeholder {
  color: rgba(236, 232, 223, 0.45);
}

.history-filters select {
  color-scheme: dark;
}

.history-filter-reset {
  align-self: stretch;
  padding: 0 1.2rem;
  border: 0;
  background: var(--paper);
  color: var(--red-dark);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
}

.history-filter-reset[hidden] {
  display: none;
}

.history-results-count {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.85rem 1.2rem;
  background: #5f120e;
  color: rgba(236, 232, 223, 0.65);
  font-size: 0.7rem;
}

.history-table__columns,
.history-row {
  display: grid;
  grid-template-columns: 0.35fr minmax(10rem, 0.9fr) minmax(14rem, 1.45fr) 0.35fr;
  gap: 2rem;
  align-items: center;
}

.history-table__columns {
  min-height: 2.8rem;
  border-top: 1px solid var(--line-light);
  color: rgba(236, 232, 223, 0.45);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.history-table__rows {
  border-top: 1px solid var(--line-light);
}

.history-row {
  position: relative;
  min-height: 7rem;
  border-bottom: 1px solid var(--line-light);
}

.history-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.15;
}

.history-row h3 small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(236, 232, 223, 0.48);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
}

.history-row p,
.history-row b {
  margin: 0;
  color: rgba(236, 232, 223, 0.68);
  font-weight: 400;
}

.history-row b {
  justify-self: end;
  white-space: nowrap;
}

.history-row a {
  position: absolute;
  inset: 0;
}

.history-row:has(a) {
  transition: background 0.25s ease, padding 0.25s ease;
}

.history-row:has(a):hover {
  padding-right: 1rem;
  padding-left: 1rem;
  background: rgba(236, 232, 223, 0.06);
}

.history-table__empty {
  margin: 0;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(236, 232, 223, 0.7);
}

.button--history {
  margin: 2.5rem auto 0;
  border-color: var(--paper);
  background: transparent;
}

.button--history:hover {
  background: var(--paper);
  color: var(--red-dark);
}

.button--history i {
  font-style: normal;
}

.history-table__more[hidden] {
  display: none;
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-light);
  color: rgba(236, 232, 223, 0.35);
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__bottom div {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer__bottom > span:last-child {
  text-align: right;
}

.reveal {
  visibility: hidden;
}

/* Newsletter confirmation and success pages */
.newsletter-status-page {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
}

.newsletter-status-page main {
  background: var(--paper);
}

.newsletter-status-page .site-header {
  background: var(--ink);
}

.newsletter-status {
  position: relative;
  min-height: min(55rem, 100svh);
  overflow: hidden;
  padding-top: var(--header-h);
  background: var(--paper);
}

.newsletter-status__content {
  width: 100%;
  max-width: 90rem;
  min-width: 0;
  min-height: calc(min(55rem, 100svh) - var(--header-h));
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 6rem) var(--page-x) clamp(2.5rem, 4vw, 4rem);
}

.newsletter-status__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(10, 10, 9, 0.48);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.newsletter-status__topline .eyebrow {
  margin: 0;
  color: var(--red);
}

.newsletter-status__copy {
  width: min(72rem, 100%);
  margin: auto 0;
  padding: 3rem 0;
}

.newsletter-status__step {
  display: block;
  margin-bottom: 1.5rem;
  color: rgba(10, 10, 9, 0.34);
  font-size: 0.58rem;
  letter-spacing: 0.23em;
}

.newsletter-status h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.newsletter-status h1 em {
  margin-left: clamp(1.5rem, 5vw, 6rem);
  color: var(--red);
  font-style: italic;
  font-weight: 400;
}

.newsletter-status-page--thanks .newsletter-status h1 em {
  margin-left: 0;
  color: var(--red);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-style: normal;
  line-height: 0.95;
}

.newsletter-status-page--thanks .newsletter-status__copy {
  display: grid;
  justify-items: center;
  margin: auto;
  text-align: center;
}

.newsletter-status-page--thanks .newsletter-status h1 {
  align-items: center;
  font-family: var(--serif);
}

.newsletter-status-page--thanks .newsletter-status__message {
  max-width: none;
  margin: clamp(2rem, 3vw, 3rem) 0 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 3rem);
  text-align: center;
}

.newsletter-status-page--thanks .newsletter-status__note {
  max-width: 46rem;
  margin: 1.5rem auto 0;
  color: rgba(10, 10, 9, 0.66);
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  line-height: 1.75;
  text-align: center;
}

.newsletter-status-page--thanks .newsletter-status__home {
  align-self: center;
  font-family: var(--sans);
}

.newsletter-status-page--confirmation .newsletter-status__copy {
  display: grid;
  justify-items: center;
  margin: auto;
  text-align: center;
}

.newsletter-status-page--confirmation .newsletter-status h1 {
  align-items: center;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  line-height: 0.96;
}

.newsletter-status-page--confirmation .newsletter-status h1 em {
  margin-left: 0;
  font-style: normal;
}

.newsletter-status-page--confirmation .newsletter-status__message {
  max-width: 40rem;
  margin: clamp(2rem, 3vw, 3rem) auto 0;
  font-family: var(--serif);
  text-align: center;
}

.newsletter-status-page--confirmation .newsletter-status__note {
  max-width: 40rem;
  margin: 1.5rem auto 0;
  color: rgba(10, 10, 9, 0.66);
  font-family: var(--sans);
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  line-height: 1.75;
  text-align: center;
}

.newsletter-status-page--confirmation .newsletter-status__home {
  align-self: center;
  font-family: var(--sans);
}

.newsletter-status__message {
  max-width: 34ch;
  margin: clamp(2.5rem, 4vw, 4.5rem) 0 0 auto;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  font-weight: 300;
  line-height: 1.55;
}

.newsletter-status__note {
  max-width: 49rem;
  margin: 0.8rem 0 0 auto;
  color: rgba(10, 10, 9, 0.48);
  font-size: 0.72rem;
  line-height: 1.65;
}

.newsletter-status__home {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line-dark);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.newsletter-status__home i {
  color: var(--red);
  font-size: 1rem;
  font-style: normal;
  transition: transform 0.25s ease;
}

.newsletter-status__home:hover i,
.newsletter-status__home:focus-visible i {
  transform: translate(0.2rem, -0.2rem);
}

.newsletter-status-footer {
  padding: 1.5rem var(--page-x) 2.3rem;
}

/* Impressum */
.legal-page {
  background: var(--paper);
  color: var(--ink);
}

.legal-page .site-header {
  background: var(--ink);
}

.legal-hero {
  position: relative;
  min-height: clamp(34rem, 72vh, 48rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--header-h) + clamp(4rem, 9vw, 9rem)) var(--page-x) clamp(4rem, 7vw, 7rem);
  background: var(--ink);
  color: var(--paper);
}

.legal-hero::after {
  content: "";
  position: absolute;
  right: var(--page-x);
  bottom: 0;
  left: var(--page-x);
  border-bottom: 1px solid var(--line-light);
}

.legal-hero__glyph {
  position: absolute;
  top: 48%;
  right: clamp(-1rem, 2vw, 3rem);
  color: rgba(197, 166, 106, 0.12);
  font-family: var(--chinese);
  font-size: clamp(20rem, 42vw, 42rem);
  font-weight: 500;
  line-height: 0.7;
  transform: translateY(-50%);
  user-select: none;
}

.legal-hero__copy {
  position: relative;
  z-index: 1;
  width: min(70rem, 100%);
}

.legal-hero .eyebrow {
  margin: 0 0 clamp(1.5rem, 3vw, 2.8rem);
  color: var(--gold);
}

.legal-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.8rem, 11.5vw, 11rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.legal-hero__intro {
  max-width: 43rem;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0 clamp(0rem, 8vw, 9rem);
  color: rgba(236, 232, 223, 0.68);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  font-weight: 300;
  line-height: 1.65;
}

.legal-hero__meta {
  position: absolute;
  right: var(--page-x);
  bottom: clamp(1.2rem, 2vw, 2rem);
  z-index: 1;
  color: rgba(236, 232, 223, 0.42);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-content {
  max-width: 100rem;
  margin: 0 auto;
  background: var(--paper);
}

.legal-company {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: clamp(3rem, 8vw, 9rem);
  margin-bottom: clamp(4rem, 8vw, 8rem);
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--red);
  color: var(--paper);
}

.legal-company .eyebrow {
  margin: 0 0 1.5rem;
  color: rgba(236, 232, 223, 0.68);
}

.legal-company h2 {
  max-width: 11ch;
  margin: 0 0 2rem;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.legal-company address {
  color: rgba(236, 232, 223, 0.78);
  font-style: normal;
  line-height: 1.75;
}

.legal-company dl,
.legal-details {
  margin: 0;
}

.legal-company dl > div,
.legal-details > div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.7fr) minmax(0, 1.3fr);
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(236, 232, 223, 0.22);
}

.legal-company dt,
.legal-details dt {
  color: rgba(236, 232, 223, 0.58);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.legal-company dd,
.legal-details dd {
  margin: 0;
  line-height: 1.55;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.legal-block {
  position: relative;
  min-height: 34rem;
  padding: clamp(2rem, 4vw, 4rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.legal-block > span {
  display: block;
  margin-bottom: clamp(3rem, 7vw, 7rem);
  color: var(--red);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
}

.legal-block h2 {
  margin: 0 0 clamp(2rem, 4vw, 3.5rem);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.legal-block h3 {
  margin: 2rem 0 0.55rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.legal-block p {
  max-width: 48rem;
  margin: 0;
  color: rgba(10, 10, 9, 0.68);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.8;
}

.legal-details > div {
  border-color: var(--line-dark);
}

.legal-details dt {
  color: rgba(10, 10, 9, 0.48);
}

.legal-link {
  border-bottom: 1px solid currentColor;
  color: var(--red);
}

.legal-block--accent {
  background: var(--ink);
  color: var(--paper);
}

.legal-block--accent > span,
.legal-block--accent .legal-link {
  color: var(--gold);
}

.legal-block--accent p {
  color: rgba(236, 232, 223, 0.68);
}

.legal-credit {
  margin-top: clamp(3rem, 6vw, 6rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-light);
}

.privacy-hero h1 {
  font-size: clamp(4.2rem, 9vw, 9rem);
}

.privacy-content {
  max-width: 100rem;
  margin: 0 auto;
}

.privacy-intro {
  display: grid;
  grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 8vw, 9rem);
  padding: 0 0 clamp(4rem, 8vw, 8rem);
}

.privacy-intro .eyebrow {
  margin: 0;
  color: var(--red);
}

.privacy-intro > p:last-child {
  max-width: 45rem;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 2.5rem);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.privacy-sections {
  border-top: 1px solid var(--line-dark);
}

.privacy-section {
  display: grid;
  grid-template-columns: 4rem minmax(13rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  padding: clamp(3rem, 6vw, 6rem) 0;
  border-bottom: 1px solid var(--line-dark);
}

.privacy-section > span {
  padding-top: 0.45rem;
  color: var(--red);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

.privacy-section h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.1vw, 3.3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.privacy-section__body {
  max-width: 49rem;
  color: rgba(10, 10, 9, 0.7);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.82;
}

.privacy-section__body p {
  margin: 0 0 1.25rem;
}

.privacy-section__body p:last-child {
  margin-bottom: 0;
}

.privacy-section__body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 2rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.privacy-section__body li {
  position: relative;
  padding-left: 1.25rem;
}

.privacy-section__body li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--red);
}

.privacy-section__body address {
  margin: 1.25rem 0;
  font-style: normal;
}

.privacy-section__body a {
  border-bottom: 1px solid currentColor;
  color: var(--red);
}

.privacy-section--contact {
  margin-top: clamp(3rem, 7vw, 7rem);
  padding: clamp(2.5rem, 5vw, 5rem);
  border: 0;
  background: var(--red);
  color: var(--paper);
}

.privacy-section--contact > span,
.privacy-section--contact .privacy-section__body,
.privacy-section--contact .privacy-section__body a {
  color: var(--paper);
}

.privacy-section--contact .privacy-section__body a {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.8rem);
}

@media (max-width: 900px) {
  .newsletter-status {
    min-height: 0;
    padding-top: var(--header-h);
  }

  .newsletter-status__content {
    min-height: 40rem;
    padding-top: 2.5rem;
  }

  .newsletter-status__copy {
    padding: 4rem 0;
  }

  .newsletter-status h1 {
    font-size: clamp(3.7rem, 13vw, 6.5rem);
  }

  .newsletter-status__message {
    margin-top: 3rem;
  }

  .newsletter-status-footer .footer__bottom {
    gap: 1rem;
  }

  .legal-hero {
    min-height: 34rem;
    padding-bottom: 5rem;
  }

  .legal-hero__glyph {
    right: -4rem;
    font-size: clamp(18rem, 70vw, 28rem);
  }

  .legal-hero__intro {
    margin-left: 0;
  }

  .legal-hero__meta {
    left: var(--page-x);
    right: auto;
  }

  .legal-company,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-company {
    gap: 2.5rem;
  }

  .legal-block {
    min-height: 0;
  }

  .legal-block > span {
    margin-bottom: 3rem;
  }

  .privacy-intro {
    grid-template-columns: 1fr;
  }

  .privacy-section {
    grid-template-columns: 3rem minmax(0, 1fr);
  }

  .privacy-section__body {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .legal-hero h1 {
    font-size: clamp(3.8rem, 19vw, 5.5rem);
  }

  .legal-company dl > div,
  .legal-details > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .privacy-hero h1 {
    font-size: clamp(3rem, 14.5vw, 4.5rem);
  }

  .privacy-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .privacy-section__body {
    grid-column: 1;
  }

  .privacy-section__body ul {
    grid-template-columns: 1fr;
  }

  .privacy-section--contact {
    padding: 2rem;
  }
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-header-language {
    display: flex;
  }

  .header-actions .button,
  .language {
    display: none;
  }

  .hero__content {
    padding-right: 6rem;
  }

  .hero__campaign {
    right: 6rem;
  }

  .instruments__intro {
    grid-column: 2;
  }

  .tour-list {
    width: 100%;
  }

  .tour-row {
    grid-template-columns: 7rem minmax(11rem, 1fr) 0.8fr 9rem;
    gap: clamp(1.25rem, 2.5vw, 2.5rem);
  }

  .tour-row__orchestra {
    display: none;
  }

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

  .artist-card,
  .artist-card--span-3,
  .artist-card--span-4,
  .artist-card--span-6,
  .artist-card--span-12,
  .artist-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .artist-card__visual {
    min-height: clamp(18rem, 58vw, 27rem);
  }

  .artist-card__info {
    padding: clamp(1.2rem, 3vw, 1.7rem);
  }

  .artist-card__info h3 {
    font-size: clamp(1.55rem, 6vw, 2.45rem);
  }

  .artists-page-hero__content {
    width: auto;
  }

  .artists-page-hero__content h1 {
    font-size: 4.4rem;
  }

  .artists-directory__head {
    gap: 3rem;
    padding-left: 3rem;
  }

  .artists-directory-grid {
    column-count: 2;
  }

  .artist-profile,
  .artist-profile--span-3,
  .artist-profile--span-4,
  .artist-profile--span-6,
  .artist-profile--span-12,
  .artist-profile:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

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

  .history-map__grid {
    grid-template-columns: 1fr;
  }

  .history-map__canvas {
    min-height: 34rem;
  }

  .history-ranking--cities {
    min-height: 28rem;
  }

  .history-insights__grid {
    grid-template-columns: 1fr;
  }

  .history-ranking--concerts {
    min-height: 28rem;
  }

  .history-table__columns,
  .history-row {
    grid-template-columns: 0.28fr minmax(9rem, 0.8fr) minmax(12rem, 1.15fr) 0.28fr;
    gap: 1.25rem;
  }
}

@media (max-width: 780px) {
  :root {
    --header-h: 4.8rem;
  }

  .cursor {
    display: none;
  }

  .site-header::after {
    right: 1.25rem;
    left: 1.25rem;
  }

  .brand__name {
    display: none;
  }

  .brand__nav-logo {
    width: 2.38rem;
    max-height: 2.38rem;
  }

  .site-header.is-scrolled .brand__nav-logo {
    width: 2.1rem;
    max-height: 2.135rem;
  }

  .hero {
    height: max(45rem, 100svh);
    min-height: 650px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.5), rgba(5, 5, 5, 0.02));
  }

  .hero__content {
    justify-content: flex-end;
    padding: 7rem 1.25rem 7rem;
  }

  .hero__kicker {
    width: 100%;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .hero__title {
    font-size: clamp(3.5rem, 16.5vw, 5.4rem);
    line-height: 0.86;
    letter-spacing: 0;
  }

  .hero__title-line--offset {
    margin-left: 0;
  }

  .hero__title-line--accent {
    margin-left: 0;
  }

  .hero__bottom {
    width: 100%;
    align-items: flex-end;
    gap: 1rem;
    margin: 1.5rem 0 0;
  }

  .hero__bottom p {
    max-width: 15rem;
    font-size: 0.72rem;
    line-height: 1.55;
  }

  .round-link {
    width: 5.5rem;
    height: 5.5rem;
    flex-basis: 5.5rem;
  }

  .hero__rail--left,
  .hero__interaction {
    display: none;
  }

  .hero__rail--right {
    display: none;
  }

  .hero__campaign {
    top: 5.8rem;
    right: auto;
    left: 1.25rem;
    width: calc(100% - 2.5rem);
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    text-align: center;
  }

  .hero__campaign img,
  .hero__campaign .hero__happy-new-year-logo {
    width: calc((100% - 3rem) / 2);
    flex: 0 0 calc((100% - 3rem) / 2);
  }

  .hero__campaign .hero__campaign-logo {
    display: block;
  }

  .hero__campaign .hero__happy-new-year-logo {
    margin-top: 0;
  }

  .hero__campaign span {
    font-size: 0.5rem;
  }

  .hero__socials {
    top: 28%;
    right: 1.25rem;
    bottom: auto;
  }

  .hero__socials a {
    width: 2.75rem;
    height: 2.75rem;
  }

  .section-index {
    left: 1.25rem;
  }

  .display-heading {
    font-size: clamp(2.8rem, 14vw, 4.7rem);
  }

  .intro {
    min-height: auto;
    padding-top: 9rem;
  }

  .intro__heading {
    min-width: 0;
    padding-left: 0;
  }

  .intro .display-heading {
    font-size: clamp(2.5rem, 11vw, 4.7rem);
  }

  .intro .display-heading em {
    overflow-wrap: break-word;
  }

  .intro__body {
    align-self: stretch;
    width: 100%;
    padding-top: 1.75rem;
  }

  .intro__body p {
    font-size: clamp(0.94rem, 3.8vw, 1.05rem);
    line-height: 1.65;
  }

  .intro__history-media {
    margin-top: 2rem;
  }

  .intro__history-media > span {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    grid-template-columns: 1fr auto;
    font-size: 1.05rem;
  }

  .intro__history-media small {
    grid-column: 1 / -1;
  }

  .intro__seal {
    display: none;
  }

  .manifesto {
    padding: 2.7rem 0;
  }

  .manifesto__line {
    font-size: 2.5rem;
  }

  .manifesto__line--ghost {
    top: 2.9rem;
  }

  .instruments__head {
    margin-top: 1rem;
    margin-bottom: 3rem;
  }

  .instruments__intro {
    grid-column: auto;
  }

  .instrument-carousel {
    --instrument-cards-visible: 1;
  }

  .instrument-sound-notice {
    margin-top: -1.5rem;
  }

  .instrument-carousel__bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .instrument-carousel__dots {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .instrument-carousel__arrows {
    right: 0.75rem;
    left: 0.75rem;
  }

  .instrument-card {
    min-height: 34rem;
    justify-content: center;
    padding: 1rem;
  }

  .instrument-card__number {
    position: absolute;
    top: 1rem;
    left: 1rem;
  }

  .instrument-art {
    height: 14.5rem;
    margin: 0.25rem 0 0.75rem;
  }

  .instrument-art img {
    width: min(100%, 8.2rem);
    height: 13.5rem;
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
  }

  .instrument-art--image {
    width: min(100%, 9rem);
    align-self: center;
  }

  .instrument-art--paigu img {
    width: min(100%, 8.5rem);
  }

  .instrument-art--dizi img {
    width: min(100%, 4.8rem);
  }

  .instrument-art--yangqin {
    width: min(100%, 14rem);
  }

  .instrument-art--yangqin img {
    width: min(100%, 13rem);
    height: auto;
    transform: translateY(1.7rem);
  }

  .instrument-card__sound {
    top: 0.9rem;
    right: 0.9rem;
  }

  .instrument-card__sound span {
    display: none;
  }

  .instrument-card__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .instrument-card__title span {
    margin-bottom: 0;
    font-size: 0.82rem;
  }

  .instrument-card h3 {
    font-size: clamp(1.15rem, 5vw, 2rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .instrument-card > p {
    margin: 0.55rem 0 0.9rem;
    font-size: 0.62rem;
    line-height: 1.45;
  }

  .instrument-card__artist {
    margin-top: 0;
    padding-top: 0.8rem;
    font-size: 0.46rem;
    overflow-wrap: anywhere;
  }

  .tour {
    display: flex;
    flex-direction: column;
  }

  .tour > .section-index {
    position: static;
    order: 2;
    margin-bottom: 2rem;
  }

  .tour__head {
    order: 3;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0 0 3rem;
    padding-left: 0;
  }

  .tour__newsletter-link {
    width: 100%;
    order: 1;
    justify-content: center;
    margin: 0 0 2rem;
    transform: none;
  }

  .tour__newsletter-link .text-link {
    padding: 0.9rem 1.35rem;
    font-size: clamp(0.72rem, 3.4vw, 0.9rem);
  }

  .tour__filters {
    max-width: 100%;
    overflow-x: auto;
  }

  .tour-list {
    order: 4;
  }

  .tour__more {
    order: 5;
    align-self: center;
  }

  .tour__filters button {
    white-space: nowrap;
  }

  .tour-row {
    width: 100%;
    grid-template-columns: 4rem 1fr auto;
    min-height: 7rem;
    gap: 1rem;
  }

  .tour-row__date b {
    font-size: 2.1rem;
  }

  .tour-row__date span,
  .tour-row__venue {
    display: none;
  }

  .tour-row__city h3 {
    font-size: 1.75rem;
  }

  .tour-row__ticket {
    width: 7rem;
    font-size: 0.72rem;
  }

  .tour-row__ticket span {
    font-size: 0.9rem;
  }

  .program__header {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-left: 0;
  }

  .program__switch {
    width: 100%;
  }

  .program__switch button {
    width: 100%;
    align-items: flex-start;
    padding-right: 0.25rem;
    font-size: clamp(1.08rem, 6.2vw, 1.55rem);
  }

  .program-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-right: 0;
    padding-left: 0;
  }

  .program-panel__intro {
    min-height: 17rem;
  }

  .setlist > li {
    grid-template-columns: 0.65fr 1.35fr 1.4rem;
    gap: 0.75rem;
  }

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

  .artist-card {
    grid-column: auto;
    min-height: 0;
    flex-direction: column;
  }

  .artist-card__visual {
    min-height: clamp(18rem, 72vw, 26rem);
  }

  .artist-card__info {
    padding: 1.25rem;
  }

  .artist-card__info h3 {
    font-size: clamp(1.55rem, 9vw, 2.35rem);
  }

  .artist-card__info p {
    margin-top: 1rem;
  }

  .artists-page-hero {
    min-height: 38rem;
    height: 82svh;
    max-height: 46rem;
  }

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

  .artists-page-hero__circle--ring {
    top: 18%;
    right: -5rem;
    width: 17rem;
    height: 17rem;
  }

  .artists-page-hero__circle--seal {
    right: 1.5rem;
    bottom: 5rem;
    width: 6.25rem;
    height: 6.25rem;
  }

  .artists-page-hero__circle--small {
    top: 23%;
    left: 1.25rem;
    width: 3.75rem;
    height: 3.75rem;
  }

  .artists-page-hero__content {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding: 7rem 1.25rem 2rem;
  }

  .artists-page-hero__content .eyebrow {
    grid-column: 1;
    grid-row: 1;
  }

  .artists-page-hero__content h1 {
    grid-column: 1;
    grid-row: 2;
    max-width: 100%;
    margin-bottom: 1.5rem;
    font-size: 3.15rem;
    overflow-wrap: break-word;
  }

  .artists-page-hero__intro {
    grid-column: 1;
    grid-row: 3;
    max-width: 31rem;
    font-size: 0.7rem;
    line-height: 1.6;
  }

  .artists-page-hero__jump {
    display: none;
  }

  .artists-directory__head {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin: 1rem 0 3rem;
    padding-left: 0;
  }

  .artists-directory__copy {
    margin: 0;
  }

  .artists-directory__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .artists-directory__filters {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .artists-directory__filters button {
    flex: 0 0 auto;
  }

  .artists-directory-grid {
    column-count: 1;
  }

  .artists-directory-grid.is-compact-roster,
  .artists-directory-grid.is-compact-roster[data-artist-count="1"] {
    grid-template-columns: minmax(0, 1fr);
  }

  .artist-profile,
  .artist-profile--span-3,
  .artist-profile--span-4,
  .artist-profile--span-6,
  .artist-profile--span-12,
  .artist-profile:last-child:nth-child(odd) {
    width: 100%;
  }

  .artist-profile__info {
    min-height: 0;
    padding: 1.6rem 1.4rem 2rem;
  }

  .artist-profile__info h3 {
    font-size: 1.75rem;
  }

  .artist-profile__meta {
    margin-bottom: 1.3rem;
    padding-bottom: 0.75rem;
  }

  .artist-profile__role {
    font-size: 0.46rem;
  }

  .artist-profile__bio {
    margin-top: 1.2rem;
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .quote {
    min-height: 36rem;
  }

  .quote::before {
    left: 8%;
  }

  .quote::after {
    right: 8%;
  }

  .quote__meta {
    right: 1.25rem;
    left: 1.25rem;
  }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .newsletter .newsletter__brevo {
    max-width: none;
    justify-self: stretch;
  }

  .newsletter #sib-form {
    grid-template-columns: 1fr;
  }

  .newsletter .newsletter__fields {
    gap: 1.5rem 1rem;
  }

  .newsletter .newsletter__submit {
    padding-bottom: 0;
  }

  .newsletter #sib-container .sib-form-block__button {
    width: 100%;
  }

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

  .newsletter__form button {
    position: absolute;
    right: 0;
    bottom: 0.65rem;
  }

  .history-hero {
    min-height: 48rem;
  }

  .history-hero__media::after {
    background:
      linear-gradient(90deg, rgba(10, 10, 9, 0.82), rgba(10, 10, 9, 0.2)),
      linear-gradient(0deg, rgba(10, 10, 9, 0.98) 0%, rgba(10, 10, 9, 0.18) 58%, rgba(10, 10, 9, 0.7) 100%);
  }

  .history-hero__media img {
    object-position: 64% center;
  }

  .history-hero__content {
    padding: 8rem 1.25rem 2rem;
  }

  .history-hero .display-heading {
    font-size: 3.35rem;
    line-height: 1.04;
  }

  .history-hero__copy {
    margin-top: 1.3rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .history-hero__meta {
    grid-template-columns: 1fr 1fr;
    margin-top: 2rem;
  }

  .history-hero__meta > * {
    min-height: 4.8rem;
    padding: 0 0.8rem;
  }

  .history-hero__meta > div:nth-child(2) {
    border-right: 0;
  }

  .history-hero__meta a {
    grid-column: 1 / -1;
    min-height: 3.8rem;
    padding: 0;
    border-top: 1px solid rgba(236, 232, 223, 0.18);
  }

  .history-hero__meta b {
    font-size: 1rem;
  }

  .history-section-head,
  .history-table__head {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 3rem;
  }

  .history-section-head__copy {
    font-size: 0.95rem;
  }

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

  .history-stat {
    min-height: 10.5rem;
    padding: 1.3rem;
  }

  .history-stat:first-child {
    grid-column: 1 / -1;
  }

  .history-stat b {
    font-size: 3.4rem;
  }

  .history-stat p {
    font-size: 0.72rem;
  }

  .history-map__toolbar {
    min-height: 5rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.65rem;
  }

  .history-map__canvas {
    min-height: 24rem;
  }

  .history-ranking {
    min-height: 0;
    padding: 1.5rem;
  }

  .history-ranking ol {
    margin-top: 2rem;
  }

  .history-about {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 3.5rem 0;
  }

  .history-about::before {
    right: -2rem;
    bottom: -1rem;
    font-size: 11rem;
  }

  .history-about > .eyebrow,
  .history-about h3,
  .history-about__copy,
  .history-about__toggle {
    grid-column: 1;
    grid-row: auto;
  }

  .history-about h3 {
    margin-top: 1.2rem;
    font-size: 2.35rem;
  }

  .history-about__copy {
    margin-top: 2rem;
  }

  .history-about__copy p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .history-about__copy > p:first-child {
    font-size: 1.15rem;
    line-height: 1.55;
  }

  .history-about__more:not([hidden]) {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .history-about__toggle {
    width: 100%;
    margin-top: 1.5rem;
  }

  .history-about__gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(14rem, 68vw, 24rem);
    margin-top: 2.5rem;
  }

  .history-about__gallery > figure:nth-child(n) {
    grid-column: 1;
  }

  .history-about__gallery-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .history-lightbox {
    padding: 4.5rem 0.75rem 1rem;
  }

  .history-lightbox[open] {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto auto;
    gap: 0.75rem;
  }

  .history-lightbox__stage {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .history-lightbox__image {
    max-height: calc(100dvh - 10rem);
  }

  .history-lightbox__nav {
    width: 100%;
    height: 2.8rem;
    border-radius: 0;
  }

  .history-lightbox__nav--previous {
    grid-column: 1;
    grid-row: 2;
  }

  .history-lightbox__nav--next {
    grid-column: 2;
    grid-row: 2;
  }

  .history-lightbox__count {
    grid-row: 3;
  }

  .history-countries {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .history-countries li {
    font-size: 0.62rem;
  }

  .history-timeline {
    padding: 1.5rem 1rem;
  }

  .history-year-chart {
    grid-template-columns: repeat(var(--history-year-count, 1), minmax(1.45rem, 1fr));
    height: 19rem;
  }

  .history-filters {
    grid-template-columns: 1fr;
  }

  .history-results-count {
    grid-column: auto;
  }

  .history-filter-reset {
    min-height: 3.4rem;
  }

  .history-table__columns {
    display: none;
  }

  .history-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.6rem 1rem;
    padding: 1.35rem 0;
  }

  .history-row > span {
    grid-column: 1;
    grid-row: 1;
  }

  .history-row h3 {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 1.7rem;
  }

  .history-row p {
    grid-column: 1 / -1;
    grid-row: 3;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .history-row b {
    grid-column: 2;
    grid-row: 1;
  }

  .history-row:has(a):hover {
    padding-right: 0;
    padding-left: 0;
  }

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

  .footer__bottom div {
    justify-content: flex-start;
  }

  .footer__bottom > span:last-child {
    text-align: left;
  }
}

/* Sheet-backed long-form program notes */
.program-story-page {
  overflow-x: clip;
  background: #f1ede4;
}

.program-story-page .site-header:not(.is-scrolled) {
  background: rgba(10, 10, 9, 0.28);
}

.program-story-page .site-header.is-scrolled {
  background: rgba(10, 10, 9, 0.94);
}

.program-story-page .loader__count {
  display: none;
}

.program-story-hero {
  position: relative;
  height: min(48rem, 82svh);
  min-height: 38rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--paper);
}

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

.program-story-hero__media {
  z-index: -2;
}

.program-story-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(0.76) contrast(1.08);
}

.program-story-hero__veil {
  z-index: -1;
  background: rgba(10, 10, 9, 0.57);
  box-shadow: inset 0 -18rem 16rem rgba(10, 10, 9, 0.64);
}

.program-story-hero__content {
  width: min(100%, 94rem);
  margin: 0 auto;
  padding: calc(var(--header-h) + 4rem) var(--page-x) 4.5rem;
}

.program-story-hero__back {
  position: absolute;
  top: calc(var(--header-h) + 2.25rem);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(236, 232, 223, 0.45);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.program-story-hero__back:hover,
.program-story-hero__back:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.program-story-hero__content .eyebrow {
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.program-story-hero h1 {
  max-width: 58rem;
  margin: 0;
  font-family: var(--serif);
  font-size: 5.2rem;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.program-story-hero__meta {
  max-width: 50rem;
  margin: 1.6rem 0 0;
  color: rgba(236, 232, 223, 0.8);
  font-size: 0.95rem;
  line-height: 1.65;
}

.program-story-hero__glyph {
  position: absolute;
  right: var(--page-x);
  bottom: 4rem;
  color: rgba(197, 166, 106, 0.72);
  font-family: var(--chinese);
  font-size: 4.8rem;
  line-height: 1;
  writing-mode: vertical-rl;
}

.program-story {
  position: relative;
  padding: 6.5rem var(--page-x) 8rem;
  background: #f1ede4;
  color: #151411;
}

.program-story::before {
  display: none;
}

.program-story__loading {
  min-height: 28rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(10, 10, 9, 0.62);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.program-story__loading[hidden],
.program-story__layout[hidden] {
  display: none;
}

.program-story__loading.is-error {
  min-height: 24rem;
  flex-direction: column;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
}

.program-story__loading.is-error p {
  max-width: 34rem;
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.5;
}

.program-story__layout {
  width: min(100%, 88rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(13rem, 18rem) minmax(0, 50rem);
  justify-content: space-between;
  gap: 6rem;
}

.program-story__aside {
  position: sticky;
  top: 7rem;
  align-self: start;
  padding-top: 0.35rem;
}

.program-story__aside > .eyebrow {
  margin: 0 0 1.8rem;
  color: var(--red-dark);
}

.program-story__contents ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-story__contents li {
  margin-bottom: 0.25rem;
}

.program-story__contents a {
  position: relative;
  display: block;
  padding: 1rem 1.5rem 1rem 0;
  color: rgba(10, 10, 9, 0.62);
  font-family: var(--serif);
  font-size: 0.91rem;
  line-height: 1.45;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.program-story__contents a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.55rem;
  height: 0.55rem;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.program-story__contents a:hover,
.program-story__contents a:focus-visible,
.program-story__contents a.is-active {
  padding-left: 0.55rem;
  color: var(--red-dark);
}

.program-story__return {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(10, 10, 9, 0.28);
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.program-story__article {
  min-width: 0;
}

.program-story__work {
  scroll-margin-top: 7rem;
  padding: 0 0 7.5rem;
}

.program-story__work + .program-story__work {
  padding-top: 6.5rem;
}

.program-story__work:last-child {
  padding-bottom: 0;
}

.program-story__work > header {
  margin-bottom: 2.6rem;
}

.program-story__work > header p {
  margin: 0 0 0.85rem;
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.program-story__work h2 {
  margin: 0;
  max-width: 46rem;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.program-story__prose {
  max-width: 44rem;
  color: #292620;
  hyphens: auto;
}

.program-story__prose > p {
  margin: 0 0 1.35rem;
  font-size: 1.02rem;
  line-height: 1.84;
}

.program-story__prose strong {
  color: #171510;
  font-weight: 600;
}

.program-story__prose em {
  font-style: italic;
}

.program-story__prose .program-story__lead {
  margin-bottom: 2.2rem;
  color: #151411;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.68;
}

.program-story__prose > .program-story__work-subtitle {
  margin: -0.4rem 0 2rem;
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.5;
}

.program-story__prose h3 {
  margin: 3.6rem 0 1.25rem;
  color: #151411;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.program-story__prose h3 span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--red-dark);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.program-story__prose h4 {
  position: relative;
  margin: 2.8rem 0 1.05rem;
  padding-left: 1.15rem;
  color: #1c1a17;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.program-story__prose h4::before {
  content: "";
  position: absolute;
  top: 0.25em;
  bottom: 0.2em;
  left: 0;
  width: 2px;
  background: var(--gold);
}

.program-story__movements {
  margin: 2.4rem 0 3rem;
  padding: 0;
  list-style: none;
}

.program-story__movements li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
}

.program-story__movements span {
  color: var(--red-dark);
  font-size: 0.7rem;
  font-weight: 600;
}

.program-story__movements p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.5;
}

.program-story__prose blockquote {
  margin: 3rem 0;
  padding: 0.25rem 0 0.25rem 1.7rem;
  border-left: 3px solid var(--red);
  color: #151411;
  font-family: var(--serif);
}

.program-story__prose blockquote p {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  line-height: 1.6;
}

.program-story__prose blockquote cite {
  display: block;
  margin-top: 1.2rem;
  color: rgba(10, 10, 9, 0.58);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.program-story__prose > .program-story__note {
  margin: 2rem 0;
  padding: 1.15rem 1.3rem;
  border-left: 2px solid var(--gold);
  background: rgba(197, 166, 106, 0.11);
  color: rgba(10, 10, 9, 0.7);
  font-size: 0.86rem;
  line-height: 1.7;
}

.program-story__prose > .program-story__attribution {
  margin-top: -0.5rem;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

@media (max-width: 1080px) {
  .program-story-hero h1 {
    font-size: 4.1rem;
  }

  .program-story-hero__glyph {
    font-size: 3.8rem;
  }

  .program-story__layout {
    grid-template-columns: 14rem minmax(0, 46rem);
    gap: 3.5rem;
  }
}

@media (max-width: 780px) {
  .program-story-hero {
    height: 78svh;
    min-height: 34rem;
  }

  .program-story-hero__media img {
    object-position: 58% center;
  }

  .program-story-hero__content {
    padding: calc(var(--header-h) + 4.5rem) 1.25rem 3rem;
  }

  .program-story-hero__back {
    top: calc(var(--header-h) + 1.6rem);
  }

  .program-story-hero h1 {
    font-size: 2.65rem;
    line-height: 1.12;
  }

  .program-story-hero__meta {
    margin-top: 1.2rem;
    font-size: 0.82rem;
  }

  .program-story-hero__glyph {
    display: none;
  }

  .program-story {
    padding: 4rem 1.25rem 5.5rem;
  }

  .program-story::before {
    right: 1.25rem;
    left: 1.25rem;
  }

  .program-story__layout {
    display: block;
  }

  .program-story__aside {
    position: static;
    margin-bottom: 4.5rem;
  }

  .program-story__contents a {
    font-size: 0.86rem;
  }

  .program-story__work {
    padding-bottom: 5rem;
  }

  .program-story__work + .program-story__work {
    padding-top: 4.5rem;
  }

  .program-story__work > header {
    margin-bottom: 2rem;
  }

  .program-story__work h2 {
    font-size: 2.05rem;
    line-height: 1.22;
  }

  .program-story__prose > p {
    font-size: 0.96rem;
    line-height: 1.78;
  }

  .program-story__prose .program-story__lead {
    font-size: 1.13rem;
    line-height: 1.67;
  }

  .program-story__prose h3 {
    margin-top: 3rem;
    font-size: 1.32rem;
  }

  .program-story__prose h4 {
    margin-top: 2.4rem;
    font-size: 1.12rem;
  }

  .program-story__prose blockquote {
    margin: 2.4rem 0;
    padding-left: 1.15rem;
  }

  .program-story__prose blockquote p {
    font-size: 1.08rem;
  }

  .program-story__movements li {
    grid-template-columns: 2rem 1fr;
  }
}

/* Split orchestra and artist archive */
.artists-page .site-header {
  background: rgba(10, 10, 9, 0.9);
  backdrop-filter: blur(18px);
}

.artists-page .site-header::after {
  background: rgba(236, 232, 223, 0.18);
}

.artists-split {
  width: 100%;
  height: 100svh;
  min-height: 44rem;
  display: grid;
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  overflow: hidden;
  background: var(--ink);
  transition: grid-template-columns 0.65s cubic-bezier(0.77, 0, 0.18, 1);
}

.artists-split.is-orchestra-expanded {
  grid-template-columns: minmax(0, 74fr) minmax(0, 26fr);
}

.artists-split.is-artists-expanded {
  grid-template-columns: minmax(0, 26fr) minmax(0, 74fr);
}

.artists-split__orchestra,
.artists-split__artists {
  min-width: 0;
  height: 100%;
}

.artists-split .artists-page-hero {
  min-height: 0;
  height: 100%;
  max-height: none;
  border-right: 1px solid rgba(236, 232, 223, 0.18);
}

.artists-split .artists-page-hero__media img {
  object-position: center top;
  transform-origin: center center;
}

.artists-split .artists-page-hero__shade {
  background: rgba(10, 10, 9, 0.5);
  transition: background 0.55s ease;
}

.artists-split.is-orchestra-expanded .artists-page-hero__shade {
  background: rgba(10, 10, 9, 0.36);
}

.artists-split .artists-page-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(4rem, 1fr) auto auto auto;
  gap: 1.25rem;
  padding: calc(var(--header-h) + 2rem) clamp(1.5rem, 3vw, 3.5rem) 2rem;
}

.artists-split .artists-page-hero__content .eyebrow {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.artists-split .artists-page-hero__content h1 {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  max-width: 44rem;
  margin: 0;
  font-size: 3.65rem;
  line-height: 1;
  overflow-wrap: break-word;
  transition: font-size 0.55s ease, max-width 0.55s ease;
}

.artists-split .artists-page-hero__intro {
  grid-column: 1;
  grid-row: 3;
  width: min(32rem, 100%);
  max-height: 9rem;
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.65;
  transition: opacity 0.35s ease, max-height 0.45s ease, transform 0.45s ease;
}

.artists-page-hero__description {
  grid-column: 1;
  grid-row: 4;
  width: min(48rem, 86%);
  max-height: min(24vh, 12rem);
  margin: 0;
  padding-right: 0.75rem;
  overflow-y: auto;
  color: rgba(236, 232, 223, 0.82);
  font-family: var(--serif);
  font-size: 0.86rem;
  line-height: 1.72;
  white-space: pre-line;
  scrollbar-color: var(--gold) transparent;
  scrollbar-width: thin;
}

.artists-split.is-orchestra-expanded .artists-page-hero__content h1 {
  max-width: 58rem;
  font-size: 5.75rem;
}

.artists-split.is-orchestra-expanded .artists-page-hero__intro {
  width: min(39rem, 76%);
  font-size: 0.9rem;
}

.artists-split.is-artists-expanded .artists-page-hero__content {
  grid-template-rows: auto minmax(0, 1fr) 3rem;
  gap: 0.75rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.artists-split.is-artists-expanded .artists-page-hero__content h1 {
  grid-row: 2;
  max-height: 6em;
  overflow: hidden;
  font-size: 2.25rem;
}

.artists-split.is-artists-expanded .artists-page-hero__intro {
  display: none;
}

.artists-split.is-artists-expanded .artists-page-hero__description {
  display: none;
}

.artists-split__toggle {
  min-width: 0;
  min-height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0 0;
  border: 0;
  border-top: 1px solid currentColor;
  background: transparent;
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.artists-split__toggle i {
  width: 3rem;
  height: 3rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  font-family: var(--sans);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s ease;
}

.artists-split__toggle:hover i {
  transform: scale(1.06);
}

.artists-split__toggle--orchestra {
  grid-column: 1;
  grid-row: 5;
  width: min(20rem, 100%);
  color: var(--paper);
}

.artists-split__toggle--orchestra i {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0.7rem 1.5rem rgba(0, 0, 0, 0.24);
}

.artists-split__toggle--artists {
  flex: 0 0 min(11rem, 38%);
  color: var(--ink);
}

.artists-split__toggle--artists i {
  background: var(--red-dark);
  color: var(--paper);
  box-shadow: 0 0.7rem 1.5rem rgba(113, 24, 18, 0.2);
}

.artists-split__artists {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  padding: calc(var(--header-h) + 1.5rem) clamp(1.15rem, 2vw, 2rem) 1.25rem;
  overflow: hidden;
  background: var(--paper);
}

.artists-split__artists-head {
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.3rem;
}

.artists-split__artists-head > div {
  min-width: 0;
}

.artists-split__artists-head .eyebrow {
  max-width: 28rem;
  margin: 0 0 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.artists-split__artists-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.55rem;
  font-weight: 400;
  line-height: 0.98;
}

.artists-split .artists-directory__meta {
  position: static;
  top: auto;
  min-height: 3.6rem;
  gap: 1rem;
  padding: 0.65rem 0;
  background: transparent;
}

.artists-split .artists-directory__filters {
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.artists-split .artists-directory__filters::-webkit-scrollbar {
  display: none;
}

.artists-split__artists-body {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
}

.artists-split__list {
  min-width: 0;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: auto;
  padding: 1rem 0.7rem 2rem 0;
  scrollbar-color: var(--red) transparent;
  scrollbar-width: thin;
}

.artists-split__list::-webkit-scrollbar,
.artist-detail::-webkit-scrollbar,
.artist-detail__copy::-webkit-scrollbar {
  width: 4px;
}

.artists-split__list::-webkit-scrollbar-thumb,
.artist-detail::-webkit-scrollbar-thumb,
.artist-detail__copy::-webkit-scrollbar-thumb {
  background: var(--red);
}

.artists-split .artists-directory-grid {
  column-count: 2;
  column-gap: 0.85rem;
}

.artists-split.is-artists-expanded:not(.has-artist-detail) .artists-directory-grid {
  column-count: 3;
}

.artists-split.is-orchestra-expanded .artists-directory-grid,
.artists-split.has-artist-detail .artists-directory-grid {
  column-count: 1;
}

.artists-split .artists-directory-grid.is-compact-roster {
  grid-template-columns: repeat(var(--artist-roster-columns), minmax(0, 1fr));
  gap: 0.85rem;
}

.artists-split.is-orchestra-expanded .artists-directory-grid.is-compact-roster,
.artists-split.has-artist-detail .artists-directory-grid.is-compact-roster {
  grid-template-columns: minmax(0, 1fr);
}

.artists-split .artist-profile {
  margin-bottom: 0.85rem;
  background: #f3efe7;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease;
}

.artists-split .artist-profile.is-active {
  border-color: var(--red);
  box-shadow: inset 4px 0 0 var(--red);
}

.artists-split .artist-profile__info {
  min-height: 0;
  padding: 1rem;
}

.artists-split .artist-profile__info h3 {
  font-size: 1.45rem;
}

.artists-split .artist-profile__meta {
  margin-bottom: 0.8rem;
}

.artists-split .artist-profile__bio {
  display: -webkit-box;
  margin: 0.75rem 0 0;
  overflow: hidden;
  font-size: 0.65rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.artist-profile__more {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.8rem 0 0;
  border: 0;
  border-top: 1px solid rgba(10, 10, 9, 0.18);
  background: transparent;
  color: var(--ink);
  font-size: 0.53rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artist-profile__more i {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--red-dark);
  color: var(--paper);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.artist-profile__more:hover i,
.artist-profile__more:focus-visible i {
  background: var(--ink);
  transform: rotate(90deg);
}

.artists-split.has-artist-detail .artists-split__artists-body {
  grid-template-columns: minmax(0, 1fr);
}

.artists-split.has-artist-detail .artists-split__artists {
  grid-template-rows: minmax(0, 1fr);
}

.artists-split.has-artist-detail .artists-split__artists-head,
.artists-split.has-artist-detail .artists-directory__meta,
.artists-split.has-artist-detail .artists-split__list {
  display: none;
}

.artist-detail {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: none;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.artists-split.has-artist-detail .artist-detail {
  display: block;
  opacity: 1;
  visibility: visible;
}

.artist-detail__close {
  position: absolute;
  z-index: 3;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(236, 232, 223, 0.55);
  border-radius: 50%;
  background: rgba(10, 10, 9, 0.72);
  color: var(--paper);
  font-size: 1.25rem;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.artist-detail__content {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(18rem, 0.92fr) minmax(0, 1.08fr);
  padding: 0;
}

.artist-detail__visual {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--ink-soft);
}

.artist-detail__visual > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(236, 232, 223, 0.16);
  font-family: var(--chinese);
  font-size: 12rem;
  line-height: 1;
}

.artist-detail__visual img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.artist-detail__visual.is-image-missing img {
  display: none;
}

.artist-detail__copy {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  padding: clamp(3rem, 7vh, 5rem) clamp(1.5rem, 4vw, 4rem) 3rem;
  scrollbar-color: var(--red) transparent;
  scrollbar-width: thin;
}

.artist-detail__copy::before {
  content: "藝";
  position: absolute;
  right: 0.05em;
  bottom: -0.35em;
  color: rgba(10, 10, 9, 0.045);
  font-family: var(--chinese);
  font-size: 12rem;
  line-height: 1;
  pointer-events: none;
}

.artist-detail__copy > span {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.artist-detail__copy h3 {
  position: relative;
  z-index: 1;
  margin: 0.8rem 0 1.5rem;
  font-family: var(--serif);
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 1.03;
}

.artist-detail__copy p {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0;
  color: rgba(10, 10, 9, 0.68);
  font-family: var(--serif);
  font-size: 0.9rem;
  line-height: 1.78;
  white-space: pre-line;
}

.artists-split.is-orchestra-expanded .artists-split__artists-head {
  display: block;
}

.artists-split.is-orchestra-expanded .artists-split__artists-head > div,
.artists-split.is-orchestra-expanded .artists-directory__meta > span {
  display: none;
}

.artists-split.is-orchestra-expanded .artists-split__toggle--artists {
  width: 3rem;
  min-height: 3rem;
  margin-left: auto;
  padding: 0;
  border-top: 0;
}

.artists-split.is-orchestra-expanded .artists-split__toggle--artists span,
.artists-split.is-artists-expanded .artists-split__toggle--orchestra span {
  display: none;
}

.artists-split.is-artists-expanded .artists-split__toggle--orchestra {
  grid-row: 3;
  align-self: end;
  width: 3rem;
  min-height: 3rem;
  padding: 0;
  border-top: 0;
}

@media (max-width: 1100px) and (min-width: 781px) {
  .artists-split {
    grid-template-columns: minmax(0, 36fr) minmax(0, 64fr);
  }

  .artists-split.is-orchestra-expanded {
    grid-template-columns: minmax(0, 68fr) minmax(0, 32fr);
  }

  .artists-split.is-artists-expanded {
    grid-template-columns: minmax(0, 18fr) minmax(0, 82fr);
  }

  .artists-split .artists-page-hero__content h1 {
    font-size: 2.75rem;
  }

  .artists-split.is-orchestra-expanded .artists-page-hero__content h1 {
    font-size: 4.6rem;
  }

  .artists-split.is-artists-expanded .artists-page-hero__content h1 {
    font-size: 1.65rem;
  }

  .artists-split.is-artists-expanded .artists-page-hero__content .eyebrow {
    display: none;
  }

  .artists-split__artists-head h2 {
    font-size: 2.1rem;
  }

  .artists-split .artist-profile__info h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 780px) {
  .artists-page .site-header {
    background: rgba(10, 10, 9, 0.94);
  }

  .artists-split,
  .artists-split.is-orchestra-expanded,
  .artists-split.is-artists-expanded {
    height: auto;
    min-height: 0;
    display: block;
    overflow: visible;
  }

  .artists-split .artists-page-hero {
    height: min(76svh, 43rem);
    min-height: 35rem;
    border-right: 0;
    border-bottom: 1px solid rgba(236, 232, 223, 0.18);
  }

  .artists-split .artists-page-hero__content,
  .artists-split.is-artists-expanded .artists-page-hero__content {
    grid-template-rows: auto minmax(4rem, 1fr) auto;
    padding: calc(var(--header-h) + 1.4rem) 1.25rem 1.5rem;
  }

  .artists-split .artists-page-hero__content h1,
  .artists-split.is-orchestra-expanded .artists-page-hero__content h1,
  .artists-split.is-artists-expanded .artists-page-hero__content h1 {
    max-height: none;
    overflow: visible;
    font-size: 3rem;
  }

  .artists-split .artists-page-hero__intro,
  .artists-split.is-orchestra-expanded .artists-page-hero__intro,
  .artists-split.is-artists-expanded .artists-page-hero__intro {
    grid-row: 3;
    width: 100%;
    max-height: none;
    display: block;
    font-size: 0.78rem;
    opacity: 1;
    transform: none;
  }

  .artists-split__toggle--orchestra,
  .artists-split__toggle--artists {
    display: none;
  }

  .artists-split__artists {
    height: auto;
    min-height: 42rem;
    display: block;
    padding: 3.5rem 1.25rem 2rem;
    overflow: visible;
  }

  .artists-split__artists-head {
    display: block;
    padding-bottom: 2rem;
  }

  .artists-split__artists-head h2 {
    font-size: 2.65rem;
  }

  .artists-split .artists-directory__meta {
    align-items: flex-start;
    min-height: 0;
    padding: 1rem 0;
  }

  .artists-split__artists-body,
  .artists-split.has-artist-detail .artists-split__artists-body {
    display: block;
    overflow: visible;
  }

  .artists-split__list {
    overflow: visible;
    padding: 1rem 0 2rem;
  }

  .artists-split .artists-directory-grid,
  .artists-split.is-artists-expanded:not(.has-artist-detail) .artists-directory-grid {
    column-count: 1;
  }

  .artists-split .artists-directory-grid.is-compact-roster,
  .artists-split.is-orchestra-expanded .artists-directory-grid.is-compact-roster,
  .artists-split.has-artist-detail .artists-directory-grid.is-compact-roster {
    grid-template-columns: minmax(0, 1fr);
  }

  .artists-split .artist-profile__info {
    padding: 1.3rem 1.2rem;
  }

  .artists-split .artist-profile__bio {
    font-size: 0.78rem;
  }

  .artists-split.has-artist-detail .artists-split__list {
    display: none;
  }

  .artist-detail {
    display: none;
    overflow: visible;
    border-left: 0;
  }

  .artists-split.has-artist-detail .artist-detail {
    display: block;
    border-left: 0;
  }

  .artist-detail__content {
    min-width: 0;
    height: auto;
    display: block;
    padding: 0 0 2rem;
  }

  .artist-detail__visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .artist-detail__copy {
    overflow: visible;
    padding: 2rem 0 0;
  }

  .artist-detail__copy h3 {
    font-size: 2.7rem;
  }

  .artist-detail__copy p {
    font-size: 0.95rem;
    line-height: 1.72;
  }
}

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

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

  .reveal {
    visibility: visible;
  }

  .hero__title-line i {
    transform: none;
  }

  .instrument-grid {
    scroll-behavior: auto;
  }

}

/* Simple legal document pages */
.legal-page {
  background: #f7f5f0;
}

.legal-page .reveal {
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

.legal-page .legal-hero {
  min-height: 0;
  display: block;
  padding: calc(var(--header-h) + 4rem) var(--page-x) 3rem;
  overflow: visible;
  border-bottom: 1px solid var(--line-dark);
  background: #f7f5f0;
  color: var(--ink);
}

.legal-page .legal-hero::after,
.legal-page .legal-hero__glyph,
.legal-page .legal-hero__meta {
  display: none;
}

.legal-page .legal-hero__copy {
  width: min(56rem, 100%);
  margin: 0 auto;
}

.legal-page .legal-hero .eyebrow {
  margin-bottom: 1rem;
  color: var(--red);
}

.legal-page .legal-hero h1,
.legal-page .privacy-hero h1 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.legal-page .legal-hero__intro {
  max-width: 48rem;
  margin: 1.25rem 0 0;
  color: rgba(10, 10, 9, 0.64);
  font-size: 1rem;
  line-height: 1.65;
}

.privacy-page .privacy-hero,
.imprint-page .legal-hero {
  padding-top: calc(var(--header-h) + 2.75rem);
  padding-bottom: 2.75rem;
  text-align: center;
}

.privacy-page .privacy-hero h1,
.imprint-page .legal-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.legal-page .legal-content,
.legal-page .privacy-content {
  width: min(56rem, 100%);
  margin: 0 auto;
  padding: 4rem var(--page-x);
  background: transparent;
}

.legal-page .legal-company {
  display: block;
  margin: 0 0 3rem;
  padding: 0 0 3rem;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: var(--ink);
}

.legal-page .legal-company .eyebrow {
  margin-bottom: 0.75rem;
  color: rgba(10, 10, 9, 0.5);
}

.legal-page .legal-company h2 {
  max-width: none;
  margin: 0 0 1.25rem;
  font-family: var(--sans);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.legal-page .legal-company address {
  margin-bottom: 2rem;
  color: rgba(10, 10, 9, 0.7);
}

.legal-page .legal-company dl > div,
.legal-page .legal-details > div {
  grid-template-columns: minmax(10rem, 0.45fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 0;
}

.legal-page .legal-company dt,
.legal-page .legal-details dt {
  color: rgba(10, 10, 9, 0.5);
}

.legal-page .legal-grid {
  display: block;
  border: 0;
}

.legal-page .legal-block {
  min-height: 0;
  padding: 3rem 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: var(--ink);
}

.legal-page .legal-block > span {
  margin-bottom: 0.75rem;
  color: rgba(10, 10, 9, 0.42);
}

.legal-page .legal-block h2 {
  margin: 0 0 1.75rem;
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.legal-page .legal-block h3 {
  margin-top: 1.75rem;
}

.legal-page .legal-block p,
.legal-page .legal-block--accent p {
  color: rgba(10, 10, 9, 0.7);
}

.legal-page .legal-block--accent .legal-link,
.legal-page .legal-link {
  color: var(--red);
}

.legal-page .legal-credit {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-page .privacy-intro {
  display: block;
  padding: 0 0 3rem;
}

.legal-page .privacy-intro .eyebrow {
  margin-bottom: 1rem;
}

.legal-page .privacy-intro > p:last-child {
  max-width: none;
  font-family: var(--sans);
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1.75;
}

.legal-page .privacy-sections {
  border-color: var(--line-dark);
}

.legal-page .privacy-section,
.legal-page .privacy-section--contact {
  display: block;
  margin: 0;
  padding: 2.75rem 0;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: var(--ink);
}

.legal-page .privacy-section > span,
.legal-page .privacy-section--contact > span {
  display: block;
  margin-bottom: 0.65rem;
  padding: 0;
  color: rgba(10, 10, 9, 0.42);
}

.legal-page .privacy-section h2 {
  max-width: none;
  margin: 0 0 1.5rem;
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.legal-page .privacy-section__body,
.legal-page .privacy-section--contact .privacy-section__body {
  max-width: none;
  color: rgba(10, 10, 9, 0.7);
}

.legal-page .privacy-section--contact .privacy-section__body a {
  color: var(--red);
  font-family: var(--sans);
  font-size: inherit;
}

.legal-page .site-footer {
  padding-top: 0;
}

@media (max-width: 620px) {
  .legal-page .legal-hero {
    padding-top: calc(var(--header-h) + 2.5rem);
    padding-bottom: 2rem;
  }

  .legal-page .legal-content,
  .legal-page .privacy-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .legal-page .legal-company dl > div,
  .legal-page .legal-details > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .legal-page .privacy-section__body ul {
    grid-template-columns: 1fr;
  }
}
