:root {
  --black: #08090b;
  --ink: #111217;
  --ivory: #f5f0e7;
  --paper: #fbf8f2;
  --white: #fff;
  --royal: #173b8f;
  --royal-bright: #2455c3;
  --royal-dark: #081b49;
  --gold: #c9a45c;
  --gold-light: #e0c88f;
  --muted: #6f6b64;
  --line: rgba(17, 18, 23, .16);
  --line-light: rgba(255,255,255,.18);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page: min(1480px, calc(100vw - 64px));
  --gutter: clamp(22px, 4vw, 72px);
  --section: clamp(88px, 10vw, 168px);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--royal); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--black);
  background: var(--gold-light);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  padding: 0 var(--gutter);
  color: var(--white);
  border-bottom: 1px solid rgba(201,164,92,.42);
  transition: background .28s ease, color .28s ease, min-height .28s ease, border-color .28s ease;
}
.site-header.is-scrolled,
.site-header.header-solid {
  min-height: 68px;
  color: var(--white);
  background: rgba(8,9,11,.94);
  backdrop-filter: blur(18px);
  border-color: rgba(201,164,92,.34);
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.8vw, 1.52rem);
  letter-spacing: .01em;
  white-space: nowrap;
}
.brand::after { content: ""; width: 34px; height: 1px; background: var(--gold); }
.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.7vw, 30px);
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.site-nav a { position: relative; padding: 27px 0 24px; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 1px;
  background: var(--gold);
  transition: right .28s var(--ease);
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { right: 0; }
.site-nav .press-link { color: var(--gold-light); }
.menu-button {
  display: none;
  justify-self: end;
  border: 0;
  padding: 10px 0 10px 16px;
  color: inherit;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .68rem;
  cursor: pointer;
}
.menu-icon { position: relative; width: 23px; height: 15px; margin-left: 12px; }
.menu-icon::before,
.menu-icon::after,
.menu-icon span { content: ""; position: absolute; left: 0; width: 100%; height: 1px; background: currentColor; transition: transform .25s ease, top .25s ease, opacity .25s ease; }
.menu-icon::before { top: 0; }
.menu-icon span { top: 7px; }
.menu-icon::after { top: 14px; }
.menu-button[aria-expanded="true"] .menu-icon::before { top: 7px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-icon span { opacity: 0; }
.menu-button[aria-expanded="true"] .menu-icon::after { top: 7px; transform: rotate(-45deg); }

main { min-height: 80vh; }
.container { width: var(--page); margin-inline: auto; }
.section { padding: var(--section) var(--gutter); }
.section-tight { padding: clamp(62px, 7vw, 110px) var(--gutter); }
.eyebrow {
  margin: 0 0 17px;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow.blue { color: var(--royal); }
.display-title,
.page-title,
.section-title,
.card-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}
.section-title { font-size: clamp(3rem, 6vw, 6.7rem); line-height: .92; }
.section-head {
  display: grid;
  grid-template-columns: minmax(130px,.5fr) 1.5fr;
  gap: clamp(24px, 6vw, 120px);
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 100px);
}
.section-head .section-title { max-width: 10ch; }
.section-intro { max-width: 640px; margin: 22px 0 0; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.22rem); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: .71rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.text-link .arrow { transition: transform .25s var(--ease); }
.text-link:hover .arrow { transform: translateX(5px); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid currentColor;
  background: transparent;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.button:hover { color: var(--white); background: var(--royal); border-color: var(--royal); }
.button.gold { color: var(--black); background: var(--gold); border-color: var(--gold); }
.button.gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.button.light { color: var(--white); }
.button.light:hover { color: var(--black); background: var(--gold); border-color: var(--gold); }

/* Home hero */
.home-hero {
  position: relative;
  min-height: min(940px, 100svh);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 28%, rgba(36,85,195,.18), transparent 34%),
    linear-gradient(120deg, #050608 0%, #09132d 56%, #11141a 100%);
}
.hero-photo {
  position: absolute;
  z-index: 0;
  inset: 72px 0 0 42%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  overflow: hidden;
}
.hero-photo picture,
.hero-photo img { width: 100%; height: 100%; }
.hero-photo img { object-fit: contain; object-position: right bottom; filter: saturate(.68) contrast(1.04); }
.hero-photo::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, #07080b 0%, rgba(7,8,11,.64) 18%, transparent 53%), linear-gradient(0deg, rgba(5,6,8,.5), transparent 32%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--page);
  min-height: min(940px, 100svh);
  margin-inline: auto;
  padding: clamp(138px, 17vh, 190px) 0 clamp(42px, 6vh, 72px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-copy { max-width: 620px; }
.hero-title {
  margin: 0;
  max-width: 6ch;
  font-family: var(--serif);
  font-size: clamp(5.7rem, 10.8vw, 11.3rem);
  font-weight: 400;
  line-height: .72;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.hero-rule { width: 80px; height: 1px; margin: 36px 0 17px; background: var(--gold); }
.hero-role { margin: 0 0 6px; color: var(--royal-bright); font-size: clamp(.95rem, 1.5vw, 1.32rem); letter-spacing: .16em; text-transform: uppercase; }
.hero-subrole { margin: 0 0 34px; color: var(--gold-light); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; }
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--gold);
  font-size: .67rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-scroll { display: flex; align-items: center; gap: 10px; }
.hero-scroll::after { content: "↓"; font-size: 1rem; }
.hero-credit { position: absolute; right: 18px; bottom: 45px; z-index: 3; color: rgba(255,255,255,.62); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }

/* Intro + featured split */
.home-intro { background: var(--ivory); }
.home-intro-grid {
  width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(42px, 9vw, 150px);
  align-items: start;
}
.home-intro-copy { font-family: var(--serif); font-size: clamp(2.5rem, 4.8vw, 5.3rem); line-height: .95; letter-spacing: -.045em; }
.home-intro-copy p { margin: 0; }
.home-intro-body { max-width: 650px; padding-top: 7px; }
.home-intro-body p { margin: 0 0 1.35em; font-size: clamp(1.08rem, 1.45vw, 1.3rem); }

.featured-section { padding: 0 var(--gutter) var(--section); background: var(--ivory); }
.featured-shell { width: var(--page); margin-inline: auto; }
.compact-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0 18px; border-top: 1px solid var(--line); }
.compact-head h2 { margin: 0; color: var(--gold-dark, #8f713a); font-size: .73rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.production-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.production-card { position: relative; min-width: 0; background: var(--black); color: var(--white); overflow: hidden; }
.production-card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.production-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease), filter .4s ease; }
.production-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,5,7,.88) 0%, rgba(4,5,7,.1) 58%); pointer-events: none; }
.production-card-copy { position: absolute; z-index: 2; inset: auto 0 0; padding: clamp(18px, 2vw, 30px); }
.production-card-copy .eyebrow { margin-bottom: 9px; color: var(--gold-light); }
.production-card h3 { margin: 0 0 8px; font-family: var(--serif); font-size: clamp(1.65rem, 2.7vw, 3.1rem); font-weight: 400; line-height: .98; }
.production-card p { margin: 0; color: rgba(255,255,255,.72); font-size: .85rem; }
.production-card:hover img { transform: scale(1.035); filter: saturate(1.1); }
.production-card:hover .card-arrow { transform: translateX(5px); }
.card-arrow { display: inline-block; margin-left: 10px; color: var(--gold); transition: transform .25s ease; }
.photo-credit { position: absolute; z-index: 4; top: 12px; right: 9px; margin: 0; color: rgba(255,255,255,.64); font-size: .52rem !important; letter-spacing: .08em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }

/* Home events/media */
.home-band { display: grid; grid-template-columns: 1.15fr .85fr; background: var(--black); }
.event-panel { padding: clamp(62px, 7vw, 110px) var(--gutter); color: var(--white); background: linear-gradient(145deg, var(--royal-dark), var(--royal)); }
.event-panel .compact-head { border-color: rgba(255,255,255,.25); }
.event-panel .compact-head h2 { color: var(--gold-light); }
.event-list { border-top: 1px solid rgba(255,255,255,.23); }
.event-item {
  display: grid;
  grid-template-columns: minmax(105px,.34fr) 1fr 28px;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid rgba(255,255,255,.23);
}
.event-date { margin: 0; color: var(--gold); font-family: var(--serif); font-size: clamp(1.65rem, 2.8vw, 3rem); line-height: .88; }
.event-date small { display: block; margin-top: 7px; color: rgba(255,255,255,.72); font-family: var(--sans); font-size: .57rem; letter-spacing: .11em; text-transform: uppercase; }
.event-copy h3 { margin: 0 0 5px; font-family: var(--serif); font-size: clamp(1.2rem, 1.7vw, 1.75rem); font-weight: 400; line-height: 1.1; }
.event-copy p { margin: 0; color: rgba(255,255,255,.7); font-size: .78rem; }
.event-item .arrow { justify-self: end; color: var(--gold); font-size: 1.15rem; transition: transform .25s ease; }
.event-item:hover .arrow { transform: translateX(5px); }

.review-media-panel { padding: clamp(62px, 7vw, 110px) var(--gutter); color: var(--white); background: var(--black); }
.review-quote { margin: 0 0 45px; font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 3.65rem); font-style: italic; line-height: 1.04; letter-spacing: -.035em; }
.review-quote::before { content: "“"; display: block; height: 34px; color: var(--gold); font-size: 4rem; line-height: 1; font-style: normal; }
.review-source { margin: 0 0 35px; color: rgba(255,255,255,.65); font-size: .72rem; }
.video-poster { position: relative; display: block; aspect-ratio: 16/10; margin-top: 62px; overflow: hidden; background: #111; border: 0; width: 100%; padding: 0; cursor: pointer; }
.video-poster img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.75); transition: transform .6s var(--ease), filter .35s ease; }
.video-poster:hover img { transform: scale(1.025); filter: brightness(.9); }
.play-icon { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); display: grid; place-items: center; width: 74px; height: 74px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-light); background: rgba(8,9,11,.38); font-size: 1.35rem; }
.video-embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-meta { margin-top: 15px; }
.video-meta strong { display: block; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.video-meta span { color: rgba(255,255,255,.6); font-size: .72rem; }

.booking-strip { background: var(--ivory); }
.booking-grid { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: 1.25fr .75fr; min-height: 540px; }
.booking-copy { align-self: center; padding: 70px clamp(28px, 6vw, 100px) 70px 0; }
.booking-copy h2 { max-width: 12ch; margin: 0 0 38px; font-family: var(--serif); font-size: clamp(3rem, 5.3vw, 6rem); font-weight: 400; line-height: .93; letter-spacing: -.05em; }
.booking-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.booking-photo { position: relative; overflow: hidden; min-height: 540px; }
.booking-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 25%; filter: grayscale(1); }

/* Page hero */
.page-hero {
  position: relative;
  min-height: 610px;
  padding: 150px var(--gutter) 72px;
  color: var(--white);
  background: linear-gradient(120deg, #050608, var(--royal-dark));
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 76px 0 0 48%; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.72) brightness(.72); }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #07080b 0%, rgba(7,8,11,.66) 28%, transparent 70%), linear-gradient(0deg, rgba(7,8,11,.44), transparent 45%); }
.page-hero-inner { position: relative; z-index: 2; width: var(--page); margin-inline: auto; min-height: 388px; display: flex; flex-direction: column; justify-content: flex-end; }
.page-title { max-width: 9ch; font-size: clamp(4.7rem, 9vw, 10rem); line-height: .8; }
.page-lead { max-width: 590px; margin: 30px 0 0; color: rgba(255,255,255,.8); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 2rem); line-height: 1.16; }
.breadcrumbs { position: absolute; top: 102px; left: 0; display: flex; gap: 8px; color: rgba(255,255,255,.65); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }
.breadcrumbs span { color: var(--gold); }

/* Content layouts */
.prose-section { background: var(--paper); }
.prose-grid { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(38px, 7vw, 120px); }
.prose-aside { position: sticky; top: 110px; align-self: start; }
.prose-aside nav { display: grid; gap: 13px; font-size: .75rem; letter-spacing: .09em; text-transform: uppercase; }
.prose-aside a { color: var(--muted); }
.prose-aside a:hover { color: var(--royal); }
.prose { max-width: 860px; }
.prose h2 { scroll-margin-top: 100px; margin: 0 0 28px; padding-top: 74px; font-family: var(--serif); font-size: clamp(2.7rem, 4.8vw, 5rem); font-weight: 400; line-height: .95; letter-spacing: -.045em; }
.prose h2:first-child { padding-top: 0; }
.prose h3 { margin: 42px 0 15px; font-family: var(--serif); font-size: 1.9rem; font-weight: 400; }
.prose p { margin: 0 0 1.25em; font-size: clamp(1.04rem, 1.35vw, 1.22rem); }
.prose .lead { margin-bottom: 1.5em; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3.2rem); line-height: 1.08; letter-spacing: -.025em; }
.prose ul { margin: 0 0 2em; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.prose li { display: grid; grid-template-columns: minmax(150px,.45fr) 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.prose li strong { font-weight: 500; }
.inline-photo { position: relative; margin: 60px 0; }
.inline-photo img { width: 100%; max-height: 650px; object-fit: cover; }
.inline-photo figcaption { margin-top: 8px; color: var(--muted); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.download-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

/* Filters */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 42px; }
.filter-button { min-height: 42px; padding: 0 15px; border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.filter-button:hover,
.filter-button.is-active { color: var(--white); background: var(--royal); border-color: var(--royal); }
[data-filter-item][hidden] { display: none !important; }
.production-index-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.production-index-grid .production-card-media { aspect-ratio: 16/10; }
.production-index-grid .production-card h3 { font-size: clamp(2rem, 3.2vw, 4.2rem); }

/* Detail pages */
.detail-hero { position: relative; min-height: 86svh; color: var(--white); background: var(--black); overflow: hidden; }
.detail-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.67) saturate(.85); }
.detail-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,6,8,.92), rgba(5,6,8,.03) 64%), linear-gradient(90deg, rgba(5,6,8,.52), transparent 65%); }
.detail-hero-inner { position: relative; z-index: 2; width: var(--page); min-height: 86svh; margin-inline: auto; padding: 150px 0 65px; display: flex; flex-direction: column; justify-content: flex-end; }
.detail-title { max-width: 11ch; margin: 0; font-family: var(--serif); font-size: clamp(4.5rem, 9vw, 10.5rem); font-weight: 400; line-height: .8; letter-spacing: -.055em; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 8px 30px; margin: 30px 0 0; color: var(--gold-light); font-size: .68rem; letter-spacing: .11em; text-transform: uppercase; }
.detail-content { background: var(--paper); }
.detail-grid { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(42px, 8vw, 130px); }
.fact-list { margin: 0; border-top: 1px solid var(--line); }
.fact-list div { display: grid; grid-template-columns: .42fr 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.fact-list dt { color: var(--muted); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.fact-list dd { margin: 0; font-family: var(--serif); font-size: 1.08rem; }
.detail-copy .lead { margin: 0 0 1em; font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 4rem); line-height: 1; letter-spacing: -.04em; }
.detail-copy p { margin: 0 0 1.25em; font-size: 1.08rem; }
.press-list { margin-top: 65px; border-top: 1px solid var(--line); }
.press-item { display: grid; grid-template-columns: .35fr 1fr 28px; gap: 22px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }
.press-item span { color: var(--royal); font-size: .66rem; letter-spacing: .09em; text-transform: uppercase; }
.press-item strong { font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.7rem); font-weight: 400; line-height: 1.14; }
.press-item i { color: var(--gold-dark, #8f713a); font-style: normal; }

/* Event archive */
.events-page { background: var(--paper); }
.events-year { margin: 72px 0 18px; font-family: var(--serif); font-size: 3.5rem; font-weight: 400; }
.events-table { border-top: 1px solid var(--line); }
.archive-event { display: grid; grid-template-columns: minmax(150px,.36fr) 1fr minmax(150px,.42fr) 28px; gap: 24px; align-items: center; min-height: 100px; border-bottom: 1px solid var(--line); }
.archive-event time { color: var(--royal); font-family: var(--serif); font-size: 1.22rem; }
.archive-event h3 { margin: 0 0 3px; font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 2.15rem); font-weight: 400; line-height: 1.05; }
.archive-event p { margin: 0; color: var(--muted); font-size: .79rem; }
.archive-event .type { color: var(--muted); font-size: .64rem; letter-spacing: .09em; text-transform: uppercase; }

/* Media */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.media-card { position: relative; min-height: 430px; color: var(--white); background: var(--black); overflow: hidden; }
.media-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.68); transition: transform .6s var(--ease); }
.media-card:hover img { transform: scale(1.025); }
.media-card-copy { position: absolute; inset: auto 0 0; padding: 25px; background: linear-gradient(0deg, rgba(5,6,8,.95), transparent); }
.media-card h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1; }
.media-card p { margin: 0; color: rgba(255,255,255,.7); font-size: .75rem; }

/* Repertoire */
.repertoire-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.repertoire-group { padding: clamp(28px, 4vw, 55px); background: var(--ivory); }
.repertoire-group h2 { margin: 0 0 30px; font-family: var(--serif); font-size: clamp(2.2rem, 3.8vw, 4rem); font-weight: 400; line-height: .95; }
.repertoire-group ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.repertoire-group li { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); }
.repertoire-group li strong { display: block; font-family: var(--serif); font-size: 1.16rem; font-weight: 400; }
.repertoire-group li span { color: var(--muted); font-size: .72rem; }

/* Contact / press */
.contact-grid { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.contact-block { min-height: 390px; padding: clamp(35px, 5vw, 70px); background: var(--ivory); }
.contact-block.dark { color: var(--white); background: var(--royal-dark); }
.contact-block h2 { margin: 0 0 25px; font-family: var(--serif); font-size: clamp(2.5rem, 4.4vw, 5rem); font-weight: 400; line-height: .95; }
.contact-block p { max-width: 540px; }
.contact-email { display: inline-block; margin-top: 25px; font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 2.2rem); border-bottom: 1px solid var(--gold); }
.social-list { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 30px; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-social-bar {
  width: var(--page);
  margin: 6px auto 0;
  padding: clamp(34px, 4.5vw, 62px);
  display: grid;
  grid-template-columns: minmax(220px, .8fr) 1.2fr;
  gap: clamp(34px, 7vw, 110px);
  align-items: end;
  background: var(--paper);
  border: 1px solid var(--line);
}
.contact-social-bar h2,
.press-social-callout h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4.6rem); font-weight: 400; line-height: .95; letter-spacing: -.035em; }
.contact-social-links,
.press-social-links { border-top: 1px solid var(--line); }
.contact-social-links a,
.press-social-links a {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s ease, padding-left .25s var(--ease);
}
.contact-social-links a:hover,
.press-social-links a:hover { padding-left: 8px; color: var(--royal); }
.contact-social-links span,
.press-social-links span { color: var(--muted); font-size: .66rem; letter-spacing: .11em; text-transform: uppercase; }
.contact-social-links strong,
.press-social-links strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.contact-social-links i,
.press-social-links i { color: var(--gold); font-style: normal; }
.press-download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.press-download-grid-three { grid-template-columns: repeat(3, 1fr); }
.press-download { min-height: 240px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; background: var(--ivory); border: 1px solid transparent; }
.press-download:hover { border-color: var(--gold); }
.press-download h3 { margin: 0; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.press-download p { color: var(--muted); font-size: .8rem; }
.press-download span { color: var(--royal); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.press-assets-section { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 760px; color: var(--white); background: var(--royal-dark); }
.press-assets-media { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; }
.press-assets-media figure { position: relative; min-width: 0; margin: 0; overflow: hidden; }
.press-assets-media img { width: 100%; height: 100%; object-fit: cover; }
.press-assets-media figure:first-child img { object-position: 50% 24%; }
.press-assets-media figure:last-child img { object-position: 50% 25%; filter: grayscale(1); }
.press-assets-media figcaption { position: absolute; right: 10px; bottom: 14px; color: rgba(255,255,255,.78); font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.press-assets-copy { align-self: center; padding: clamp(58px, 7vw, 116px); }
.press-assets-copy h2 { max-width: 9ch; margin: 0 0 28px; font-family: var(--serif); font-size: clamp(3.1rem, 5.5vw, 6.8rem); font-weight: 400; line-height: .88; letter-spacing: -.05em; }
.press-assets-copy > p:not(.eyebrow) { max-width: 580px; color: rgba(255,255,255,.7); }
.press-asset-status { margin: 42px 0 34px; border-top: 1px solid rgba(255,255,255,.2); }
.press-asset-status div { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.press-asset-status dt { font-family: var(--serif); font-size: 1.16rem; }
.press-asset-status dd { margin: 4px 0 0; color: var(--gold-light); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.light-link { color: var(--white); }
.press-social-callout { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 150px); align-items: end; padding: clamp(42px, 6vw, 82px) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Footer */
.site-footer { padding: 46px var(--gutter) 24px; color: var(--white); background: var(--black); border-top: 1px solid rgba(201,164,92,.38); }
.footer-main { width: var(--page); margin-inline: auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: start; }
.footer-brand { font-family: var(--serif); font-size: 1.7rem; }
.footer-role { margin: 8px 0 0; color: rgba(255,255,255,.58); font-size: .69rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 25px; font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom { width: var(--page); margin: 44px auto 0; padding-top: 18px; display: flex; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.45); border-top: 1px solid rgba(255,255,255,.13); font-size: .6rem; letter-spacing: .07em; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --page: calc(100vw - 44px); }
  .site-nav { gap: 15px; font-size: .62rem; }
  .site-nav a:nth-child(3), .site-nav a:nth-child(6) { display: none; }
  .hero-photo { left: 35%; }
  .hero-title { font-size: clamp(5.3rem, 13vw, 9rem); }
  .home-band { grid-template-columns: 1fr; }
  .review-media-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; }
  .video-poster { margin-top: 0; }
  .booking-grid { grid-template-columns: 1fr .7fr; }
  .media-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 780px) {
  :root { --page: calc(100vw - 40px); --section: 88px; --gutter: 20px; }
  .site-header { min-height: 64px; padding-inline: 20px; background: rgba(8,9,11,.42); }
  .site-header.is-scrolled, .site-header.header-solid { min-height: 62px; }
  .brand::after { width: 22px; }
  .menu-button { display: inline-flex; align-items: center; }
  .site-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 92px 26px 38px;
    color: var(--white);
    background: linear-gradient(145deg, var(--royal-dark), var(--royal));
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }
  .site-nav.is-open { z-index: -1; opacity: 1; visibility: visible; transform: none; }
  .site-nav a,
  .site-nav a:nth-child(3),
  .site-nav a:nth-child(6) { display: block; width: 100%; padding: 12px 0; font-family: var(--serif); font-size: clamp(2.2rem, 10vw, 4rem); font-weight: 400; letter-spacing: -.035em; text-transform: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .site-nav a::after { display: none; }
  .site-nav .press-link { color: var(--gold-light); }

  .section-head { display: block; }
  .section-head .section-title { max-width: 12ch; }
  .home-hero { min-height: 92svh; }
  .hero-photo { inset: 64px 0 0; }
  .hero-photo img { object-fit: cover; object-position: 55% 22%; }
  .hero-photo::before { background: linear-gradient(0deg, rgba(5,6,8,.92) 0%, rgba(5,6,8,.08) 62%), linear-gradient(90deg, rgba(5,6,8,.34), transparent); }
  .hero-inner { min-height: 92svh; padding: 120px 0 26px; justify-content: flex-end; }
  .hero-copy { width: 100%; }
  .hero-title { max-width: 5ch; font-size: clamp(4.4rem, 21vw, 7rem); line-height: .75; }
  .hero-rule { margin: 26px 0 12px; }
  .hero-role { font-size: .82rem; }
  .hero-subrole { margin-bottom: 24px; font-size: .65rem; }
  .hero-meta { margin-top: 25px; }
  .hero-scroll { display: none; }
  .hero-credit { right: 7px; bottom: 18px; }

  .home-intro-grid { grid-template-columns: 1fr; gap: 34px; }
  .home-intro-copy { font-size: clamp(2.55rem, 11vw, 4.1rem); }
  .production-grid, .production-index-grid { grid-template-columns: 1fr; gap: 4px; }
  .production-card-media { aspect-ratio: 4/3; }
  .production-card h3 { font-size: 2.4rem; }
  .home-band { display: block; }
  .event-panel, .review-media-panel { padding-inline: 20px; }
  .event-item { grid-template-columns: 90px 1fr 22px; gap: 13px; min-height: 105px; }
  .event-date { font-size: 1.65rem; }
  .event-copy h3 { font-size: 1.2rem; }
  .review-media-panel { display: block; }
  .review-quote { font-size: 2.1rem; }
  .video-poster { margin-top: 54px; aspect-ratio: 4/3; }
  .booking-grid { display: flex; flex-direction: column; min-height: 0; }
  .booking-copy { padding: 76px 0; }
  .booking-photo { min-height: 480px; }

  .page-hero { min-height: 620px; padding: 125px 20px 50px; }
  .page-hero-media { inset: 64px 0 0; }
  .page-hero-media::after { background: linear-gradient(0deg, rgba(5,6,8,.94) 0%, rgba(5,6,8,.2) 65%); }
  .page-hero-inner { min-height: 440px; }
  .page-title { font-size: clamp(4.1rem, 19vw, 6.7rem); }
  .breadcrumbs { top: 84px; }
  .prose-grid, .detail-grid { grid-template-columns: 1fr; }
  .prose-aside { position: static; }
  .prose-aside nav { display: flex; overflow-x: auto; white-space: nowrap; padding-bottom: 12px; }
  .prose h2 { padding-top: 55px; }
  .prose li { grid-template-columns: 1fr; gap: 3px; }
  .detail-hero, .detail-hero-inner { min-height: 75svh; }
  .detail-hero-inner { padding: 120px 0 42px; }
  .detail-title { font-size: clamp(4rem, 18vw, 6.8rem); }
  .fact-list { margin-bottom: 25px; }
  .press-item { grid-template-columns: 1fr 24px; gap: 6px 16px; }
  .press-item span { grid-column: 1; }
  .press-item strong { grid-column: 1; }
  .press-item i { grid-column: 2; grid-row: 1 / 3; }
  .archive-event { grid-template-columns: 1fr 24px; gap: 6px 15px; padding: 20px 0; }
  .archive-event time, .archive-event .type { grid-column: 1; }
  .archive-event > div { grid-column: 1; }
  .archive-event > a { grid-column: 2; grid-row: 1/4; }
  .media-grid, .repertoire-groups, .contact-grid, .press-download-grid { grid-template-columns: 1fr; }
  .contact-social-bar, .press-social-callout { grid-template-columns: 1fr; }
  .contact-social-links a, .press-social-links a { grid-template-columns: 90px 1fr auto; }
  .press-assets-section { grid-template-columns: 1fr; min-height: 0; }
  .press-assets-media { min-height: 520px; }
  .press-assets-copy { padding: 76px 20px 84px; }
  .press-assets-copy h2 { font-size: clamp(3.4rem, 15vw, 5.5rem); }
  .media-card { min-height: 390px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: column; }
}

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

/* v2.1 — unified full-bleed homepage hero */
.home-hero {
  min-height: min(980px, 100svh);
  background: #05070d;
}
.hero-photo { inset: 0; display: block; }
.hero-photo picture,
.hero-photo img { width: 100%; height: 100%; }
.hero-photo img {
  object-fit: cover;
  object-position: center center;
  filter: none;
}
.hero-photo::before {
  background:
    linear-gradient(90deg, rgba(3,5,10,.42) 0%, rgba(3,5,10,.12) 47%, rgba(3,5,10,.05) 74%, rgba(3,5,10,.16) 100%),
    linear-gradient(0deg, rgba(3,5,10,.52) 0%, rgba(3,5,10,0) 38%),
    linear-gradient(180deg, rgba(3,5,10,.20) 0%, rgba(3,5,10,0) 24%);
}
.hero-inner { min-height: min(980px, 100svh); }
.hero-copy { max-width: 700px; }

/* v2.1 — Biography */
.bio-hero {
  position: relative;
  min-height: 78svh;
  color: var(--white);
  background: #07090e;
  overflow: hidden;
}
.bio-hero-media { position: absolute; inset: 0; }
.bio-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.bio-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,12,.94) 0%, rgba(5,7,12,.70) 34%, rgba(5,7,12,.18) 67%, rgba(5,7,12,.12) 100%),
    linear-gradient(0deg, rgba(5,7,12,.72) 0%, transparent 48%);
}
.bio-hero-inner {
  position: relative;
  z-index: 2;
  width: var(--page);
  min-height: 78svh;
  margin-inline: auto;
  padding: 150px 0 76px;
  display: flex;
  align-items: flex-end;
}
.bio-hero-inner .breadcrumbs { top: 106px; }
.bio-hero-title {
  max-width: 9ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5.2rem, 10vw, 11rem);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.06em;
}
.bio-hero-lead {
  max-width: 660px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.78);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.25vw, 2.45rem);
  line-height: 1.12;
}
.bio-hero-credit {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 26px;
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: .56rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.bio-overview { background: var(--paper); }
.bio-overview-grid {
  width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: .38fr 1.22fr .58fr;
  gap: clamp(34px, 6vw, 105px);
  align-items: start;
}
.bio-index {
  margin: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
}
.bio-deck {
  max-width: 900px;
  margin: 0 0 clamp(35px, 5vw, 70px);
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.3vw, 5.25rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.bio-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(25px, 4vw, 60px);
  max-width: 880px;
}
.bio-columns p { margin: 0; font-size: clamp(1rem, 1.25vw, 1.16rem); }
.bio-resources {
  padding: 28px;
  color: var(--white);
  background: linear-gradient(145deg, var(--royal-dark), var(--royal));
}
.bio-resources .eyebrow { color: var(--gold-light); }
.bio-resources a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid rgba(255,255,255,.23);
  font-family: var(--serif);
  font-size: 1.12rem;
}
.bio-resources a:last-child { border-bottom: 1px solid rgba(255,255,255,.23); }
.bio-resources a span { color: var(--gold-light); transition: transform .22s ease; }
.bio-resources a:hover span { transform: translateX(4px); }
.bio-chapter { padding: var(--section) var(--gutter); }
.bio-chapter-light { background: var(--ivory); }
.bio-chapter-paper { background: var(--paper); }
.bio-chapter-dark { color: var(--white); background: var(--black); }
.bio-chapter-grid {
  width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(300px,.82fr) minmax(420px,1.18fr);
  gap: clamp(46px, 8vw, 145px);
  align-items: center;
}
.bio-chapter-grid-reverse { grid-template-columns: minmax(420px,1.08fr) minmax(330px,.92fr); }
.bio-chapter-photo { position: relative; margin: 0; }
.bio-chapter-photo img { width: 100%; height: min(780px, 70vw); object-fit: cover; }
.bio-chapter-photo-stage img { height: auto; aspect-ratio: 4/3; }
.bio-chapter-photo figcaption,
.bio-studio-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: .61rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bio-chapter-dark .bio-chapter-photo figcaption { color: rgba(255,255,255,.52); }
.bio-chapter-copy { max-width: 760px; }
.bio-chapter-copy .bio-index { margin-bottom: 38px; }
.bio-chapter-copy h2 {
  margin: 0 0 38px;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 6.5rem);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.055em;
}
.bio-chapter-copy p:not(.eyebrow):not(.bio-index) {
  margin: 0 0 1.35em;
  font-size: clamp(1.03rem, 1.25vw, 1.17rem);
}
.bio-chapter-dark .bio-chapter-copy p:not(.eyebrow):not(.bio-index) { color: rgba(255,255,255,.76); }
.bio-chapter-copy .text-link { margin-top: 18px; }
.bio-roles {
  padding: var(--section) var(--gutter);
  color: var(--white);
  background: linear-gradient(135deg, var(--royal-dark), var(--royal));
}
.bio-roles-shell { width: var(--page); margin-inline: auto; }
.bio-roles-head {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(45px, 7vw, 90px);
}
.bio-roles-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7vw, 8.5rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.06em;
}
.bio-roles-head > p { max-width: 520px; margin: 0 0 8px; color: rgba(255,255,255,.7); }
.bio-role-list { margin-bottom: 42px; border-top: 1px solid rgba(255,255,255,.25); }
.bio-role {
  display: grid;
  grid-template-columns: minmax(120px,.32fr) minmax(250px,.72fr) 1fr 28px;
  gap: 22px;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.bio-role span { color: var(--gold-light); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.bio-role strong { font-family: var(--serif); font-size: clamp(1.55rem, 2.5vw, 2.7rem); font-weight: 400; line-height: 1; }
.bio-role small { color: rgba(255,255,255,.62); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; }
.bio-role i { color: var(--gold-light); font-style: normal; font-size: 1.2rem; transition: transform .22s ease; }
a.bio-role:hover i { transform: translateX(5px); }
.bio-awards { color: var(--white); background: var(--black); }
.bio-awards-grid {
  width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: .66fr 1.34fr;
  gap: clamp(46px, 8vw, 145px);
}
.bio-awards-head { position: sticky; top: 120px; align-self: start; }
.bio-awards-head h2 {
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 9rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.06em;
}
.bio-awards-head > p:last-child { max-width: 450px; color: rgba(255,255,255,.63); }
.bio-timeline { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.bio-timeline li {
  display: grid;
  grid-template-columns: minmax(95px,.25fr) 1fr;
  gap: 24px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line-light);
}
.bio-timeline time { color: var(--gold); font-family: var(--serif); font-size: 1.6rem; }
.bio-timeline strong { display: block; margin-bottom: 4px; font-family: var(--serif); font-size: clamp(1.45rem, 2.2vw, 2.2rem); font-weight: 400; line-height: 1.05; }
.bio-timeline span { color: rgba(255,255,255,.62); font-size: .82rem; }
.bio-studio { padding: 0 var(--gutter); color: var(--ink); background: var(--ivory); }
.bio-studio-grid {
  width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.17fr .83fr;
  min-height: 720px;
}
.bio-studio-copy { align-self: center; padding: 90px clamp(40px,7vw,120px) 90px 0; }
.bio-studio-copy h2 {
  max-width: 11ch;
  margin: 0 0 38px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.8vw, 7rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.055em;
}
.bio-studio-copy > p:last-child { max-width: 670px; font-size: clamp(1.04rem, 1.35vw, 1.22rem); }
.bio-studio-photo { position: relative; margin: 0; overflow: hidden; }
.bio-studio-photo img { width: 100%; height: 100%; min-height: 720px; object-fit: cover; }
.bio-studio-photo figcaption { position: absolute; right: 13px; bottom: 17px; color: rgba(255,255,255,.66); writing-mode: vertical-rl; transform: rotate(180deg); }
.bio-next { background: var(--paper); }
.bio-next-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.bio-next-card {
  min-height: 320px;
  padding: clamp(30px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ivory);
  border-right: 1px solid var(--line);
}
.bio-next-card.royal { color: var(--white); background: var(--royal); border-color: rgba(255,255,255,.2); }
.bio-next-card.dark { color: var(--white); background: var(--black); border: 0; }
.bio-next-card span { color: var(--gold-dark, #8f713a); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.bio-next-card.royal span,
.bio-next-card.dark span { color: var(--gold-light); }
.bio-next-card strong { font-family: var(--serif); font-size: clamp(2.7rem, 4.5vw, 5rem); font-weight: 400; line-height: .9; }
.bio-next-card i { align-self: flex-end; color: var(--gold); font-style: normal; font-size: 1.5rem; transition: transform .25s ease; }
.bio-next-card:hover i { transform: translateX(7px); }

@media (max-width: 1120px) {
  .bio-overview-grid { grid-template-columns: .32fr 1.2fr; }
  .bio-resources { grid-column: 2; }
  .bio-chapter-grid,
  .bio-chapter-grid-reverse { grid-template-columns: .9fr 1.1fr; gap: 55px; }
  .bio-role { grid-template-columns: 100px .72fr 1fr 22px; }
  .bio-studio-grid { grid-template-columns: 1fr .7fr; }
}

@media (max-width: 780px) {
  .hero-photo { inset: 0; }
  .hero-photo img { object-position: 55% 22%; }
  .hero-photo::before {
    background:
      linear-gradient(0deg, rgba(5,6,8,.94) 0%, rgba(5,6,8,.22) 62%, rgba(5,6,8,.16) 100%),
      linear-gradient(90deg, rgba(5,6,8,.32), transparent);
  }
  .bio-hero { min-height: 90svh; }
  .bio-hero-media img { object-position: 50% 25%; }
  .bio-hero-shade { background: linear-gradient(0deg, rgba(5,7,12,.96) 0%, rgba(5,7,12,.25) 62%, rgba(5,7,12,.12) 100%); }
  .bio-hero-inner { min-height: 90svh; padding: 116px 0 42px; }
  .bio-hero-inner .breadcrumbs { top: 82px; }
  .bio-hero-title { font-size: clamp(4.4rem, 20vw, 7rem); }
  .bio-hero-lead { max-width: 92%; font-size: 1.35rem; }
  .bio-hero-credit { right: 7px; bottom: 18px; }
  .bio-overview-grid { grid-template-columns: 1fr; gap: 34px; }
  .bio-overview-label { display: flex; align-items: flex-start; justify-content: space-between; }
  .bio-deck { font-size: clamp(2.3rem, 11vw, 4.1rem); }
  .bio-columns { grid-template-columns: 1fr; gap: 20px; }
  .bio-resources { grid-column: auto; padding: 23px; }
  .bio-chapter { padding: 88px 20px; }
  .bio-chapter-grid,
  .bio-chapter-grid-reverse { display: flex; flex-direction: column; gap: 48px; }
  .bio-chapter-dark .bio-chapter-grid { flex-direction: column-reverse; }
  .bio-chapter-photo { width: 100%; }
  .bio-chapter-photo img { height: auto; aspect-ratio: 4/5; }
  .bio-chapter-photo-stage img { aspect-ratio: 4/3; }
  .bio-chapter-copy .bio-index { margin-bottom: 26px; }
  .bio-chapter-copy h2 { font-size: clamp(3.2rem, 14vw, 5.2rem); }
  .bio-roles { padding: 88px 20px; }
  .bio-roles-head { grid-template-columns: 1fr; gap: 25px; }
  .bio-roles-head h2 { font-size: clamp(4rem, 18vw, 6.4rem); }
  .bio-role { grid-template-columns: 1fr 24px; gap: 5px 14px; padding: 19px 0; min-height: 0; }
  .bio-role span,
  .bio-role strong,
  .bio-role small { grid-column: 1; }
  .bio-role i { grid-column: 2; grid-row: 1 / 4; align-self: center; }
  .bio-role strong { font-size: 1.9rem; }
  .bio-awards-grid { grid-template-columns: 1fr; gap: 48px; }
  .bio-awards-head { position: static; }
  .bio-timeline li { grid-template-columns: 70px 1fr; gap: 16px; }
  .bio-studio { padding: 0; }
  .bio-studio-grid { display: flex; flex-direction: column; min-height: 0; }
  .bio-studio-copy { padding: 88px 20px; }
  .bio-studio-copy h2 { font-size: clamp(3.5rem, 15vw, 5.8rem); }
  .bio-studio-photo img { min-height: 550px; }
  .bio-next-grid { grid-template-columns: 1fr; }
  .bio-next-card { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
}

/* =========================================================
   v2.2 — photographic home hero + editorial productions
   ========================================================= */
.home-hero {
  min-height: 100svh;
  background: #050608;
}
.hero-photo {
  inset: 76px 0 0 28%;
  align-items: stretch;
  justify-content: stretch;
}
.hero-photo picture,
.hero-photo img { display: block; }
.hero-photo img {
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(.72) contrast(1.03) brightness(.88);
}
.hero-photo::before {
  background:
    linear-gradient(90deg, #050608 0%, rgba(5,6,8,.96) 12%, rgba(5,6,8,.76) 31%, rgba(5,6,8,.22) 58%, transparent 78%),
    linear-gradient(0deg, rgba(5,6,8,.68) 0%, transparent 35%);
}
.hero-inner { min-height: 100svh; }
.hero-copy { max-width: 560px; }
.hero-title { font-size: clamp(5.4rem, 9.6vw, 10rem); }

/* Productions landing hero */
.productions-hero {
  position: relative;
  min-height: min(760px, 74svh);
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}
.productions-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 43%;
  filter: saturate(.82) brightness(.7);
}
.productions-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,5,10,.94) 0%, rgba(3,5,10,.64) 36%, rgba(3,5,10,.12) 74%),
    linear-gradient(0deg, rgba(3,5,10,.82) 0%, transparent 52%);
}
.productions-hero-inner {
  position: relative;
  z-index: 2;
  width: var(--page);
  min-height: min(760px, 74svh);
  margin-inline: auto;
  padding: 155px 0 62px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.productions-hero-inner h1 {
  max-width: 9ch;
  margin: 8px 0 22px;
  font-family: var(--serif);
  font-size: clamp(5.2rem, 10vw, 11rem);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.06em;
}
.productions-hero-inner > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2.35rem);
}
.productions-hero-note {
  position: absolute;
  right: 0;
  bottom: 64px;
  color: var(--gold-light);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.productions-intro { background: var(--paper); }
.productions-intro-grid {
  width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: clamp(35px, 8vw, 145px);
  align-items: start;
}
.productions-intro-lead {
  max-width: 1050px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.5vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.featured-productions-section {
  padding: var(--section) var(--gutter);
  color: var(--white);
  background: var(--black);
}
.productions-section-head {
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: clamp(35px, 8vw, 145px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 96px);
}
.productions-section-head h2 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 7.2vw, 8.3rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.055em;
}
.productions-section-head.light h2 { color: var(--white); }
.featured-productions-editorial {
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  gap: 8px;
}
.featured-production {
  position: relative;
  display: block;
  min-height: 520px;
  color: var(--white);
  background: #111;
  overflow: hidden;
}
.featured-production-primary {
  grid-row: span 2;
  min-height: 1048px;
}
.featured-production-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.featured-production-wide {
  grid-column: 1 / -1;
  min-height: 560px;
}
.featured-production img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) saturate(.88);
  transition: transform .9s var(--ease), filter .4s ease;
}
.featured-production::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3,4,7,.92) 0%, rgba(3,4,7,.12) 62%);
}
.featured-production-copy {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: clamp(24px, 3.2vw, 52px);
}
.featured-production-copy > span {
  color: var(--gold-light);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.featured-production-copy h3 {
  max-width: 11ch;
  margin: 12px 0 10px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 6rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.05em;
}
.featured-production-pair h3 { font-size: clamp(2.2rem, 3.5vw, 4.3rem); }
.featured-production-copy p { margin: 0; color: rgba(255,255,255,.72); }
.featured-production:hover img { transform: scale(1.025); filter: brightness(.9) saturate(1); }

.all-productions-section { background: var(--paper); }
.all-productions-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 45px;
}
.all-productions-head h2 {
  margin: 9px 0 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.6vw, 8.6rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.058em;
}
.filter-result {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.editorial-filter {
  gap: 28px;
  margin-bottom: 58px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.editorial-filter .filter-button {
  position: relative;
  min-height: auto;
  padding: 0 0 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: .69rem;
}
.editorial-filter .filter-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .3s var(--ease);
}
.editorial-filter .filter-button:hover,
.editorial-filter .filter-button.is-active { color: var(--royal); background: transparent; }
.editorial-filter .filter-button.is-active::after { right: 0; }
.production-index-grid {
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: clamp(28px, 3.2vw, 52px) 12px;
}
.production-index-grid .archive-card {
  color: var(--ink);
  background: transparent;
  overflow: visible;
}
.production-index-grid .archive-card::after { display: none; }
.production-index-grid .production-card-media { aspect-ratio: 4 / 5; }
.production-index-grid .archive-card .production-card-copy {
  position: static;
  padding: 19px 3px 0;
}
.production-index-grid .archive-card h3 {
  margin: 8px 0 7px;
  color: var(--ink);
  font-size: clamp(2rem, 3.1vw, 3.8rem);
  line-height: .92;
}
.production-index-grid .archive-card p { color: var(--muted); }
.production-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--gold-light);
  font-size: .62rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.production-index-grid .production-card-topline { color: var(--royal); }
.archive-badge {
  position: absolute;
  z-index: 4;
  left: 13px;
  top: 13px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(8,27,73,.86);
  font-size: .55rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* Production detail editorial system */
.detail-facts { position: sticky; top: 120px; align-self: start; }
.production-quote {
  margin: clamp(50px, 7vw, 90px) 0 0;
  padding: 35px 0 0;
  border-top: 1px solid var(--line);
}
.production-quote p {
  margin: 0 0 17px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  font-style: italic;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.production-quote cite {
  color: var(--muted);
  font-size: .68rem;
  font-style: normal;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.production-gallery-section {
  color: var(--white);
  background: var(--black);
}
.production-gallery {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-auto-rows: minmax(320px, 46vw);
  gap: 8px;
}
.production-gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.production-gallery-item.item-1 { grid-row: span 2; }
.production-gallery-item.item-4 { grid-column: 1 / -1; }
.production-gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.production-gallery-item figcaption {
  position: absolute;
  right: 13px;
  bottom: 14px;
  padding: 6px 8px;
  color: rgba(255,255,255,.78);
  background: rgba(5,6,8,.55);
  font-size: .57rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.production-info-band { background: var(--paper); }
.production-info-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(55px, 9vw, 150px);
}
.production-performances h2 {
  margin: 11px 0 40px;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 6vw, 7rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.055em;
}
.performance-list { border-top: 1px solid var(--line); }
.performance-item {
  display: grid;
  grid-template-columns: minmax(135px,.45fr) 1fr;
  gap: 25px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.performance-item time { color: var(--royal); font-family: var(--serif); font-size: 1.15rem; }
.performance-item strong { display: block; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.performance-item span { display: block; margin-top: 4px; color: var(--muted); font-size: .76rem; }
.production-press .press-list { margin-top: 0; }
.next-production {
  position: relative;
  display: block;
  min-height: min(720px, 72svh);
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}
.next-production > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.55) saturate(.8); transition: transform .9s var(--ease), filter .4s ease; }
.next-production-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,5,7,.9), rgba(4,5,7,.08) 70%); }
.next-production > div { position: relative; z-index: 2; width: var(--page); min-height: min(720px,72svh); margin-inline: auto; padding: 70px 0; display: flex; flex-direction: column; justify-content: flex-end; }
.next-production h2 { max-width: 10ch; margin: 12px 0 25px; font-family: var(--serif); font-size: clamp(4.5rem, 9vw, 10rem); font-weight: 400; line-height: .8; letter-spacing: -.055em; }
.next-production > div > span { color: var(--gold-light); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.next-production:hover > img { transform: scale(1.02); filter: brightness(.68) saturate(.95); }

@media (max-width: 1120px) {
  .hero-photo { left: 22%; }
  .featured-production-primary { min-height: 820px; }
  .featured-production { min-height: 405px; }
  .featured-production-wide { min-height: 470px; }
  .production-index-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .production-gallery { grid-auto-rows: minmax(260px, 48vw); }
}

@media (max-width: 780px) {
  .home-hero { min-height: 92svh; }
  .hero-photo { inset: 64px 0 0; }
  .hero-photo img { object-position: 44% 48%; }
  .hero-photo::before {
    background:
      linear-gradient(0deg, rgba(5,6,8,.97) 0%, rgba(5,6,8,.72) 35%, rgba(5,6,8,.08) 70%),
      linear-gradient(90deg, rgba(5,6,8,.28), transparent 70%);
  }
  .hero-inner { min-height: 92svh; padding-top: 112px; }
  .hero-copy { align-self: stretch; margin-top: auto; margin-bottom: 35px; }
  .hero-title { font-size: clamp(4.2rem, 20vw, 6.8rem); }
  .productions-hero,
  .productions-hero-inner { min-height: 88svh; }
  .productions-hero > img { object-position: 58% 50%; }
  .productions-hero-overlay { background: linear-gradient(0deg, rgba(3,5,10,.95) 0%, rgba(3,5,10,.22) 66%, rgba(3,5,10,.08) 100%); }
  .productions-hero-inner { padding: 116px 0 42px; }
  .productions-hero-inner h1 { font-size: clamp(4.3rem, 20vw, 7rem); }
  .productions-hero-note { position: static; margin-top: 30px; }
  .productions-intro-grid,
  .productions-section-head { grid-template-columns: 1fr; gap: 25px; }
  .productions-intro-lead { font-size: clamp(2.2rem, 11vw, 4.2rem); }
  .featured-productions-editorial { grid-template-columns: 1fr; }
  .featured-production-primary,
  .featured-production,
  .featured-production-wide { grid-column: auto; grid-row: auto; min-height: 68svh; }
  .featured-production-pair { grid-template-columns: 1fr; }
  .featured-production-copy h3,
  .featured-production-pair h3 { font-size: clamp(2.8rem, 13vw, 4.8rem); }
  .all-productions-head { align-items: start; }
  .filter-result { display: none; }
  .editorial-filter { flex-wrap: nowrap; overflow-x: auto; gap: 24px; scrollbar-width: none; }
  .editorial-filter::-webkit-scrollbar { display: none; }
  .editorial-filter .filter-button { flex: 0 0 auto; }
  .production-index-grid { grid-template-columns: 1fr; gap: 56px; }
  .production-index-grid .production-card-media { aspect-ratio: 4 / 5; }
  .production-index-grid .archive-card h3 { font-size: clamp(2.7rem, 13vw, 4.5rem); }
  .detail-facts { position: static; }
  .production-gallery { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .production-gallery-item.item-1,
  .production-gallery-item.item-4 { grid-row: auto; grid-column: auto; }
  .production-gallery-item img { height: auto; aspect-ratio: 4/5; }
  .production-gallery-item:nth-child(even) img { aspect-ratio: 4/3; }
  .production-info-grid { grid-template-columns: 1fr; gap: 80px; }
  .performance-item { grid-template-columns: 1fr; gap: 7px; }
  .next-production,
  .next-production > div { min-height: 74svh; }
  .next-production h2 { font-size: clamp(4rem, 18vw, 7rem); }
}


/* =========================================================
   v2.3 - repertoire browser
   ========================================================= */
.repertoire-hero {
  position: relative;
  min-height: min(820px, 82svh);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.repertoire-hero > img {
  position: absolute;
  inset: 68px 0 0;
  width: 100%;
  height: calc(100% - 68px);
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(.82) brightness(.82);
}
.repertoire-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,6,8,.96) 0%, rgba(5,6,8,.76) 28%, rgba(5,6,8,.14) 67%, rgba(5,6,8,.02) 100%),
    linear-gradient(0deg, rgba(5,6,8,.55), transparent 58%);
}
.repertoire-hero-inner {
  position: relative;
  z-index: 2;
  width: var(--page);
  min-height: min(820px, 82svh);
  margin-inline: auto;
  padding: 130px 0 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.repertoire-hero-inner h1 {
  margin: 8px 0 22px;
  font-family: var(--serif);
  font-size: clamp(6.4rem, 13vw, 14rem);
  font-weight: 400;
  line-height: .75;
  letter-spacing: -.067em;
}
.repertoire-hero-inner > p:not(.eyebrow) {
  max-width: 570px;
  margin: 0 0 32px;
  color: rgba(255,255,255,.78);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 2rem);
}
.repertoire-hero-credit {
  position: absolute;
  z-index: 3;
  right: 13px;
  bottom: 22px;
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: .54rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.repertoire-intro { background: var(--ivory); }
.repertoire-intro-grid {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(320px,.75fr);
  gap: clamp(60px, 10vw, 170px);
  align-items: start;
}
.repertoire-intro h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.5vw, 9rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.06em;
}
.repertoire-intro-copy > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}
.repertoire-intro-copy > p:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.5vw, 2.5rem);
  line-height: 1.16;
}
.repertoire-intro-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 38px; }

.repertoire-browser {
  color: var(--white);
  background: var(--royal-dark);
}
.repertoire-browser-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}
.repertoire-browser-head h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 8vw, 9rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.06em;
}
.repertoire-browser-head > p {
  margin: 0 0 10px;
  color: rgba(255,255,255,.55);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.repertoire-browser-head strong { color: var(--gold-light); font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }

.repertoire-toolbar {
  position: sticky;
  z-index: 10;
  top: 68px;
  display: grid;
  grid-template-columns: minmax(260px,.75fr) 1.25fr;
  align-items: end;
  gap: 45px;
  margin: 0 0 75px;
  padding: 20px 0;
  background: rgba(8,27,73,.94);
  border-top: 1px solid rgba(201,164,92,.35);
  border-bottom: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
}
.repertoire-search { display: grid; gap: 8px; }
.repertoire-search span {
  color: var(--gold-light);
  font-size: .61rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.repertoire-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 44px 0 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.38);
  border-radius: 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  outline: 0;
}
.repertoire-search input::placeholder { color: rgba(255,255,255,.38); }
.repertoire-search input:focus { border-color: var(--gold); }

.repertoire-filter {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 38px);
}
.repertoire-filter button {
  position: relative;
  border: 0;
  padding: 0 0 8px;
  color: rgba(255,255,255,.58);
  background: transparent;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.repertoire-filter button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .3s var(--ease);
}
.repertoire-filter button:hover,
.repertoire-filter button.is-active { color: var(--white); }
.repertoire-filter button.is-active::after { right: 0; }

.repertoire-category { margin-bottom: clamp(80px, 10vw, 150px); }
.repertoire-category[hidden] { display: none !important; }
.repertoire-category-head {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 28px;
}
.repertoire-category-head > div {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  align-items: end;
}
.repertoire-category-head > div > span {
  padding-bottom: 11px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.2rem;
}
.repertoire-category-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 7.2rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.055em;
}
.repertoire-category-head > p {
  max-width: 490px;
  margin: 0 0 10px;
  color: rgba(255,255,255,.56);
}
.repertoire-list { border-top: 1px solid rgba(255,255,255,.22); }
.repertoire-row {
  display: grid;
  grid-template-columns: 52px minmax(220px,1.25fr) minmax(230px,1fr) 105px 90px 24px;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: padding .3s var(--ease), background .3s ease;
}
a.repertoire-row:hover {
  padding-inline: 18px;
  background: rgba(255,255,255,.045);
}
.repertoire-row[hidden] { display: none !important; }
.repertoire-number { color: var(--gold); font-family: var(--serif); font-size: 1rem; }
.repertoire-role strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.35vw, 2.7rem);
  font-weight: 400;
  line-height: .98;
}
.repertoire-role span,
.repertoire-context small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.5);
  font-size: .69rem;
  letter-spacing: .05em;
}
.repertoire-context > span {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
}
.repertoire-row time { color: var(--gold-light); font-family: var(--serif); font-size: 1.05rem; }
.repertoire-status {
  justify-self: start;
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.68);
  font-size: .54rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.repertoire-row i {
  color: var(--gold);
  font-style: normal;
  transition: transform .28s var(--ease);
}
a.repertoire-row:hover i { transform: translateX(6px); }
.repertoire-empty {
  padding: 80px 0 20px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.repertoire-empty h3 {
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: .94;
}

.repertoire-featured {
  display: grid;
  grid-template-columns: 1fr .66fr;
  min-height: 760px;
  color: var(--white);
  background: var(--black);
}
.repertoire-featured-copy {
  padding: clamp(80px, 10vw, 170px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.repertoire-featured-copy h2 {
  max-width: 10ch;
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.06em;
}
.repertoire-featured-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 0 38px;
  color: rgba(255,255,255,.62);
  font-size: 1.1rem;
}
.repertoire-featured-copy > div { display: flex; align-items: center; flex-wrap: wrap; gap: 32px; }
.repertoire-featured-image { min-height: 760px; overflow: hidden; }
.repertoire-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(1) contrast(1.05);
}

@media (max-width: 1020px) {
  .repertoire-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .repertoire-intro h2 { max-width: 12ch; }
  .repertoire-toolbar { grid-template-columns: 1fr; gap: 22px; }
  .repertoire-filter { justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
  .repertoire-filter::-webkit-scrollbar { display: none; }
  .repertoire-filter button { flex: 0 0 auto; }
  .repertoire-row { grid-template-columns: 44px 1.25fr 1fr 90px 24px; }
  .repertoire-status { display: none; }
  .repertoire-featured { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .repertoire-hero { min-height: 88svh; }
  .repertoire-hero > img {
    inset: 64px 0 0;
    height: calc(100% - 64px);
    object-position: 63% 40%;
  }
  .repertoire-hero-overlay {
    background:
      linear-gradient(0deg, rgba(5,6,8,.97) 0%, rgba(5,6,8,.75) 38%, rgba(5,6,8,.08) 74%),
      linear-gradient(90deg, rgba(5,6,8,.25), transparent 70%);
  }
  .repertoire-hero-inner {
    min-height: 88svh;
    padding: 120px 0 48px;
  }
  .repertoire-hero-inner h1 { font-size: clamp(5.2rem, 25vw, 8rem); }
  .repertoire-hero-inner > p:not(.eyebrow) { max-width: 330px; font-size: 1.15rem; }
  .repertoire-intro h2 { font-size: clamp(3.4rem, 15vw, 5.8rem); }
  .repertoire-intro-actions { flex-direction: column; align-items: stretch; }
  .repertoire-browser-head { align-items: start; }
  .repertoire-browser-head > p { display: none; }
  .repertoire-toolbar {
    top: 64px;
    margin-bottom: 58px;
    padding: 17px 0 15px;
  }
  .repertoire-category-head { grid-template-columns: 1fr; gap: 18px; }
  .repertoire-category-head > div { grid-template-columns: 38px 1fr; gap: 12px; }
  .repertoire-category-head h3 { font-size: clamp(3rem, 14vw, 5.2rem); }
  .repertoire-row {
    grid-template-columns: 33px 1fr 22px;
    gap: 12px;
    min-height: 0;
    padding: 20px 0;
  }
  .repertoire-context,
  .repertoire-row time,
  .repertoire-status { display: none; }
  .repertoire-number { align-self: start; padding-top: 5px; }
  .repertoire-role strong { font-size: clamp(1.65rem, 8vw, 2.25rem); }
  .repertoire-row i { grid-column: 3; grid-row: 1; }
  .repertoire-featured { grid-template-columns: 1fr; min-height: 0; }
  .repertoire-featured-copy { padding: 92px 20px; }
  .repertoire-featured-copy h2 { font-size: clamp(3.6rem, 16vw, 5.8rem); }
  .repertoire-featured-image { min-height: 620px; }
}


/* =========================================================
   v2.4 - performances / events
   ========================================================= */
.events-hero-v24 {
  position: relative;
  min-height: min(850px, 84svh);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.events-hero-v24 > img {
  position: absolute;
  inset: 68px 0 0;
  width: 100%;
  height: calc(100% - 68px);
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(.74) contrast(1.03) brightness(.72);
}
.events-hero-v24-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,5,8,.97) 0%, rgba(4,5,8,.82) 27%, rgba(4,5,8,.24) 58%, rgba(4,5,8,.04) 100%),
    linear-gradient(0deg, rgba(4,5,8,.55) 0%, transparent 52%);
}
.events-hero-v24-inner {
  position: relative;
  z-index: 2;
  width: var(--page);
  min-height: min(850px, 84svh);
  margin-inline: auto;
  padding: 132px 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.events-hero-v24-inner h1 {
  margin: 8px 0 20px;
  font-family: var(--serif);
  font-size: clamp(6.2rem, 13vw, 14rem);
  font-weight: 400;
  line-height: .76;
  letter-spacing: -.07em;
}
.events-hero-v24-inner > p:not(.eyebrow) {
  max-width: 570px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.77);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 2rem);
}
.events-hero-credit {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 24px;
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: .54rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.next-event-v24 {
  padding: clamp(58px, 6vw, 92px) 0;
  background: var(--ivory);
  border-bottom: 1px solid rgba(23,59,143,.15);
}
.next-event-v24-grid {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: clamp(38px, 6vw, 92px);
  align-items: center;
}
.next-event-date {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  border-right: 1px solid rgba(201,164,92,.65);
  padding-right: 45px;
}
.next-event-date > span {
  grid-column: 1 / -1;
  margin-bottom: 13px;
  color: var(--royal);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.next-event-date strong {
  font-family: var(--serif);
  font-size: clamp(5.3rem, 8vw, 8.6rem);
  font-weight: 400;
  line-height: .7;
  letter-spacing: -.065em;
  color: var(--royal-dark);
}
.next-event-date em {
  margin: 0 0 4px 13px;
  color: var(--gold-dark);
  font-size: .67rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .1em;
}
.next-event-copy h2 {
  margin: 5px 0 4px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.7vw, 5rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.045em;
}
.next-event-copy > p:last-child {
  margin: 13px 0 0;
  color: var(--muted);
}
.next-event-subtitle {
  margin: 10px 0 0;
  color: var(--gold-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.next-event-actions {
  min-width: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}
.button.blue-fill {
  color: var(--white);
  background: var(--royal);
  border-color: var(--royal);
}
.button.blue-fill:hover { background: var(--royal-bright); border-color: var(--royal-bright); }

.upcoming-events-v24 {
  color: var(--white);
  background: var(--royal-dark);
}
.events-section-head-v24 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}
.events-section-head-v24 h2 {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.06em;
}
.events-section-head-v24 > p {
  max-width: 400px;
  margin: 0 0 9px;
  color: rgba(255,255,255,.53);
  font-size: .74rem;
  line-height: 1.55;
}
.events-section-head-v24.archive { color: var(--ink); }
.events-section-head-v24.archive > p { color: var(--muted); }
.events-section-head-v24.archive strong {
  color: var(--royal);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.upcoming-list-v24 { border-top: 1px solid rgba(255,255,255,.22); }
.upcoming-row-v24 {
  display: grid;
  grid-template-columns: 190px minmax(330px,1.15fr) minmax(240px,.75fr) 84px;
  gap: 28px;
  align-items: center;
  min-height: 146px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.upcoming-date-v24 time {
  display: block;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 3.3rem);
  line-height: .94;
  letter-spacing: -.035em;
}
.upcoming-date-v24 span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.46);
  font-size: .58rem;
  letter-spacing: .12em;
}
.upcoming-type-v24 {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.upcoming-main-v24 h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.7vw, 3.1rem);
  font-weight: 400;
  line-height: .98;
}
.upcoming-main-v24 p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.48);
  font-size: .74rem;
}
.upcoming-place-v24 {
  color: rgba(255,255,255,.68);
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.35;
}
.upcoming-actions-v24 {
  justify-self: end;
  display: flex;
  gap: 9px;
}
.upcoming-actions-v24 a,
.archive-link-v24 a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,164,92,.6);
  color: var(--gold-light);
  transition: color .25s ease, background .25s ease, transform .25s var(--ease);
}
.upcoming-actions-v24 a:hover,
.archive-link-v24 a:hover {
  color: var(--black);
  background: var(--gold);
  transform: translateY(-2px);
}

.events-archive-v24 {
  background: var(--ivory);
}
.events-toolbar-v24 {
  position: sticky;
  z-index: 9;
  top: 68px;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 55px;
  margin-bottom: 80px;
  padding: 21px 0 17px;
  background: rgba(245,240,231,.94);
  border-top: 1px solid rgba(23,59,143,.16);
  border-bottom: 1px solid rgba(23,59,143,.16);
  backdrop-filter: blur(15px);
}
.events-filter-group-v24 > span {
  display: block;
  margin-bottom: 11px;
  color: var(--gold-dark);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.events-filter-v24 {
  display: flex;
  gap: clamp(15px, 2vw, 30px);
  overflow-x: auto;
  scrollbar-width: none;
}
.events-filter-v24::-webkit-scrollbar { display: none; }
.events-filter-v24 button {
  position: relative;
  flex: 0 0 auto;
  border: 0;
  padding: 0 0 7px;
  color: var(--muted);
  background: transparent;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}
.events-filter-v24 button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--royal);
  transition: right .28s var(--ease);
}
.events-filter-v24 button:hover,
.events-filter-v24 button.is-active { color: var(--royal); }
.events-filter-v24 button.is-active::after { right: 0; }

.archive-year-v24 {
  margin-bottom: clamp(88px, 10vw, 155px);
}
.archive-year-v24[hidden] { display: none !important; }
.archive-year-v24 > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}
.archive-year-v24 > header span {
  color: var(--royal-dark);
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 11rem);
  line-height: .78;
  letter-spacing: -.06em;
}
.archive-year-v24 > header p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: .62rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.archive-list-v24 { border-top: 1px solid rgba(17,18,23,.18); }
.archive-row-v24 {
  display: grid;
  grid-template-columns: 135px minmax(350px,1.1fr) minmax(250px,.75fr) 42px;
  gap: 28px;
  align-items: center;
  min-height: 108px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(17,18,23,.14);
}
.archive-row-v24[hidden] { display: none !important; }
.archive-row-v24 time {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.15rem;
}
.archive-title-v24 > span {
  display: block;
  margin-bottom: 4px;
  color: var(--royal);
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.archive-title-v24 h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.1vw, 2.45rem);
  font-weight: 400;
  line-height: 1;
}
.archive-title-v24 p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .72rem;
}
.archive-venue-v24 {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}
.archive-link-v24 { justify-self: end; }
.archive-link-v24 a {
  border-color: rgba(23,59,143,.32);
  color: var(--royal);
}
.events-empty-v24 {
  padding: 75px 0 35px;
  border-top: 1px solid rgba(17,18,23,.15);
}
.events-empty-v24 h3 {
  max-width: 660px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: .93;
}

.events-booking-v24 {
  display: grid;
  grid-template-columns: 1fr minmax(330px,.42fr);
  color: var(--white);
  background: var(--black);
}
.events-booking-copy-v24 {
  padding: clamp(90px, 11vw, 180px) var(--gutter);
}
.events-booking-copy-v24 h2 {
  max-width: 12ch;
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.06em;
}
.events-booking-copy-v24 > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 0 38px;
  color: rgba(255,255,255,.58);
  font-size: 1.06rem;
}
.events-booking-meta-v24 {
  padding: clamp(70px, 9vw, 140px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--royal);
}
.events-booking-meta-v24 span {
  margin-bottom: 13px;
  color: var(--gold-light);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.events-booking-meta-v24 a {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 3rem);
}

@media (max-width: 1050px) {
  .next-event-v24-grid { grid-template-columns: 220px 1fr; }
  .next-event-actions { grid-column: 2; flex-direction: row; align-items: center; }
  .upcoming-row-v24 { grid-template-columns: 155px 1fr 230px 84px; }
  .events-toolbar-v24 { grid-template-columns: 1fr; gap: 22px; }
  .archive-row-v24 { grid-template-columns: 120px 1.1fr .75fr 42px; }
}

@media (max-width: 780px) {
  .events-hero-v24 { min-height: 88svh; }
  .events-hero-v24 > img {
    inset: 64px 0 0;
    height: calc(100% - 64px);
    object-position: 52% center;
  }
  .events-hero-v24-shade {
    background:
      linear-gradient(0deg, rgba(4,5,8,.96) 0%, rgba(4,5,8,.7) 36%, rgba(4,5,8,.1) 74%),
      linear-gradient(90deg, rgba(4,5,8,.32), transparent 80%);
  }
  .events-hero-v24-inner {
    min-height: 88svh;
    padding: 120px 0 47px;
  }
  .events-hero-v24-inner h1 { font-size: clamp(5rem, 25vw, 8rem); }
  .events-hero-v24-inner > p:not(.eyebrow) { max-width: 330px; font-size: 1.1rem; }

  .next-event-v24 { padding: 58px 0 64px; }
  .next-event-v24-grid { grid-template-columns: 1fr; gap: 32px; }
  .next-event-date {
    max-width: 270px;
    border-right: 0;
    border-bottom: 1px solid rgba(201,164,92,.5);
    padding: 0 0 25px;
  }
  .next-event-actions { grid-column: auto; flex-direction: column; align-items: stretch; }
  .next-event-copy h2 { font-size: clamp(3rem, 15vw, 5rem); }

  .events-section-head-v24 { align-items: start; }
  .events-section-head-v24 > p { display: none; }
  .events-section-head-v24 h2 { font-size: clamp(3.7rem, 16vw, 6rem); }

  .upcoming-row-v24 {
    grid-template-columns: 1fr 76px;
    gap: 14px 20px;
    min-height: 0;
    padding: 27px 0;
  }
  .upcoming-date-v24 { grid-column: 1; }
  .upcoming-date-v24 time { font-size: clamp(2.1rem, 10vw, 3rem); }
  .upcoming-main-v24 { grid-column: 1; }
  .upcoming-main-v24 h3 { font-size: clamp(1.8rem, 8.5vw, 2.65rem); }
  .upcoming-place-v24 {
    grid-column: 1;
    color: rgba(255,255,255,.56);
    font-size: .88rem;
  }
  .upcoming-actions-v24 {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
    flex-direction: column;
  }

  .events-toolbar-v24 {
    top: 64px;
    margin-bottom: 58px;
    padding: 16px 0 13px;
  }
  .events-filter-v24 { margin-right: -20px; padding-right: 20px; }

  .archive-year-v24 > header span { font-size: clamp(5rem, 24vw, 8rem); }
  .archive-row-v24 {
    grid-template-columns: 1fr 36px;
    gap: 10px 15px;
    min-height: 0;
    padding: 23px 0;
  }
  .archive-row-v24 time {
    grid-column: 1;
    color: var(--gold-dark);
  }
  .archive-title-v24 { grid-column: 1; }
  .archive-title-v24 h3 { font-size: clamp(1.7rem, 8vw, 2.5rem); }
  .archive-venue-v24 {
    grid-column: 1;
    font-size: .75rem;
  }
  .archive-link-v24 {
    grid-column: 2;
    grid-row: 1 / span 3;
    align-self: center;
  }

  .events-booking-v24 { grid-template-columns: 1fr; }
  .events-booking-copy-v24 { padding: 92px 20px; }
  .events-booking-copy-v24 h2 { font-size: clamp(3.7rem, 16vw, 6rem); }
  .events-booking-meta-v24 { padding: 58px 20px 65px; }
}


/* =========================================================
   v2.5 - Media
   ========================================================= */

.media-hero-v25 {
  position: relative;
  min-height: min(850px, 84svh);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.media-hero-v25 > img {
  position: absolute;
  inset: 68px 0 0;
  width: 100%;
  height: calc(100% - 68px);
  object-fit: cover;
  object-position: 63% 36%;
  filter: grayscale(1) contrast(1.08) brightness(.72);
}
.media-hero-v25-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,5,8,.98) 0%, rgba(4,5,8,.86) 28%, rgba(4,5,8,.34) 55%, rgba(4,5,8,.06) 100%),
    linear-gradient(0deg, rgba(4,5,8,.48), transparent 54%);
}
.media-hero-v25-inner {
  position: relative;
  z-index: 2;
  width: var(--page);
  min-height: min(850px, 84svh);
  margin-inline: auto;
  padding: 132px 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.media-hero-v25-inner h1 {
  margin: 8px 0 20px;
  font-family: var(--serif);
  font-size: clamp(6.2rem, 13vw, 14rem);
  font-weight: 400;
  line-height: .76;
  letter-spacing: -.07em;
}
.media-hero-v25-inner > p:not(.eyebrow) {
  max-width: 590px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.76);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 2rem);
}
.media-hero-v25-credit {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 24px;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: .54rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.media-intro-v25 { background: var(--ivory); }
.media-intro-v25-grid {
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  gap: clamp(65px, 10vw, 170px);
  align-items: start;
}
.media-intro-v25 h2 {
  max-width: 8ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.3rem, 8vw, 9.2rem);
  font-weight: 400;
  line-height: .83;
  letter-spacing: -.06em;
}
.media-intro-v25-copy > p {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.45rem);
  line-height: 1.16;
}
.media-counts-v25 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  margin-top: 45px;
  background: rgba(23,59,143,.18);
}
.media-counts-v25 a {
  padding: 24px;
  background: var(--ivory);
  border: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.media-counts-v25 a:hover { border-color: var(--gold); background: var(--white); }
.media-counts-v25 strong {
  display: block;
  color: var(--royal);
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}
.media-counts-v25 span {
  color: var(--muted);
  font-size: .62rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.featured-video-v25 { padding: 0; background: var(--black); }
.featured-video-frame-v25 {
  position: relative;
  min-height: min(900px, 78vw);
  max-height: 940px;
  overflow: hidden;
  background: var(--black);
}
.featured-video-frame-v25 > img {
  width: 100%;
  height: 100%;
  min-height: min(900px, 78vw);
  object-fit: cover;
  object-position: center;
  filter: brightness(.62) saturate(.8);
}
.featured-video-shade-v25 {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4,5,8,.86) 0%, rgba(4,5,8,.08) 58%);
  pointer-events: none;
}
.featured-video-copy-v25 {
  position: absolute;
  z-index: 2;
  left: var(--gutter);
  bottom: clamp(45px, 7vw, 95px);
  max-width: 760px;
  color: var(--white);
}
.featured-video-copy-v25 h2 {
  margin: 6px 0 14px;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 8.7vw, 10rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.065em;
}
.featured-video-copy-v25 > p:last-child { margin: 0; color: rgba(255,255,255,.62); font-size: 1rem; }
.video-play-v25 {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: clamp(78px, 9vw, 128px);
  height: clamp(78px, 9vw, 128px);
  transform: translate(-50%,-50%);
  border: 1px solid rgba(216,190,130,.82);
  border-radius: 50%;
  color: var(--white);
  background: rgba(4,5,8,.22);
  backdrop-filter: blur(7px);
  cursor: pointer;
  transition: background .25s ease, transform .25s var(--ease);
}
.video-play-v25:hover { background: var(--royal); transform: translate(-50%,-50%) scale(1.05); }
.video-play-v25 span { margin-left: 5px; font-size: 1.3rem; }
.featured-video-embed-v25 { width: 100%; min-height: min(900px, 56.25vw); border: 0; display: block; }

.video-index-v25 { background: var(--ivory); }
.media-section-head-v25 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 55px;
  margin-bottom: 58px;
}
.media-section-head-v25 h2 {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.06em;
}
.media-section-head-v25 > p {
  max-width: 470px;
  margin: 0 0 9px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.55;
}
.media-section-head-v25.light { color: var(--white); }
.media-section-head-v25.light > p { color: rgba(255,255,255,.5); }

.video-grid-v25 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: clamp(45px, 6vw, 90px) 8px;
}
.video-card-v25 { display: grid; grid-template-columns: 1fr; }
.video-card-image-v25 {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--black);
}
.video-card-image-v25 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78);
  transition: transform .55s var(--ease), filter .4s ease;
}
.video-card-image-v25:hover img { transform: scale(1.025); filter: brightness(.66); }
.video-card-play-v25 {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--royal);
  border: 1px solid var(--gold);
}
.video-card-copy-v25 { padding: 24px 8px 0; }
.video-card-copy-v25 h3 {
  margin: 5px 0 9px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 400;
  line-height: .95;
}
.video-card-copy-v25 > p:not(.eyebrow) { margin: 0 0 20px; color: var(--muted); font-size: .78rem; }
.video-card-copy-v25 > div { display: flex; gap: 30px; flex-wrap: wrap; }
.text-link.secondary { color: var(--muted); }

.audio-v25 { color: var(--white); background: var(--royal-dark); }
.audio-card-v25 {
  display: grid;
  grid-template-columns: 70px minmax(300px,1fr) minmax(320px,.8fr) 42px;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.audio-index-v25 { color: var(--gold); font-family: var(--serif); font-size: 1.3rem; }
.audio-copy-v25 h3 {
  margin: 5px 0 7px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  font-weight: 400;
  line-height: .98;
}
.audio-copy-v25 > p:last-child { margin: 0; color: rgba(255,255,255,.5); font-size: .74rem; }
.audio-card-v25 audio { width: 100%; height: 42px; }
.audio-card-v25 > a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,164,92,.65);
  color: var(--gold-light);
}

.photo-gallery-v25 { background: var(--ivory); }
.photo-filter-v25 {
  display: flex;
  gap: clamp(18px, 2vw, 34px);
  overflow-x: auto;
  margin-bottom: 45px;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.photo-filter-v25::-webkit-scrollbar { display: none; }
.photo-filter-v25 button {
  position: relative;
  flex: 0 0 auto;
  border: 0;
  padding: 0 0 8px;
  color: var(--muted);
  background: transparent;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
}
.photo-filter-v25 button::after {
  content:"";
  position:absolute;
  left:0; right:100%; bottom:0;
  height:1px;
  background:var(--royal);
  transition:right .28s var(--ease);
}
.photo-filter-v25 button.is-active,
.photo-filter-v25 button:hover { color: var(--royal); }
.photo-filter-v25 button.is-active::after { right:0; }

.photo-mosaic-v25 {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-auto-rows: minmax(80px, 5.6vw);
  gap: 7px;
}
.photo-item-v25 {
  grid-column: span 4;
  grid-row: span 6;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.photo-item-v25[hidden] { display: none !important; }
.photo-item-v25:nth-child(7n+1) { grid-column: span 7; grid-row: span 8; }
.photo-item-v25:nth-child(7n+2) { grid-column: span 5; grid-row: span 8; }
.photo-item-v25:nth-child(7n+4) { grid-column: span 6; grid-row: span 7; }
.photo-item-v25:nth-child(7n+5) { grid-column: span 6; grid-row: span 7; }

.photo-item-v25 > button {
  position: relative;
  flex: 1;
  min-height: 0;
  border: 0;
  padding: 0;
  background: var(--black);
  overflow: hidden;
  cursor: zoom-in;
}
.photo-item-v25 img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease), filter .35s ease;
}
.photo-item-v25 > button:hover img { transform: scale(1.018); filter: brightness(.86); }
.photo-zoom-v25 {
  position:absolute;
  right:15px; bottom:15px;
  display:grid; place-items:center;
  width:36px; height:36px;
  color:var(--white);
  background:rgba(8,27,73,.86);
  border:1px solid rgba(216,190,130,.65);
  opacity:0;
  transform:translateY(5px);
  transition:.25s ease;
}
.photo-item-v25 > button:hover .photo-zoom-v25 { opacity:1; transform:none; }
.photo-item-v25 figcaption {
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:13px 2px 18px;
}
.photo-item-v25 figcaption strong,
.photo-item-v25 figcaption span { display:block; }
.photo-item-v25 figcaption strong { font-family:var(--serif); font-size:1rem; font-weight:400; }
.photo-item-v25 figcaption span,
.photo-item-v25 figcaption small { color:var(--muted); font-size:.62rem; }
.photo-item-v25 figcaption small { text-align:right; white-space:nowrap; }

.media-press-v25 {
  display:grid;
  grid-template-columns:1fr minmax(330px,.4fr);
  color:var(--white);
  background:var(--black);
}
.media-press-v25 > div:first-child { padding:clamp(90px,11vw,180px) var(--gutter); }
.media-press-v25 h2 {
  max-width:11ch;
  margin:0 0 28px;
  font-family:var(--serif);
  font-size:clamp(4rem,7vw,8rem);
  font-weight:400;
  line-height:.84;
  letter-spacing:-.06em;
}
.media-press-v25 > div:first-child > p:not(.eyebrow) { max-width:570px; margin:0 0 38px; color:rgba(255,255,255,.58); }
.media-press-v25-side {
  padding:clamp(70px,9vw,140px) var(--gutter);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:var(--royal);
}
.media-press-v25-side span {
  margin-bottom:12px;
  color:var(--gold-light);
  font-size:.6rem;
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.media-press-v25-side a { font-family:var(--serif); font-size:clamp(1.5rem,2.5vw,2.8rem); }

/* Lightbox */
body.lightbox-open-v25 { overflow:hidden; }
.lightbox-v25 {
  position:fixed;
  inset:0;
  z-index:300;
}
.lightbox-v25[hidden] { display:none !important; }
.lightbox-backdrop-v25 {
  position:absolute;
  inset:0;
  background:rgba(2,3,6,.96);
  backdrop-filter:blur(10px);
}
.lightbox-dialog-v25 {
  position:relative;
  z-index:2;
  width:100%;
  height:100%;
  display:grid;
  grid-template-columns:72px 1fr 72px;
  align-items:center;
  padding:32px;
}
.lightbox-dialog-v25 figure {
  width:min(1500px,100%);
  height:min(86vh,980px);
  margin:auto;
  display:grid;
  grid-template-rows:minmax(0,1fr) auto;
}
.lightbox-dialog-v25 figure img {
  width:100%;
  height:100%;
  object-fit:contain;
}
.lightbox-dialog-v25 figcaption {
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:15px 0 0;
  color:var(--white);
}
.lightbox-dialog-v25 figcaption strong { font-family:var(--serif); font-size:1.15rem; font-weight:400; }
.lightbox-dialog-v25 figcaption span,
.lightbox-dialog-v25 figcaption small { color:rgba(255,255,255,.5); font-size:.66rem; }
.lightbox-close-v25,
.lightbox-nav-v25 {
  position:relative;
  z-index:4;
  border:0;
  color:var(--white);
  background:transparent;
  cursor:pointer;
}
.lightbox-close-v25 {
  position:absolute;
  top:24px;
  right:26px;
  font-size:2.1rem;
}
.lightbox-nav-v25 { font-size:2rem; }
.lightbox-nav-v25.prev { grid-column:1; }
.lightbox-dialog-v25 figure { grid-column:2; }
.lightbox-nav-v25.next { grid-column:3; }

@media (max-width: 1000px) {
  .media-intro-v25-grid { grid-template-columns:1fr; gap:50px; }
  .video-grid-v25 { gap:60px 7px; }
  .audio-card-v25 { grid-template-columns:55px 1fr; }
  .audio-card-v25 audio { grid-column:2; }
  .audio-card-v25 > a { grid-column:2; justify-self:end; }
  .photo-mosaic-v25 { grid-auto-rows:minmax(90px,7vw); }
}

@media (max-width: 780px) {
  .media-hero-v25 { min-height:88svh; }
  .media-hero-v25 > img { inset:64px 0 0; height:calc(100% - 64px); object-position:58% center; }
  .media-hero-v25-overlay {
    background:
      linear-gradient(0deg, rgba(4,5,8,.97) 0%, rgba(4,5,8,.72) 36%, rgba(4,5,8,.12) 75%),
      linear-gradient(90deg, rgba(4,5,8,.35), transparent 80%);
  }
  .media-hero-v25-inner { min-height:88svh; padding:120px 0 48px; }
  .media-hero-v25-inner h1 { font-size:clamp(5rem,25vw,8rem); }
  .media-hero-v25-inner > p:not(.eyebrow) { max-width:330px; font-size:1.08rem; }

  .media-intro-v25 h2 { font-size:clamp(3.7rem,16vw,6rem); }
  .media-counts-v25 { grid-template-columns:repeat(3,1fr); }
  .media-counts-v25 a { padding:18px 12px; }
  .media-counts-v25 strong { font-size:2.3rem; }

  .featured-video-frame-v25,
  .featured-video-frame-v25 > img { min-height:76svh; }
  .featured-video-copy-v25 { left:20px; right:20px; bottom:34px; }
  .featured-video-copy-v25 h2 { font-size:clamp(3.6rem,16vw,6.2rem); }
  .video-play-v25 { top:42%; }

  .media-section-head-v25 { align-items:start; }
  .media-section-head-v25 > p { display:none; }
  .media-section-head-v25 h2 { font-size:clamp(3.6rem,16vw,6rem); }

  .video-grid-v25 { grid-template-columns:1fr; gap:56px; }
  .video-card-copy-v25 { padding-left:0; padding-right:0; }

  .audio-card-v25 { grid-template-columns:38px 1fr; gap:16px; }
  .audio-card-v25 audio { grid-column:1 / -1; }
  .audio-card-v25 > a { grid-column:2; }
  .audio-copy-v25 h3 { font-size:clamp(1.9rem,9vw,2.8rem); }

  .photo-mosaic-v25 { display:grid; grid-template-columns:1fr; grid-auto-rows:auto; gap:35px; }
  .photo-item-v25,
  .photo-item-v25:nth-child(n) { grid-column:auto; grid-row:auto; }
  .photo-item-v25 > button { aspect-ratio:4/5; }
  .photo-item-v25:nth-child(3n) > button { aspect-ratio:4/3; }
  .photo-item-v25 figcaption { padding-bottom:0; }

  .media-press-v25 { grid-template-columns:1fr; }
  .media-press-v25 > div:first-child { padding:92px 20px; }
  .media-press-v25 h2 { font-size:clamp(3.7rem,16vw,6rem); }
  .media-press-v25-side { padding:58px 20px 65px; }

  .lightbox-dialog-v25 { grid-template-columns:44px 1fr 44px; padding:18px 6px 24px; }
  .lightbox-dialog-v25 figure { height:86vh; }
  .lightbox-dialog-v25 figcaption { display:block; padding:10px 10px 0; }
  .lightbox-dialog-v25 figcaption span,
  .lightbox-dialog-v25 figcaption small { display:block; margin-top:4px; }
}


/* =========================================================
   v2.6 - Reviews and press archive
   ========================================================= */

.press-hero-v26 {
  position: relative;
  min-height: min(860px, 85svh);
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.press-hero-v26 > img {
  position: absolute;
  inset: 68px 0 0;
  width: 100%;
  height: calc(100% - 68px);
  object-fit: cover;
  object-position: 64% 36%;
  filter: grayscale(1) contrast(1.08) brightness(.72);
}
.press-hero-v26-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,5,8,.98) 0%, rgba(4,5,8,.88) 30%, rgba(4,5,8,.38) 57%, rgba(4,5,8,.05) 100%),
    linear-gradient(0deg, rgba(4,5,8,.56), transparent 55%);
}
.press-hero-v26-inner {
  position: relative;
  z-index: 2;
  width: var(--page);
  min-height: min(860px, 85svh);
  margin-inline: auto;
  padding: 135px 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.press-hero-v26-inner h1 {
  margin: 7px 0 22px;
  font-family: var(--serif);
  font-size: clamp(5.8rem, 11.5vw, 12.5rem);
  font-weight: 400;
  line-height: .76;
  letter-spacing: -.068em;
}
.press-hero-v26-inner > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 0 31px;
  color: rgba(255,255,255,.76);
  font-family: var(--serif);
  font-size: clamp(1.22rem, 2vw, 1.95rem);
}
.press-hero-v26-credit {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 24px;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: .54rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.press-intro-v26 { background: var(--ivory); }
.press-intro-v26-grid {
  display: grid;
  grid-template-columns: 1.08fr .72fr;
  gap: clamp(65px, 10vw, 170px);
}
.press-intro-v26 h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.5vw, 8.8rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.06em;
}
.press-intro-v26-grid > div:last-child p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.02rem;
}
.press-intro-v26-grid > div:last-child p:first-child {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.35vw, 2.35rem);
  line-height: 1.16;
}

.press-featured-v26 {
  color: var(--white);
  background: var(--royal-dark);
}
.press-section-head-v26 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 55px;
  margin-bottom: 58px;
}
.press-section-head-v26 h2 {
  max-width: 11ch;
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.5vw, 8.6rem);
  font-weight: 400;
  line-height: .83;
  letter-spacing: -.06em;
}
.press-section-head-v26 > p {
  max-width: 440px;
  margin: 0 0 9px;
  color: rgba(255,255,255,.5);
  font-size: .76rem;
  line-height: 1.55;
}
.press-featured-grid-v26 {
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr;
  gap: 1px;
  background: rgba(255,255,255,.17);
}
.press-feature-card-v26 {
  min-height: 560px;
  padding: clamp(35px, 4.2vw, 68px);
  display: flex;
  flex-direction: column;
  background: var(--royal-dark);
  transition: background .3s ease;
}
.press-feature-card-v26:first-child { background: var(--royal); }
.press-feature-card-v26:hover { background: #102a68; }
.press-feature-meta-v26 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: auto;
  color: rgba(255,255,255,.52);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.press-feature-card-v26 .eyebrow { margin-top: 70px; }
.press-feature-card-v26 h3 {
  margin: 10px 0 36px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.8vw, 4.6rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.04em;
}
.press-feature-actions-v26 { display: flex; gap: 28px; flex-wrap: wrap; }

.press-editorial-v26 {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 790px;
  background: var(--ivory);
}
.press-editorial-image-v26 {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  background: var(--black);
}
.press-editorial-image-v26 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.04);
}
.press-editorial-image-v26 > span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: rgba(255,255,255,.65);
  font-size: .55rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.press-editorial-copy-v26 {
  padding: clamp(75px, 9vw, 150px) var(--gutter);
}
.press-editorial-copy-v26 h2 {
  max-width: 9ch;
  margin: 0 0 30px;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.06em;
}
.press-editorial-copy-v26 > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 48px;
  color: var(--muted);
  font-size: 1rem;
}
.press-editorial-copy-v26 ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(23,59,143,.18);
}
.press-editorial-copy-v26 li {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 22px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23,59,143,.16);
}
.press-editorial-copy-v26 li span {
  color: var(--royal);
  font-size: .59rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.press-editorial-copy-v26 li strong {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
}
.press-editorial-copy-v26 li em {
  color: var(--muted);
  font-size: .65rem;
  font-style: normal;
  white-space: nowrap;
}

.press-archive-v26 { background: var(--ivory); }
.press-section-head-v26.archive { color: var(--ink); }
.press-section-head-v26.archive > p { color: var(--muted); }
.press-section-head-v26.archive strong {
  color: var(--royal);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.press-toolbar-v26 {
  position: sticky;
  z-index: 10;
  top: 68px;
  display: grid;
  grid-template-columns: minmax(245px,.7fr) 1.4fr .65fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 65px;
  padding: 18px 0 16px;
  background: rgba(245,240,231,.95);
  border-top: 1px solid rgba(23,59,143,.16);
  border-bottom: 1px solid rgba(23,59,143,.16);
  backdrop-filter: blur(14px);
}
.press-search-v26,
.press-filter-block-v26 { display: grid; gap: 9px; }
.press-search-v26 > span,
.press-filter-block-v26 > span {
  color: var(--gold-dark);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.press-search-v26 input {
  width: 100%;
  min-height: 43px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid rgba(23,59,143,.35);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--serif);
  font-size: 1.08rem;
}
.press-search-v26 input:focus { border-color: var(--royal); }
.press-filter-v26 {
  display: flex;
  gap: clamp(14px, 1.7vw, 27px);
  overflow-x: auto;
  scrollbar-width: none;
}
.press-filter-v26::-webkit-scrollbar { display: none; }
.press-filter-v26 button {
  position: relative;
  flex: 0 0 auto;
  border: 0;
  padding: 0 0 7px;
  color: var(--muted);
  background: transparent;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}
.press-filter-v26 button::after {
  content:"";
  position:absolute;
  left:0; right:100%; bottom:0;
  height:1px;
  background:var(--royal);
  transition:right .28s var(--ease);
}
.press-filter-v26 button:hover,
.press-filter-v26 button.is-active { color: var(--royal); }
.press-filter-v26 button.is-active::after { right:0; }

.press-table-v26 { border-top: 1px solid rgba(17,18,23,.18); }
.press-row-v26 {
  display: grid;
  grid-template-columns: 80px 190px minmax(360px,1fr) 85px;
  gap: 25px;
  align-items: center;
  min-height: 118px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(17,18,23,.14);
}
.press-row-v26[hidden] { display: none !important; }
.press-row-date-v26 time {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.05rem;
}
.press-row-source-v26 strong,
.press-row-source-v26 span { display:block; }
.press-row-source-v26 strong {
  font-family:var(--serif);
  font-size:1.06rem;
  font-weight:400;
}
.press-row-source-v26 span {
  margin-top:5px;
  color:var(--royal);
  font-size:.55rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.press-row-title-v26 h3 {
  margin:0;
  font-family:var(--serif);
  font-size:clamp(1.35rem,2vw,2.3rem);
  font-weight:400;
  line-height:1;
}
.press-row-title-v26 > span,
.press-row-title-v26 small {
  display:block;
  margin-top:7px;
  color:var(--muted);
  font-size:.65rem;
}
.press-row-title-v26 small { max-width:750px; line-height:1.45; }
.press-row-actions-v26 {
  justify-self:end;
  display:flex;
  gap:8px;
}
.press-row-actions-v26 a,
.press-row-actions-v26 > span {
  display:grid;
  place-items:center;
  width:37px;
  height:37px;
  border:1px solid rgba(23,59,143,.27);
  color:var(--royal);
}
.press-row-actions-v26 > span { color:var(--muted); border-color:rgba(17,18,23,.12); }
.press-row-actions-v26 a:hover { color:var(--white); background:var(--royal); }

.press-empty-v26 {
  padding:75px 0 35px;
}
.press-empty-v26 h3 {
  max-width:650px;
  margin:0;
  font-family:var(--serif);
  font-size:clamp(2.8rem,5vw,5.7rem);
  font-weight:400;
  line-height:.93;
}

.press-next-v26 {
  display:grid;
  grid-template-columns:1.08fr .72fr;
  min-height:760px;
  color:var(--white);
  background:var(--black);
}
.press-next-copy-v26 {
  padding:clamp(90px,11vw,180px) var(--gutter);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.press-next-copy-v26 h2 {
  max-width:10ch;
  margin:0 0 28px;
  font-family:var(--serif);
  font-size:clamp(4rem,7vw,8rem);
  font-weight:400;
  line-height:.84;
  letter-spacing:-.06em;
}
.press-next-copy-v26 > p:not(.eyebrow) {
  max-width:570px;
  margin:0 0 38px;
  color:rgba(255,255,255,.58);
}
.press-next-image-v26 { min-height:760px; overflow:hidden; }
.press-next-image-v26 img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:grayscale(1) brightness(.78);
}

@media (max-width:1050px) {
  .press-intro-v26-grid { grid-template-columns:1fr; gap:48px; }
  .press-featured-grid-v26 { grid-template-columns:1fr 1fr; }
  .press-feature-card-v26:first-child { grid-column:1 / -1; }
  .press-editorial-v26 { grid-template-columns:.8fr 1.2fr; }
  .press-toolbar-v26 { grid-template-columns:1fr; gap:20px; }
  .press-row-v26 { grid-template-columns:70px 165px 1fr 80px; }
}

@media (max-width:780px) {
  .press-hero-v26 { min-height:88svh; }
  .press-hero-v26 > img { inset:64px 0 0; height:calc(100% - 64px); object-position:61% center; }
  .press-hero-v26-overlay {
    background:
      linear-gradient(0deg,rgba(4,5,8,.97) 0%,rgba(4,5,8,.72) 38%,rgba(4,5,8,.11) 76%),
      linear-gradient(90deg,rgba(4,5,8,.32),transparent 82%);
  }
  .press-hero-v26-inner { min-height:88svh; padding:120px 0 48px; }
  .press-hero-v26-inner h1 { font-size:clamp(4.3rem,21vw,7rem); }
  .press-hero-v26-inner > p:not(.eyebrow) { max-width:340px; font-size:1.08rem; }

  .press-intro-v26 h2 { font-size:clamp(3.6rem,16vw,6rem); }
  .press-section-head-v26 { align-items:start; }
  .press-section-head-v26 > p { display:none; }
  .press-section-head-v26 h2 { font-size:clamp(3.6rem,16vw,6rem); }

  .press-featured-grid-v26 { grid-template-columns:1fr; gap:1px; }
  .press-feature-card-v26:first-child { grid-column:auto; }
  .press-feature-card-v26 { min-height:430px; padding:34px 20px; }
  .press-feature-card-v26 h3 { font-size:clamp(2.4rem,11vw,4rem); }

  .press-editorial-v26 { grid-template-columns:1fr; min-height:0; }
  .press-editorial-image-v26 { min-height:620px; }
  .press-editorial-copy-v26 { padding:82px 20px; }
  .press-editorial-copy-v26 h2 { font-size:clamp(3.6rem,16vw,6rem); }
  .press-editorial-copy-v26 li { grid-template-columns:80px 1fr; gap:12px; }
  .press-editorial-copy-v26 li em { grid-column:2; }

  .press-toolbar-v26 { top:64px; margin-bottom:50px; padding:14px 0 13px; }
  .press-filter-v26 { margin-right:-20px; padding-right:20px; }

  .press-row-v26 {
    grid-template-columns:1fr 70px;
    gap:10px 16px;
    min-height:0;
    padding:24px 0;
  }
  .press-row-date-v26 { grid-column:1; }
  .press-row-source-v26 { grid-column:1; }
  .press-row-title-v26 { grid-column:1; }
  .press-row-actions-v26 { grid-column:2; grid-row:1 / span 3; align-self:center; flex-direction:column; }
  .press-row-title-v26 h3 { font-size:clamp(1.65rem,8vw,2.4rem); }

  .press-next-v26 { grid-template-columns:1fr; min-height:0; }
  .press-next-copy-v26 { padding:92px 20px; }
  .press-next-copy-v26 h2 { font-size:clamp(3.6rem,16vw,6rem); }
  .press-next-image-v26 { min-height:620px; }
}
