:root {
  --ink: #0a0708;
  --ink-soft: #191213;
  --red: #971821;
  --red-bright: #c82831;
  --gold: #d7a94d;
  --ivory: #f6ead2;
  --paper: #fff7e4;
  --teal: #2dd6c8;
  --teal-deep: #0d3c3e;
  --muted: #bfae91;
  --line: rgba(246, 234, 210, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --hero-art: url("assets/11.JPG");
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --zh: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(246, 234, 210, 0.12);
  background: rgba(10, 7, 8, 0.34);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(10, 7, 8, 0.82);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong,
.footer-brand {
  display: block;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  display: block;
  max-width: 230px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(246, 234, 210, 0.82);
  font-size: 0.86rem;
  font-weight: 700;
  padding: 9px 13px;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  border-color: rgba(215, 169, 77, 0.52);
  color: var(--paper);
  outline: 0;
}

.main-nav .ticket-link {
  background: var(--gold);
  color: #1b0b09;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(246, 234, 210, 0.2);
  border-radius: 50%;
  background: rgba(10, 7, 8, 0.34);
  color: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 72px) 58px;
}

.hero-image,
.hero-veil {
  position: absolute;
  inset: 0;
}

.hero-image {
  background: var(--hero-art) center / cover no-repeat;
  filter: brightness(0.72) saturate(0.88);
  transform: scale(1.01);
}

.hero-veil {
  background:
    radial-gradient(circle at 68% 48%, rgba(45, 214, 200, 0.18), transparent 22%),
    linear-gradient(90deg, rgba(10, 7, 8, 0.92) 0%, rgba(10, 7, 8, 0.66) 42%, rgba(10, 7, 8, 0.22) 100%),
    linear-gradient(180deg, rgba(10, 7, 8, 0.2) 0%, rgba(10, 7, 8, 0.92) 100%);
}

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

.puppet-strings span {
  position: absolute;
  top: 0;
  width: 1px;
  height: clamp(170px, 26vw, 370px);
  background: linear-gradient(var(--ivory), transparent);
  opacity: 0.42;
}

.puppet-strings span:nth-child(1) { left: 18%; }
.puppet-strings span:nth-child(2) { left: 31%; height: 300px; }
.puppet-strings span:nth-child(3) { left: 55%; height: 230px; }
.puppet-strings span:nth-child(4) { left: 72%; height: 340px; }
.puppet-strings span:nth-child(5) { left: 86%; height: 210px; }

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}

.kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero-content .kicker {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.96;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  color: var(--paper);
  font-size: clamp(3.55rem, 10.6vw, 7rem);
  overflow-wrap: normal;
}

h1 span {
  display: block;
}

#hero-title > span:not(.title-zh) {
  font-size: 0.6em;
  line-height: 0.98;
}

.title-zh {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.15;
}

h2 {
  margin-bottom: 20px;
  color: var(--paper);
  font-size: clamp(2.6rem, 6vw, 5rem);
}

h3 {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1;
}

.hero-copy {
  max-width: 620px;
  color: rgba(246, 234, 210, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(246, 234, 210, 0.28);
  border-radius: 999px;
  font-weight: 800;
  padding: 12px 18px;
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #1d0d09;
}

.button.secondary {
  background: rgba(246, 234, 210, 0.08);
  color: var(--paper);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 58px;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(430px, calc(100% - 40px));
  border-left: 3px solid var(--teal);
  padding-left: 18px;
}

.event-block {
  position: relative;
  display: grid;
  gap: 7px;
  border: 1px solid rgba(246, 234, 210, 0.14);
  border-radius: 8px;
  background: rgba(10, 7, 8, 0.32);
  padding: 16px;
}

.event-block + .event-block {
  border-top-color: rgba(246, 234, 210, 0.14);
}

.event-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-right: 46px;
}

.event-title {
  display: grid;
  gap: 4px;
}

.hero-panel .event-title span,
.hero-panel em {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-panel .event-title .event-zh {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: none;
}

.hero-panel strong {
  display: block;
  color: var(--paper);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.event-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(215, 169, 77, 0.52);
  border-radius: 999px;
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 7px 13px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.hero-panel .event-block:nth-child(-n + 2) .event-button {
  position: relative;
  top: 18px;
  margin-right: 32px;
}

.hero-panel .event-block:nth-child(3) .event-button {
  position: relative;
  top: 12px;
  border-color: var(--gold);
  background: var(--gold);
  color: #1d0d09;
}

.event-button:hover,
.event-button:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: #1d0d09;
  outline: 0;
}

.free-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(45, 214, 200, 0.46);
  border-radius: 999px;
  background: rgba(45, 214, 200, 0.12);
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 5px 8px;
}

.section-band {
  background: var(--paper);
  color: #211312;
  padding: clamp(64px, 9vw, 116px) clamp(20px, 5vw, 72px);
}

.section-band.dark {
  background:
    linear-gradient(135deg, rgba(151, 24, 33, 0.22), transparent 36%),
    radial-gradient(circle at 88% 12%, rgba(45, 214, 200, 0.16), transparent 28%),
    var(--ink-soft);
  color: var(--ivory);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid,
.venue-layout,
.tickets-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(28px, 7vw, 84px);
  align-items: start;
}

.intro-grid {
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 36px);
}

.intro-grid > div:last-child {
  width: min(100%, 900px);
}

.intro h2,
.venues h2 {
  color: #211312;
}

.intro p,
.venues p {
  color: rgba(33, 19, 18, 0.78);
  font-size: 1.05rem;
}

.festival-credits {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  border-left: 3px solid var(--red);
  padding-left: 18px;
}

.festival-credits-zh {
  margin-bottom: 28px;
}

.festival-credits p {
  margin: 0;
  color: rgba(33, 19, 18, 0.82);
}

.festival-credits span {
  display: block;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

.show-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 234, 210, 0.06);
  box-shadow: var(--shadow);
}

.show-card-text-only {
  grid-column: 1 / -1;
}

.show-card-text-only .programme-description-bilingual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 56px);
}

.programme-description-bilingual > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.show-media {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #12090a;
}

.show-media svg {
  width: 100%;
  height: 100%;
}

.show-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.show-media img.image-position-top {
  object-position: center top;
}

.show-media img.image-trip {
  object-position: center 30%;
}

.show-media img.image-empty-room {
  object-position: right center;
  transform: scale(1.12);
  transform-origin: right center;
}

.show-body {
  min-width: 0;
  padding: clamp(20px, 3vw, 30px);
}

.company {
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.show-body h3 {
  width: 100%;
  min-width: 0;
  margin-bottom: 22px;
}

.show-title-zh,
.show-title-en {
  display: block;
}

.show-title-en {
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
}

.show-title-en-pina {
  font-size: 0.78em;
}

.show-body .show-note {
  margin: -12px 0 22px;
  color: rgba(246, 234, 210, 0.62);
  font-family: var(--zh);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.show-body dl {
  display: grid;
  gap: 11px;
  margin: 0 0 22px;
}

.show-body dl div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: baseline;
  gap: 14px;
}

.show-body dt {
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.show-body dd {
  margin: 0;
  color: rgba(246, 234, 210, 0.84);
  font-size: 0.95rem;
  line-height: 1.45;
}

.show-body p:last-child {
  margin-bottom: 0;
  color: rgba(246, 234, 210, 0.74);
}

.programme-description {
  display: grid;
  gap: 12px;
}

.programme-description p {
  margin: 0;
  color: rgba(246, 234, 210, 0.74);
}

.venue-list {
  display: grid;
  gap: 14px;
}

.venue-map-link {
  display: inline-grid;
  gap: 4px;
  border-left: 3px solid var(--red);
  color: #211312;
  padding: 4px 0 4px 16px;
  transition: color 160ms ease, transform 160ms ease;
}

.venue-map-link:hover,
.venue-map-link:focus-visible {
  color: var(--red);
  outline: 0;
  transform: translateX(3px);
}

.venue-map-link span:first-child {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.05;
}

.venue-map-link span:last-child {
  font-family: var(--zh);
  font-size: 0.92rem;
  font-weight: 600;
}

.venue-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border-top: 1px solid rgba(33, 19, 18, 0.16);
  padding-top: 22px;
}

.venue-list span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
}

.venue-list h3 {
  margin-bottom: 6px;
  color: #211312;
}

.venue-list h3 .zh-copy {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--zh);
  font-size: 0.78em;
  font-weight: 500;
  letter-spacing: 0;
  vertical-align: 0.04em;
}

.venue-list p {
  margin-bottom: 0;
}

.venue-map-figure {
  overflow: hidden;
  margin: clamp(36px, 6vw, 72px) 0 0;
  border: 1px solid rgba(33, 19, 18, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 24px 70px rgba(78, 48, 30, 0.14);
}

.venue-map-figure img {
  width: 100%;
  height: auto;
}

.tickets-grid {
  align-items: center;
}

.tickets h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.tickets p {
  color: rgba(246, 234, 210, 0.78);
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 72px) 84px;
  background: var(--ink);
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 7, 8, 0.94), rgba(10, 7, 8, 0.74)),
    linear-gradient(180deg, rgba(10, 7, 8, 0.32), rgba(10, 7, 8, 0.96)),
    var(--hero-art) center / cover no-repeat;
  opacity: 0.92;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
}

.contact-hero h1 {
  margin-bottom: 18px;
}

#contact-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
}

.contact-hero-copy {
  max-width: 760px;
  font-size: clamp(0.75rem, 1.15vw, 0.88rem);
  line-height: 1.65;
}

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

.contact-hero-copy span + span {
  margin-top: 8px;
  font-family: var(--zh);
  font-size: 0.88em;
}

.contact-grid,
.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(300px, 1.22fr);
  gap: clamp(28px, 7vw, 84px);
  align-items: start;
}

.contact-copy h2 {
  color: #211312;
}

.contact-copy p {
  color: rgba(33, 19, 18, 0.78);
}

.contact-cards {
  display: grid;
  width: min(100%, 560px);
  gap: 14px;
}

.contact-card {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(33, 19, 18, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.44);
  padding: 16px 18px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: rgba(151, 24, 33, 0.42);
  outline: 0;
  transform: translateY(-2px);
}

.contact-card span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-card strong {
  color: #211312;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.contact-card strong:lang(zh-Hant) {
  font-family: var(--zh);
}

.contact-card em {
  color: rgba(33, 19, 18, 0.68);
  font-size: 0.85rem;
  font-style: normal;
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.contact-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(33, 19, 18, 0.18);
  border-radius: 50%;
  color: #211312;
  background: rgba(255, 255, 255, 0.44);
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
  border-color: var(--red);
  color: var(--red);
  outline: 0;
  transform: translateY(-2px);
}

.contact-socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-socials .social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.contact-social-xhs {
  font-family: var(--zh);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.workshop-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid rgba(33, 19, 18, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 24px 70px rgba(78, 48, 30, 0.14);
}

.workshop-card + .workshop-card {
  margin-top: 28px;
}

#workshops-title,
#venues-page-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

#workshops-title span:last-child,
#venues-page-title span:last-child {
  margin-top: 6px;
  font-family: var(--zh);
  font-size: 0.62em;
}

.workshop-media {
  min-height: 0;
  aspect-ratio: 16 / 9;
  margin: 0;
  background: #1a1512;
}

.workshop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-body {
  padding: clamp(26px, 5vw, 54px);
}

.workshop-body h2 {
  color: #211312;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.workshop-body h2 span {
  display: block;
}

.workshop-body h2 span:first-child {
  margin-bottom: 10px;
  font-family: var(--zh);
  font-size: 0.72em;
}

.workshop-subtitle {
  display: grid;
  gap: 4px;
  color: rgba(33, 19, 18, 0.72);
}

.workshop-subtitle span:first-child {
  font-family: var(--zh);
}

.workshop-description {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

.workshop-description p {
  margin: 0;
  color: rgba(33, 19, 18, 0.76);
}

.workshop-details {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.workshop-details div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(33, 19, 18, 0.14);
  padding-top: 12px;
}

.workshop-details dt {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workshop-details dd {
  margin: 0;
  color: #211312;
  font-weight: 600;
}

.workshop-status {
  display: grid;
  gap: 3px;
  margin: 0;
  border-left: 3px solid var(--red);
  color: rgba(33, 19, 18, 0.76);
  padding-left: 16px;
}

.workshop-status span:first-child {
  font-family: var(--zh);
  font-weight: 700;
}

.past-workshops h2 {
  font-family: var(--zh);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.past-workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.past-workshop-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(246, 234, 210, 0.16);
  border-radius: 8px;
  background: rgba(246, 234, 210, 0.04);
  box-shadow: var(--shadow);
}

.past-workshop-grid img {
  width: 100%;
  height: auto;
}

.past-workshop-link {
  display: block;
  overflow: hidden;
}

.past-workshop-link img {
  transition: transform 200ms ease, filter 200ms ease;
}

.past-workshop-link:hover img,
.past-workshop-link:focus-visible img {
  filter: brightness(1.08);
  transform: scale(1.025);
}

.past-workshop-link:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}

.master-workshop-hero #master-workshop-title {
  max-width: 850px;
  font-family: var(--zh);
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 1.08;
}

.master-workshop-hero #master-workshop-title span + span {
  margin-top: 8px;
  color: var(--gold);
  font-size: 0.72em;
}

.master-workshop-content {
  width: min(920px, 100%);
}

.master-course-header h2 {
  color: #211312;
  font-family: var(--zh);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
}

.master-course-schedule,
.master-course-copy,
.master-instructor {
  margin-top: clamp(38px, 6vw, 66px);
}

.master-course-schedule h3,
.master-course-copy h3,
.master-instructor h3 {
  color: #211312;
  font-family: var(--zh);
}

.master-course-schedule p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  margin: 0;
  border-top: 1px solid rgba(33, 19, 18, 0.14);
  color: rgba(33, 19, 18, 0.8);
  padding: 14px 0;
}

.master-course-schedule strong {
  color: var(--red);
}

.master-course-copy ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.master-course-copy li {
  border-left: 3px solid var(--red);
  color: rgba(33, 19, 18, 0.8);
  padding-left: 16px;
}

.master-instructor p:last-child {
  margin-bottom: 0;
  color: rgba(33, 19, 18, 0.8);
  font-size: 1.05rem;
}

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

.master-instructor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.master-instructor-profile {
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.38);
  padding: clamp(18px, 3vw, 28px);
}

.master-instructor-profile h3 {
  margin-bottom: 16px;
}

.master-instructor-profile p {
  margin: 0;
}

#about-page-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}

#about-page-title span:last-child {
  margin-top: 6px;
  font-family: var(--zh);
  font-size: 0.62em;
}

.about-section-inner {
  width: min(940px, 100%);
}

.about-festival-section {
  background: #f0e2c7;
}

.about-festival-heading h2 {
  margin-bottom: clamp(30px, 5vw, 50px);
  color: var(--red);
  font-family: var(--sans);
  font-size: clamp(1.55rem, 3.5vw, 2.5rem);
  letter-spacing: 0.08em;
  line-height: 1.05;
}

.about-festival-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 58px);
  color: rgba(33, 19, 18, 0.8);
  font-size: 0.92rem;
  line-height: 1.85;
}

.about-festival-copy > div {
  display: grid;
  align-content: start;
  gap: 18px;
}

.about-festival-copy p {
  margin: 0;
}

.about-heading h2,
.about-credits h2 {
  color: #211312;
  font-family: var(--zh);
}

.about-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.about-heading > p:last-child {
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
}

.about-copy {
  display: grid;
  gap: 18px;
  margin-top: clamp(34px, 5vw, 54px);
  color: rgba(33, 19, 18, 0.8);
  font-size: 0.96rem;
  line-height: 1.85;
}

.about-copy p {
  margin: 0;
}

.about-principles {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.about-principles li {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(33, 19, 18, 0.14);
  padding-top: 10px;
}

.about-principles strong {
  color: var(--red);
}

.about-credits {
  margin-top: clamp(58px, 8vw, 92px);
  border-top: 1px solid rgba(33, 19, 18, 0.16);
  padding-top: clamp(34px, 5vw, 54px);
}

.about-credit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.about-credit-grid article {
  display: grid;
  gap: 6px;
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.38);
  padding: 16px 18px;
}

.about-credit-grid article > span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-credit-grid strong {
  color: #211312;
  font-family: var(--zh);
  font-size: 1.2rem;
}

.about-credit-grid small {
  margin-left: 6px;
  font-family: var(--sans);
  font-size: 0.78em;
  font-weight: 600;
}

.master-gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.master-gallery-heading h2,
.master-gallery-heading p {
  margin-bottom: 0;
}

.master-gallery-heading h2 {
  font-family: var(--zh);
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.master-gallery-heading p {
  color: var(--muted);
}

.master-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.master-gallery-thumb {
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(246, 234, 210, 0.16);
  border-radius: 6px;
  background: rgba(246, 234, 210, 0.06);
  padding: 0;
  cursor: zoom-in;
}

.master-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.master-gallery-thumb:hover img,
.master-gallery-thumb:focus-visible img {
  filter: brightness(1.12);
  transform: scale(1.04);
}

.master-gallery-thumb:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

body.lightbox-open {
  overflow: hidden;
}

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

.gallery-lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 12px;
  background: rgba(5, 3, 4, 0.94);
  padding: 60px clamp(14px, 3vw, 40px) 28px;
}

.gallery-lightbox-stage {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  min-width: 0;
  height: calc(100vh - 88px);
  margin: 0;
  touch-action: pan-y;
}

.gallery-lightbox-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-lightbox-stage figcaption {
  color: var(--muted);
  padding-top: 8px;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  border: 1px solid rgba(246, 234, 210, 0.22);
  border-radius: 50%;
  background: rgba(246, 234, 210, 0.08);
  color: var(--paper);
  cursor: pointer;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  border-color: var(--gold);
  outline: 0;
  color: var(--gold);
}

.gallery-lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 42px;
  height: 42px;
  font-size: 1.8rem;
  line-height: 1;
}

.gallery-lightbox-nav {
  width: 54px;
  height: 54px;
  font-size: 2.2rem;
  line-height: 1;
}

.contact-form-section p {
  color: rgba(246, 234, 210, 0.78);
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 234, 210, 0.06);
  padding: clamp(22px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(246, 234, 210, 0.18);
  border-radius: 6px;
  background: rgba(10, 7, 8, 0.42);
  color: var(--paper);
  font: 500 1rem var(--sans);
  padding: 12px 13px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  outline: 0;
}

.ticket-card {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(215, 169, 77, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 169, 77, 0.22), transparent),
    rgba(246, 234, 210, 0.06);
  padding: clamp(24px, 5vw, 44px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.ticket-card:hover,
.ticket-card:focus-visible {
  border-color: var(--gold);
  outline: 0;
  transform: translateY(-3px);
}

.ticket-card span,
.ticket-card em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticket-card strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.95;
}

.site-footer {
  background: #070506;
  border-top: 1px solid rgba(246, 234, 210, 0.12);
  color: rgba(246, 234, 210, 0.68);
  padding: 28px clamp(20px, 5vw, 72px);
}

.footer-inner {
  width: min(1180px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
}

.footer-inner p {
  margin: 0;
}

.footer-inner div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 700;
}

@media (max-width: 880px) {
  .about-festival-copy {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 6px;
    border: 1px solid rgba(246, 234, 210, 0.16);
    border-radius: 8px;
    background: rgba(10, 7, 8, 0.95);
    padding: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .main-nav a {
    border-radius: 6px;
    padding: 12px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 112px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: start;
    width: calc(100vw - 36px);
    max-width: 100%;
    margin-top: 34px;
  }

  .intro-grid,
  .venue-layout,
  .tickets-grid,
  .contact-grid,
  .contact-form-grid,
  .show-grid {
    grid-template-columns: 1fr;
  }

  .show-card-text-only .programme-description-bilingual {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .workshop-card {
    grid-template-columns: 1fr;
  }

  .workshop-media {
    aspect-ratio: 16 / 9;
  }

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

  .master-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hero-image {
    background-position: 60% center;
    transform: translateY(-7%) scale(1.16);
  }

  .site-header {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .brand small {
    max-width: 120px;
    font-size: 0.58rem;
    letter-spacing: 0.04em;
    line-height: 1.1;
  }

  .hero {
    min-height: 86svh;
    padding-inline: 18px;
  }

  h1 {
    font-size: clamp(2.9rem, 12vw, 4rem);
    line-height: 0.98;
  }

  .kicker {
    max-width: 30ch;
    font-size: 0.69rem;
    line-height: 1.7;
  }

  .hero-copy {
    font-size: 1rem;
    max-width: 32ch;
  }

  .event-block {
    padding: 16px 12px;
  }

  .event-main {
    display: grid;
    gap: 10px;
    padding-right: 0;
    padding-top: 18px;
  }

  .event-button {
    justify-self: start;
    margin-right: 0;
  }

  .hero-panel .event-block:nth-child(-n + 2) .event-button {
    top: 0;
  }

  .hero-panel .event-block:nth-child(3) .event-button {
    top: 0;
  }

  .free-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    margin-bottom: 0;
  }

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

  .button {
    width: 100%;
  }

  .section-band {
    padding-inline: 18px;
  }

  .show-body dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .workshop-details div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .past-workshop-grid {
    grid-template-columns: 1fr;
  }

  .master-course-schedule p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .master-gallery-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .gallery-lightbox {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 6px;
    padding-inline: 8px;
  }

  .gallery-lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }

  .about-principles li,
  .about-credit-grid {
    grid-template-columns: 1fr;
  }

  .master-instructor-grid {
    grid-template-columns: 1fr;
  }

  .venue-list article {
    grid-template-columns: 42px 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
