@font-face {
  font-family: Newsreader;
  src: url("../fonts/newsreader/newsreader-latin-wght-normal.woff2")
    format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: Newsreader;
  src: url("../fonts/newsreader/newsreader-latin-wght-italic.woff2")
    format("woff2");
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("../fonts/manrope/manrope-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --ink: #0b0b0a;
  --velvet: #160c0e;
  --bordeaux: #2b0c14;
  --garnet: #6b2029;
  --paper: #f2e9da;
  --ivory: #e7ddcb;
  --champagne: #d7c5a7;
  --gold: #b18a55;
  --grey: #b7ada0;
  --rule: rgba(242, 233, 218, 0.22);
  --gutter: clamp(24px, 5vw, 96px);
  --section: clamp(80px, 8.5vw, 152px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
main {
  display: block;
}
main:focus {
  outline: none;
}
img {
  max-width: 100%;
  display: block;
}
figure,
p,
dl,
dd {
  margin: 0;
}
p + p {
  margin-top: 1.3em;
}
ul,
ol {
  padding: 0;
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 0.24em;
  text-decoration-thickness: 1px;
}
a:hover {
  text-decoration-thickness: 2px;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
button,
a {
  touch-action: manipulation;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}
::selection {
  background: var(--garnet);
  color: var(--paper);
}
h1,
h2,
h3 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 450;
  line-height: 1.06;
  margin: 0;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(60px, 7.2vw, 120px);
}
h2 {
  font-size: clamp(42px, 4.3vw, 74px);
}
h3 {
  font-size: clamp(30px, 2.8vw, 44px);
}
strong {
  font-weight: 650;
}
em {
  font-style: italic;
}
.shell,
.site-footer__masthead,
.site-footer__grid,
.site-footer__base {
  width: min(100%, 1680px);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.reading-shell {
  width: min(100%, 880px);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: var(--section);
}
.section--ink {
  background: var(--ink);
  color: var(--paper);
}
.section--velvet {
  background: var(--velvet);
  color: var(--paper);
}
.section--bordeaux {
  background: var(--bordeaux);
  color: var(--paper);
}
.section--paper {
  background: var(--paper);
  color: var(--ink);
  --rule: rgba(11, 11, 10, 0.24);
}
.section--ivory {
  background: var(--ivory);
  color: var(--ink);
  --rule: rgba(11, 11, 10, 0.24);
}
.eyebrow,
.micro-label,
.section-index,
.chapter-number,
.footer-label {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow {
  margin-bottom: 28px;
}
.section-index {
  color: var(--gold);
  padding-top: 10px;
}
.micro-label {
  margin-bottom: 12px;
}
.editorial-lead {
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(27px, 2.65vw, 43px);
  line-height: 1.34;
  letter-spacing: -0.014em;
  font-weight: 400;
}
.editorial-lead--small {
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.38;
}
.hero-lead {
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.34;
  letter-spacing: -0.01em;
  max-width: 26ch;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 25px;
  border: 1px solid transparent;
  border-radius: 0;
  text-decoration: none;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.065em;
  line-height: 1.5;
  transition:
    background 0.22s,
    color 0.22s,
    border-color 0.22s;
  text-align: center;
}
.button--ivory {
  background: var(--paper);
  color: var(--ink);
}
.button--ivory:hover {
  background: var(--champagne);
}
.button--ink {
  background: var(--ink);
  color: var(--paper);
}
.button--ink:hover {
  background: var(--garnet);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  position: relative;
  min-height: 44px;
  padding: 9px 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.035em;
  line-height: 1.5;
}
.text-link::after {
  content: "↗";
  font-size: 17px;
  font-weight: 400;
  transition: transform 0.22s var(--ease);
}
.text-link:hover::after {
  transform: translate(2px, -2px);
}
.text-link--light {
  color: var(--paper);
}
.section-cta {
  margin-top: 28px;
  text-align: right;
}
.sr-only {
  position: absolute !important;
  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;
  left: 20px;
  top: -100px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--paper);
  color: var(--ink);
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  color: var(--paper);
}
.theme-paper .site-header {
  color: var(--ink);
}
.site-header__inner {
  width: min(100%, 1840px);
  margin: auto;
  min-height: 112px;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.wordmark {
  position: relative;
  z-index: 42;
  display: block;
  font-family: Newsreader, Georgia, serif;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 25px;
  line-height: 0.93;
  text-decoration: none;
  font-weight: 500;
}
.wordmark span {
  display: block;
}
.wordmark span + span {
  margin-top: 5px;
}
.nav-shell {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
}
.primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.2vw, 40px);
}
.primary-nav a {
  position: relative;
  display: block;
  min-height: 44px;
  padding-block: 12px;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.045em;
  text-decoration: none;
  white-space: nowrap;
}
.primary-nav a::after {
  position: absolute;
  content: "";
  inset: auto 0 5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.primary-nav a:hover::after,
.primary-nav a[aria-current]::after {
  transform: scaleX(1);
}
.language-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.language-nav a {
  display: grid;
  place-items: center;
  min-width: 30px;
  min-height: 44px;
  text-decoration: none;
  opacity: 0.55;
}
.language-nav a[aria-current] {
  opacity: 1;
}
.language-nav span {
  opacity: 0.4;
}
.menu-toggle {
  display: none;
}
.photograph {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #040b08;
}
.photograph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.focal-red-close img {
  object-position: 52% 36%;
}
.focal-red-full img {
  object-position: 50% 51%;
}
.focal-champagne-full img {
  object-position: 50% 52%;
}
.focal-champagne-close img {
  object-position: 54% 34%;
}
.image-contain img {
  object-fit: contain;
}
.crop-cinematic {
  aspect-ratio: 16/9;
}
.crop-landscape {
  aspect-ratio: 4/5;
}
.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  min-height: 800px;
  min-height: 100svh;
  background: var(--ink);
}
.home-hero__media {
  min-height: 800px;
  min-height: 100svh;
  max-height: 1200px;
}
.home-hero__media .photograph {
  position: relative;
}
.home-hero__media .photograph::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.16),
    transparent 25%,
    transparent 85%,
    rgba(0, 0, 0, 0.13)
  );
  pointer-events: none;
}
.home-hero__copy {
  padding: 180px clamp(32px, 4.5vw, 86px) 110px clamp(36px, 4.4vw, 84px);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
.home-hero__copy h1 {
  font-size: clamp(72px, 7.3vw, 142px);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin: 8px 0 34px;
  max-width: 6ch;
  font-weight: 450;
}
.home-hero__copy h1 span {
  display: block;
}
.home-hero__copy h1 span + span {
  margin-top: 0.12em;
}
.home-hero__copy .eyebrow {
  color: var(--champagne);
  font-size: 10px;
}
.home-hero__copy .hero-lead {
  font-size: clamp(23px, 1.8vw, 31px);
  max-width: 22ch;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 40px;
}
.hero-index {
  position: absolute;
  right: var(--gutter);
  bottom: 30px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--grey);
}
.statement__grid {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 32px;
}
.statement__grid h2 {
  font-size: clamp(35px, 3.3vw, 57px);
  max-width: 22ch;
  margin-bottom: 34px;
}
.statement__grid .editorial-lead {
  max-width: 37ch;
  color: var(--champagne);
}
.programme-feature__grid,
.story-feature__grid,
.tradition__grid,
.artist-closing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(52px, 8vw, 136px);
  align-items: center;
}
.programme-feature__copy {
  padding-block: 40px;
}
.programme-feature__copy h2 {
  font-size: clamp(64px, 6.7vw, 114px);
  max-width: 7ch;
  line-height: 0.95;
}
.programme-subtitle {
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.25;
  margin: 28px 0;
}
.programme-feature__copy > p:not(.eyebrow):not(.programme-subtitle) {
  max-width: 44ch;
  color: var(--champagne);
}
.programme-feature__copy .text-link {
  margin-top: 28px;
}
.programme-feature__media,
.story-feature__media {
  aspect-ratio: 3/4;
  max-width: 660px;
  width: 100%;
  justify-self: end;
}
.story-feature__media {
  justify-self: start;
}
.story-feature__copy h2 {
  max-width: 12ch;
}
.story-feature__copy .editorial-lead {
  margin: 30px 0;
}
.story-feature__copy .text-link {
  margin-top: 10px;
}
.section-heading {
  display: flex;
  gap: 28px;
  align-items: baseline;
  margin-bottom: 48px;
}
.section-heading h2 {
  font-size: clamp(40px, 4.1vw, 68px);
}
.section-heading--split {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: end;
  gap: 70px;
}
.section-heading--split > p {
  max-width: 40ch;
  justify-self: end;
  font-size: 15px;
}
.section-heading--split .eyebrow {
  margin-bottom: 16px;
}
.section-heading--split .section-index {
  margin-bottom: 16px;
}
.event-row {
  display: grid;
  grid-template-columns: 1.15fr 1.75fr 0.55fr 0.85fr;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--rule);
  padding: 36px 0;
}
.event-row:last-child {
  border-bottom: 1px solid var(--rule);
}
.event-date {
  display: flex;
  align-items: center;
  gap: 20px;
}
.event-date__day {
  font-family: Newsreader, Georgia, serif;
  font-size: 76px;
  line-height: 0.9;
  letter-spacing: -0.045em;
  min-width: 1.25ch;
}
.event-date__rest {
  font-size: 12px;
  line-height: 1.65;
  letter-spacing: 0.025em;
}
.event-details h3 {
  font-size: 33px;
  margin-bottom: 8px;
}
.event-details p {
  font-size: 14px;
  line-height: 1.6;
}
.event-details .event-address {
  font-size: 11px;
  margin-top: 5px;
  color: #5d574f;
}
.event-time {
  font-size: 20px;
  line-height: 1.4;
}
.event-time span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
}
.event-ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding: 13px 0 13px 20px;
  border-left: 1px solid var(--rule);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
}
.event-ticket span {
  font-size: 23px;
  font-weight: 400;
  transition: transform 0.2s;
}
.event-ticket:hover span {
  transform: translate(3px, -3px);
}
.booking-band__grid,
.presenter-callout__grid,
.social-callout__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0 100px;
}
.booking-band__grid > .eyebrow,
.presenter-callout__grid > .eyebrow,
.social-callout__grid > .eyebrow {
  grid-column: 1/-1;
}
.booking-band__grid h2,
.presenter-callout__grid h2,
.social-callout__grid h2 {
  font-size: clamp(42px, 4vw, 66px);
  max-width: 16ch;
}
.booking-band__grid > div,
.presenter-callout__grid > div,
.social-callout__grid > div {
  max-width: 49ch;
}
.booking-band__grid .button,
.presenter-callout__grid .button,
.social-callout__grid .button {
  margin-top: 30px;
}
.interior-hero {
  padding-top: 150px;
}
.interior-hero--stage {
  background: var(--ink);
  color: var(--paper);
}
.interior-hero--paper {
  background: var(--paper);
  color: var(--ink);
}
.interior-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(60px, 8vw, 136px);
  align-items: center;
  padding-bottom: 80px;
}
.interior-hero__copy {
  padding-block: 60px;
}
.interior-hero__copy h1 {
  margin: 0 0 34px;
}
.interior-hero__copy .text-link {
  margin-top: 32px;
}
.interior-hero__media--portrait {
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 650px;
  justify-self: end;
}
.programme-hero .interior-hero__copy h1 {
  font-size: clamp(90px, 9vw, 158px);
  line-height: 0.88;
}
.programme-hero .hero-lead {
  color: var(--champagne);
}
.programme-narrative__grid {
  display: grid;
  grid-template-columns: 0.55fr 2fr 1.35fr;
  gap: clamp(36px, 5vw, 80px);
}
.programme-narrative__copy h2 {
  margin-bottom: 32px;
}
.programme-narrative__copy .editorial-lead {
  font-size: clamp(27px, 2.6vw, 40px);
}
.programme-narrative__copy > p:last-child {
  margin-top: 28px;
  max-width: 52ch;
}
.emotional-arc {
  list-style: none;
  counter-reset: arc;
  margin-top: 6px;
}
.emotional-arc li {
  display: flex;
  align-items: baseline;
  gap: 20px;
  border-top: 1px solid var(--rule);
  padding: 14px 0;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(25px, 2.25vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.emotional-arc li span {
  font-family: Manrope, Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #71685b;
  min-width: 17px;
}
.repertoire__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
}
.repertoire__grid h2 {
  max-width: 13ch;
}
.repertoire-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  column-gap: 40px;
  align-content: start;
}
.repertoire-list li {
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  font-family: Newsreader, Georgia, serif;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.012em;
}
.tradition__media {
  aspect-ratio: 4/5;
}
.tradition__copy h2 {
  margin-bottom: 32px;
  max-width: 14ch;
}
.tradition__copy > p {
  color: var(--champagne);
}
.tradition__copy > .editorial-lead {
  color: var(--paper);
}
.format-note {
  border-top: 1px solid var(--rule);
  margin-top: 32px;
  padding-top: 25px;
}
.format-note p:last-child {
  font-size: 14px;
  color: var(--champagne);
  margin: 0;
}
.artist-hero .interior-hero__copy h1 {
  max-width: 8ch;
}
.artist-hero .hero-lead {
  max-width: 29ch;
  font-size: clamp(26px, 2.4vw, 37px);
}
.artist-story__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(64px, 9vw, 150px);
}
.artist-story__aside {
  align-self: start;
  position: sticky;
  top: 60px;
  font-size: 14px;
  line-height: 1.8;
  max-width: 38ch;
}
.artist-story__aside .eyebrow {
  margin-bottom: 22px;
}
.story-chapter {
  position: relative;
  padding-top: 35px;
  margin-bottom: 55px;
  border-top: 1px solid var(--rule);
}
.story-chapter:last-child {
  margin-bottom: 0;
}
.chapter-number {
  position: absolute;
  top: 40px;
  left: -45px;
  color: #786f61;
  font-size: 9px;
}
.story-chapter h3 {
  font-size: clamp(33px, 3vw, 46px);
  margin-bottom: 23px;
}
.story-chapter p {
  max-width: 58ch;
}
.artist-closing__copy h2 {
  margin-bottom: 30px;
  max-width: 13ch;
}
.artist-closing__copy .editorial-lead {
  color: var(--champagne);
}
.artist-closing__copy .button {
  margin-top: 32px;
}
.artist-closing__media {
  aspect-ratio: 4/5;
}
.page-intro {
  padding: 185px 0 64px;
}
.page-intro--paper {
  background: var(--paper);
  color: var(--ink);
}
.page-intro--stage {
  background: var(--velvet);
  color: var(--paper);
}
.page-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0 100px;
}
.page-intro__grid > .eyebrow {
  grid-column: 1/-1;
  margin-bottom: 25px;
}
.page-intro__grid h1 {
  font-size: clamp(64px, 7.2vw, 116px);
}
.page-intro__lead {
  font-size: 17px;
  line-height: 1.7;
  max-width: 49ch;
  align-self: end;
}
.page-intro__grid > .page-intro__lead {
  padding-top: 10px;
}
.concerts-main {
  padding-top: 55px;
}
.concerts-main .section-heading h2 {
  font-size: 26px;
  letter-spacing: -0.015em;
}
.concerts-main .section-heading {
  margin-bottom: 27px;
}
.ticket-note {
  font-size: 11px;
  margin-top: 26px;
  color: #655c51;
}
.empty-state {
  max-width: 600px;
  padding-block: 36px;
}
.empty-state h3 {
  margin-bottom: 24px;
}
.empty-state .text-link {
  margin-top: 20px;
}
.concerts-coda {
  height: 420px;
  overflow: hidden;
}
.concerts-coda .photograph {
  aspect-ratio: auto;
}
.concerts-coda .photograph img {
  object-position: 50% 37%;
}
.media-hero {
  padding-bottom: 75px;
}
.media-hero__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.media-hero .interior-hero__copy h1 {
  max-width: 8ch;
}
.media-hero__image {
  height: 660px;
}
.media-hero__image .photograph {
  aspect-ratio: auto;
}
.media-hero__image img {
  object-position: 58% 30%;
}
.photo-sequence {
  padding-top: 60px;
}
.photo-sequence__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 70px;
  align-items: start;
}
.photo-sequence__item--wide {
  aspect-ratio: 4/5;
}
.photo-sequence__item--portrait {
  aspect-ratio: 3/4;
  margin-top: 170px;
}
.photo-sequence__item--offset {
  grid-column: 1/-1;
  width: 46%;
  justify-self: center;
  margin-top: 20px;
}
.photo-sequence__grid .photograph {
  height: 100%;
}
.social-handle {
  font-family: Newsreader, Georgia, serif;
  font-size: 29px;
  line-height: 1.3;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.video-card {
  position: relative;
  background: #060807;
  aspect-ratio: 16/10;
  min-height: 400px;
  overflow: hidden;
}
.video-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.video-consent {
  position: relative;
  z-index: 1;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}
.video-consent h3 {
  font-size: 30px;
  margin-bottom: 20px;
}
.video-consent p {
  font-size: 12px;
  max-width: 52ch;
  line-height: 1.6;
}
.video-consent .button {
  margin-top: 24px;
}
.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
}
.contact-intro {
  padding-bottom: 64px;
}
.contact-main {
  padding-top: 30px;
}
.contact-main__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: clamp(50px, 7vw, 110px);
  align-items: start;
}
.contact-rail {
  padding-top: 20px;
  font-size: 14px;
}
.contact-rail > div + div {
  border-top: 1px solid var(--rule);
  margin-top: 52px;
  padding-top: 44px;
}
.contact-rail .eyebrow {
  color: var(--champagne);
  margin-bottom: 22px;
}
.contact-rail .text-link {
  margin-top: 23px;
  overflow-wrap: anywhere;
}
.contact-representation {
  margin-top: 28px;
}
.contact-representation dt {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey);
}
.contact-representation dd {
  font-family: Newsreader, Georgia, serif;
  font-size: 26px;
  margin-top: 6px;
}
.contact-form-panel {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(30px, 4vw, 64px);
  --rule: rgba(11, 11, 10, 0.24);
  scroll-margin-top: 32px;
}
.form-heading {
  display: flex;
  align-items: baseline;
  gap: 25px;
  justify-content: space-between;
  margin-bottom: 35px;
}
.form-heading h2 {
  font-size: clamp(33px, 3.2vw, 47px);
}
.form-heading p {
  font-size: 10px;
  white-space: nowrap;
}
.field-grid--two {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}
.field {
  margin-bottom: 23px;
  min-width: 0;
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.5;
  margin-bottom: 9px;
}
.optional {
  font-weight: 400;
  color: #6e6458;
}
.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 1px solid #b4aa9b;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.18);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  padding: 12px 13px;
  box-shadow: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  color-scheme: light;
}
.field input,
.field select {
  min-height: 49px;
}
.field textarea {
  resize: vertical;
  min-height: 176px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  background: #faf3e7;
  outline: 1px solid var(--ink);
  outline-offset: 0;
}
.field [aria-invalid="true"] {
  border-color: var(--garnet);
  outline-color: var(--garnet);
}
.field-error {
  font-size: 11px;
  line-height: 1.5;
  color: #81202a;
  margin-top: 8px !important;
}
.form-privacy {
  font-size: 11px;
  line-height: 1.7;
  margin: 0 0 25px;
  max-width: 62ch;
}
.form-privacy a {
  font-weight: 600;
}
.form-notice {
  padding: 20px 22px;
  margin-bottom: 30px;
  border-left: 3px solid var(--garnet);
  background: #e8d6cb;
  font-size: 14px;
  line-height: 1.55;
}
.form-notice--success {
  border-color: #275144;
  background: #dce2d4;
}
.form-notice h3 {
  font-size: 30px;
  margin-bottom: 8px;
}
.form-notice ul {
  padding-left: 20px;
  margin-top: 10px;
}
.honeypot {
  position: absolute !important;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form .button {
  min-width: 190px;
}
.press-intro h1 {
  max-width: 10ch;
  font-size: clamp(60px, 6.1vw, 100px);
}
.print-button {
  grid-column: 2;
  margin-top: 28px;
  justify-self: start;
  align-self: start;
}
.print-button::after {
  content: "↓";
}
.press-main {
  padding-top: 32px;
}
.press-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.65fr;
  gap: clamp(70px, 9vw, 150px);
}
.press-facts {
  position: sticky;
  top: 40px;
  align-self: start;
  max-width: 40ch;
}
.press-facts h2 {
  font-size: 29px;
  margin-bottom: 25px;
}
.press-facts dl > div {
  border-top: 1px solid var(--rule);
  padding: 15px 0;
}
.press-facts dt {
  font-size: 9px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.6;
  margin-bottom: 5px;
}
.press-facts dd {
  font-size: 12px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.press-section {
  border-top: 1px solid var(--rule);
  padding-top: 30px;
  margin-bottom: 65px;
}
.press-section:last-child {
  margin-bottom: 0;
}
.press-section .section-index {
  margin-bottom: 22px;
}
.press-section h2 {
  font-size: clamp(35px, 3.2vw, 50px);
  margin-bottom: 30px;
}
.press-section h3 {
  font-size: 28px;
  margin: 30px 0 16px;
}
.press-section p {
  max-width: 66ch;
}
.press-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 55px;
}
.press-image .photograph {
  aspect-ratio: 3/4;
  height: auto;
}
.press-image figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 15px;
  font-size: 11px;
}
.press-image .text-link {
  font-size: 11px;
}
.legal-page {
  padding-top: 185px;
  min-height: 75vh;
}
.legal-page .reading-shell {
  padding-inline: 40px;
}
.legal-page h1 {
  font-size: clamp(55px, 6vw, 90px);
  margin-bottom: 48px;
}
.legal-page .page-intro__lead {
  margin-bottom: 50px;
}
.legal-page section {
  margin-top: 42px;
}
.legal-page h2 {
  font-size: 30px;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.2;
}
.legal-page p {
  font-size: 15px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.legal-date {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  margin-top: 50px;
  font-size: 11px !important;
}
.not-found {
  padding: 200px var(--gutter) 120px;
  min-height: 85svh;
  display: grid;
  align-items: center;
  background: var(--ink);
}
.not-found__inner {
  width: min(100%, 960px);
  margin: auto;
}
.not-found h1 {
  max-width: 13ch;
  margin-bottom: 35px;
  font-size: clamp(56px, 6.5vw, 106px);
}
.not-found__inner > p:last-of-type {
  max-width: 55ch;
  color: var(--champagne);
}
.not-found nav {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.site-footer {
  padding: 85px 0 0;
  background: var(--ink);
  color: var(--paper);
}
.site-footer__masthead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 50px;
}
.footer-wordmark {
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(37px, 4.2vw, 66px);
  letter-spacing: -0.025em;
  line-height: 1;
  text-decoration: none;
}
.site-footer__masthead p {
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--champagne);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr 0.65fr;
  gap: 40px;
  padding-block: 40px 55px;
  position: relative;
}
.site-footer__grid::before {
  content: "";
  position: absolute;
  inset: 0 var(--gutter) auto;
  border-top: 1px solid var(--rule);
}
.footer-label {
  font-size: 9px;
  color: var(--grey);
  margin-bottom: 18px !important;
}
.site-footer__grid p,
.site-footer__grid a {
  font-size: 12px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.site-footer__grid a {
  text-decoration: none;
}
.site-footer__grid a:hover {
  text-decoration: underline;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.site-footer__base {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px 28px;
  position: relative;
}
.site-footer__base::before {
  content: "";
  position: absolute;
  inset: 0 var(--gutter) auto;
  border-top: 1px solid var(--rule);
}
.site-footer__base p {
  font-size: 9px;
  letter-spacing: 0.04em;
  color: var(--grey);
}
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal.is-pending {
  opacity: 0;
  transform: translateY(18px);
}
.js .reveal {
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.js .reveal--delay {
  transition-delay: 0.1s;
}
.no-js .menu-toggle,
.no-js .print-button {
  display: none;
}
.photograph.image-contain img {
  height: auto;
}
@media print {
  .press-image .photograph.image-contain img {
    height: 100%;
  }
  .page-press .press-intro {
    padding-bottom: 4mm !important;
    margin-bottom: 4mm;
  }
  .page-press .press-facts {
    margin-bottom: 5mm;
  }
  .page-press .press-facts dl > div {
    padding: 1.3mm 0;
  }
  .press-section--programme {
    break-inside: avoid;
  }
}
.section--paper .section-index,
.section--ivory .section-index {
  color: #725835;
}
.story-chapter .chapter-number {
  color: #635a4d;
  font-size: 9px;
}
.press-section .section-index {
  font-size: 10px;
}
.language-nav a {
  opacity: 0.72;
}
@media print {
  .page-press .press-intro h1 {
    font-size: 32pt;
  }
}
time.event-date .event-date__rest {
  font-size: 12px;
  line-height: 1.5;
}
.event-date__rest > span {
  display: block;
}
.page-press .press-intro {
  padding-top: 150px;
  padding-bottom: 42px;
}
.page-press .press-intro h1 {
  font-size: clamp(46px, 5.2vw, 78px);
  max-width: none;
  margin-bottom: 0;
}
.press-tools {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}
.press-quicklinks {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 12px;
}
.press-quicklinks a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.press-tools .print-button {
  margin: 0;
}
.page-press .press-facts dt {
  font-size: 11px;
}
.page-press .press-facts dd {
  font-size: 14px;
}
.page-press .press-section .editorial-lead {
  font-size: 25px;
  line-height: 1.5;
}
.contact-form-panel .field label {
  font-size: 12px;
}
.contact-form-panel .form-privacy {
  font-size: 12px;
}
.contact-intro .text-link {
  grid-column: 2;
  justify-self: start;
  margin-top: 18px;
}
@media (min-width: 601px) and (max-width: 1000px) {
  .page-programme .tradition__grid,
  .page-artist .artist-closing__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .tradition .tradition__media,
  .artist-closing .artist-closing__media {
    width: 100%;
    max-width: 540px;
    justify-self: start;
  }
  .artist-closing .artist-closing__media {
    order: -1;
  }
  .tradition .tradition__copy,
  .artist-closing .artist-closing__copy {
    max-width: 62ch;
  }
  .page-home .story-feature__grid {
    align-items: start;
  }
}
@media (max-width: 600px) {
  .page-press .press-intro {
    padding-top: 128px;
    padding-bottom: 35px;
  }
  .page-press .press-intro h1 {
    font-size: 48px;
    margin-bottom: 22px;
  }
  .press-tools {
    display: block;
    margin-top: 18px;
  }
  .press-quicklinks {
    gap: 20px;
    font-size: 11px;
  }
  .press-tools .print-button {
    margin-top: 8px;
  }
  .page-press .press-section .editorial-lead {
    font-size: 21px;
  }
  .page-press .press-facts dl > div {
    grid-template-columns: 1fr 1.5fr;
  }
  .page-home .home-hero__media {
    height: 55svh;
    min-height: 370px;
  }
  .page-home .home-hero__copy {
    padding-top: 36px;
  }
  .page-home .home-hero__copy h1 {
    margin-bottom: 24px;
  }
  .contact-intro .text-link {
    margin-top: 18px;
  }
}
@media print {
  .press-tools {
    display: none !important;
  }
  .page-press .press-section .editorial-lead {
    font-size: 10pt;
  }
  .page-press .press-facts dt {
    font-size: 7pt;
  }
  .page-press .press-facts dd {
    font-size: 8pt;
  }
}
@media (max-width: 600px) {
  .programme-narrative .emotional-arc {
    grid-template-columns: 1fr;
  }
  .programme-narrative .emotional-arc li {
    font-size: 28px;
  }
}
@media (min-width: 1921px) {
  .home-hero {
    grid-template-columns: minmax(0, 980px) minmax(0, 720px);
    justify-content: center;
  }
  .home-hero__copy {
    padding-left: 100px;
  }
  .home-hero__media {
    min-height: 980px;
  }
  .home-hero__copy h1 {
    font-size: 142px;
  }
  .home-hero {
    min-height: 980px;
  }
  .home-hero__copy .hero-lead {
    font-size: 31px;
  }
}
@media (max-width: 1200px) {
  .site-header__inner {
    gap: 28px;
  }
  .nav-shell {
    gap: 25px;
  }
  .primary-nav ul {
    gap: 23px;
  }
  .home-hero__copy {
    padding-left: 38px;
    padding-right: 32px;
  }
  .home-hero__copy h1 {
    font-size: 8vw;
  }
  .home-hero__copy .hero-lead {
    font-size: 25px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button {
    padding-inline: 20px;
  }
  .programme-narrative__grid {
    grid-template-columns: 2fr 1.2fr;
    gap: 60px;
  }
  .programme-narrative__grid > .section-index {
    grid-column: 1/-1;
  }
  .repertoire__grid {
    gap: 60px;
  }
  .booking-band__grid,
  .presenter-callout__grid,
  .social-callout__grid {
    gap: 0 60px;
  }
  .contact-main__grid {
    grid-template-columns: 0.8fr 1.4fr;
    gap: 48px;
  }
  .contact-form-panel {
    padding: 32px;
  }
  .field-grid--two {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .media-hero__image {
    height: 580px;
  }
  .press-layout {
    gap: 70px;
  }
}
@media (max-width: 1000px) {
  .primary-nav ul {
    gap: 18px;
  }
  .primary-nav a {
    font-size: 11px;
  }
  .wordmark {
    font-size: 22px;
  }
  .event-row {
    grid-template-columns: 1.1fr 1.6fr 0.8fr;
    gap: 22px;
  }
  .event-time {
    grid-column: 2;
    grid-row: 2;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -20px;
  }
  .event-time span {
    margin: 0;
  }
  .event-ticket {
    grid-column: 3;
    grid-row: 1/3;
  }
  .event-details {
    grid-column: 2;
  }
  .event-date {
    grid-row: 1/3;
  }
  .event-date__day {
    font-size: 68px;
  }
  .event-date__rest {
    font-size: 11px;
  }
  .programme-feature__grid,
  .story-feature__grid,
  .tradition__grid,
  .artist-closing__grid {
    gap: 50px;
  }
  .artist-story__grid {
    grid-template-columns: 0.8fr 1.4fr;
    gap: 70px;
  }
  .artist-story__aside,
  .press-facts {
    position: static;
  }
  .media-hero__grid {
    grid-template-columns: 0.85fr 1.2fr;
    gap: 35px;
  }
  .media-hero__image {
    height: 510px;
  }
  .page-intro__grid {
    gap: 0 60px;
  }
  .page-intro__lead {
    font-size: 15px;
  }
  .press-layout {
    grid-template-columns: 0.8fr 1.5fr;
    gap: 55px;
  }
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 55px;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 20px;
  }
}
@media (max-width: 840px) {
  :root {
    --gutter: 36px;
    --section: 85px;
  }
  .site-header__inner {
    min-height: 92px;
    padding-block: 22px;
  }
  .wordmark {
    font-size: 23px;
  }
  .menu-toggle {
    position: relative;
    z-index: 43;
    display: flex;
    align-items: center;
    gap: 14px;
    color: inherit;
    background: transparent;
    border: 0;
    padding: 10px 0 10px 10px;
    min-height: 44px;
  }
  .menu-toggle__label {
    font-size: 11px;
    letter-spacing: 0.07em;
  }
  .menu-toggle__lines {
    width: 25px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .menu-toggle__lines i {
    height: 1px;
    width: 25px;
    background: currentColor;
    transition:
      transform 0.3s,
      opacity 0.3s;
    transform-origin: center;
  }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
    transform: translateY(7.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
    transform: translateY(-7.5px) rotate(-45deg);
  }
  .menu-open .site-header {
    color: var(--paper);
  }
  .js .nav-shell {
    position: fixed;
    inset: 0;
    padding: 130px var(--gutter) 50px;
    background: var(--ink);
    color: var(--paper);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 45px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 0.3s var(--ease),
      transform 0.3s var(--ease),
      visibility 0.3s;
    overflow-y: auto;
    z-index: 41;
  }
  .js .nav-shell.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .primary-nav a {
    font-family: Newsreader, Georgia, serif;
    font-size: clamp(35px, 6.6vw, 54px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    padding: 9px 0;
    white-space: normal;
  }
  .primary-nav a::after {
    bottom: 4px;
  }
  .language-nav {
    font-size: 12px;
    gap: 15px;
  }
  .no-js .site-header {
    position: relative;
    background: var(--ink);
    color: var(--paper);
  }
  .no-js .site-header__inner {
    flex-wrap: wrap;
  }
  .no-js .nav-shell {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .no-js .primary-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px 20px;
  }
  .no-js .primary-nav a {
    font-family: Manrope, Arial, sans-serif;
    font-size: 12px;
    padding: 5px 0;
    min-height: 30px;
  }
  .no-js .language-nav a {
    min-height: 30px;
  }
  .home-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .home-hero__media {
    min-height: 0;
    height: 65svh;
    max-height: 720px;
    min-height: 460px;
  }
  .home-hero__media img {
    object-position: 52% 31%;
  }
  .home-hero__copy {
    padding: 58px var(--gutter) 78px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0 40px;
    align-items: start;
  }
  .home-hero__copy > .eyebrow {
    grid-column: 1/-1;
    margin-bottom: 28px;
  }
  .home-hero__copy h1 {
    font-size: clamp(66px, 10.5vw, 96px);
    margin: 0;
    grid-row: 2/4;
  }
  .home-hero__copy .hero-lead {
    font-size: 27px;
    max-width: 22ch;
    align-self: start;
  }
  .hero-actions {
    margin-top: 28px;
    gap: 18px 25px;
  }
  .hero-index {
    bottom: 23px;
    font-size: 9px;
  }
  .statement__grid {
    grid-template-columns: 0.5fr 5fr;
    gap: 28px;
  }
  .statement__grid h2 {
    max-width: 21ch;
  }
  .statement__grid .editorial-lead {
    font-size: 33px;
  }
  .programme-feature__grid,
  .story-feature__grid,
  .tradition__grid,
  .artist-closing__grid {
    gap: 42px;
  }
  .programme-feature__copy h2 {
    font-size: 65px;
  }
  .programme-feature__copy > p:not(.eyebrow):not(.programme-subtitle) {
    font-size: 14px;
  }
  .programme-subtitle {
    font-size: 25px;
  }
  .story-feature__copy h2 {
    font-size: 45px;
  }
  .story-feature__copy .editorial-lead {
    font-size: 26px;
  }
  .section-heading--split {
    gap: 40px;
  }
  .section-heading--split > p {
    font-size: 13px;
  }
  .section-heading h2 {
    font-size: 46px;
  }
  .event-row {
    grid-template-columns: 1.1fr 1.5fr 0.9fr;
  }
  .event-date {
    gap: 12px;
  }
  .event-date__day {
    font-size: 60px;
  }
  .event-details h3 {
    font-size: 29px;
  }
  .event-details p {
    font-size: 12px;
  }
  .event-ticket {
    font-size: 11px;
    padding-left: 15px;
    gap: 10px;
  }
  .booking-band__grid,
  .presenter-callout__grid,
  .social-callout__grid {
    gap: 0 45px;
  }
  .booking-band__grid h2,
  .presenter-callout__grid h2,
  .social-callout__grid h2 {
    font-size: 46px;
  }
  .booking-band__grid > div,
  .presenter-callout__grid > div,
  .social-callout__grid > div {
    font-size: 14px;
  }
  .interior-hero {
    padding-top: 125px;
  }
  .interior-hero__grid {
    gap: 38px;
    padding-bottom: 70px;
  }
  .interior-hero__copy {
    padding-block: 30px;
  }
  .interior-hero__copy h1 {
    font-size: 64px;
  }
  .interior-hero__copy .hero-lead {
    font-size: 26px;
  }
  .programme-hero .interior-hero__copy h1 {
    font-size: 86px;
  }
  .programme-narrative__grid {
    gap: 45px;
  }
  .programme-narrative__copy h2 {
    font-size: 45px;
  }
  .programme-narrative__copy .editorial-lead {
    font-size: 28px;
  }
  .programme-narrative__copy > p:last-child {
    font-size: 14px;
  }
  .emotional-arc li {
    font-size: 28px;
    gap: 14px;
  }
  .repertoire__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .repertoire__grid h2 {
    max-width: 20ch;
  }
  .repertoire-list li {
    font-size: 26px;
  }
  .tradition__copy h2 {
    font-size: 43px;
  }
  .tradition__copy .editorial-lead {
    font-size: 25px;
  }
  .tradition__copy > p:not(.editorial-lead):not(.eyebrow) {
    font-size: 14px;
  }
  .format-note p:last-child {
    font-size: 12px;
  }
  .artist-story__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .artist-story__aside {
    max-width: 62ch;
    font-size: 15px;
  }
  .artist-story__body {
    padding-left: 44px;
  }
  .story-chapter p {
    font-size: 16px;
  }
  .artist-closing__copy h2 {
    font-size: 44px;
  }
  .artist-closing__copy .editorial-lead {
    font-size: 25px;
  }
  .page-intro {
    padding-top: 155px;
  }
  .page-intro__grid {
    gap: 0 40px;
  }
  .page-intro__grid h1 {
    font-size: 70px;
  }
  .contact-main__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .contact-rail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    padding-top: 0;
  }
  .contact-rail > div + div {
    margin: 0;
    padding: 0;
    border: 0;
  }
  .contact-rail .text-link {
    font-size: 11px;
  }
  .contact-form-panel {
    padding: 44px;
  }
  .field-grid--two {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .form-heading h2 {
    font-size: 45px;
  }
  .media-hero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .media-hero .interior-hero__copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }
  .media-hero .interior-hero__copy > .eyebrow {
    grid-column: 1/-1;
  }
  .media-hero .interior-hero__copy h1 {
    font-size: 72px;
    margin: 0;
  }
  .media-hero .hero-lead {
    font-size: 26px;
    align-self: center;
  }
  .media-hero__image {
    height: 520px;
  }
  .media-hero__image img {
    object-position: 52% 30%;
  }
  .photo-sequence__grid {
    gap: 40px;
  }
  .photo-sequence__item--portrait {
    margin-top: 100px;
  }
  .photo-sequence__item--offset {
    margin-top: 15px;
    width: 56%;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .press-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .press-facts {
    max-width: none;
  }
  .press-facts dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 35px;
  }
  .press-content {
    max-width: 720px;
  }
  .press-intro h1 {
    font-size: 60px;
  }
  .press-image-grid {
    gap: 40px 30px;
  }
  .press-image figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .press-image figcaption .text-link {
    font-size: 11px;
  }
  .concerts-coda {
    height: 340px;
  }
  .legal-page {
    padding-top: 160px;
  }
}
@media (max-width: 600px) {
  :root {
    --gutter: 24px;
    --section: 72px;
  }
  body {
    font-size: 16px;
  }
  .site-header__inner {
    min-height: 84px;
    padding-block: 19px;
  }
  .wordmark {
    font-size: 21px;
  }
  .menu-toggle__label {
    font-size: 10px;
  }
  .home-hero__media {
    height: 62svh;
    min-height: 420px;
    max-height: 640px;
  }
  .home-hero__copy {
    display: block;
    padding: 44px var(--gutter) 72px;
  }
  .home-hero__copy > .eyebrow {
    font-size: 9px;
    margin-bottom: 28px;
  }
  .home-hero__copy h1 {
    font-size: clamp(63px, 15.5vw, 91px);
    line-height: 0.86;
    margin-bottom: 28px;
    max-width: none;
  }
  .home-hero__copy h1 span {
    display: inline;
  }
  .home-hero__copy h1 span + span {
    display: block;
    margin-top: 0.1em;
  }
  .home-hero__copy .hero-lead {
    font-size: 25px;
    max-width: 24ch;
  }
  .hero-actions {
    display: flex;
    margin-top: 28px;
    gap: 20px 28px;
  }
  .hero-actions .button {
    min-height: 49px;
    padding: 12px 21px;
  }
  .hero-index {
    right: var(--gutter);
    bottom: 22px;
    font-size: 8px;
  }
  .statement__grid {
    display: block;
  }
  .statement__grid > .section-index {
    margin-bottom: 26px;
  }
  .statement__grid h2 {
    font-size: 39px;
    margin-bottom: 25px;
  }
  .statement__grid .editorial-lead {
    font-size: 28px;
    line-height: 1.38;
  }
  .programme-feature__grid,
  .story-feature__grid,
  .tradition__grid,
  .artist-closing__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .programme-feature__copy {
    padding: 0;
  }
  .programme-feature__copy h2 {
    font-size: 76px;
    max-width: 8ch;
  }
  .programme-subtitle {
    font-size: 27px;
    max-width: 22ch;
    margin-block: 23px;
  }
  .programme-feature__copy > p:not(.eyebrow):not(.programme-subtitle) {
    font-size: 15px;
    max-width: 48ch;
  }
  .programme-feature__copy .text-link {
    margin-top: 22px;
  }
  .programme-feature__media,
  .story-feature__media {
    max-width: none;
  }
  .story-feature__copy h2 {
    font-size: 47px;
    max-width: 13ch;
  }
  .story-feature__copy .editorial-lead {
    font-size: 27px;
  }
  .section-heading {
    margin-bottom: 33px;
    gap: 19px;
  }
  .section-heading--split {
    display: block;
  }
  .section-heading--split > p {
    margin-top: 22px;
    font-size: 14px;
    max-width: 38ch;
  }
  .section-heading h2 {
    font-size: 43px;
  }
  .section-heading .eyebrow {
    margin-bottom: 18px;
  }
  .event-row {
    grid-template-columns: 95px 1fr;
    gap: 22px 20px;
    padding: 29px 0;
  }
  .event-date {
    display: block;
    grid-column: 1;
    grid-row: 1/3;
    align-self: start;
  }
  .event-date__day {
    display: block;
    font-size: 66px;
    line-height: 0.85;
  }
  .event-date__rest {
    display: block;
    margin-top: 11px;
    font-size: 10px;
    line-height: 1.5;
  }
  .event-date__rest br {
    display: none;
  }
  .event-date__rest br::after {
    content: " ";
  }
  .event-details {
    grid-column: 2;
    grid-row: 1;
  }
  .event-details h3 {
    font-size: 30px;
    margin-bottom: 8px;
  }
  .event-details p {
    font-size: 12px;
  }
  .event-details .event-address {
    font-size: 10px;
    max-width: 24ch;
  }
  .event-time {
    grid-column: 2;
    grid-row: 2;
    margin-top: -12px;
    font-size: 15px;
  }
  .event-time span {
    font-size: 9px;
  }
  .event-ticket {
    grid-column: 2;
    grid-row: 3;
    margin-top: -8px;
    padding: 10px 0 6px;
    min-height: 44px;
    border-left: 0;
    border-bottom: 1px solid var(--ink);
    justify-content: space-between;
    font-size: 11px;
    max-width: 240px;
  }
  .event-ticket span {
    font-size: 20px;
  }
  .section-cta {
    text-align: left;
    margin-top: 26px;
  }
  .booking-band__grid,
  .presenter-callout__grid,
  .social-callout__grid {
    display: block;
  }
  .booking-band__grid h2,
  .presenter-callout__grid h2,
  .social-callout__grid h2 {
    font-size: 46px;
    max-width: 15ch;
    margin-bottom: 30px;
  }
  .booking-band__grid > div,
  .presenter-callout__grid > div,
  .social-callout__grid > div {
    font-size: 15px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 24px;
  }
  .button {
    font-size: 11px;
  }
  .text-link {
    font-size: 11px;
  }
  .interior-hero {
    padding-top: 106px;
  }
  .interior-hero__grid {
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding-bottom: 60px;
  }
  .interior-hero__media--portrait {
    order: 0;
    max-width: none;
  }
  .interior-hero__copy {
    order: 1;
    width: 100%;
    padding: 0;
  }
  .programme-hero .interior-hero__copy h1 {
    font-size: clamp(78px, 19vw, 112px);
    margin-bottom: 26px;
  }
  .interior-hero__copy .hero-lead {
    font-size: 27px;
    max-width: 26ch;
  }
  .interior-hero__copy .text-link {
    margin-top: 20px;
  }
  .programme-narrative__grid {
    display: block;
  }
  .programme-narrative__grid > .section-index {
    margin-bottom: 24px;
  }
  .programme-narrative__copy h2 {
    font-size: 43px;
    max-width: 16ch;
  }
  .programme-narrative__copy .editorial-lead {
    font-size: 29px;
  }
  .programme-narrative__copy > p:last-child {
    font-size: 15px;
  }
  .emotional-arc {
    margin-top: 45px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .emotional-arc li {
    font-size: 24px;
    gap: 11px;
    padding: 16px 0;
  }
  .emotional-arc li span {
    font-size: 8px;
    min-width: 13px;
  }
  .repertoire__grid {
    gap: 30px;
  }
  .repertoire__grid h2 {
    font-size: 44px;
  }
  .repertoire-list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .repertoire-list li {
    font-size: 29px;
    padding: 18px 0;
  }
  .tradition__media {
    aspect-ratio: 4/5;
  }
  .tradition__copy h2 {
    font-size: 44px;
  }
  .tradition__copy .editorial-lead {
    font-size: 27px;
  }
  .tradition__copy > p:not(.editorial-lead):not(.eyebrow) {
    font-size: 15px;
  }
  .format-note p:last-child {
    font-size: 13px;
  }
  .artist-hero .interior-hero__copy h1 {
    font-size: 65px;
    max-width: 9ch;
  }
  .artist-story__grid {
    gap: 45px;
  }
  .artist-story__aside {
    font-size: 14px;
    line-height: 1.8;
  }
  .artist-story__body {
    padding-left: 29px;
  }
  .chapter-number {
    left: -29px;
    top: 32px;
  }
  .story-chapter {
    padding-top: 28px;
    margin-bottom: 38px;
  }
  .story-chapter h3 {
    font-size: 35px;
    margin-bottom: 19px;
  }
  .story-chapter p {
    font-size: 15px;
  }
  .artist-closing__copy h2 {
    font-size: 43px;
  }
  .artist-closing__copy .editorial-lead {
    font-size: 27px;
  }
  .artist-closing__media {
    order: -1;
  }
  .page-intro {
    padding: 140px 0 48px;
  }
  .page-intro__grid {
    display: block;
  }
  .page-intro__grid h1 {
    font-size: 68px;
    margin-bottom: 26px;
  }
  .page-intro__grid > .page-intro__lead {
    padding: 0;
    font-size: 15px;
    max-width: 45ch;
  }
  .concerts-main {
    padding-top: 18px;
  }
  .concerts-main .section-heading {
    margin-bottom: 24px;
  }
  .concerts-main .section-heading h2 {
    font-size: 25px;
  }
  .concerts-coda {
    height: 330px;
  }
  .concerts-coda .photograph img {
    object-position: 54% 34%;
  }
  .contact-intro {
    padding-bottom: 38px;
  }
  .contact-main {
    padding-top: 18px;
  }
  .contact-rail {
    display: block;
  }
  .contact-rail > div + div {
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid var(--rule);
  }
  .contact-rail .eyebrow {
    margin-bottom: 17px;
  }
  .contact-rail p:not(.eyebrow) {
    max-width: 42ch;
  }
  .contact-rail .text-link {
    margin-top: 16px;
  }
  .contact-representation {
    margin-top: 20px;
  }
  .contact-main__grid {
    gap: 45px;
  }
  .contact-form-panel {
    padding: 28px 22px;
    margin-inline: -6px;
  }
  .form-heading {
    display: block;
    margin-bottom: 28px;
  }
  .form-heading h2 {
    font-size: 39px;
    margin-bottom: 13px;
  }
  .field-grid--two {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .field {
    margin-bottom: 21px;
  }
  .field label {
    font-size: 11px;
  }
  .contact-form .button {
    width: 100%;
  }
  .form-privacy {
    font-size: 10px;
  }
  .form-notice {
    font-size: 13px;
    padding: 17px;
  }
  .media-hero {
    padding-bottom: 40px;
  }
  .media-hero .interior-hero__copy {
    display: block;
    padding-top: 32px;
  }
  .media-hero .interior-hero__copy h1 {
    font-size: 65px;
    margin-bottom: 26px;
  }
  .media-hero .hero-lead {
    font-size: 26px;
    max-width: 28ch;
  }
  .media-hero__grid {
    gap: 34px;
  }
  .media-hero__image {
    height: auto;
    aspect-ratio: 4/5;
  }
  .media-hero__image img {
    object-position: 54% 32%;
  }
  .photo-sequence {
    padding-top: 40px;
  }
  .photo-sequence__grid {
    display: block;
  }
  .photo-sequence__item--wide {
    aspect-ratio: 3/4;
  }
  .photo-sequence__item--portrait,
  .photo-sequence__item--offset {
    margin-top: 34px;
    width: 100%;
  }
  .photo-sequence .section-heading h2 {
    font-size: 35px;
  }
  .video-card {
    min-height: 370px;
  }
  .video-consent {
    padding: 25px;
  }
  .video-consent h3 {
    font-size: 28px;
  }
  .video-consent p {
    font-size: 11px;
  }
  .social-handle {
    font-size: 27px;
  }
  .press-intro h1 {
    font-size: 60px;
    max-width: 10ch;
  }
  .print-button {
    margin-top: 24px;
  }
  .press-main {
    padding-top: 20px;
  }
  .press-facts dl {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .press-facts dl > div {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 20px;
    padding-block: 14px;
  }
  .press-facts dt {
    font-size: 9px;
  }
  .press-facts dd {
    font-size: 12px;
  }
  .press-section {
    margin-bottom: 47px;
    padding-top: 26px;
  }
  .press-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
  }
  .press-section p {
    font-size: 15px;
  }
  .press-section .editorial-lead {
    font-size: 25px;
  }
  .press-section h3 {
    font-size: 29px;
  }
  .press-image-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .press-image figcaption {
    flex-direction: row;
    align-items: center;
    font-size: 10px;
  }
  .press-images .section-heading > p {
    font-size: 13px;
  }
  .legal-page {
    padding-top: 140px;
  }
  .legal-page .reading-shell {
    padding-inline: var(--gutter);
  }
  .legal-page h1 {
    font-size: 59px;
    margin-bottom: 34px;
  }
  .legal-page h2 {
    font-size: 28px;
  }
  .legal-page p {
    font-size: 14px;
  }
  .legal-page section {
    margin-top: 34px;
  }
  .not-found {
    padding-top: 170px;
    min-height: 90svh;
  }
  .not-found h1 {
    font-size: 58px;
  }
  .not-found__inner > p:last-of-type {
    font-size: 15px;
  }
  .not-found nav {
    gap: 18px 25px;
  }
  .site-footer {
    padding-top: 62px;
  }
  .site-footer__masthead {
    display: block;
    padding-bottom: 34px;
  }
  .footer-wordmark {
    font-size: 47px;
  }
  .site-footer__masthead p {
    margin-top: 20px;
    font-size: 9px;
    line-height: 1.7;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 29px;
    padding-block: 30px 35px;
  }
  .footer-label {
    font-size: 8px;
    margin-bottom: 10px !important;
  }
  .site-footer__grid p,
  .site-footer__grid a {
    font-size: 12px;
  }
  .footer-nav {
    gap: 14px 25px;
    margin-top: 3px;
  }
  .site-footer__base {
    padding-block: 22px 26px;
    display: block;
  }
  .site-footer__base p {
    font-size: 8px;
  }
  .site-footer__base p + p {
    margin-top: 7px;
  }
}
@media (max-width: 374px) {
  :root {
    --gutter: 20px;
  }
  .home-hero__media {
    min-height: 390px;
    height: 60svh;
  }
  .home-hero__copy h1 {
    font-size: 62px;
  }
  .home-hero__copy .hero-lead {
    font-size: 23px;
  }
  .home-hero__copy {
    padding-top: 39px;
  }
  .hero-actions {
    gap: 15px 22px;
  }
  .statement__grid h2 {
    font-size: 36px;
  }
  .statement__grid .editorial-lead {
    font-size: 26px;
  }
  .programme-feature__copy h2 {
    font-size: 69px;
  }
  .event-row {
    grid-template-columns: 77px 1fr;
    column-gap: 17px;
  }
  .event-date__day {
    font-size: 58px;
  }
  .event-date__rest {
    font-size: 9px;
  }
  .event-details h3 {
    font-size: 27px;
  }
  .emotional-arc {
    grid-template-columns: 1fr;
  }
  .emotional-arc li {
    font-size: 27px;
  }
  .contact-form-panel {
    padding: 26px 19px;
  }
  .form-heading h2 {
    font-size: 34px;
  }
  .page-intro__grid h1 {
    font-size: 60px;
  }
  .press-intro h1 {
    font-size: 55px;
  }
  .footer-wordmark {
    font-size: 41px;
  }
  .press-image figcaption {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal.is-pending {
    opacity: 1;
    transform: none;
  }
}
@media print {
  @page {
    size: A4;
    margin: 18mm;
  }
  html,
  body {
    background: #fff !important;
    color: #111 !important;
    font-size: 10pt;
    line-height: 1.5;
  }
  *,
  *::before,
  *::after {
    box-shadow: none !important;
    text-shadow: none !important;
    transition: none !important;
  }
  .site-header,
  .site-footer,
  .skip-link,
  .print-button,
  .hero-actions,
  .video-section,
  .button,
  .contact-form-panel {
    display: none !important;
  }
  .shell,
  .reading-shell {
    width: 100%;
    max-width: none;
    padding: 0 !important;
  }
  .section,
  .page-intro,
  .interior-hero {
    background: #fff !important;
    color: #111 !important;
    padding: 0 0 8mm !important;
  }
  .page-intro__grid,
  .press-layout,
  .press-facts dl {
    display: block;
  }
  .page-intro h1 {
    font-size: 32pt;
    margin: 0 0 5mm;
  }
  .page-intro .eyebrow {
    font-size: 8pt;
    margin-bottom: 4mm;
  }
  .page-intro__lead {
    font-size: 10pt !important;
    max-width: none;
  }
  .press-intro {
    border-bottom: 1px solid #aaa;
    margin-bottom: 6mm;
  }
  .press-facts {
    position: static;
    max-width: none;
    margin-bottom: 8mm;
  }
  .press-facts h2 {
    font-size: 17pt;
    margin-bottom: 4mm;
  }
  .press-facts dl {
    column-count: 2;
    column-gap: 10mm;
  }
  .press-facts dl > div {
    break-inside: avoid;
    padding: 2mm 0;
    display: block;
  }
  .press-facts dt {
    font-size: 7pt;
  }
  .press-facts dd {
    font-size: 8pt;
  }
  .press-content {
    max-width: none;
  }
  .press-section {
    padding-top: 5mm;
    margin-bottom: 7mm;
    border-color: #bbb;
  }
  .press-section h2 {
    font-size: 22pt;
    margin: 0 0 4mm;
    break-after: avoid;
  }
  .press-section h3 {
    font-size: 15pt;
    break-after: avoid;
    margin: 5mm 0 2mm;
  }
  .press-section p,
  .press-section .editorial-lead {
    font-family: Manrope, Arial, sans-serif;
    font-size: 10pt;
    max-width: none;
    line-height: 1.55;
  }
  .press-section .section-index {
    font-size: 7pt;
    margin: 0 0 3mm;
  }
  .press-images {
    break-before: page;
  }
  .press-images .section-heading {
    display: block;
    margin-bottom: 5mm;
  }
  .press-images .section-heading h2 {
    font-size: 25pt;
  }
  .press-images .section-heading > p {
    font-size: 9pt;
    max-width: none;
    margin-top: 3mm;
  }
  .press-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6mm;
  }
  .press-image {
    break-inside: avoid;
  }
  .press-image .photograph {
    height: 90mm;
    aspect-ratio: auto;
    background: #fff;
  }
  .press-image .photograph img {
    object-fit: contain;
  }
  .press-image figcaption {
    font-size: 7pt;
    display: block;
    padding-top: 2mm;
  }
  .press-image .text-link {
    font-size: 7pt;
    min-height: 0;
    border: 0;
    padding: 0;
  }
  .press-image .text-link::after {
    content: none;
  }
  .reveal,
  .js .reveal.is-pending {
    opacity: 1 !important;
    transform: none !important;
  }
  a {
    text-decoration: none;
  }
  p {
    orphans: 3;
    widows: 3;
  }
  .legal-page {
    padding: 0 !important;
  }
  .legal-page h1 {
    font-size: 30pt;
  }
  .legal-page h2 {
    font-size: 17pt;
  }
  .legal-page p {
    font-size: 10pt;
  }
  .legal-page section {
    margin-top: 6mm;
  }
}
