/* ============================================================
   PODIUM — conducted operations
   Ivory #F5F1E8 · Ink #1A1A22 · Crimson #A6252F · Gold #B9974E · Grey #9C9CA6
   Bodoni Moda (display) · Epilogue (body) · Fira Mono (rehearsal marks)
   ============================================================ */

:root {
  --ivory: #F5F1E8;
  --ivory-deep: #EDE7D9;
  --ink: #1A1A22;
  --ink-soft: #3A3A44;
  --crimson: #A6252F;
  --crimson-deep: #8A1D26;
  --gold: #B9974E;
  --gold-soft: #CBB27A;
  --grey: #9C9CA6;
  --grey-text: #6E6E79;  /* grey labels that carry text on light grounds */
  --grey-line: #C9C3B4;

  --display: "Bodoni Moda", "Didot", serif;
  --body: "Epilogue", system-ui, sans-serif;
  --mono: "Fira Mono", ui-monospace, monospace;

  --wrap: 1160px;
  --wrap-narrow: 780px;

  --ease-baton: cubic-bezier(.22, .9, .28, 1);
  --ease-lift: cubic-bezier(.16, 1, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
[id] { scroll-margin-top: 84px; } /* clear the sticky header on anchor jumps */

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 340;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* faint paper grain */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

::selection { background: var(--crimson); color: var(--ivory); }

.mono { font-family: var(--mono); font-size: .72em; letter-spacing: .08em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 3px;
  border-radius: 1px;
}

.skip {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: var(--ivory);
  padding: .55em 1em; z-index: 100;
  font-family: var(--mono); font-size: .8rem; text-decoration: none;
  transition: top .2s;
}
.skip:focus-visible { top: 12px; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 480;
  line-height: 1.02;
  letter-spacing: -.01em;
  font-optical-sizing: auto;
}
h1 em, h2 em { font-style: italic; font-weight: 420; }

/* ---------- reveals (JS-gated so a no-JS visit sees everything) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease-lift), transform .8s var(--ease-lift); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.r1 { transition-delay: .08s; }
.js .reveal.r2 { transition-delay: .16s; }
.js .reveal.r3 { transition-delay: .24s; }
.js .reveal.r4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--mono); font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; text-decoration: none;
  padding: .95em 1.6em; border: 1px solid var(--ink);
  color: var(--ink); background: transparent;
  cursor: pointer; white-space: nowrap;
  transition: background .25s, color .25s, border-color .25s;
}
.btn-primary { background: var(--crimson); border-color: var(--crimson); color: var(--ivory); }
.btn-primary:hover { background: var(--crimson-deep); border-color: var(--crimson-deep); }
.btn-ghost:hover { background: var(--ink); color: var(--ivory); }
.btn-small { padding: .7em 1.2em; font-size: .72rem; }
.btn .arrow { font-family: var(--body); }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--ivory) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-line);
}
.head-inner {
  max-width: var(--wrap); margin: 0 auto;
  padding: 14px clamp(20px, 4vw, 48px);
  display: flex; align-items: center; gap: 32px;
}
.wordmark {
  font-family: var(--display); font-weight: 700;
  font-size: 1.5rem; letter-spacing: .16em;
  text-decoration: none;
}
.site-nav { display: flex; gap: 26px; margin-left: auto; }
.site-nav a {
  font-family: var(--mono); font-size: .74rem; letter-spacing: .09em;
  text-transform: uppercase; text-decoration: none;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.site-nav a:hover { color: var(--crimson); border-color: var(--crimson); }

/* ---------- hero ---------- */
.hero { padding: clamp(48px, 8vh, 96px) clamp(20px, 4vw, 48px) clamp(56px, 9vh, 110px); }
.hero-frame {
  max-width: var(--wrap); margin: 0 auto;
  border: 1px solid var(--ink);
  outline: 1px solid var(--grey-line);
  outline-offset: 6px;
  padding: clamp(40px, 7vh, 90px) clamp(24px, 5vw, 90px);
  text-align: center;
  position: relative;
}
.hero-eyebrow {
  display: flex; justify-content: center; align-items: center; gap: 18px;
  font-family: var(--mono); font-size: .78rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: clamp(28px, 5vh, 52px);
}
.rule-dot { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex: none; }
.hero h1 {
  font-size: clamp(3.2rem, 9.5vw, 8.2rem);
  font-weight: 560;
  margin-bottom: clamp(24px, 4vh, 40px);
}
.hero h1 em { color: var(--crimson); }
.hero-sub {
  max-width: 620px; margin: 0 auto clamp(30px, 5vh, 48px);
  font-size: 1.11rem; color: var(--ink-soft);
}
.hero-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.hero-foot {
  display: flex; justify-content: center; gap: clamp(20px, 4vw, 56px); flex-wrap: wrap;
  margin-top: clamp(36px, 6vh, 64px);
  padding-top: 22px;
  border-top: 1px solid var(--grey-line);
  color: var(--grey-text);
}
.hero-foot .mono { font-size: .7rem; letter-spacing: .18em; }

/* ---------- section furniture ---------- */
.tempo-mark {
  font-family: var(--mono);
  color: var(--gold);
  font-size: .78rem; letter-spacing: .26em;
  margin-bottom: 18px;
}
.tempo-mark .mono { font-size: 1em; }
.tempo-mark .tempo-note { color: var(--ink); vertical-align: -2px; margin: 0 2px; }
.lede { max-width: 640px; color: var(--ink-soft); font-size: 1.1rem; margin-top: 22px; }

section h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }

.engraved-rule {
  height: 9px; margin-bottom: clamp(40px, 7vh, 72px);
  position: relative;
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
}
.engraved-rule::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 9px; height: 9px; background: var(--ivory);
  border: 1px solid var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ---------- overture / score ---------- */
.overture { padding: clamp(64px, 11vh, 130px) 0; }
.overture h2 { margin-top: 4px; }

.score-shell {
  margin-top: clamp(36px, 6vh, 56px);
  border: 1px solid var(--ink);
  background: #FBF8F1;
  box-shadow: 8px 8px 0 rgba(26, 26, 34, .06);
}
.score-toolbar {
  display: flex; align-items: center; gap: 22px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--grey-line);
  flex-wrap: wrap;
}
.play-btn {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--mono); font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--crimson); color: var(--ivory);
  border: none; padding: .85em 1.5em; cursor: pointer;
  transition: background .25s;
}
.play-btn:hover { background: var(--crimson-deep); }
.play-btn .ic-stop { display: none; }
.play-btn[aria-pressed="true"] .ic-play { display: none; }
.play-btn[aria-pressed="true"] .ic-stop { display: block; }
.play-btn[aria-pressed="true"] .pb-label::after { content: ""; }

.sound-toggle { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; position: relative; }
.sound-toggle input { position: absolute; opacity: 0; width: 40px; height: 22px; cursor: pointer; }
.st-track {
  width: 40px; height: 22px; border: 1px solid var(--ink);
  border-radius: 11px; position: relative; display: inline-block;
  transition: background .25s;
}
.st-knob {
  position: absolute; top: 3px; left: 3px; width: 14px; height: 14px;
  border-radius: 50%; background: var(--ink);
  transition: transform .25s var(--ease-lift), background .25s;
}
.sound-toggle input:checked + .st-track { background: var(--ink); }
.sound-toggle input:checked + .st-track .st-knob { transform: translateX(18px); background: var(--gold-soft); }
.sound-toggle input:focus-visible + .st-track { outline: 2px solid var(--crimson); outline-offset: 3px; }
.st-label { font-family: var(--mono); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

.score-caption {
  margin-left: auto;
  font-size: .78rem; letter-spacing: .06em;
  color: var(--ink-soft);
  min-height: 1.4em;
}
.score-caption strong { color: var(--crimson); font-weight: 500; }

.score-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.score-mount { min-width: 860px; padding: clamp(18px, 3vw, 36px) clamp(14px, 2.5vw, 30px); }
.score-mount svg { display: block; width: 100%; height: auto; }

/* score SVG element styles */
.sv-staffline { stroke: #A9A294; stroke-width: 1; }
.sv-barline { stroke: var(--ink-soft); stroke-width: 1.1; }
.sv-finalbar-thin { stroke: var(--ink); stroke-width: 1.2; }
.sv-finalbar-thick { fill: var(--ink); }
.sv-brace { stroke: var(--ink); fill: none; stroke-width: 1.6; }
.sv-label { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; fill: var(--ink); transition: fill .25s; }
.sv-label.sounding { fill: var(--crimson); }
.sv-timbre { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; fill: var(--grey); }
.sv-barnum { font-family: var(--mono); font-size: 9px; fill: var(--grey); }
.sv-timesig { font-family: var(--display); font-weight: 600; font-size: 19px; fill: var(--ink); }

.sv-note { cursor: pointer; }
.sv-note .nh { fill: var(--ink); transition: fill .3s; }
.sv-note .nh-open { fill: none; stroke: var(--ink); stroke-width: 1.6; transition: stroke .3s; }
.sv-note .stem, .sv-note .flag { stroke: var(--ink); transition: stroke .3s; fill: none; }
.sv-note .ledger { stroke: #A9A294; stroke-width: 1; }
.sv-note .halo { fill: var(--crimson); opacity: 0; transform-box: fill-box; transform-origin: center; }
.sv-note.lit .nh { fill: var(--crimson); }
.sv-note.lit .nh-open { stroke: var(--crimson); }
.sv-note.lit .stem, .sv-note.lit .flag { stroke: var(--crimson); }
.sv-note.lit .halo { animation: halo-pop .8s var(--ease-lift) forwards; }
@keyframes halo-pop {
  0% { opacity: .45; transform: scale(.4); }
  100% { opacity: 0; transform: scale(2.6); }
}
@media (prefers-reduced-motion: reduce) {
  .sv-note.lit .halo { animation: none; opacity: 0; }
}
.sv-note:hover .nh, .sv-note:focus-visible .nh { fill: var(--crimson); }
.sv-note:hover .nh-open, .sv-note:focus-visible .nh-open { stroke: var(--crimson); }
.sv-note:hover .stem, .sv-note:hover .flag,
.sv-note:focus-visible .stem, .sv-note:focus-visible .flag { stroke: var(--crimson); }

.sv-fermata { fill: none; stroke: var(--gold); stroke-width: 1.8; }
.sv-fermata-dot { fill: var(--gold); }
.sv-fermata-label { font-family: var(--mono); font-size: 9px; letter-spacing: .08em; fill: var(--gold); }
.sv-approved {
  fill: none; stroke: var(--gold); stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 16; stroke-dashoffset: 16;
}
.sv-approved.shown { animation: tick-draw .5s var(--ease-lift) forwards; }
@keyframes tick-draw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .sv-approved.shown { animation: none; stroke-dashoffset: 0; }
}

.sv-baton { pointer-events: none; }
.sv-baton line { stroke: var(--crimson); stroke-width: 1.6; }
.sv-baton circle { fill: var(--crimson); }

.score-fallback {
  padding: 18px 22px;
  border-top: 1px solid var(--grey-line);
  font-size: .92rem; color: var(--ink-soft);
}
.score-fallback ol { padding-left: 1.3em; margin-top: .5em; display: grid; gap: .25em; }
/* without JS the score cannot be drawn or played: hide the dead controls, keep the readable score */
:root:not(.js) .score-toolbar, :root:not(.js) .score-scroll { display: none; }

/* once JS builds the score, the fallback list becomes SR-only */
.js .score-fallback {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0;
}

.score-legend {
  list-style: none;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px 26px;
  padding: 16px 22px 18px;
  border-top: 1px solid var(--grey-line);
}
.score-legend li { display: flex; align-items: center; gap: 12px; font-size: .84rem; color: var(--ink-soft); }
.score-legend svg { flex: none; color: var(--ink); }

/* ---------- programme note ---------- */
.note-block { padding: clamp(56px, 10vh, 120px) 0 clamp(64px, 11vh, 130px); }
.note-cols {
  columns: 2; column-gap: 48px;
  margin-top: 30px;
}
.note-cols p { break-inside: avoid; margin-bottom: 1.2em; }
.note-cols p:first-child::first-letter {
  font-family: var(--display);
  font-size: 3.4em; font-weight: 560;
  float: left; line-height: .82;
  padding: .07em .12em 0 0;
  color: var(--crimson);
}
.pull { margin-top: clamp(36px, 6vh, 56px); border-top: 1px solid var(--grey-line); border-bottom: 1px solid var(--grey-line); padding: clamp(28px, 5vh, 44px) 0; text-align: center; }
.pull blockquote {
  font-family: var(--display); font-style: italic; font-weight: 440;
  font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.25;
  max-width: 720px; margin: 0 auto 16px;
}
.pull figcaption { color: var(--grey-text); font-size: .72rem; letter-spacing: .16em; }

/* ---------- movements ---------- */
.movements { padding: clamp(64px, 11vh, 130px) 0; background: var(--ivory-deep); border-top: 1px solid var(--grey-line); border-bottom: 1px solid var(--grey-line); }
.movement-list { margin-top: clamp(40px, 6vh, 64px); display: grid; gap: 0; }
.movement {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px 56px;
  padding: clamp(30px, 5vh, 48px) 0;
  border-top: 1px solid var(--grey-line);
}
.movement:last-child { border-bottom: 1px solid var(--grey-line); }
.mv-head { grid-column: 1 / -1; display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap; }
.mv-num { font-family: var(--display); font-size: 1.7rem; color: var(--gold); font-weight: 560; min-width: 1.6em; }
.mv-head h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.mv-tempo { font-weight: 420; color: var(--crimson); font-size: .8em; }
.mv-dur { margin-left: auto; color: var(--grey-text); font-size: .72rem; letter-spacing: .14em; }
.movement > p { color: var(--ink-soft); }
.mv-deliv { list-style: none; display: grid; gap: 10px; align-content: start; }
.mv-deliv li { padding-left: 22px; position: relative; font-size: .96rem; }
.mv-deliv li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 8px; height: 8px; border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* rehearsal-mark timeline */
.rehearsal-line {
  margin-top: clamp(48px, 8vh, 80px);
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  position: relative;
  padding-top: 34px;
}
.rehearsal-line::before {
  content: ""; position: absolute; top: 15px; left: 16px; right: 16px;
  border-top: 1px solid var(--grey-line);
}
.rl-item { position: relative; }
.rl-mark {
  position: absolute; top: -34px; left: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1.5px solid var(--ink);
  background: var(--ivory);
  font-size: .85rem; font-weight: 500;
}
.rl-item h4 { font-family: var(--display); font-size: 1.15rem; font-weight: 560; margin-bottom: 6px; }
.rl-item p { font-size: .88rem; color: var(--ink-soft); line-height: 1.55; }

/* ---------- programmes ---------- */
.programmes { padding: clamp(64px, 11vh, 130px) 0; }
.programme-grid {
  margin-top: clamp(40px, 6vh, 64px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.programme {
  border: 1px solid var(--ink);
  outline: 1px solid var(--grey-line);
  outline-offset: 4px;
  padding: clamp(22px, 3vw, 34px);
  background: #FBF8F1;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease-lift), box-shadow .35s var(--ease-lift);
}
.programme:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(26,26,34,.09); }
.pg-label { color: var(--gold); font-size: .68rem; letter-spacing: .22em; margin-bottom: 14px; }
.programme h3 { font-size: 1.65rem; font-weight: 560; }
.pg-sub { font-style: italic; font-family: var(--display); color: var(--ink-soft); margin: 6px 0 20px; font-size: 1.02rem; }
.pg-movements { list-style: none; counter-reset: mv; border-top: 1px solid var(--grey-line); margin-bottom: 22px; }
.pg-movements li {
  counter-increment: mv;
  display: flex; justify-content: space-between; align-items: baseline; gap: 14px;
  padding: 9px 0; border-bottom: 1px solid var(--grey-line);
  font-size: .88rem;
}
.pg-movements li::before {
  content: counter(mv, upper-roman) ".";
  font-family: var(--display); color: var(--gold); min-width: 2em; font-size: .95em;
}
.pg-movements li span:first-of-type { flex: 1; }
.pg-movements .mono { color: var(--grey-text); font-size: .68rem; white-space: nowrap; }
.pg-encore { margin-top: auto; display: grid; gap: 8px; }
.pg-encore div { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.pg-encore dt { font-size: .82rem; color: var(--ink-soft); }
.pg-encore dd { font-family: var(--display); font-weight: 620; font-size: 1.25rem; color: var(--crimson); white-space: nowrap; }

/* ---------- sections (team) ---------- */
.sections { padding: clamp(64px, 11vh, 130px) 0; background: var(--ink); color: var(--ivory); }
.sections .tempo-mark { color: var(--gold-soft); }
.sections .lede { color: #C7C7CF; }
.section-grid {
  margin-top: clamp(40px, 6vh, 64px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: #34343E;
  border: 1px solid #34343E;
}
.chair { background: var(--ink); padding: clamp(22px, 3vw, 32px); }
.chair header { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.chair h3 { font-size: 1.45rem; font-weight: 560; }
.chair-count { color: var(--gold-soft); font-size: .64rem; letter-spacing: .18em; }
.chair-role { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); margin-bottom: 14px; }
.chair p:last-child { font-size: .92rem; color: #C7C7CF; line-height: 1.6; }
.podium-chair { grid-column: 1 / -1; background: #221F26; border-top: 1px solid var(--gold); }
.podium-chair h3 { color: var(--gold-soft); }
.podium-chair p:last-child { max-width: 640px; }

/* ---------- tickets ---------- */
.tickets { padding: clamp(64px, 11vh, 130px) 0; }
.ticket-row {
  margin-top: clamp(40px, 6vh, 64px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
}
.ticket {
  position: relative;
  border: 1px solid var(--ink);
  background: #FBF8F1;
  padding: clamp(24px, 3vw, 34px);
  display: flex; flex-direction: column;
  /* ticket punch holes */
  --punch: radial-gradient(circle 9px at var(--px) var(--py), var(--ivory) 98%, transparent);
}
.ticket::before, .ticket::after {
  content: ""; position: absolute; width: 18px; height: 18px;
  background: var(--ivory); border: 1px solid var(--ink);
  border-radius: 50%; top: 50%;
}
.ticket::before { left: -10px; transform: translateY(-50%); clip-path: inset(0 0 0 45%); border-left: none; }
.ticket::after { right: -10px; transform: translateY(-50%); clip-path: inset(0 45% 0 0); border-right: none; }
.ticket-featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 10px 10px 0 rgba(185, 151, 78, .12); }
.tk-flag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  font-size: .62rem; letter-spacing: .2em; padding: 4px 12px;
}
.tk-head { border-bottom: 1px dashed var(--grey-line); padding-bottom: 18px; margin-bottom: 18px; }
.tk-kind { color: var(--grey-text); font-size: .7rem; letter-spacing: .22em; margin-bottom: 10px; }
.tk-price { font-family: var(--display); font-size: 2.3rem; font-weight: 620; line-height: 1; }
.tk-per { font-family: var(--body); font-size: .95rem; font-weight: 340; color: var(--ink-soft); }
.ticket ul { list-style: none; display: grid; gap: 10px; margin-bottom: 24px; }
.ticket ul li { padding-left: 20px; position: relative; font-size: .93rem; }
.ticket ul li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; border: 1px solid var(--crimson); transform: rotate(45deg);
}
.tk-seat { margin-top: auto; color: var(--grey-text); font-size: .64rem; letter-spacing: .16em; border-top: 1px dashed var(--grey-line); padding-top: 14px; margin-bottom: 18px; }
.tk-btn { justify-content: center; }
.tk-note { margin-top: clamp(28px, 5vh, 44px); text-align: center; color: var(--ink-soft); font-style: italic; font-family: var(--display); font-size: 1.08rem; }

/* ---------- rehearsal / CTA ---------- */
.rehearsal { padding: clamp(64px, 11vh, 130px) 0 clamp(80px, 12vh, 150px); background: var(--ivory-deep); border-top: 1px solid var(--grey-line); }
.rehearsal-card {
  border: 1px solid var(--ink);
  background: #FBF8F1;
  padding: clamp(30px, 5vw, 56px);
}
.rehearsal-card h2 { margin-bottom: 8px; }
.rh-form { margin-top: clamp(28px, 4vh, 40px); display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; }
.field { display: grid; gap: 8px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-family: var(--mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--grey-line);
  padding: .8em .9em; border-radius: 0;
  transition: border-color .2s;
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-soft); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--crimson); outline: none; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--crimson); outline-offset: 2px; }
.rh-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.rh-small { font-size: .84rem; color: var(--grey-text); max-width: 340px; }
.rh-confirm {
  margin-top: 26px; padding: 18px 22px;
  border: 1px solid var(--gold); background: rgba(185, 151, 78, .08);
  font-size: .98rem;
}

/* ---------- footer ---------- */
.site-foot { background: var(--ink); color: #C7C7CF; padding: clamp(48px, 8vh, 80px) 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 40px; align-items: start; }
.foot-wordmark { font-family: var(--display); font-weight: 700; font-size: 1.7rem; letter-spacing: .16em; color: var(--ivory); }
.foot-tag { font-size: .9rem; margin-top: 6px; }
.foot-nav { display: grid; gap: 10px; }
.foot-nav a { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; color: #C7C7CF; }
.foot-nav a:hover { color: var(--gold-soft); }
.foot-contact { text-align: right; display: grid; gap: 8px; }
.foot-contact .mono { font-size: .7rem; letter-spacing: .14em; color: var(--grey); }
.foot-contact a { color: var(--grey); text-decoration: none; }
.foot-contact a:hover { color: var(--gold-soft); }
.foot-colophon {
  margin-top: clamp(36px, 6vh, 56px);
  padding-top: 24px; border-top: 1px solid #34343E;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: .8rem; color: var(--grey);
}
.credit a { color: var(--grey); }
.credit a:hover { color: var(--gold-soft); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .programme-grid { grid-template-columns: 1fr 1fr; }
  .programme:last-child { grid-column: 1 / -1; }
  .section-grid { grid-template-columns: 1fr 1fr; }
  .rehearsal-line { grid-template-columns: repeat(3, 1fr); gap: 40px 28px; }
  .rehearsal-line::before { display: none; }
  .rl-mark { position: static; margin-bottom: 12px; }
  .rl-item { display: flex; flex-direction: column; }
  .rehearsal-line { padding-top: 0; }
  .ticket-row { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 760px) {
  .site-nav { display: none; }
  .head-inner { justify-content: space-between; }
  .hero { padding-bottom: 40px; }
  .hero-frame { outline-offset: 4px; padding-bottom: 30px; }
  .hero-eyebrow { font-size: .62rem; letter-spacing: .18em; gap: 10px; }
  .hero h1 { font-size: clamp(2.9rem, 13.5vw, 4.4rem); }
  .hero-foot { gap: 12px 20px; margin-top: 30px; }
  .overture { padding-top: 48px; }
  .note-cols { columns: 1; }
  .movement { grid-template-columns: 1fr; }
  .mv-dur { margin-left: 0; width: 100%; }
  .rehearsal-line { grid-template-columns: 1fr; gap: 32px; }
  .programme-grid { grid-template-columns: 1fr; }
  .programme:last-child { grid-column: auto; }
  .section-grid { grid-template-columns: 1fr; }
  .rh-form { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-contact { text-align: left; }
  .foot-colophon { flex-direction: column; gap: 10px; }
  .score-toolbar { gap: 14px; }
  .score-caption { margin-left: 0; width: 100%; order: 3; }
}
