/*
 * Concert Band Fulda — Conducted Precision
 * Self-contained design system: no external fonts, trackers or icon services.
 */

:root {
  --stage: #050a16;
  --stage-soft: #0a1122;
  --ink: #111827;
  --ink-soft: #374151;
  --blue: #001689;
  --blue-bright: #2f61ff;
  --blue-soft: #91a9ff;
  --paper: #f5f7fb;
  --paper-warm: #ebeef4;
  --white: #ffffff;
  --brass: #d7a449;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(5, 10, 22, 0.15);
  --shadow: 0 30px 80px rgba(5, 10, 22, 0.18);
  --content-bg: #f5f7fb;
  --content-bg-alt: #ebeef4;
  --content-card: #ffffff;
  --content-text: #111827;
  --content-muted: #374151;
  --content-line: rgba(5, 10, 22, 0.15);
  --content-accent: #001689;
  --content-label-accent: #2f61ff;
  --content-shadow: 0 30px 80px rgba(5, 10, 22, 0.18);
  --shell: min(100% - 48px, 1360px);
  --header-height: 78px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  color-scheme: light;
}

:root[data-theme="dark"] {
  --content-bg: #09101f;
  --content-bg-alt: #0d1629;
  --content-card: #111c31;
  --content-text: #f5f7fb;
  --content-muted: #bdc7d8;
  --content-line: rgba(255, 255, 255, 0.14);
  --content-accent: #91a9ff;
  --content-label-accent: #91a9ff;
  --content-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--stage);
  color: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--blue-bright);
  color: var(--white);
}

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-weight: 750;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 em,
h2 em {
  font-style: normal;
  font-weight: 450;
}

:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px #001689 !important;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--stage);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  border-color: var(--line-dark);
  background: rgba(5, 10, 22, 0.88);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.header-shell {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.brand-copy strong {
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 40px);
}

.site-nav > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blue-soft);
  transition: transform 220ms var(--ease);
}

.site-nav > a:hover,
.site-nav > a.is-active {
  color: var(--white);
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.site-nav .nav-cta:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--stage);
}

.theme-toggle {
  min-height: 42px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  cursor: pointer;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.theme-toggle:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.theme-toggle [data-theme-icon] {
  width: 1.2em;
  font-family: system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1;
}

.no-js .theme-toggle {
  display: none;
}

.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.menu-toggle-icon {
  display: grid;
  gap: 7px;
  width: 26px;
  margin: auto;
}

.menu-toggle-icon i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease;
}

body.nav-open .menu-toggle-icon i:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.nav-open .menu-toggle-icon i:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Shared components */

.section {
  position: relative;
  isolation: isolate;
  padding-block: clamp(100px, 10vw, 160px);
}

.section-shell,
.fact-shell,
.footer-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-light {
  background: var(--content-bg);
  color: var(--content-text);
}

.section-paper {
  background: var(--content-bg-alt);
  color: var(--content-text);
}

.section-ink {
  background: var(--stage);
  color: var(--white);
}

.section-blue {
  background: var(--blue);
  color: var(--white);
}

.section-heading h2,
.join-copy h2,
.network-copy h2,
.contact-lead h2 {
  max-width: 960px;
  font-size: clamp(3rem, 6.3vw, 6.8rem);
  line-height: 0.95;
}

.section-heading h2 em,
.network-copy h2 em {
  color: var(--blue-bright);
}

.section-index,
.eyebrow,
.panel-kicker,
.next-event-label,
.event-tag,
.hero-credit,
.scroll-cue,
.event-meta > p,
.fact span,
.repertoire span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-index {
  margin-bottom: 28px;
  color: var(--content-label-accent);
  font-size: 0.75rem;
  font-weight: 800;
}

.section-ink .section-index,
.section-blue .section-index {
  color: var(--blue-soft);
}

.lead {
  font-size: clamp(1.3rem, 2.05vw, 1.85rem);
  font-weight: 550;
  line-height: 1.45;
  letter-spacing: -0.022em;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 720;
  transition: transform 180ms var(--ease), background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--blue-bright);
  color: var(--white);
}

.button-primary:hover {
  background: #4270ff;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.button-light {
  background: var(--white);
  color: var(--blue);
}

.button-light:hover {
  background: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.text-link span,
.social-links span {
  transition: transform 180ms var(--ease);
}

.text-link:hover span,
.social-links a:hover span {
  transform: translate(2px, -2px);
}

.score-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.085;
  background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 43px, rgba(255, 255, 255, 0.9) 44px, transparent 45px);
  -webkit-mask-image: linear-gradient(to right, transparent 2%, black 18%, black 76%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 2%, black 18%, black 76%, transparent 100%);
}

.score-lines-soft {
  opacity: 0.035;
}

/* Hero */

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  isolation: isolate;
  overflow: hidden;
  background: var(--stage);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -4;
}

.hero-media img {
  object-fit: cover;
  object-position: 55% center;
  transform: scale(1.012);
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 10, 22, 0.98) 0%, rgba(5, 10, 22, 0.9) 31%, rgba(5, 10, 22, 0.4) 62%, rgba(5, 10, 22, 0.48) 100%),
    linear-gradient(0deg, rgba(5, 10, 22, 0.92) 0%, transparent 38%),
    radial-gradient(circle at 75% 38%, transparent, rgba(5, 10, 22, 0.25) 75%);
}

.hero .score-lines {
  z-index: -2;
}

.hero-shell {
  width: var(--shell);
  min-height: max(760px, 100svh);
  margin-inline: auto;
  padding-block: calc(var(--header-height) + 72px) 108px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.hero-copy {
  grid-column: 1 / 9;
  align-self: center;
  padding-bottom: 24px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.68rem, 0.9vw, 0.78rem);
  font-weight: 700;
}

.eyebrow span {
  display: inline-grid;
  min-width: 44px;
  min-height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(3.5rem, 7.4vw, 8.35rem);
  line-height: 0.865;
  letter-spacing: -0.065em;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.25);
}

.hero h1 em {
  color: var(--blue-soft);
}

.hero-intro {
  max-width: 660px;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.06rem, 1.45vw, 1.28rem);
  line-height: 1.55;
}

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

.next-event {
  position: relative;
  grid-column: 9 / 13;
  align-self: end;
  min-height: 330px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.next-event:hover {
  transform: translateY(-4px);
  box-shadow: 0 38px 90px rgba(5, 10, 22, 0.32);
}

.next-event-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 850;
}

.next-event-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 5px rgba(47, 97, 255, 0.12);
}

.next-event-date {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: auto 0 12px;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.next-event-date b {
  font-size: clamp(4rem, 5vw, 5.5rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.next-event-date span {
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0.07em;
}

.next-event > strong {
  margin-top: 10px;
  font-size: clamp(1.32rem, 2vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.next-event > span:not(.next-event-label):not(.next-event-date):not(.next-event-arrow) {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.next-event-arrow {
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-light);
  font-size: 1.2rem;
  transition: transform 180ms var(--ease), background-color 180ms ease;
}

.next-event:hover .next-event-arrow {
  transform: translate(2px, 2px);
  background: var(--blue);
  color: var(--white);
}

.hero-credit {
  position: absolute;
  right: 22px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.64rem;
  writing-mode: vertical-rl;
}

.scroll-cue {
  position: absolute;
  bottom: 0;
  left: max(24px, calc((100vw - min(100% - 48px, 1360px)) / 2));
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
}

.scroll-cue i {
  display: block;
  width: 54px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  transform-origin: left;
  animation: cue 2.6s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { transform: scaleX(0.3); opacity: 0.35; }
  50% { transform: scaleX(1); opacity: 1; }
}

/* Facts */

.fact-strip {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--stage-soft);
}

.fact-shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact {
  min-height: 150px;
  padding: 26px clamp(18px, 2.5vw, 38px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line-dark);
}

.fact:last-child {
  border-right: 1px solid var(--line-dark);
}

.fact strong {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.fact span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.66rem;
}

/* Welcome */

.welcome {
  padding-block: clamp(64px, 7vw, 100px);
  border-bottom: 1px solid var(--content-line);
  background: var(--content-bg-alt);
  color: var(--content-text);
}

.welcome-shell {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.welcome-shell > .section-index {
  grid-column: 1 / 4;
  margin: 10px 0 0;
}

.welcome-shell > div {
  grid-column: 4 / 13;
  max-width: 850px;
}

.welcome h2 {
  font-size: clamp(2.6rem, 5vw, 5.25rem);
  line-height: 1;
}

.welcome-languages {
  margin-top: 22px;
  color: var(--content-accent);
  font-weight: 720;
}

.welcome-languages + p {
  max-width: 66ch;
  margin-top: 14px;
  color: var(--content-muted);
}

/* Orchestra */

.orchestra .section-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: clamp(72px, 9vw, 128px);
}

.orchestra .section-heading .section-index {
  grid-column: 1 / 4;
}

.orchestra .section-heading h2 {
  grid-column: 4 / 13;
}

.orchestra-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.orchestra-story {
  grid-column: 1 / 6;
  padding-right: clamp(0px, 3vw, 52px);
}

.orchestra-story p + p {
  margin-top: 24px;
}

.orchestra-story p:not(.lead) {
  max-width: 62ch;
  color: var(--content-muted);
}

.orchestra-image {
  grid-column: 6 / 13;
}

.image-frame {
  position: relative;
}

.image-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(47, 97, 255, 0.34);
}

.image-frame picture,
.image-frame img {
  width: 100%;
}

.image-frame img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.image-frame figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 9px 13px;
  background: var(--stage);
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.repertoire {
  grid-column: 6 / 13;
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.repertoire span {
  padding: 8px 12px;
  border: 1px solid var(--content-line);
  color: var(--content-muted);
  font-size: 0.66rem;
  font-weight: 720;
}

.performance-gallery {
  margin-top: clamp(76px, 9vw, 128px);
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 16px;
}

.performance-gallery figure {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: var(--stage-soft);
}

.performance-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.performance-gallery figure:hover img {
  transform: scale(1.018);
}

.performance-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  background: rgba(5, 10, 22, 0.8);
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

/* Events */

.events {
  overflow: hidden;
}

.heading-split {
  margin-bottom: clamp(70px, 8vw, 110px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.heading-split > div {
  grid-column: 1 / 9;
}

.heading-split > p {
  grid-column: 10 / 13;
  padding-bottom: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.95rem;
}

.events h2 em,
.contact h2 em {
  color: var(--blue-soft);
}

.event-list {
  border-top: 1px solid var(--line-dark);
}

.event-card {
  position: relative;
  min-height: 220px;
  display: grid;
  grid-template-columns: 2.1fr 7fr 2fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 220ms ease, padding 220ms var(--ease);
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0 100% 0 0;
  z-index: -1;
  background: var(--blue);
  transition: inset 300ms var(--ease);
}

.event-card:hover::before {
  right: 0;
}

.event-card:hover {
  padding-inline: 22px;
}

.event-date {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--blue-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.event-date strong {
  font-size: clamp(4.8rem, 8vw, 8.5rem);
  line-height: 0.8;
  letter-spacing: -0.09em;
}

.event-date span {
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.event-meta > p {
  color: var(--blue-soft);
  font-size: 0.69rem;
  font-weight: 750;
}

.event-meta h3 {
  margin: 9px 0 7px;
  font-size: clamp(1.65rem, 3.2vw, 3.1rem);
  line-height: 1.1;
}

.event-meta > span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

.event-link {
  width: fit-content;
  min-height: 44px;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-soft);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(145, 169, 255, 0.55);
  text-underline-offset: 5px;
}

.event-link span {
  transition: transform 180ms var(--ease);
}

.event-link:hover {
  color: var(--white);
  text-decoration-color: currentColor;
}

.event-link:hover span {
  transform: translate(2px, -2px);
}

.event-tag {
  justify-self: end;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.65rem;
}

.event-status-postponed::before {
  background: #172a66;
}

.event-status-postponed .event-tag {
  border-color: rgba(145, 169, 255, 0.72);
  color: #bdcaff;
}

.event-status-cancelled::before {
  background: #2b2418;
}

.event-status-cancelled .event-date,
.event-status-cancelled .event-meta > p {
  color: #e8cc94;
}

.event-status-cancelled .event-meta h3 {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-decoration-thickness: 1px;
}

.event-status-cancelled .event-meta > span {
  color: rgba(255, 255, 255, 0.48);
}

.event-status-cancelled .event-tag {
  border-color: rgba(215, 164, 73, 0.72);
  color: #f0d6a0;
}

.event-empty {
  min-height: 190px;
  padding: clamp(30px, 5vw, 54px);
  display: grid;
  align-content: center;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.025);
}

.event-empty strong {
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.event-empty p {
  max-width: 58ch;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
}

.next-event-empty .next-event-date b {
  font-weight: 500;
}

.event-footer {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.event-footer > p {
  color: rgba(255, 255, 255, 0.52);
}

/* Join */

.join {
  min-height: 820px;
  overflow: hidden;
}

.join::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, var(--blue) 0%, var(--blue) 50%, rgba(0, 22, 137, 0.75) 70%, rgba(0, 22, 137, 0.35) 100%),
    linear-gradient(0deg, var(--blue), transparent 50%);
}

.join-media {
  position: absolute;
  inset: 0 0 0 46%;
  z-index: -3;
}

.join-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  filter: saturate(0.88) contrast(1.05);
}

.join-shell {
  min-height: 560px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.join-copy {
  grid-column: 1 / 8;
}

.join-copy h2 em {
  color: rgba(255, 255, 255, 0.58);
}

.join-copy > p:not(.section-index) {
  max-width: 620px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.join-copy .button {
  margin-top: 36px;
}

.rehearsal-card {
  grid-column: 9 / 13;
  padding: 12px 28px;
  background: rgba(5, 10, 22, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.rehearsal-card > div {
  padding: 19px 0;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 12px;
  border-bottom: 1px solid var(--line-dark);
}

.rehearsal-card > div:last-child {
  border-bottom: 0;
}

.rehearsal-card dt {
  color: rgba(255, 255, 255, 0.48);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rehearsal-card dd {
  font-weight: 680;
  line-height: 1.35;
}

.rehearsal-card a {
  display: inline-block;
  overflow-wrap: anywhere;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

/* Association */

.association-intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.association-intro .section-heading {
  grid-column: 1 / 8;
}

.association-copy {
  grid-column: 8 / 13;
}

.association-copy p + p {
  margin-top: 22px;
}

.association-copy p:not(.lead) {
  color: var(--content-muted);
}

.association-photo {
  position: relative;
  width: min(100%, 820px);
  margin-top: clamp(70px, 9vw, 120px);
  margin-left: auto;
  overflow: hidden;
  background: var(--stage-soft);
}

.association-photo img {
  width: 100%;
  height: clamp(300px, 37vw, 500px);
  object-fit: cover;
  object-position: center 44%;
}

.association-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 13px;
  background: rgba(5, 10, 22, 0.82);
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.association-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 24px;
  align-items: start;
}

.board-panel,
.download-panel {
  border: 1px solid var(--content-line);
  background: var(--content-card);
}

.panel-kicker {
  min-height: 62px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--content-line);
  color: var(--content-accent);
  font-size: 0.69rem;
  font-weight: 800;
}

.panel-kicker small {
  color: var(--content-muted);
  font-family: inherit;
  font-size: 0.64rem;
  font-weight: 650;
}

.board-intro {
  padding: 22px;
  border-bottom: 1px solid var(--content-line);
  color: var(--content-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.board-list li {
  min-height: 76px;
  padding: 15px 22px;
  display: grid;
  grid-template-columns: 54px minmax(140px, 1fr) minmax(150px, 0.7fr);
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--content-line);
}

.board-list li:last-child {
  border-bottom: 0;
}

.board-list li > span {
  color: var(--content-label-accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.7rem;
}

.board-list strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.board-list em {
  justify-self: end;
  color: var(--content-muted);
  font-size: 0.86rem;
  font-style: normal;
}

.download-panel {
  padding-bottom: 14px;
}

.download-panel > a {
  min-height: 90px;
  margin: 0 18px;
  padding: 16px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--content-line);
}

.download-panel > a i {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--content-line);
  color: var(--content-accent);
  font-style: normal;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms var(--ease);
}

.download-panel > a:hover i {
  transform: translate(2px, -2px);
  background: var(--blue);
  color: var(--white);
}

.download-panel > a span {
  display: grid;
}

.download-panel > a strong {
  letter-spacing: -0.02em;
}

.download-panel > a small {
  margin-top: 2px;
  color: var(--content-muted);
  font-size: 0.73rem;
}

.download-note {
  margin: 16px 22px 8px;
  color: var(--content-muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

/* Network */

.network-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.network-copy {
  grid-column: 1 / 7;
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.network-copy h2 {
  font-size: clamp(2.8rem, 5.2vw, 5.5rem);
}

.network-copy > p:not(.section-index) {
  max-width: 560px;
  margin-top: 30px;
  color: var(--content-muted);
}

.network-copy > p:not(.section-index) + p {
  margin-top: 18px;
}

.partner-logo-grid {
  grid-column: 7 / 13;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.partner-logo-grid a {
  min-height: 174px;
  padding: 22px 18px 15px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 16px;
  border: 1px solid rgba(5, 10, 22, 0.12);
  background: #ffffff;
  color: #111827;
  box-shadow: 0 12px 30px rgba(5, 10, 22, 0.06);
  transition: transform 200ms var(--ease), border-color 200ms ease, box-shadow 200ms ease;
}

.partner-logo-grid a:hover {
  z-index: 1;
  transform: translateY(-3px);
  border-color: rgba(47, 97, 255, 0.55);
  box-shadow: 0 18px 42px rgba(5, 10, 22, 0.13);
}

.partner-logo-grid img {
  width: auto;
  max-width: 88%;
  height: 82px;
  object-fit: contain;
}

.partner-logo-grid span {
  align-self: end;
  text-align: center;
  font-size: 0.73rem;
  font-weight: 720;
  line-height: 1.3;
}

/* Contact */

.contact {
  overflow: hidden;
}

.contact-lead {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.contact-lead .section-index,
.contact-lead h2 {
  grid-column: 1 / 10;
}

.contact-lead > p:last-child {
  grid-column: 10 / 13;
  padding-bottom: 7px;
  color: rgba(255, 255, 255, 0.58);
}

.contact-visual {
  position: relative;
  width: min(100%, 820px);
  height: clamp(320px, 38vw, 480px);
  margin-top: clamp(68px, 8vw, 108px);
  margin-left: auto;
  overflow: hidden;
  background: var(--stage-soft);
}

.contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 48%, rgba(5, 10, 22, 0.48));
  pointer-events: none;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.contact-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(5, 10, 22, 0.7);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.contact-person {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  background: var(--stage-soft);
}

.contact-person-wide {
  grid-column: 1 / -1;
}

.contact-person-heading {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-no {
  flex: 0 0 auto;
  padding-top: 7px;
  color: var(--blue-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.68rem;
}

.contact-person-heading h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.08;
}

.contact-person-heading p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
}

.contact-methods {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.contact-person:not(.contact-person-wide) .contact-methods {
  grid-template-columns: 1.35fr 0.9fr 0.8fr;
}

.contact-methods a {
  min-width: 0;
  min-height: 92px;
  padding: 15px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 180ms ease;
}

.contact-methods a:hover {
  background: var(--blue);
}

.contact-methods small {
  color: rgba(255, 255, 255, 0.48);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-methods strong {
  overflow-wrap: anywhere;
  font-size: 0.83rem;
  letter-spacing: -0.01em;
}

.social-row {
  margin-top: 54px;
  padding-top: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  border-top: 1px solid var(--line-dark);
}

.social-copy p:not(.section-index) {
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.62);
}

.social-copy p + p {
  margin-top: 14px;
}

.social-copy a {
  color: var(--blue-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;
  gap: 14px 28px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 650;
}

.social-links a:hover {
  border-color: var(--blue-soft);
  color: var(--blue-soft);
}

/* Footer */

.site-footer {
  padding-block: 52px;
  border-top: 1px solid var(--line-dark);
  background: #03070f;
}

.footer-shell {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
}

.footer-brand span {
  display: grid;
}

.footer-brand strong {
  letter-spacing: -0.02em;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.footer-meta {
  display: flex;
  align-items: flex-end;
  gap: 48px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.footer-meta nav {
  display: flex;
  gap: 24px;
}

.footer-meta a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 5px;
}

.footer-meta a:hover {
  color: var(--white);
}

.footer-meta p {
  text-align: right;
}

/* Reveal animations are opt-in and progressively enhanced. */

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Legal pages */

.legal-page {
  background: var(--content-bg);
  color: var(--content-text);
}

.legal-page .site-header {
  position: sticky;
  background: var(--stage);
  color: var(--white);
  border-color: var(--line-dark);
}

.legal-page .site-nav {
  margin-left: auto;
}

.legal-page .site-nav > a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.8);
}

.legal-hero {
  padding: clamp(74px, 10vw, 130px) 0 62px;
  background: var(--stage);
  color: var(--white);
}

.legal-hero-shell {
  width: min(100% - 48px, 980px);
  margin-inline: auto;
}

.legal-content {
  width: min(100% - 48px, 76ch);
  margin-inline: auto;
}

.legal-hero .section-index {
  color: var(--blue-soft);
}

.legal-hero h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.94;
}

.legal-hero p:last-child {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.62);
}

.legal-content {
  padding-block: 76px 120px;
}

.legal-content section {
  padding: 0 0 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--content-line);
}

.legal-content section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 20px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.legal-content h3 {
  margin: 28px 0 12px;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
}

.legal-content p + p,
.legal-content ul + p,
.legal-content p + ul {
  margin-top: 16px;
}

.legal-content ul {
  padding-left: 1.25em;
  list-style: square;
}

.legal-content li + li {
  margin-top: 6px;
}

.legal-content a {
  color: var(--content-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-content address {
  font-style: normal;
}

.legal-note {
  padding: 18px 20px;
  border-left: 3px solid var(--blue-bright);
  background: rgba(47, 97, 255, 0.07);
  color: var(--content-muted);
  font-size: 0.92rem;
}

.legal-content code {
  padding: 0.1em 0.35em;
  border: 1px solid var(--content-line);
  background: var(--content-card);
  color: var(--content-text);
  font-size: 0.9em;
}

.not-found .legal-hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
}

.not-found .legal-hero p:last-child {
  margin-top: 32px;
}

/* Responsive */

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 40px, 1120px);
  }

  .site-nav {
    gap: clamp(10px, 1.5vw, 18px);
  }

  .theme-toggle {
    padding-inline: 10px;
  }

  .hero-copy {
    grid-column: 1 / 9;
  }

  .next-event {
    grid-column: 9 / 13;
    padding: 24px;
  }

  .association-intro .section-heading {
    grid-column: 1 / 7;
  }

  .association-copy {
    grid-column: 7 / 13;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .brand {
    position: relative;
    z-index: 102;
  }

  body.nav-open .site-header {
    border-color: transparent;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    padding: calc(var(--header-height) + clamp(40px, 12vh, 120px)) max(24px, calc((100vw - var(--shell)) / 2)) 52px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    background:
      linear-gradient(115deg, rgba(47, 97, 255, 0.12), transparent 45%),
      var(--stage);
    transition: visibility 0s linear 240ms, opacity 240ms ease, transform 240ms var(--ease);
  }

  body.nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }

  .no-js .site-header {
    position: relative;
    height: auto;
    background: var(--stage);
  }

  .no-js .header-shell {
    min-height: var(--header-height);
    height: auto;
    flex-wrap: wrap;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .no-js .site-nav {
    position: static;
    width: 100%;
    padding: 0 0 12px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px 20px;
    visibility: visible;
    opacity: 1;
    transform: none;
    overflow: visible;
    background: transparent;
  }

  .no-js .site-nav > a {
    min-height: 40px;
    border: 0;
    font-size: 0.82rem;
    letter-spacing: 0;
  }

  .no-js .site-nav .nav-cta {
    min-height: 40px;
    margin-top: 0;
    padding-inline: 12px;
  }

  .site-nav > a {
    min-height: 64px;
    border-bottom: 1px solid var(--line-dark);
    font-size: clamp(1.35rem, 5vw, 2.3rem);
    font-weight: 650;
    letter-spacing: -0.035em;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    min-height: 58px;
    margin-top: 24px;
    justify-content: center;
    border-color: var(--white);
    font-size: 1rem;
    letter-spacing: 0;
  }

  .site-nav .theme-toggle {
    width: 100%;
    min-height: 56px;
    margin-top: 14px;
    font-size: 0.78rem;
  }

  .theme-toggle [data-theme-label] {
    display: inline;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: 900px;
    padding-top: calc(var(--header-height) + 86px);
    grid-template-rows: auto auto;
    align-content: end;
  }

  .hero-copy {
    grid-column: 1 / 11;
    align-self: end;
  }

  .next-event {
    grid-column: 7 / 13;
    min-height: 290px;
  }

  .scroll-cue {
    display: none;
  }

  .orchestra .section-heading .section-index {
    grid-column: 1 / 3;
  }

  .orchestra .section-heading h2 {
    grid-column: 3 / 13;
  }

  .orchestra-story {
    grid-column: 1 / 7;
  }

  .orchestra-image,
  .repertoire {
    grid-column: 7 / 13;
  }

  .heading-split > div {
    grid-column: 1 / 9;
  }

  .heading-split > p {
    grid-column: 9 / 13;
  }

  .event-card {
    grid-template-columns: 2.4fr 6fr 2fr;
  }

  .join-copy {
    grid-column: 1 / 8;
  }

  .rehearsal-card {
    grid-column: 8 / 13;
  }

  .association-intro .section-heading,
  .association-copy {
    grid-column: 1 / 13;
  }

  .association-copy {
    margin-top: 46px;
    max-width: 780px;
  }

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

  .download-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 0;
  }

  .download-panel .panel-kicker,
  .download-note {
    grid-column: 1 / -1;
  }

  .download-panel > a {
    margin: 0;
    padding: 18px;
    border-right: 1px solid var(--content-line);
    border-bottom: 0;
  }

  .download-panel > a:nth-of-type(3) {
    border-right: 0;
  }

  .download-note {
    margin: 0;
    padding: 14px 18px;
    border-top: 1px solid var(--content-line);
  }

  .network-copy {
    grid-column: 1 / 7;
  }

  .partner-logo-grid {
    grid-column: 7 / 13;
  }

  .contact-lead h2,
  .contact-lead .section-index {
    grid-column: 1 / 9;
  }

  .contact-lead > p:last-child {
    grid-column: 9 / 13;
  }

  .contact-people {
    grid-template-columns: 1fr;
  }

  .contact-person-wide {
    grid-column: auto;
  }
}

@media (max-width: 880px) {
  .orchestra .section-heading,
  .orchestra-grid,
  .join-shell,
  .network-grid,
  .contact-lead {
    display: block;
  }

  .orchestra .section-heading {
    margin-bottom: 60px;
  }

  .orchestra-story {
    max-width: 760px;
    padding-right: 0;
  }

  .orchestra-image {
    margin-top: 52px;
  }

  .repertoire {
    margin-top: 24px;
  }

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

  .performance-gallery-main {
    grid-column: 1 / -1;
  }

  .performance-gallery figure {
    min-height: 320px;
  }

  .join {
    min-height: 0;
  }

  .join-media {
    inset: 0 0 auto;
    height: clamp(280px, 46vw, 380px);
  }

  .join-media img {
    object-position: center 30%;
  }

  .join::after {
    background: linear-gradient(180deg, rgba(0, 22, 137, 0.18) 0, rgba(0, 22, 137, 0.78) 250px, var(--blue) 400px, var(--blue) 100%);
  }

  .join-shell {
    min-height: 0;
  }

  .join-copy {
    padding-top: clamp(210px, 38vw, 310px);
  }

  .rehearsal-card {
    max-width: 640px;
    margin-top: 44px;
  }

  .network-copy {
    position: static;
  }

  .partner-logo-grid {
    margin-top: 52px;
  }

  .contact-lead > p:last-child {
    max-width: 560px;
    margin-top: 26px;
    padding: 0;
  }

  .social-row {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-shell,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    gap: 22px;
  }

  .footer-meta p {
    text-align: left;
  }
}

@media (max-width: 740px) {
  :root {
    --shell: calc(100% - 32px);
    --header-height: 64px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 12px);
  }

  body {
    font-size: 16px;
  }

  .section {
    padding-block: 88px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .brand-copy span {
    font-size: 0.69rem;
  }

  .hero-shell {
    min-height: auto;
    padding-top: calc(var(--header-height) + 95px);
    padding-bottom: 56px;
    display: block;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 10, 22, 0.99) 0%, rgba(5, 10, 22, 0.86) 56%, rgba(5, 10, 22, 0.42) 100%),
      linear-gradient(90deg, rgba(5, 10, 22, 0.78), transparent);
  }

  .hero-copy {
    padding: 0;
  }

  .eyebrow {
    margin-bottom: 24px;
    align-items: flex-start;
    line-height: 1.45;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15.1vw, 5.5rem);
  }

  .hero-intro {
    margin-top: 24px;
  }

  .next-event {
    min-height: 280px;
    margin-top: 50px;
  }

  .hero-credit {
    top: calc(var(--header-height) + 14px);
    right: 10px;
    bottom: auto;
  }

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

  .fact {
    min-height: 128px;
    padding: 22px 20px;
    border-bottom: 1px solid var(--line-dark);
  }

  .fact:nth-child(2n) {
    border-right: 1px solid var(--line-dark);
  }

  .fact:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .orchestra .section-heading,
  .orchestra-grid,
  .welcome-shell,
  .heading-split,
  .join-shell,
  .association-intro,
  .network-grid,
  .contact-lead {
    display: block;
  }

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

  .orchestra-story {
    padding-right: 0;
  }

  .orchestra-image {
    margin-top: 50px;
  }

  .image-frame::before {
    inset: 10px -8px -10px 8px;
  }

  .repertoire {
    margin-top: 24px;
  }

  .welcome-shell > .section-index {
    margin: 0 0 24px;
  }

  .welcome-languages {
    line-height: 1.7;
  }

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

  .performance-gallery-main {
    grid-column: 1 / -1;
  }

  .performance-gallery figure {
    min-height: 320px;
  }

  .heading-split > p {
    max-width: 520px;
    margin-top: 26px;
    padding: 0;
  }

  .event-card {
    min-height: 0;
    padding-block: 36px;
    display: grid;
    grid-template-columns: 135px 1fr;
    gap: 22px;
    align-items: start;
  }

  .event-card:hover {
    padding-inline: 12px;
  }

  .event-date strong {
    font-size: 4.8rem;
  }

  .event-tag {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }

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

  .association-copy {
    margin-top: 38px;
  }

  .association-photo img {
    height: 360px;
  }

  .association-grid {
    margin-top: 58px;
  }

  .board-list li {
    grid-template-columns: 36px 1fr;
    gap: 8px 12px;
  }

  .board-list em {
    grid-column: 2;
    justify-self: start;
  }

  .panel-kicker {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .download-panel {
    display: block;
  }

  .download-panel > a {
    margin: 0 18px;
    padding-inline: 4px;
    border-right: 0;
    border-bottom: 1px solid var(--content-line);
  }

  .download-note {
    margin: 0;
    padding: 16px 22px;
  }

  .network-copy {
    position: static;
  }

  .partner-logo-grid {
    margin-top: 52px;
  }

  .contact-lead > p:last-child {
    max-width: 520px;
    margin-top: 26px;
    padding: 0;
  }

  .contact-visual {
    margin-top: 58px;
  }

  .contact-methods,
  .contact-person:not(.contact-person-wide) .contact-methods {
    grid-template-columns: 1fr;
  }

  .social-row {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-shell,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-meta {
    gap: 22px;
  }

  .footer-meta p {
    text-align: left;
  }

  .legal-hero-shell,
  .legal-content {
    width: var(--shell);
  }
}

@media (max-width: 500px) {
  .brand-copy span {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .next-event {
    padding: 22px;
  }

  .fact strong {
    font-size: 2.25rem;
  }

  .fact {
    padding-inline: 16px;
  }

  .fact span {
    font-size: 0.7rem;
    line-height: 1.45;
    letter-spacing: 0.05em;
  }

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

  .event-tag {
    grid-column: 1;
  }

  .event-date strong {
    font-size: 4.25rem;
  }

  .rehearsal-card {
    padding-inline: 20px;
  }

  .rehearsal-card > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .performance-gallery {
    grid-template-columns: 1fr;
  }

  .performance-gallery-main {
    grid-column: auto;
  }

  .performance-gallery figure {
    min-height: 280px;
  }

  .partner-logo-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .partner-logo-grid a {
    min-height: 112px;
    padding: 15px 18px;
    grid-template-columns: minmax(104px, 0.8fr) 1fr;
    grid-template-rows: 1fr;
    justify-items: start;
    gap: 18px;
  }

  .partner-logo-grid img {
    max-width: 100%;
    height: 64px;
    justify-self: center;
  }

  .partner-logo-grid span {
    align-self: center;
    text-align: left;
  }

  .association-photo img,
  .contact-visual {
    height: 300px;
  }

  .contact-person {
    padding: 20px;
  }

  .contact-person-heading {
    gap: 12px;
  }

  .contact-methods,
  .contact-person:not(.contact-person-wide) .contact-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-methods a {
    min-height: 68px;
    padding: 11px 12px;
  }

  .contact-methods a:first-child {
    grid-column: 1 / -1;
  }

  .contact-methods small {
    font-size: 0.68rem;
  }

  .footer-brand small {
    display: none;
  }
}

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

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

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@page {
  margin: 16mm;
}

@media print {

  :root,
  :root[data-theme="dark"] {
    --line-dark: rgba(0, 0, 0, 0.35);
    --line-light: rgba(0, 0, 0, 0.35);
    --content-bg: #ffffff;
    --content-bg-alt: #ffffff;
    --content-card: #ffffff;
    --content-text: #000000;
    --content-muted: #222222;
    --content-line: rgba(0, 0, 0, 0.35);
    --content-accent: #001689;
    --content-label-accent: #001689;
    color-scheme: light;
  }

  .site-header,
  .skip-link,
  .hero-media,
  .hero-shade,
  .score-lines,
  .hero-credit,
  .scroll-cue,
  .join-media,
  .performance-gallery,
  .association-photo,
  .contact-visual,
  .site-footer {
    display: none !important;
  }

  html,
  body {
    scroll-behavior: auto !important;
  }

  body {
    min-width: 0;
    overflow: visible;
    background: #fff !important;
    color: #000 !important;
    font-size: 11pt;
    line-height: 1.45;
  }

  body *,
  body *::before,
  body *::after {
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    color: #000 !important;
    text-shadow: none !important;
  }

  :focus-visible {
    outline: 0 !important;
    box-shadow: none !important;
  }

  .reveal-ready [data-reveal],
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero,
  .hero-shell {
    min-height: 0;
    overflow: visible;
  }

  .hero-shell {
    padding-block: 24px 32px;
    display: block;
  }

  .hero-copy,
  .join-copy {
    padding: 0 !important;
  }

  .hero h1,
  .section-heading h2,
  .join-copy h2,
  .network-copy h2,
  .contact-lead h2,
  .legal-hero h1 {
    font-size: 30pt;
    line-height: 1;
  }

  .hero-intro,
  .join-copy > p:not(.section-index) {
    max-width: none;
    margin-top: 12px;
  }

  .hero-actions,
  .next-event-arrow {
    display: none !important;
  }

  .next-event {
    min-height: 0;
    margin-top: 24px;
    padding: 18px;
    display: block;
    border: 1px solid var(--line-dark);
  }

  .next-event-date {
    margin: 14px 0;
  }

  .section,
  .welcome {
    padding-block: 30px;
  }

  .orchestra .section-heading,
  .orchestra-grid,
  .welcome-shell,
  .heading-split,
  .join-shell,
  .association-intro,
  .network-grid,
  .contact-lead,
  .social-row {
    display: block;
  }

  .network-copy {
    position: static;
  }

  .orchestra-image,
  .association-copy,
  .partner-logo-grid,
  .contact-lead > p:last-child,
  .rehearsal-card,
  .social-links {
    margin-top: 20px;
  }

  .contact-people {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: 0;
    padding-block: 12px;
  }

  .event-card {
    min-height: 0;
    padding-block: 18px;
  }

  .contact-methods a {
    min-height: 0;
    padding-block: 8px;
  }

  .legal-hero {
    padding-block: 24px;
  }

  .not-found .legal-hero {
    min-height: 0;
  }

  .legal-content {
    padding-block: 30px;
  }

  article,
  figure,
  .event-card,
  .event-empty,
  .contact-person,
  .board-panel,
  .download-panel {
    break-inside: avoid-page;
  }

  a {
    color: #000 !important;
    text-decoration: underline;
  }
}
