:root {
  --paper: #f4f0e6;
  --paper-deep: #e8e1d2;
  --ink: #151515;
  --muted: #6a675f;
  --line: rgba(21, 21, 21, 0.24);
  --cobalt: #1746d1;
  --signal: #f0442f;
  --yellow: #f2f044;
  --white: #ffffff;
  --sans: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --gutter: 28px;
  --section: 112px;
  --content: 1240px;
  --narrow: 760px;
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

a:hover,
a:focus-visible {
  color: var(--signal);
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

.shell,
.shell-wide,
.shell-narrow {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin-inline: auto;
}

.shell-wide {
  --content: 1380px;
}

.shell-narrow {
  --content: var(--narrow);
}

.section-block {
  padding-block: var(--section);
}

.eyebrow,
.meta-label {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--yellow);
  color: var(--ink);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 72px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(210px, 0.75fr) minmax(380px, 1.5fr) 190px;
  align-items: stretch;
  height: 100%;
}

.site-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  padding-inline: var(--gutter);
  border-right: 1px solid var(--ink);
}

.site-brand__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.site-brand__link:hover {
  color: var(--ink);
}

.site-brand__stamp {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--cobalt);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.site-brand__name {
  display: grid;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.site-brand__name small {
  margin-top: 5px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
}

.custom-logo-link img {
  width: auto;
  max-width: 210px;
  max-height: 48px;
}

.primary-navigation {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.site-menu,
.footer-menu {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  min-height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-menu > li {
  display: flex;
  position: relative;
  align-items: stretch;
}

.site-menu > li > a {
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-menu > li > a:hover,
.site-menu > .current-menu-item > a,
.site-menu > .current_page_item > a {
  background: var(--yellow);
  color: var(--ink);
}

.site-menu .sub-menu {
  position: absolute;
  z-index: 30;
  top: 100%;
  left: 0;
  display: none;
  width: 220px;
  padding: 8px 0;
  margin: 0;
  border: 1px solid var(--ink);
  background: var(--paper);
  list-style: none;
}

.site-menu li:hover > .sub-menu,
.site-menu li:focus-within > .sub-menu {
  display: block;
}

.site-menu .sub-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
}

.site-menu .sub-menu a:hover {
  background: var(--yellow);
}

.header-ticket {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 20px;
  background: var(--signal);
  color: var(--white);
  text-decoration: none;
}

.header-ticket:hover {
  background: var(--ink);
  color: var(--yellow);
}

.header-ticket span {
  font-family: var(--mono);
  font-size: 10px;
}

.header-ticket strong {
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 54px;
  height: 54px;
  padding: 13px;
  border: 0;
  border-left: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle__line {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 6px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.poster-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.poster-link:hover {
  transform: translateY(-2px);
  color: var(--ink);
}

.poster-link--yellow {
  background: var(--yellow);
}

.poster-link--yellow:hover {
  background: var(--white);
}

.poster-link--blue {
  border-color: var(--cobalt);
  background: var(--cobalt);
  color: var(--white);
}

.poster-link--blue:hover {
  background: var(--ink);
  color: var(--yellow);
}

.line-link,
.text-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 6px;
}

.text-link--light {
  color: var(--white);
}

.text-link--light:hover {
  color: var(--yellow);
}

.home-hero {
  position: relative;
  height: calc(100svh - 116px);
  min-height: 520px;
  max-height: 800px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.home-hero__image,
.home-hero__wash {
  position: absolute;
  inset: 0;
}

.home-hero__image img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  filter: saturate(0.88) contrast(1.06);
  transform: scale(1.01);
}

.home-hero__wash {
  background: rgba(0, 0, 0, 0.44);
}

.home-hero__topline {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: var(--gutter);
  left: var(--gutter);
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.home-hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: end;
  gap: 36px;
  padding-bottom: 50px;
}

.hero-copy {
  max-width: 780px;
}

.hero-kicker {
  display: inline-block;
  padding: 7px 11px;
  margin: 0 0 18px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: 116px;
  font-weight: 950;
  line-height: 0.82;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 span:last-child {
  margin-left: 0.68em;
  color: var(--yellow);
}

.hero-lead {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

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

.hero-ticket {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--ink);
  background: var(--signal);
  color: var(--white);
  transform: rotate(1.5deg);
}

.hero-ticket__label {
  margin-bottom: auto;
  font-family: var(--mono);
  font-size: 10px;
}

.hero-ticket strong {
  margin-bottom: 12px;
  font-size: 27px;
  line-height: 1.05;
}

.hero-ticket > span:not(.hero-ticket__label) {
  font-family: var(--mono);
  font-size: 11px;
}

.hero-ticket a {
  margin-top: 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.hero-ticket a:hover {
  color: var(--yellow);
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 10px;
  writing-mode: vertical-rl;
}

.city-broadcast {
  height: 44px;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  background: var(--yellow);
}

.city-broadcast__track {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.city-broadcast__track span {
  padding-inline: 20px;
  border-right: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 48px;
}

.section-heading h2,
.ledger-heading h2,
.host-copy h2,
.member-ticket__offer h2 {
  margin: 0;
  font-size: 62px;
  font-weight: 950;
  line-height: 0.98;
}

.section-heading__aside {
  padding-bottom: 5px;
}

.section-heading__aside p {
  max-width: 470px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.event-wall {
  background: var(--paper);
}

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

.event-poster {
  position: relative;
  min-width: 0;
  border: 1px solid var(--ink);
  background: var(--white);
}

.event-poster--1 {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.event-poster--2 {
  display: grid;
  grid-column: 8 / 13;
  grid-template-columns: 1.1fr 0.9fr;
}

.event-poster--3 {
  grid-column: 8 / 11;
  background: var(--cobalt);
  color: var(--white);
}

.event-poster--4 {
  grid-column: 11 / 13;
  background: var(--signal);
  color: var(--white);
}

.event-poster__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}

.event-poster--1 .event-poster__media {
  aspect-ratio: 16 / 10;
}

.event-poster--2 .event-poster__media {
  height: 100%;
  min-height: 280px;
  border-right: 1px solid var(--ink);
  border-bottom: 0;
}

.event-poster--3 .event-poster__media,
.event-poster--4 .event-poster__media {
  aspect-ratio: 4 / 3;
}

.event-poster__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.event-poster:hover .event-poster__media img {
  transform: scale(1.025);
}

.event-poster__type {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 8px;
  border: 1px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
}

.event-poster__body {
  padding: 22px;
}

.event-poster--1 .event-poster__body {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
}

.event-poster__date,
.event-poster__facts,
.event-poster__status {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}

.event-poster__date {
  align-self: start;
}

.event-poster h3 {
  margin: 10px 0 12px;
  overflow-wrap: anywhere;
  font-size: 30px;
  font-weight: 950;
  line-height: 1.08;
}

.event-poster--1 h3 {
  margin: 0;
  font-size: 42px;
}

.event-poster--3 h3 {
  font-size: 25px;
}

.event-poster--4 h3 {
  font-size: 21px;
}

.event-poster h3 a {
  text-decoration: none;
}

.event-poster--3 a,
.event-poster--4 a {
  color: var(--white);
}

.event-poster--3 a:hover,
.event-poster--4 a:hover {
  color: var(--yellow);
}

.event-poster__facts {
  display: grid;
  gap: 2px;
  opacity: 0.78;
}

.event-poster__status {
  display: inline-block;
  margin-top: 18px;
}

.event-poster--1 .event-poster__facts {
  display: none;
}

.event-poster--1 .event-poster__status {
  margin: 0;
  padding: 9px 12px;
  border: 1px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  text-decoration: none;
}

.manifesto-band {
  border-block: 1px solid var(--ink);
  background: var(--cobalt);
  color: var(--white);
}

.manifesto-band__grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  padding-block: 0;
}

.manifesto-band__title,
.manifesto-statement {
  min-height: 350px;
  padding: 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.52);
}

.manifesto-band__title {
  display: flex;
  align-items: flex-end;
}

.manifesto-band__title span {
  font-size: 74px;
  font-weight: 950;
  line-height: 0.84;
}

.manifesto-statement {
  display: flex;
  flex-direction: column;
}

.manifesto-statement > strong {
  font-family: var(--mono);
  font-size: 13px;
}

.manifesto-statement h2 {
  margin: auto 0 22px;
  font-size: 37px;
  font-weight: 950;
  line-height: 1.05;
}

.manifesto-statement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.manifesto-statement--ink {
  border-right: 0;
  background: var(--ink);
}

.ledger-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.ledger-heading h2 {
  font-size: 56px;
}

.ledger-heading > p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  text-align: right;
}

.ledger {
  border-top: 3px solid var(--ink);
}

.ledger__head,
.ledger__row {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 2.3fr 1.5fr 0.8fr;
  gap: 18px;
  align-items: center;
}

.ledger__head {
  min-height: 46px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}

.ledger__row {
  min-height: 92px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
  transition: background-color 150ms ease, padding 150ms ease;
}

.ledger__row:hover {
  padding-inline: 14px;
  background: var(--yellow);
  color: var(--ink);
}

.ledger__row strong {
  font-size: 21px;
  line-height: 1.2;
}

.ledger__row em {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.ledger__date {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.host-dossier {
  border-top: 1px solid var(--ink);
  background: var(--paper-deep);
}

.host-dossier__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 82px;
  align-items: center;
}

.host-collage {
  position: relative;
  min-height: 620px;
}

.host-collage__main {
  width: 76%;
  height: 540px;
  object-fit: cover;
  border: 1px solid var(--ink);
}

.host-collage__small {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 48%;
  height: 260px;
  object-fit: cover;
  border: 10px solid var(--signal);
}

.host-collage__caption {
  position: absolute;
  top: 18px;
  right: 7%;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  background: var(--yellow);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  transform: rotate(2deg);
}

.host-copy h2 {
  margin-bottom: 30px;
  font-size: 54px;
}

.host-copy__lead {
  margin: 0;
  color: #4e4a42;
  font-size: 18px;
}

.host-steps {
  margin: 34px 0;
  border-top: 1px solid var(--ink);
}

.host-steps div {
  display: grid;
  grid-template-columns: 58px 1fr;
  padding-block: 14px;
  border-bottom: 1px solid var(--ink);
}

.host-steps dt {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.host-steps dd {
  margin: 0;
  font-size: 14px;
}

.member-ticket {
  background: var(--ink);
  color: var(--white);
}

.member-ticket__paper {
  display: grid;
  min-height: 410px;
  grid-template-columns: 0.55fr 1.45fr 0.8fr;
  border: 1px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
}

.member-ticket__stub,
.member-ticket__offer,
.member-ticket__price {
  padding: 42px;
}

.member-ticket__stub {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 2px dashed var(--ink);
  font-family: var(--mono);
}

.member-ticket__stub > span {
  font-size: 11px;
}

.member-ticket__stub > strong {
  font-size: 23px;
  writing-mode: vertical-rl;
}

.member-ticket__stub > small {
  font-size: 9px;
}

.member-ticket__offer {
  border-right: 1px solid var(--ink);
}

.member-ticket__offer h2 {
  margin-bottom: 32px;
  font-size: 54px;
}

.member-ticket__offer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.member-ticket__offer li::before {
  content: "✓";
  margin-right: 10px;
  font-weight: 900;
}

.member-ticket__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--signal);
  color: var(--white);
}

.member-ticket__price > span {
  font-family: var(--mono);
  font-size: 11px;
}

.member-ticket__price > strong {
  margin-block: 10px 24px;
  font-size: 72px;
  line-height: 1;
}

.member-ticket__price a {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.city-notes {
  background: var(--paper);
}

.note-index {
  border-top: 3px solid var(--ink);
}

.note-index__item {
  display: grid;
  min-height: 132px;
  grid-template-columns: 80px minmax(0, 1fr) 60px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}

.note-index__item > span {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
}

.note-index__item p {
  margin: 0 0 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.note-index__item h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
}

.note-index__item h3 a {
  text-decoration: none;
}

.note-index__arrow {
  font-size: 29px;
  text-align: right;
  text-decoration: none;
}

.footer-callout {
  border-block: 1px solid var(--ink);
  background: var(--signal);
  color: var(--white);
}

.footer-callout__inner {
  position: relative;
  min-height: 390px;
  padding-block: 70px;
}

.footer-callout h2 {
  max-width: 760px;
  margin: 0;
  font-size: 86px;
  font-weight: 950;
  line-height: 0.9;
}

.footer-callout .poster-link {
  position: absolute;
  right: 0;
  bottom: 78px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 60px;
  padding-block: 70px;
}

.footer-brand {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.footer-brand__mark {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  background: var(--yellow);
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  line-height: 0.95;
  text-align: center;
}

.footer-brand p,
.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-menu {
  display: grid;
  justify-content: start;
  gap: 8px;
}

.footer-menu a,
.footer-contact a {
  color: var(--white);
  font-weight: 800;
}

.footer-contact .footer-note {
  margin-top: 12px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--mono);
  font-size: 9px;
}

.footer-legal p {
  margin: 0;
}

/* Archives and editorial pages */
.archive-hero {
  border-bottom: 1px solid var(--ink);
}

.archive-hero--blue {
  background: var(--cobalt);
  color: var(--white);
}

.archive-hero--paper {
  background: var(--paper-deep);
}

.archive-hero__inner {
  display: grid;
  min-height: 440px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 80px;
  padding-block: 70px;
}

.archive-hero h1,
.page-header h1,
.article-header h1 {
  max-width: 900px;
  margin: 0;
  font-size: 76px;
  font-weight: 950;
  line-height: 0.96;
}

.archive-hero__note {
  padding-top: 18px;
  border-top: 1px solid currentColor;
}

.archive-hero__note > span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.archive-hero__note p {
  margin: 16px 0 0;
  opacity: 0.74;
  font-size: 15px;
}

.event-filter {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  border-bottom: 1px solid var(--ink);
}

.event-filter a {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.event-filter a:hover,
.event-filter .is-active {
  background: var(--yellow);
}

.event-archive-list__head,
.event-archive-item {
  display: grid;
  grid-template-columns: 1fr 1.3fr 2.2fr 0.7fr;
  gap: 24px;
}

.event-archive-list__head {
  padding-bottom: 12px;
  border-bottom: 3px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
}

.event-archive-item {
  min-height: 230px;
  align-items: stretch;
  padding-block: 24px;
  border-bottom: 1px solid var(--ink);
}

.event-archive-item__date {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.event-archive-item__date small {
  color: var(--muted);
  font-size: 10px;
}

.event-archive-item__media {
  display: block;
  overflow: hidden;
  border: 1px solid var(--ink);
}

.event-archive-item__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.event-archive-item:hover .event-archive-item__media img {
  transform: scale(1.03);
}

.event-archive-item__copy h2 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.1;
}

.event-archive-item__copy h2 a {
  text-decoration: none;
}

.event-archive-item__copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.event-archive-item__copy > span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
}

.event-archive-item__status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.event-archive-item__status span {
  font-size: 34px;
}

.navigation.pagination {
  margin-top: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
  background: var(--yellow);
  color: var(--ink);
}

.single-event__hero {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.single-event__media,
.single-event__overlay {
  position: absolute;
  inset: 0;
}

.single-event__media img {
  height: 100%;
  object-fit: cover;
}

.single-event__overlay {
  background: rgba(0, 0, 0, 0.48);
}

.single-event__heading {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 630px;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 62px;
}

.single-event__heading h1 {
  max-width: 900px;
  margin: 0;
  font-size: 70px;
  font-weight: 950;
  line-height: 0.98;
}

.single-event__quickfacts {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.single-event__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 90px;
  align-items: start;
}

.single-event__content {
  max-width: 760px;
}

.booking-ticket {
  position: sticky;
  top: 100px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.booking-ticket__top {
  padding: 26px;
  border-bottom: 2px dashed var(--ink);
  background: var(--signal);
  color: var(--white);
}

.booking-ticket__top span {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
}

.booking-ticket__top strong {
  display: block;
  margin-top: 8px;
  font-size: 40px;
}

.booking-ticket dl {
  padding: 8px 24px;
  margin: 0;
}

.booking-ticket dl div {
  display: grid;
  grid-template-columns: 66px 1fr;
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
}

.booking-ticket dt {
  color: var(--muted);
  font-size: 12px;
}

.booking-ticket dd {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.booking-ticket .poster-link {
  width: calc(100% - 48px);
  margin: 18px 24px 10px;
}

.booking-ticket > small {
  display: block;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.entry-content {
  font-size: 18px;
}

.entry-content > * {
  max-width: 100%;
}

.entry-content h2,
.entry-content h3 {
  margin-top: 2.2em;
  margin-bottom: 0.65em;
  font-weight: 950;
  line-height: 1.16;
}

.entry-content h2 {
  font-size: 36px;
}

.entry-content h3 {
  font-size: 27px;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
  margin-block: 0 1.35em;
}

.entry-content blockquote {
  padding: 24px 28px;
  margin: 36px 0;
  border-left: 8px solid var(--signal);
  background: var(--yellow);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.entry-content figure {
  margin-block: 36px;
}

.entry-content figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding-block: 36px 84px;
}

.post-navigation > div {
  padding: 24px;
  border: 1px solid var(--ink);
}

.post-navigation > div + div {
  text-align: right;
}

.post-navigation span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.post-navigation a {
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
}

.journal-list {
  padding-top: 70px;
}

.journal-row {
  display: grid;
  min-height: 300px;
  grid-template-columns: 90px 330px minmax(0, 1fr);
  gap: 34px;
  padding-block: 28px;
  border-bottom: 1px solid var(--ink);
}

.journal-row:first-child {
  border-top: 3px solid var(--ink);
}

.journal-row__number {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
}

.journal-row__media {
  min-height: 240px;
  overflow: hidden;
  border: 1px solid var(--ink);
}

.journal-row__media img {
  height: 100%;
  object-fit: cover;
}

.journal-row__copy {
  align-self: center;
}

.journal-row__copy > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.journal-row__copy h2 {
  margin: 0 0 18px;
  font-size: 37px;
  line-height: 1.08;
}

.journal-row__copy h2 a {
  text-decoration: none;
}

.journal-row__copy > div {
  color: var(--muted);
  font-size: 14px;
}

.journal-row__copy > div p {
  margin: 0;
}

.journal-row--compact {
  min-height: 180px;
  grid-template-columns: 140px 1fr;
}

.article-header,
.page-header {
  padding-top: 110px;
  padding-bottom: 70px;
}

.article-header h1,
.page-header h1 {
  max-width: 1050px;
}

.article-header__meta {
  display: flex;
  gap: 28px;
  margin-top: 28px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.article-feature {
  max-height: 760px;
  overflow: hidden;
  border: 1px solid var(--ink);
}

.article-feature img {
  max-height: 760px;
  object-fit: cover;
}

.article-body {
  padding-block: 76px;
}

.article-tax {
  padding-block: 22px;
  border-block: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
}

.article-tax span {
  margin-right: 18px;
  font-weight: 800;
}

.standard-page .article-body {
  min-height: 360px;
}

.search-form {
  display: flex;
  max-width: 680px;
  min-height: 52px;
  margin-top: 34px;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  height: 100%;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--white);
}

.search-form button {
  min-width: 110px;
  border: 1px solid var(--ink);
  border-left: 0;
  border-radius: 0;
  background: var(--yellow);
  font-weight: 900;
  cursor: pointer;
}

.search-item {
  display: grid;
  grid-template-columns: 110px 1.2fr 1fr;
  gap: 28px;
  padding-block: 28px;
  border-bottom: 1px solid var(--ink);
}

.search-item:first-child {
  border-top: 3px solid var(--ink);
}

.search-item > span {
  font-family: var(--mono);
  font-size: 10px;
}

.search-item h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.18;
}

.search-item h2 a {
  text-decoration: none;
}

.search-item > div {
  color: var(--muted);
  font-size: 14px;
}

.search-item > div p {
  margin: 0;
}

.empty-state {
  min-height: 380px;
  padding: 70px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.empty-state h2 {
  margin: 0 0 14px;
  font-size: 43px;
  line-height: 1.1;
}

.not-found-page {
  background: var(--cobalt);
  color: var(--white);
}

.not-found-page__inner {
  display: grid;
  min-height: calc(100svh - 72px);
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.not-found-page__code {
  margin: 0;
  color: var(--yellow);
  font-size: 210px;
  font-weight: 950;
  line-height: 0.8;
}

.not-found-page h1 {
  margin: 0 0 20px;
  font-size: 62px;
  line-height: 0.95;
}

.alignwide {
  width: min(100%, var(--content));
}

.alignfull {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

.wp-caption,
.gallery-caption {
  max-width: 100%;
}

.bypostauthor {
  outline: 0;
}

@media (max-width: 1120px) {
  :root {
    --section: 92px;
  }

  .site-header__inner {
    grid-template-columns: 210px 1fr 170px;
  }

  .site-menu > li > a {
    padding-inline: 11px;
    font-size: 13px;
  }

  .hero-copy h1 {
    font-size: 92px;
  }

  .section-heading h2,
  .ledger-heading h2,
  .host-copy h2,
  .member-ticket__offer h2 {
    font-size: 48px;
  }

  .event-poster--1 .event-poster__body {
    grid-template-columns: 1fr;
  }

  .event-poster--1 .event-poster__status {
    justify-self: start;
  }

  .event-poster--2 {
    display: block;
  }

  .event-poster--2 .event-poster__media {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .manifesto-band__title,
  .manifesto-statement {
    padding: 34px;
  }

  .manifesto-band__title span {
    font-size: 58px;
  }

  .manifesto-statement h2 {
    font-size: 31px;
  }

  .host-dossier__grid {
    gap: 48px;
  }

  .host-collage {
    min-height: 540px;
  }

  .host-collage__main {
    height: 470px;
  }

  .member-ticket__stub,
  .member-ticket__offer,
  .member-ticket__price {
    padding: 30px;
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 20px;
    --section: 78px;
  }

  .site-header {
    height: 64px;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .site-header__inner {
    grid-template-columns: 1fr 54px;
  }

  .site-brand {
    border-right: 0;
  }

  .header-ticket {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .primary-navigation {
    position: fixed;
    z-index: 999;
    top: 64px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100svh - 64px);
    overflow-y: auto;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
  }

  .admin-bar .primary-navigation {
    top: 110px;
  }

  .menu-open .primary-navigation {
    display: block;
  }

  .menu-open .menu-toggle__line:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-toggle__line:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-menu {
    display: block;
    min-height: 0;
  }

  .site-menu > li {
    display: block;
    border-top: 1px solid var(--ink);
  }

  .site-menu > li > a {
    min-height: 58px;
    padding-inline: var(--gutter);
    font-size: 17px;
  }

  .site-menu .sub-menu {
    position: static;
    display: block;
    width: auto;
    padding: 0 0 10px 18px;
    border: 0;
    background: transparent;
  }

  .home-hero {
    height: calc(100svh - 108px);
    min-height: 560px;
    max-height: 760px;
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
    padding-bottom: 36px;
  }

  .hero-ticket {
    display: none;
  }

  .hero-copy h1 {
    font-size: 84px;
  }

  .city-broadcast__track {
    display: flex;
    width: max-content;
    animation: weekend-marquee 20s linear infinite;
  }

  .city-broadcast__track span {
    min-width: 280px;
  }

  @keyframes weekend-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .section-heading--split,
  .host-dossier__grid,
  .archive-hero__inner,
  .single-event__layout {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 30px;
  }

  .event-wall__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-poster--1,
  .event-poster--2 {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .event-poster--3 {
    grid-column: 1 / 2;
  }

  .event-poster--4 {
    grid-column: 2 / 3;
  }

  .manifesto-band__grid {
    grid-template-columns: 1fr 1fr;
  }

  .manifesto-band__title {
    display: none;
  }

  .manifesto-statement {
    min-height: 320px;
  }

  .ledger__head {
    display: none;
  }

  .ledger__row {
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
    padding-block: 20px;
  }

  .ledger__row > span:nth-of-type(2),
  .ledger__row > span:nth-of-type(3) {
    display: none;
  }

  .ledger__row strong {
    grid-column: 1;
    grid-row: 2;
  }

  .ledger__row em {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .host-dossier__grid {
    gap: 58px;
  }

  .host-collage {
    max-width: 650px;
    min-height: 540px;
  }

  .member-ticket__paper {
    grid-template-columns: 150px 1fr;
  }

  .member-ticket__price {
    grid-column: 1 / 3;
  }

  .member-ticket__offer {
    border-right: 0;
  }

  .footer-callout h2 {
    font-size: 68px;
  }

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

  .footer-contact {
    grid-column: 1 / 3;
  }

  .event-archive-list__head {
    display: none;
  }

  .event-archive-item {
    grid-template-columns: 140px 1fr;
  }

  .event-archive-item__media {
    grid-column: 1;
    grid-row: 2;
    min-height: 160px;
  }

  .event-archive-item__copy {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .event-archive-item__status {
    grid-column: 1;
    grid-row: 3;
    flex-direction: row;
    align-items: center;
  }

  .single-event__layout {
    gap: 55px;
  }

  .booking-ticket {
    position: static;
    max-width: 480px;
  }

  .journal-row {
    grid-template-columns: 60px 240px 1fr;
  }

  .search-item {
    grid-template-columns: 90px 1fr;
  }

  .search-item > div {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 16px;
    --section: 66px;
  }

  body {
    font-size: 16px;
  }

  .site-brand {
    padding-inline: 14px;
  }

  .site-brand__stamp {
    width: 34px;
    height: 34px;
  }

  .site-brand__name {
    font-size: 18px;
  }

  .home-hero {
    min-height: 540px;
  }

  .home-hero__topline {
    top: 16px;
  }

  .home-hero__topline span:last-child {
    display: none;
  }

  .home-hero__image img {
    object-position: 56% 55%;
  }

  .hero-copy h1 {
    font-size: 66px;
    line-height: 0.85;
  }

  .hero-copy h1 span:last-child {
    margin-left: 0.38em;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
  }

  .hero-actions .poster-link {
    min-height: 44px;
  }

  .hero-index {
    display: none;
  }

  .section-heading,
  .ledger-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .ledger-heading h2,
  .host-copy h2,
  .member-ticket__offer h2 {
    font-size: 40px;
  }

  .section-heading--split {
    gap: 22px;
  }

  .event-wall__grid {
    display: block;
  }

  .event-poster {
    margin-bottom: 16px;
  }

  .event-poster--1 .event-poster__body {
    gap: 12px;
  }

  .event-poster--1 h3,
  .event-poster h3,
  .event-poster--3 h3,
  .event-poster--4 h3 {
    font-size: 27px;
  }

  .event-poster--2 {
    display: block;
  }

  .event-poster--2 .event-poster__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .manifesto-band__grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .manifesto-statement {
    min-height: 280px;
    padding: 28px var(--gutter);
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }

  .manifesto-statement h2 {
    font-size: 30px;
  }

  .ledger-heading {
    display: block;
  }

  .ledger-heading > p {
    margin-top: 18px;
    text-align: left;
  }

  .ledger__row {
    min-height: 108px;
  }

  .ledger__row strong {
    font-size: 17px;
  }

  .ledger__date {
    max-width: 190px;
    white-space: normal;
  }

  .host-collage {
    min-height: 400px;
  }

  .host-collage__main {
    width: 84%;
    height: 350px;
  }

  .host-collage__small {
    width: 50%;
    height: 175px;
    border-width: 7px;
  }

  .host-collage__caption {
    right: 0;
  }

  .host-copy__lead {
    font-size: 16px;
  }

  .member-ticket__paper {
    display: block;
  }

  .member-ticket__stub {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 90px;
    border-right: 0;
    border-bottom: 2px dashed var(--ink);
  }

  .member-ticket__stub > strong {
    writing-mode: horizontal-tb;
  }

  .member-ticket__stub > small {
    text-align: right;
  }

  .member-ticket__stub,
  .member-ticket__offer,
  .member-ticket__price {
    padding: 26px;
  }

  .member-ticket__offer {
    border-bottom: 1px solid var(--ink);
  }

  .member-ticket__price > strong {
    font-size: 58px;
  }

  .note-index__item {
    grid-template-columns: 42px minmax(0, 1fr) 30px;
    min-height: 112px;
  }

  .note-index__item h3 {
    font-size: 19px;
  }

  .footer-callout__inner {
    min-height: 420px;
    padding-block: 58px;
  }

  .footer-callout h2 {
    font-size: 54px;
  }

  .footer-callout .poster-link {
    right: auto;
    bottom: 60px;
    left: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-legal {
    display: grid;
    gap: 5px;
  }

  .archive-hero__inner {
    min-height: 400px;
    gap: 44px;
    padding-block: 60px;
  }

  .archive-hero h1,
  .page-header h1,
  .article-header h1,
  .single-event__heading h1 {
    font-size: 50px;
  }

  .event-filter {
    width: 100%;
    padding-inline: var(--gutter);
  }

  .event-archive-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .event-archive-item__date,
  .event-archive-item__media,
  .event-archive-item__copy,
  .event-archive-item__status {
    grid-column: 1;
    grid-row: auto;
  }

  .event-archive-item__date,
  .event-archive-item__status {
    flex-direction: row;
  }

  .event-archive-item__media {
    min-height: 220px;
  }

  .single-event__hero,
  .single-event__heading {
    min-height: 560px;
  }

  .single-event__quickfacts {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .single-event__layout {
    gap: 45px;
  }

  .entry-content {
    font-size: 17px;
  }

  .entry-content h2 {
    font-size: 30px;
  }

  .entry-content blockquote {
    padding: 20px;
    font-size: 20px;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .post-navigation > div + div {
    text-align: left;
  }

  .journal-row {
    grid-template-columns: 42px 1fr;
    gap: 18px;
  }

  .journal-row__media {
    grid-column: 1 / 3;
    grid-row: 1;
    min-height: 230px;
  }

  .journal-row__number {
    grid-row: 2;
  }

  .journal-row__copy {
    grid-column: 2;
    grid-row: 2;
  }

  .journal-row__copy h2 {
    font-size: 28px;
  }

  .journal-row--compact {
    min-height: 150px;
    grid-template-columns: 60px 1fr;
  }

  .article-header,
  .page-header {
    padding-top: 72px;
    padding-bottom: 48px;
  }

  .article-header__meta {
    flex-direction: column;
    gap: 6px;
  }

  .article-body {
    padding-block: 56px;
  }

  .search-form {
    min-height: 50px;
  }

  .search-form button {
    min-width: 90px;
  }

  .search-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .search-item > div {
    grid-column: 1;
  }

  .empty-state {
    min-height: 320px;
    padding: 36px 24px;
  }

  .empty-state h2 {
    font-size: 34px;
  }

  .not-found-page__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-block: 70px;
  }

  .not-found-page__code {
    font-size: 132px;
  }

  .not-found-page h1 {
    font-size: 48px;
  }
}

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

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

