:root {
  --green: #0b3d2e;
  --green-2: #176348;
  --white: #ffffff;
  --offwhite: #f7f4ec;
  --stone: #ece7dd;
  --charcoal: #111111;
  --muted: #5f6d67;
  --line: rgba(11, 61, 46, 0.17);
  --gold: #c6a15b;
  --blue: #1e5bff;
  --shadow: 0 18px 48px rgba(17, 17, 17, 0.10);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--offwhite);
  color: var(--charcoal);
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

body.nav-open,
body.modal-open { overflow: hidden; }

img,
iframe { max-width: 100%; }

a { color: inherit; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 100;
}

.skip-link:focus { top: 16px; }

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 244, 236, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 168px;
  display: block;
}

.main-nav {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.main-nav a {
  text-decoration: none;
  color: var(--green);
  border-radius: 999px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--green);
  display: block;
  transition: transform 0.2s ease;
}

.section {
  padding: clamp(52px, 6.4vw, 84px) 0;
}

.hero {
  min-height: calc(94vh - 76px);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding-top: 62px;
  padding-bottom: 62px;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(820px, 74vw);
  height: min(820px, 74vw);
  border: 1px solid rgba(11, 61, 46, 0.11);
  border-radius: 50%;
  right: -18vw;
  top: 8vw;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.62fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green);
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.026em;
  word-spacing: 0.07em;
  line-height: 1.03;
}

h1 {
  font-size: clamp(4.2rem, 11.2vw, 10.6rem);
  max-width: 850px;
  letter-spacing: -0.042em;
}

h1 span { display: block; }

h2 {
  font-size: clamp(2rem, 4.05vw, 3.8rem);
  max-width: 1000px;
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -0.02em;
}

.hero-lede {
  max-width: 670px;
  font-size: clamp(1.08rem, 1.52vw, 1.36rem);
  margin: 24px 0 0;
  color: #24352f;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-size: 0.78rem;
  border: 1.5px solid var(--green);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

.button.primary {
  background: var(--green);
  color: var(--offwhite);
}

.button.secondary {
  color: var(--green);
  background: transparent;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--green);
  color: var(--offwhite);
}

.button.disabled {
  cursor: default;
  color: rgba(11, 61, 46, 0.82);
  background: rgba(11, 61, 46, 0.05);
  border-color: rgba(11, 61, 46, 0.35);
  transform: none;
}

.hero-mark {
  position: relative;
  display: grid;
  justify-items: center;
  justify-self: end;
  max-width: 390px;
  width: 100%;
}

.mark-stage {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 1;
  display: block;
}

.mark-stage::before {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(11, 61, 46, 0.13);
  border-radius: 50%;
}

.mark-line,
.mark-node,
.mark-tower {
  position: absolute;
  display: block;
}

.mark-line {
  height: 8px;
  width: 58%;
  background: var(--green);
  border-radius: 999px;
  right: 28%;
  top: 50%;
  transform-origin: 100% 50%;
  opacity: 0.76;
}

.mark-line.l1 { transform: rotate(-36deg); width: 52%; }
.mark-line.l2 { transform: rotate(-18deg); width: 61%; opacity: 0.68; }
.mark-line.l3 { transform: rotate(1deg); width: 63%; opacity: 0.58; }
.mark-line.l4 { transform: rotate(19deg); width: 56%; opacity: 0.48; }
.mark-line.l5 { transform: rotate(39deg); width: 45%; opacity: 0.40; }

.mark-node {
  right: 21%;
  top: calc(50% - 18px);
  width: 36px;
  height: 36px;
  border: 8px solid var(--green);
  border-radius: 50%;
  background: var(--offwhite);
  z-index: 3;
}

.mark-tower {
  right: 12%;
  top: 22%;
  width: 18px;
  height: 46%;
  background: var(--green);
  border-radius: 999px 999px 4px 4px;
}

.mark-tower::before {
  content: "";
  position: absolute;
  top: -34px;
  left: -8px;
  width: 34px;
  height: 34px;
  border: 7px solid var(--green);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.mark-tower::after {
  content: "";
  position: absolute;
  top: -47px;
  left: 5px;
  width: 8px;
  height: 18px;
  background: var(--gold);
  border-radius: 999px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 5vw, 66px);
  align-items: start;
}

.rich-text {
  font-size: clamp(1.04rem, 1.26vw, 1.19rem);
  color: #24362f;
}

.rich-text p:first-child { margin-top: 0; }

.concept-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 5vw, 66px);
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.section-head {
  max-width: 960px;
  margin-bottom: 30px;
}

.section-head.compact { margin-bottom: 24px; }

.section-note {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 760px;
}

.programme-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.62fr);
  gap: 18px;
  align-items: stretch;
}

.programme-copy,
.schedule-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.schedule-card {
  display: grid;
  gap: 0;
}

.schedule-card p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.schedule-card p:last-child {
  border-bottom: 0;
}

.schedule-card strong,
.schedule-card span {
  display: block;
}

.schedule-card strong {
  color: var(--green);
  margin-bottom: 5px;
}

.schedule-card span {
  color: #26352f;
}

.artists {
  background:
    linear-gradient(90deg, rgba(11, 61, 46, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(11, 61, 46, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.artist-card {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green);
  border-radius: 22px;
  padding: 20px;
  min-height: 112px;
  text-align: left;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.055);
  cursor: pointer;
  font: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.artist-card span {
  font-weight: 900;
  font-size: 1.08rem;
  line-height: 1.18;
}

.artist-card:hover,
.artist-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--green);
  background: #fffdf8;
  outline: none;
}

.split-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  background: var(--green);
  color: var(--offwhite);
  padding: clamp(28px, 4vw, 42px);
  border-radius: 34px;
}

.split-card h2,
.split-card .section-kicker { color: var(--offwhite); }

.split-card p {
  font-size: 1.06rem;
  max-width: 640px;
}

.info-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--charcoal);
  padding: 26px;
  box-shadow: none;
  display: grid;
}

.tickets-location {
  padding-top: clamp(38px, 5.4vw, 64px);
}

.tickets-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: 18px;
  align-items: stretch;
}

.mini-section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 4vw, 38px);
}

.tickets h2,
.location h2 {
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  letter-spacing: -0.026em;
}

.location {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  align-items: stretch;
}

.text-link {
  display: inline-flex;
  margin: 10px 0 0;
  color: var(--green);
  font-weight: 900;
  text-underline-offset: 4px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
  outline: none;
}

.map-embed {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 400px;
  background: var(--stone);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
  border: 0;
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-grid span {
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900;
  background: rgba(247, 244, 236, 0.92);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
  padding: clamp(28px, 4vw, 42px);
}

.contact-card h2 { max-width: 700px; }

.site-footer {
  padding: 34px 0;
  color: var(--offwhite);
  background: var(--charcoal);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-links span {
  color: var(--offwhite);
  text-decoration: none;
  opacity: 0.86;
}

.footer-links a:hover { opacity: 1; }

.artist-modal[hidden] { display: none; }

.artist-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 20, 18, 0.58);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(840px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  border-radius: 30px;
  background: var(--offwhite);
  box-shadow: 0 26px 80px rgba(0,0,0,.35);
}

.modal-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 380px;
}

.modal-photo {
  background:
    radial-gradient(circle at 72% 45%, transparent 0 22px, rgba(247,244,236,0.82) 23px 28px, transparent 29px),
    linear-gradient(24deg, transparent 46%, rgba(247,244,236,0.62) 46.5%, transparent 47%),
    linear-gradient(4deg, transparent 50%, rgba(247,244,236,0.48) 50.5%, transparent 51%),
    var(--green);
  color: var(--offwhite);
  display: grid;
  place-items: center;
  font-family: "Archivo", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.modal-content {
  padding: clamp(28px, 4vw, 46px);
}

.modal-content h3 { margin-bottom: 16px; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--offwhite);
  color: var(--green);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: var(--green);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1040px) {
  .location { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--offwhite);
    border-bottom: 1px solid var(--line);
    padding: 26px 22px;
    display: grid;
    gap: 18px;
    transform: translateY(-125%);
    transition: transform 0.22s ease;
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav { transform: translateY(0); }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero-grid,
  .two-column,
  .concept-card,
  .programme-layout,
  .split-card,
  .tickets-location-grid {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }

  .hero-mark { justify-self: start; }

  .artist-grid { grid-template-columns: repeat(2, 1fr); }

  .modal-layout { grid-template-columns: 1fr; }

  .modal-photo { min-height: 180px; }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-inner { min-height: 70px; }
  .brand-logo { width: 144px; }
  .main-nav { inset: 70px 0 auto 0; }

  .section { padding: 48px 0; }

  .hero {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  h1 {
    font-size: clamp(3.45rem, 20vw, 6.3rem);
    letter-spacing: -0.032em;
    word-spacing: 0.045em;
  }

  h2 {
    font-size: clamp(2rem, 10.4vw, 3.05rem);
    letter-spacing: -0.02em;
    word-spacing: 0.06em;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

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

  .hero-mark { display: none; }

  .map-embed,
  .map-embed iframe {
    min-height: 310px;
  }

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

  .modal-panel {
    width: 100%;
    max-height: calc(100vh - 28px);
    border-radius: 24px;
  }

  .artist-modal {
    padding: 14px;
    align-items: end;
  }
}


.modal-bio {
  display: grid;
  gap: 14px;
  color: #24352f;
  font-size: 1rem;
  line-height: 1.62;
}

.modal-bio p {
  margin: 0;
}

.modal-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--green);
  font-weight: 900;
  text-underline-offset: 4px;
}

.modal-link:hover,
.modal-link:focus-visible {
  color: var(--blue);
  outline: none;
}

.modal-panel {
  max-height: min(820px, calc(100vh - 48px));
}

.modal-content {
  max-height: min(820px, calc(100vh - 48px));
  overflow: auto;
}


/* v8 — artist photography and biography presentation */
.modal-panel {
  width: min(1120px, 100%);
  max-height: min(880px, calc(100vh - 48px));
}

.modal-layout {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  min-height: 540px;
}

.modal-media {
  min-width: 0;
  padding: 18px;
  background: #ebe9e1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: auto;
  border-radius: 30px 0 0 30px;
}

.artist-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

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

.artist-gallery.three .artist-photo.primary {
  grid-column: 1 / -1;
}

.artist-gallery.single {
  height: 100%;
}

.artist-photo {
  margin: 0;
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: 18px;
  background: #d9dbd4;
}

.artist-gallery.single .artist-photo {
  min-height: 500px;
}

.artist-photo.primary {
  min-height: 330px;
}

.artist-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.artist-gallery.single .artist-photo img {
  object-position: center center;
}

.artist-photo figcaption {
  position: absolute;
  left: 10px;
  bottom: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(17, 17, 17, .62);
  color: white;
  font-size: .68rem;
  line-height: 1;
  backdrop-filter: blur(6px);
}

.artist-logo-wrap {
  background: white;
  border-radius: 18px;
  padding: 18px;
  display: grid;
  place-items: center;
  min-height: 96px;
  border: 1px solid rgba(11, 61, 46, 0.12);
}

.artist-logo-image {
  display: block;
  max-width: min(320px, 85%);
  max-height: 88px;
  object-fit: contain;
}

.artist-media-placeholder {
  min-height: 460px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 72% 45%, transparent 0 22px, rgba(247,244,236,0.82) 23px 28px, transparent 29px),
    linear-gradient(24deg, transparent 46%, rgba(247,244,236,0.62) 46.5%, transparent 47%),
    linear-gradient(4deg, transparent 50%, rgba(247,244,236,0.48) 50.5%, transparent 51%),
    var(--green);
  color: var(--offwhite);
  display: grid;
  place-items: center;
  font-family: "Archivo", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.modal-content {
  max-height: none;
  overflow: visible;
}

.modal-bio {
  padding-bottom: 8px;
}

@media (max-width: 980px) {
  .modal-layout {
    grid-template-columns: 1fr;
  }

  .modal-media {
    max-height: 50vh;
    border-radius: 24px 24px 0 0;
  }

  .artist-gallery.single .artist-photo {
    min-height: 360px;
  }

  .artist-media-placeholder {
    min-height: 230px;
  }
}

@media (max-width: 620px) {
  .modal-media {
    padding: 10px;
    max-height: 43vh;
  }

  .artist-gallery.two,
  .artist-gallery.three {
    grid-template-columns: 1fr;
  }

  .artist-gallery.three .artist-photo.primary {
    grid-column: auto;
  }

  .artist-photo,
  .artist-photo.primary,
  .artist-gallery.single .artist-photo {
    min-height: 300px;
  }

  .modal-content {
    padding: 24px 22px 30px;
  }
}


/* =========================================================
   v8.1 — cache-safe artist cards + CSS-only biography modals
   ========================================================= */

.artist-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.artist-card {
  text-decoration: none;
  padding: 0;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  background: var(--white);
}

.artist-card-image,
.artist-card-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e5e5df;
}

.artist-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.artist-card-image.logo-card {
  padding: 24px;
  background: white;
  display: grid;
  place-items: center;
}

.artist-card-image.logo-card img {
  object-fit: contain;
}

.artist-card-placeholder {
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--offwhite);
  font-family: "Archivo", sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
}

.artist-card span {
  display: block;
  padding: 18px 18px 20px;
  margin-top: auto;
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.18;
}

.artist-card:hover .artist-card-image img,
.artist-card:focus-visible .artist-card-image img {
  transform: scale(1.025);
}

/* These modals are written directly into HTML and open with :target.
   They do not depend on JavaScript. */
.artist-static-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 24px;
}

.artist-static-modal:target {
  display: grid;
}

body:has(.artist-static-modal:target) {
  overflow: hidden;
}

.static-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 16, .64);
  backdrop-filter: blur(8px);
}

.static-modal-panel {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 30px;
  background: var(--offwhite);
  box-shadow: 0 28px 90px rgba(0,0,0,.38);
}

.static-modal-layout {
  display: grid;
  grid-template-columns: minmax(340px, .92fr) minmax(0, 1.08fr);
  min-height: 560px;
}

.static-modal-media {
  min-width: 0;
  padding: 18px;
  background: #ebe9e1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 30px 0 0 30px;
}

.static-modal-content {
  padding: clamp(32px, 4vw, 52px);
}

.static-modal-content h3 {
  margin-bottom: 24px;
  padding-right: 36px;
}

.static-modal-close {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(247,244,236,.94);
  color: var(--green);
  text-decoration: none;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  line-height: 1;
}

.static-modal-close:hover,
.static-modal-close:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.static-modal-media .artist-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.static-modal-media .artist-gallery.two,
.static-modal-media .artist-gallery.three {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.static-modal-media .artist-gallery.three .artist-photo.primary {
  grid-column: 1 / -1;
}

.static-modal-media .artist-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  min-height: 210px;
  background: #d9dbd4;
}

.static-modal-media .artist-gallery.single .artist-photo {
  min-height: 520px;
}

.static-modal-media .artist-photo.primary {
  min-height: 350px;
}

.static-modal-media .artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.static-modal-media .artist-photo figcaption {
  position: absolute;
  left: 10px;
  bottom: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(17,17,17,.64);
  color: white;
  font-size: .68rem;
}

.static-modal-media .artist-logo-wrap {
  min-height: 100px;
  background: white;
  border-radius: 18px;
  padding: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11,61,46,.12);
}

.static-modal-media .artist-logo-image {
  max-width: min(320px, 86%);
  max-height: 90px;
  object-fit: contain;
}

.static-modal-media .artist-media-placeholder {
  min-height: 500px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--offwhite);
  font-family: "Archivo", sans-serif;
  font-size: 4rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .static-modal-layout {
    grid-template-columns: 1fr;
  }

  .static-modal-media {
    border-radius: 26px 26px 0 0;
    max-height: 50vh;
    overflow: auto;
  }

  .static-modal-media .artist-gallery.single .artist-photo {
    min-height: 380px;
  }
}

@media (max-width: 620px) {
  .artist-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .artist-card {
    min-height: 215px;
  }

  .artist-card span {
    padding: 13px 12px 15px;
    font-size: .92rem;
  }

  .artist-static-modal {
    padding: 10px;
    align-items: end;
  }

  .static-modal-panel {
    max-height: calc(100vh - 20px);
    border-radius: 24px;
  }

  .static-modal-media {
    padding: 10px;
    max-height: 42vh;
  }

  .static-modal-media .artist-gallery.two,
  .static-modal-media .artist-gallery.three {
    grid-template-columns: 1fr;
  }

  .static-modal-media .artist-gallery.three .artist-photo.primary {
    grid-column: auto;
  }

  .static-modal-media .artist-photo,
  .static-modal-media .artist-photo.primary,
  .static-modal-media .artist-gallery.single .artist-photo {
    min-height: 290px;
  }

  .static-modal-content {
    padding: 25px 20px 30px;
  }
}


/* ==========================================================
   v8.2 — mobile-first polish and uncropped artist photography
   ========================================================== */

/* Prevent any large heading from visually clipping at viewport edges. */
.hero-copy,
.hero-copy h1,
.hero-copy h1 span,
.split-card,
.split-card > div,
.programme-copy,
.contact-card {
  min-width: 0;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
}

/* Artist modal photography: show the whole supplied image, centered.
   No cover-cropping in biography popups. */
.static-modal-media {
  align-items: stretch;
  justify-content: flex-start;
}

.static-modal-media .artist-gallery,
.static-modal-media .artist-gallery.two,
.static-modal-media .artist-gallery.three {
  grid-template-columns: 1fr;
  width: 100%;
}

.static-modal-media .artist-gallery.three .artist-photo.primary {
  grid-column: auto;
}

.static-modal-media .artist-photo,
.static-modal-media .artist-photo.primary,
.static-modal-media .artist-gallery.single .artist-photo {
  min-height: 0;
  height: auto;
  display: grid;
  place-items: center;
  background: #f2f0e9;
  padding: 0;
}

.static-modal-media .artist-photo img {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto;
  background: #f2f0e9;
}

.static-modal-media .artist-gallery.single .artist-photo img {
  max-height: 720px;
}

.static-modal-media .artist-logo-wrap {
  justify-items: center;
}

.static-modal-media .artist-logo-image {
  margin-inline: auto;
}

/* Main artist thumbnails stay neat, but keep faces/subjects centered. */
.artist-card-image img {
  object-position: center center;
}

/* Cleaner desktop popup proportions. */
.static-modal-layout {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}

.static-modal-media {
  overflow-y: auto;
}

@media (max-width: 620px) {
  /* Header logo is actually centered on the phone. */
  .header-inner {
    position: relative;
    justify-content: center;
    min-height: 68px;
  }

  .brand {
    margin-inline: auto;
  }

  .brand-logo {
    width: 150px;
  }

  .nav-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .main-nav {
    inset: 68px 0 auto 0;
  }

  /* First screen: centered and guaranteed to fit narrow phones. */
  .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 48px;
    text-align: center;
  }

  .hero-grid {
    display: block;
    width: 100%;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .eyebrow {
    width: 100%;
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.075em;
    margin-bottom: 15px;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
    font-size: clamp(3rem, 16.2vw, 4.7rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
    word-spacing: 0;
  }

  .hero h1 span {
    width: 100%;
    white-space: nowrap;
    text-align: center;
  }

  .hero-lede {
    max-width: 31rem;
    margin: 23px auto 0;
    text-align: center;
    font-size: 1rem;
    line-height: 1.48;
  }

  .hero-actions {
    width: 100%;
    max-width: 31rem;
    margin: 28px auto 0;
    gap: 10px;
    justify-content: center;
  }

  .hero-actions .button {
    width: 100%;
  }

  /* Mobile section headings: calmer and safer. */
  h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.9vw, 2.72rem);
    line-height: 1.01;
    letter-spacing: -0.028em;
    word-spacing: 0.035em;
  }

  /* About / Context use the full mobile width without accidental drift. */
  .two-column,
  .concept-card,
  .programme-layout,
  .tickets-location-grid {
    gap: 22px;
  }

  /* Masterclasses: no clipping or nested card drifting. */
  .split-card {
    width: 100%;
    padding: 26px 18px 18px;
    border-radius: 26px;
    gap: 20px;
    overflow: hidden;
  }

  .split-card h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
    line-height: 1;
    max-width: 100%;
  }

  .split-card p {
    margin-bottom: 0;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .info-panel {
    width: 100%;
    padding: 8px;
    border-radius: 18px;
    display: block;
  }

  .info-panel .button {
    width: 100%;
    min-height: 46px;
    padding-inline: 12px;
    font-size: 0.67rem;
    letter-spacing: 0.035em;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  /* Artist order and compact cards. */
  .artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .artist-card {
    min-height: 210px;
    border-radius: 18px;
  }

  .artist-card-image,
  .artist-card-placeholder {
    aspect-ratio: 1 / 1;
  }

  .artist-card span {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 12px;
    font-size: 0.84rem;
    line-height: 1.16;
  }

  /* Biography modal on phone: image centered, fully visible. */
  .artist-static-modal {
    padding: 8px;
  }

  .static-modal-panel {
    width: 100%;
    max-height: calc(100dvh - 16px);
    border-radius: 22px;
  }

  .static-modal-layout {
    display: block;
    min-height: 0;
  }

  .static-modal-media {
    max-height: none;
    overflow: visible;
    padding: 10px;
    border-radius: 22px 22px 0 0;
  }

  .static-modal-media .artist-photo img,
  .static-modal-media .artist-gallery.single .artist-photo img {
    width: 100%;
    height: auto;
    max-height: 58dvh;
    object-fit: contain;
    object-position: center;
  }

  .static-modal-content {
    padding: 24px 20px 30px;
  }

  .static-modal-content h3 {
    padding-right: 38px;
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .modal-bio {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  /* Location / map remains contained. */
  .location {
    gap: 18px;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 280px;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 22px);
  }

  .hero h1 {
    font-size: 15.6vw;
  }

  .artist-card span {
    font-size: 0.78rem;
  }
}


/* ==========================================================
   v8.3 — desktop artist thumbnail framing and centered modals
   ========================================================== */

/* DESKTOP artist cards: fix portrait framing so foreheads are visible */
.artist-card--amstel .artist-card-image img {
  object-position: center 16%;
}

.artist-card--arno .artist-card-image img {
  object-position: center 18%;
}

.artist-card--juana .artist-card-image img {
  object-position: center center;
}

.artist-card--vitaly .artist-card-image img {
  object-position: center 14%;
}

.artist-card--maria .artist-card-image img {
  object-position: center 12%;
}

/* Bring the ensemble visually closer in the grid card */
.artist-card--saxofoonorkest .artist-card-image img {
  object-position: center 44%;
  transform: scale(1.23);
  transform-origin: center center;
}

.artist-card--saxofoonorkest:hover .artist-card-image img,
.artist-card--saxofoonorkest:focus-visible .artist-card-image img {
  transform: scale(1.26);
}

/* Modal photographs on desktop:
   show the whole image, centered, without drifting to the side */
.static-modal-media .artist-gallery,
.static-modal-media .artist-gallery.two,
.static-modal-media .artist-gallery.three {
  justify-items: center;
}

.static-modal-media .artist-photo,
.static-modal-media .artist-photo.primary {
  width: 100%;
  justify-items: center;
  align-items: center;
}

.static-modal-media .artist-photo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin-inline: auto;
}

/* Fine-tune modal images for portraits to keep heads comfortably framed */
.artist-static-modal--amstel .static-modal-media .artist-photo img,
.artist-static-modal--arno .static-modal-media .artist-photo img,
.artist-static-modal--juana .static-modal-media .artist-photo img,
.artist-static-modal--vitaly .static-modal-media .artist-photo img,
.artist-static-modal--maria .static-modal-media .artist-photo img,
.artist-static-modal--saxofoonorkest .static-modal-media .artist-photo img {
  object-position: center center;
}

/* Keep mobile behavior from v8.2 intact */
@media (max-width: 620px) {
  .static-modal-media .artist-photo img {
    width: 100%;
    max-width: 100%;
  }

  .artist-card--saxofoonorkest .artist-card-image img {
    transform: scale(1.12);
  }
}


/* ==========================================================
   v9 — bilingual language switcher
   ========================================================== */
.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(11, 61, 46, 0.22);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  flex: 0 0 auto;
}

.language-switcher a {
  min-width: 36px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  text-decoration: none;
  color: var(--green);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  outline: none;
  background: rgba(11,61,46,.08);
}

.language-switcher a.active {
  background: var(--green);
  color: var(--offwhite);
}

@media (max-width: 1100px) and (min-width: 981px) {
  .main-nav { gap: 13px; font-size: .78rem; }
  .header-right { gap: 14px; }
  .language-switcher a { min-width: 32px; }
}

@media (max-width: 980px) {
  .header-right {
    margin-left: 0;
    position: static;
  }

  .language-switcher {
    position: absolute;
    right: 54px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 45;
    background: rgba(247,244,236,.96);
  }
}

@media (max-width: 620px) {
  .language-switcher {
    right: 51px;
    padding: 3px;
  }
  .language-switcher a {
    min-width: 31px;
    height: 30px;
    font-size: .66rem;
  }
}

@media (max-width: 370px) {
  .brand-logo { width: 132px; }
  .language-switcher { right: 49px; }
  .language-switcher a { min-width: 28px; }
}


/* v10 — Xabier Oruesagasti photography */
.artist-card--xabier .artist-card-image img {
  object-position: center 24%;
}

.artist-static-modal--xabier .static-modal-media .artist-photo img {
  object-position: center center;
}

@media (max-width: 620px) {
  .artist-card--xabier .artist-card-image img {
    object-position: center 22%;
  }
}


/* v11 — full programme page integration */
.footer-links [data-instagram-slot] {
  opacity: .78;
}

[data-external-link].is-pending {
  pointer-events: none;
}

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


/* ==========================================================
   v12 P1-A — Header + Hero + Meeting Point brand pass
   Scope: global header + homepage hero only
   ========================================================== */

.site-header {
  background: rgba(247, 244, 236, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: none;
}

.header-inner {
  min-height: 72px;
  gap: 18px;
}

.brand-logo { width: 156px; }
.header-right { gap: 16px; }

.main-nav {
  gap: clamp(12px, 1.55vw, 20px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.045em;
}

.main-nav a {
  border-radius: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.main-nav a:not(.header-ticket) { border-bottom: 2px solid transparent; }

.main-nav a:not(.header-ticket):hover,
.main-nav a:not(.header-ticket):focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--green);
  border-bottom-color: var(--green);
}

.main-nav .header-ticket {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
  gap: 7px;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.main-nav .header-ticket:hover,
.main-nav .header-ticket:focus-visible {
  color: #fff;
  background: #164de0;
  border-color: #164de0;
  transform: translateY(-1px);
  outline: 3px solid rgba(30, 91, 255, .18);
  outline-offset: 2px;
}

.language-switcher {
  border-radius: 10px;
  padding: 3px;
  background: transparent;
  border-color: rgba(11, 61, 46, 0.24);
}

.language-switcher a {
  border-radius: 7px;
  min-width: 34px;
  height: 34px;
}

.nav-toggle { border-radius: 10px; box-shadow: none; }

.hero {
  min-height: min(820px, calc(100vh - 72px));
  padding-top: clamp(54px, 6vw, 78px);
  padding-bottom: clamp(54px, 6vw, 78px);
}

.hero::before { display: none; }

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .74fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
}

.hero-meta {
  margin-bottom: 24px;
  display: grid;
  gap: 3px;
  color: var(--green);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-meta p { margin: 0; }
.hero-meta p + p { color: #42564f; }

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.6rem, 9.4vw, 9.2rem);
  line-height: .88;
  letter-spacing: -.058em;
  word-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  margin-top: 30px;
  font-size: clamp(1.08rem, 1.45vw, 1.32rem);
  line-height: 1.48;
  color: var(--charcoal);
}

.hero-secondary {
  max-width: 585px;
  margin: 12px 0 0;
  color: #53625d;
  font-size: .96rem;
  line-height: 1.55;
}

.hero-actions { margin-top: 31px; gap: 10px; }

.hero-actions .button {
  width: auto;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: .75rem;
  letter-spacing: .045em;
  transform: none;
}

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

.hero-programme {
  background: var(--green);
  color: var(--offwhite);
  border-color: var(--green);
}

.hero-tickets {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  gap: 7px;
}

.hero-tickets:hover,
.hero-tickets:focus-visible {
  background: #164de0;
  border-color: #164de0;
  color: #fff;
}

.hero-masterclasses {
  background: transparent;
  color: var(--green);
  border-color: rgba(11,61,46,.48);
}

.hero-mark {
  width: min(520px, 42vw);
  max-width: none;
  justify-self: end;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  overflow: visible;
}

.mark-stage {
  width: min(520px, 46vw);
  aspect-ratio: 1.22 / 1;
  transform: translateX(6%);
}

.mark-stage::before { display: none; }

.mark-line {
  right: 28%;
  top: 50%;
  height: 7px;
  border-radius: 0;
  background: var(--green);
  opacity: 1;
  transform-origin: 100% 50%;
}

.mark-line.l1 { width: 76%; transform: rotate(-15deg); opacity: 1; }
.mark-line.l2 { width: 82%; transform: rotate(0deg); opacity: 1; }
.mark-line.l3 { width: 73%; transform: rotate(15deg); opacity: 1; }

.mark-node {
  right: 24.3%;
  top: calc(50% - 13px);
  width: 26px;
  height: 26px;
  border: 4px solid var(--green);
  border-radius: 50%;
  background: var(--gold);
  z-index: 3;
}

.mark-tower {
  right: 16%;
  top: 15%;
  width: 13px;
  height: 70%;
  background: var(--green);
  border-radius: 0;
}

.mark-tower::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 0;
  width: 35px;
  height: 7px;
  border: 0;
  border-radius: 0;
  background: var(--green);
}

.mark-tower::after {
  content: "";
  position: absolute;
  left: -7px;
  bottom: 0;
  width: 27px;
  height: 7px;
  background: var(--green);
  border-radius: 0;
}

.hero-campaign {
  width: min(420px, 38vw);
  margin: 8px 4% 0 0;
  padding-top: 13px;
  border-top: 1px solid rgba(11,61,46,.25);
  color: var(--green);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  text-align: right;
}

.hero-campaign strong { font-weight: 900; }

@media (max-width: 1100px) and (min-width: 981px) {
  .brand-logo { width: 142px; }
  .main-nav { gap: 11px; font-size: .72rem; }
  .main-nav .header-ticket { padding-inline: 12px; }
  .header-right { gap: 10px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, .66fr); }
}

@media (max-width: 980px) {
  .header-inner {
    justify-content: flex-start;
    min-height: 70px;
  }

  .brand { margin-right: auto; }
  .brand-logo { width: 140px; }

  .header-right {
    position: static;
    order: 2;
    margin: 0 8px 0 0;
  }

  .language-switcher {
    position: static;
    transform: none;
    background: transparent;
  }

  .nav-toggle {
    position: static;
    transform: none;
    order: 3;
    flex: 0 0 44px;
  }

  .main-nav {
    inset: 70px 0 auto 0;
    box-shadow: none;
    padding: 22px;
    gap: 8px;
  }

  .main-nav a {
    min-height: 48px;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(11,61,46,.12);
  }

  .main-nav .header-ticket {
    margin-top: 10px;
    width: fit-content;
    min-width: 140px;
    justify-content: center;
    padding-inline: 18px;
    border-bottom: 1px solid var(--blue);
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .66fr);
    gap: 28px;
  }

  .hero h1 { font-size: clamp(4rem, 10vw, 6.6rem); }
  .mark-stage { width: min(380px, 42vw); }
}

@media (max-width: 720px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    align-items: flex-start;
    text-align: left;
  }

  .hero-meta {
    width: 100%;
    text-align: left;
    margin-bottom: 21px;
    font-size: .68rem;
    letter-spacing: .075em;
  }

  .hero h1 {
    width: 100%;
    text-align: left;
    font-size: clamp(3.55rem, 18.4vw, 5.7rem);
    line-height: .89;
    letter-spacing: -.058em;
  }

  .hero h1 span { text-align: left; }

  .hero-lede {
    margin: 25px 0 0;
    text-align: left;
    font-size: 1rem;
  }

  .hero-secondary {
    margin-top: 10px;
    text-align: left;
    font-size: .9rem;
  }

  .hero-actions {
    width: 100%;
    max-width: none;
    margin: 27px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .hero-actions .button { width: 100%; }
  .hero-masterclasses { grid-column: 1 / -1; }

  .hero-mark {
    display: flex;
    width: calc(100% + 28px);
    max-width: none;
    margin-left: -14px;
    align-items: flex-end;
    overflow: hidden;
  }

  .mark-stage {
    width: 118%;
    max-width: none;
    height: 185px;
    aspect-ratio: auto;
    transform: translateX(17%);
  }

  .mark-line { height: 5px; }
  .mark-line.l1 { width: 76%; transform: rotate(-11deg); }
  .mark-line.l2 { width: 82%; }
  .mark-line.l3 { width: 74%; transform: rotate(11deg); }

  .mark-node {
    right: 24.5%;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    border-width: 3px;
  }

  .mark-tower {
    right: 17%;
    top: 10%;
    width: 10px;
    height: 80%;
  }

  .mark-tower::before { left: -8px; width: 27px; height: 5px; }
  .mark-tower::after { left: -5px; width: 20px; height: 5px; }

  .hero-campaign {
    width: auto;
    margin: -4px 14px 0 0;
    padding-top: 10px;
    font-size: .62rem;
    letter-spacing: .085em;
  }
}

@media (max-width: 430px) {
  .container { width: calc(100% - 28px); }
  .brand-logo { width: 122px; }
  .header-right { margin-right: 6px; }
  .language-switcher a { min-width: 30px; height: 32px; font-size: .64rem; }
  .nav-toggle { width: 42px; height: 42px; }

  .hero { padding-top: 44px; padding-bottom: 48px; }
  .hero h1 { font-size: clamp(3.3rem, 18vw, 4.7rem); }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-masterclasses { grid-column: auto; }
  .mark-stage { height: 160px; }
}

@media (max-width: 360px) {
  .container { width: calc(100% - 22px); }
  .brand-logo { width: 108px; }
  .header-right { margin-right: 4px; }
  .language-switcher { padding: 2px; }
  .language-switcher a { min-width: 27px; height: 30px; font-size: .61rem; }
  .nav-toggle { width: 40px; height: 40px; }

  .hero h1 { font-size: 17.2vw; }
  .hero-meta { font-size: .62rem; }
  .hero-secondary { font-size: .86rem; }
  .mark-stage { height: 145px; }
}

/* P1-A QA fixes: prevent narrow-screen clipping inherited from the previous build. */
.tickets-location-grid,
.mini-section,
.location,
.location-copy { min-width: 0; }

@media (max-width: 720px) {
  .hero h1 { font-size: clamp(2.85rem, 14.7vw, 4.2rem); }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 14.7vw; }
}
@media (max-width: 720px) {
  .hero-mark {
    width: 100%;
    margin-left: 0;
    overflow: hidden;
  }
  .mark-stage {
    width: 110%;
    transform: translateX(10%);
  }
}
@media (max-width: 720px) {
  .hero-mark { overflow: clip; }
  .mark-stage {
    width: 100%;
    transform: none;
    overflow: clip;
  }
  .mark-line.l1 { width: 67%; transform: rotate(-11deg); }
  .mark-line.l2 { width: 72%; }
  .mark-line.l3 { width: 66%; transform: rotate(11deg); }
}

/* Guard against transformed decorative artwork creating document-level horizontal scroll. */
html, body { overflow-x: clip; }


/* Live concert ticket links */
.ticket-links {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.ticket-links .ticket-buy {
  width: 100%;
  min-height: 50px;
  justify-content: space-between;
  border-radius: 10px;
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
  font-size: .88rem;
}

.ticket-links .ticket-buy:hover,
.ticket-links .ticket-buy:focus-visible {
  background: #164de0;
  border-color: #164de0;
  color: #fff;
}

@media (max-width: 430px) {
  .ticket-links .ticket-buy {
    min-height: 48px;
    padding: 12px 14px;
    font-size: .82rem;
  }
}


/* v12.2 ticket-link reliability / visible schedule CTA */
.ticket-links .ticket-buy[aria-disabled="true"] { opacity: .5; }


/* v12.3 logo integration */
.brand-logo {
  width: clamp(196px, 17vw, 286px);
  height: auto;
}

.hero-mark {
  max-width: 440px;
}

.hero-symbol {
  width: min(420px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
}

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

.footer-logo {
  width: clamp(190px, 18vw, 260px);
  height: auto;
  display: block;
}

.footer-meta p {
  margin: 0;
  line-height: 1.4;
  color: rgba(247, 244, 236, 0.92);
}

.footer-meta p + p {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .brand-logo {
    width: clamp(170px, 30vw, 236px);
  }
}

@media (max-width: 840px) {
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: clamp(154px, 42vw, 210px);
  }

  .hero-symbol {
    width: min(300px, 100%);
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ==========================================================
   v12.4 — approved logo sizing + premium partners/footer
   ========================================================== */

.site-header .brand {
  flex: 0 0 auto;
  min-width: 0;
}

.site-header .brand-logo {
  width: 210px;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.header-inner {
  min-height: 78px;
}

/* Approved symbol in homepage hero */
.hero-symbol {
  width: min(410px, 100%);
  max-height: 430px;
  object-fit: contain;
}

/* Partners — editorial, logo-ready structure without pills/cards */
.partners {
  border-top: 1px solid rgba(11, 61, 46, .14);
  background: var(--offwhite);
}

.partners-editorial {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 6vw, 92px);
  align-items: start;
}

.partners-heading h2 {
  max-width: 520px;
}

.partner-groups {
  border-top: 1px solid rgba(11, 61, 46, .34);
}

.partner-group {
  display: grid;
  grid-template-columns: minmax(145px, .34fr) minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0 26px;
  border-bottom: 1px solid rgba(11, 61, 46, .22);
}

.partner-label {
  margin: 2px 0 0;
  color: var(--green);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 4vw, 54px);
  row-gap: 14px;
}

.partner-list span {
  display: block;
  min-width: 0;
  color: var(--green);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1rem, 1.55vw, 1.28rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.02em;
}

.partner-list--organisers span {
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
}

/* Footer — deeper brand field, less utility-bar feeling */
.site-footer {
  padding: 50px 0 24px;
  background: var(--green);
  color: var(--offwhite);
}

.footer-inner--premium {
  display: grid;
  grid-template-columns: minmax(150px, .8fr) minmax(240px, 1fr) auto;
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.footer-brand {
  display: block;
}

.footer-logo--reversed {
  width: clamp(205px, 18vw, 248px);
  height: auto;
  display: block;
}

.footer-info {
  display: grid;
  gap: 8px;
  color: rgba(247, 244, 236, .9);
  font-size: .88rem;
  line-height: 1.5;
}

.footer-info p {
  margin: 0;
}

.footer-info .footer-date {
  color: var(--offwhite);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.footer-info a,
.footer-links a,
.footer-links span {
  color: var(--offwhite);
  text-decoration: none;
}

.footer-info a:hover,
.footer-info a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-links {
  justify-self: end;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 17px;
  border-top: 1px solid rgba(247, 244, 236, .22);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(247, 244, 236, .66);
  font-size: .7rem;
  letter-spacing: .04em;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .site-header .brand-logo { width: 180px; max-height: 56px; }
  .header-inner { gap: 13px; }
  .main-nav { gap: 10px; font-size: .7rem; }
}

@media (max-width: 980px) {
  .header-inner { min-height: 70px; }
  .site-header .brand-logo { width: 172px; max-height: 54px; }
  .main-nav { inset: 70px 0 auto 0; }

  .partners-editorial {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-inner--premium {
    grid-template-columns: minmax(135px, .65fr) minmax(220px, 1fr) auto;
    gap: 30px;
  }
}

@media (max-width: 720px) {
  .site-header .brand-logo { width: 158px; max-height: 50px; }

  .hero-mark {
    align-items: center;
  }

  .hero-symbol {
    width: min(286px, 78vw);
    margin-inline: auto;
  }

  .partner-group {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 22px 0 24px;
  }

  .partner-list {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .partner-list span {
    padding: 12px 0;
    border-top: 1px solid rgba(11, 61, 46, .11);
  }

  .partner-list span:first-child { border-top: 0; }

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

  .footer-brand { grid-column: 1 / -1; }
  .footer-logo--reversed { width: 190px; }
  .footer-links { justify-self: start; }
}

@media (max-width: 430px) {
  .site-header .brand-logo { width: 146px; max-height: 46px; }
  .footer-logo--reversed { width: 178px; }

  .header-right { margin-right: 4px; }

  .footer-inner--premium {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand { grid-column: auto; }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 360px) {
  .site-header .brand-logo { width: 134px; max-height: 43px; }
  .language-switcher a { min-width: 26px; }
}


/* ==========================================================
   v12.6 — composers, unified masterclass CTA and mobile polish
   ========================================================== */
.premieres-editorial {
  display: grid;
  gap: clamp(28px, 4.5vw, 54px);
}

.premieres-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding-bottom: clamp(24px, 3.2vw, 38px);
  border-bottom: 1px solid rgba(11, 61, 46, .18);
}

.premieres-intro {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.03rem, 1.35vw, 1.2rem);
  line-height: 1.58;
  color: #263a33;
}

.composer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 36px);
}

.composer-card {
  display: grid;
  grid-template-columns: minmax(180px, .72fr) minmax(0, 1.28fr);
  min-width: 0;
  background: transparent;
  border-top: 4px solid var(--green);
  padding-top: 18px;
  gap: clamp(18px, 2.5vw, 28px);
  align-items: start;
}

.composer-portrait {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ece8df;
}

.composer-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.composer-card--deborah .composer-portrait img {
  object-position: center 46%;
}

.composer-copy {
  min-width: 0;
}

.composer-role {
  margin: 0 0 9px;
  color: var(--gold-dark, #9a7737);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .085em;
  font-size: .7rem;
}

.composer-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.3vw, 2.45rem);
}

.composer-copy p:not(.composer-role) {
  margin: 0;
  font-size: .96rem;
  line-height: 1.6;
  color: #2b3c36;
}

.composer-copy .text-link {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 800;
}

/* Masterclasses should always behave as a real external registration CTA. */
.hero-masterclasses,
.main-nav .nav-masterclasses {
  cursor: pointer;
}

@media (max-width: 1040px) {
  .composer-card {
    grid-template-columns: minmax(145px, .62fr) minmax(0, 1.38fr);
  }
}

@media (max-width: 860px) {
  .premieres-head,
  .composer-grid {
    grid-template-columns: 1fr;
  }

  .composer-card {
    grid-template-columns: minmax(170px, .52fr) minmax(0, 1.48fr);
  }
}

@media (max-width: 620px) {
  .premieres-editorial { gap: 30px; }
  .premieres-head { gap: 17px; }

  .composer-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .composer-portrait {
    width: 100%;
    max-height: 520px;
  }

  .composer-copy h3 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }
}


/* ==========================================================
   v12.7 — partner logos, composer biography modals, NL spacing
   ========================================================== */

/* Composer cards now behave like artist cards: clean image/name first, bio on click. */
.composer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.composer-card {
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green);
  text-decoration: none;
  cursor: pointer;
}

.composer-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #ece8df;
}

.composer-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .28s ease;
}

.composer-card:hover .composer-portrait img,
.composer-card:focus-visible .composer-portrait img {
  transform: scale(1.018);
}

.composer-card:focus-visible {
  outline: 3px solid rgba(30,91,255,.28);
  outline-offset: 5px;
}

.composer-card-caption {
  padding: 15px 0 0;
  border-top: 3px solid var(--green);
  margin-top: 9px;
}

.composer-card-caption h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.3vw, 2.35rem);
  line-height: 1.03;
}

.composer-role { margin-bottom: 7px; }

.composer-read {
  display: inline-flex;
  margin-top: 13px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.composer-static-modal .static-modal-content h3 {
  margin-bottom: 20px;
}

.composer-static-modal--deborah .static-modal-media .artist-photo img {
  object-position: center 46%;
}

/* Partner logo field: exact visual order requested. */
.partners-editorial--logos {
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
}

.partner-logo-area {
  min-width: 0;
  border-top: 1px solid rgba(11,61,46,.30);
  padding-top: 24px;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

.partner-logo-item {
  min-width: 0;
  min-height: 150px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(11,61,46,.12);
}

.partner-logo-item img {
  width: 100%;
  height: 96px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.partner-logo-item:nth-child(1) img { height: 112px; }
.partner-logo-item:nth-child(2) img { height: 72px; }
.partner-logo-item:nth-child(3) img { height: 62px; }
.partner-logo-item:nth-child(4) img { height: 92px; }

.partner-collaborators {
  margin-top: 25px;
  padding-top: 19px;
  border-top: 1px solid rgba(11,61,46,.16);
}

.partner-collaborators .partner-label { margin-bottom: 9px; }
.partner-collaborators > p:last-child {
  margin: 0;
  color: #33463f;
  font-size: .92rem;
  line-height: 1.65;
}

/* Dutch copy is longer. Give headings their own line box and real vertical separation. */
html[lang="nl"] h1,
html[lang="nl"] h2,
html[lang="nl"] h3 {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

html[lang="nl"] h2 {
  line-height: 1.08;
}

html[lang="nl"] .two-column > *,
html[lang="nl"] .concept-card > *,
html[lang="nl"] .programme-layout > *,
html[lang="nl"] .split-card > *,
html[lang="nl"] .tickets-location-grid > *,
html[lang="nl"] .premieres-head > *,
html[lang="nl"] .partners-editorial > * {
  min-width: 0;
}

html[lang="nl"] .section-kicker + h2 {
  margin-top: 0;
}

html[lang="nl"] .premieres-head {
  align-items: start;
}

@media (max-width: 980px) {
  .partners-editorial--logos { grid-template-columns: 1fr; }
  .partner-logo-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

  html[lang="nl"] .two-column,
  html[lang="nl"] .concept-card,
  html[lang="nl"] .programme-layout,
  html[lang="nl"] .split-card,
  html[lang="nl"] .tickets-location-grid,
  html[lang="nl"] .premieres-head,
  html[lang="nl"] .partners-editorial {
    row-gap: 30px;
  }
}

@media (max-width: 620px) {
  .composer-grid { grid-template-columns: 1fr; gap: 32px; }
  .composer-portrait { aspect-ratio: 4 / 5; max-height: none; }
  .composer-card-caption h3 { font-size: clamp(1.7rem, 8vw, 2.35rem); }

  .partner-logo-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .partner-logo-item { min-height: 118px; padding: 14px 12px; }
  .partner-logo-item:nth-child(1) img { height: 88px; }
  .partner-logo-item:nth-child(2) img { height: 54px; }
  .partner-logo-item:nth-child(3) img { height: 46px; }
  .partner-logo-item:nth-child(4) img { height: 70px; }

  html[lang="nl"] h2 {
    font-size: clamp(1.72rem, 8.15vw, 2.42rem);
    line-height: 1.1;
    letter-spacing: -.018em;
    word-spacing: .015em;
  }

  html[lang="nl"] .two-column,
  html[lang="nl"] .concept-card,
  html[lang="nl"] .programme-layout,
  html[lang="nl"] .split-card,
  html[lang="nl"] .tickets-location-grid,
  html[lang="nl"] .premieres-head,
  html[lang="nl"] .partners-editorial {
    row-gap: 24px;
  }
}

@media (max-width: 390px) {
  .partner-logo-grid { grid-template-columns: 1fr; }
  .partner-logo-item { min-height: 120px; }

  html[lang="nl"] h2 {
    font-size: clamp(1.62rem, 8.5vw, 2.16rem);
  }
}


/* v12.8 Instagram */
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--offwhite);
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  opacity: 0.92;
  transition: opacity .18s ease, transform .18s ease;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  outline: none;
}

.instagram-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

@media (max-width: 640px) {
  .instagram-link {
    font-size: .95rem;
  }
}
