/* ════════════════════════════════════════════════════════════
   DESIGN TOKENS — 2025 refresh
   ════════════════════════════════════════════════════════════ */
:root {
  --max: 1220px;

  --bg:        #f5f0e8;
  --bg-2:      #eae1d5;
  --bg-card:   rgba(32,24,20,.04);
  --bg-card-h: rgba(32,24,20,.075);
  --fg:        #211c1b;
  --muted:     rgba(33,28,27,.64);
  --muted-md:  rgba(33,28,27,.80);
  --line:      rgba(33,28,27,.11);
  --line-md:   rgba(33,28,27,.20);

  /* invariant "dark chrome" tokens — used by nav, footer, photo heroes.
     These never flip with the page theme, so light text always sits
     on a dark surface and vice versa. */
  --bg-inv:        #16151a;
  --ink-inv:       #f6f4ee;
  --ink-inv-muted: rgba(246,244,238,.68);
  --line-inv:      rgba(246,244,238,.18);

  --grad-1: #9f2636;
  --grad-2: #711e2b;
  --grad-3: #c18a52;
  --gradient: linear-gradient(115deg, var(--grad-1) 0%, var(--grad-2) 55%, var(--grad-3) 100%);

  --accent: #9f2636;
  --accent-fg: #14100f;
  --grad-fg: #f7ece0;

  --r:    18px;
  --r-lg: 28px;
  --r-xl: 42px;
  --r-pill: 999px;

  --s-1: 8px;   --s-2: 12px;  --s-3: 20px;
  --s-4: 28px;  --s-5: 44px;  --s-6: 72px;
  --s-7: 120px;

  --sh-sm: 0 4px 20px rgba(33,28,27,.07);
  --sh-md: 0 16px 40px rgba(33,28,27,.10);
  --sh-lg: 0 34px 90px rgba(33,28,27,.14);
  --sh-glow: 0 0 0 1px rgba(159,38,54,.3), 0 20px 50px rgba(159,38,54,.14);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ════════════════════════════════════════════════════════════
   RESET / BASE
   ════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  position: relative;
}

/* ambient mesh background, fixed behind everything */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(33,28,27,.05), transparent 65%),
    radial-gradient(900px 700px at 12% -8%, rgba(159,38,54,.09), transparent 60%),
    radial-gradient(800px 620px at 100% 0%, rgba(113,30,43,.08), transparent 60%),
    radial-gradient(70% 55% at 82% 96%, rgba(193,138,82,.10), transparent 65%),
    radial-gradient(50% 40% at 8% 88%, rgba(33,28,27,.03), transparent 65%);
}

/* grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.02;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
}

/* ════════════════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════════════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-16px) rotate(1.2deg); }
}
@keyframes shimmer {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}

.hero > * { animation: fade-up 1s var(--ease) both; }
.hero > *:nth-child(1) { animation-delay: 0.02s; }
.hero > *:nth-child(2) { animation-delay: 0.10s; }
.hero > *:nth-child(3) { animation-delay: 0.20s; }
.hero > *:nth-child(4) { animation-delay: 0.30s; }
.hero > *:nth-child(5) { animation-delay: 0.40s; }
.hero > *:nth-child(6) { animation-delay: 0.48s; }

/* JS-driven reveal fallback (works in every browser) */
.reveal-js {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal-js.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-js.stagger-1 { transition-delay: .08s; }
.reveal-js.stagger-2 { transition-delay: .16s; }
.reveal-js.stagger-3 { transition-delay: .24s; }

/* Ambient drifting background orbs for a less "flat" feel */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .28;
  animation: orb-drift 26s ease-in-out infinite;
}
.bg-orbs span:nth-child(1) {
  width: 520px; height: 520px;
  top: -10%; left: 4%;
  background: radial-gradient(circle, rgba(193,138,82,.4), transparent 70%);
  animation-duration: 24s;
}
.bg-orbs span:nth-child(2) {
  width: 620px; height: 620px;
  top: 26%; right: -12%;
  background: radial-gradient(circle, rgba(246,244,238,.16), transparent 70%);
  animation-duration: 30s;
  animation-delay: -6s;
}
.bg-orbs span:nth-child(3) {
  width: 460px; height: 460px;
  bottom: -12%; left: 28%;
  background: radial-gradient(circle, rgba(159,38,54,.32), transparent 70%);
  animation-duration: 28s;
  animation-delay: -14s;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -40px) scale(1.08); }
  66%      { transform: translate(-24px, 26px) scale(0.96); }
}
@media (prefers-reduced-motion: reduce) {
  .bg-orbs span { animation: none; }
  .reveal-js { opacity: 1; transform: none; transition: none; }
}

/* Navigation: transparent liquid-glass pill */
.site-header { padding-top: 14px; }
.nav {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(42,39,47,.22), rgba(12,11,15,.3));
  border-color: transparent;
  box-shadow:
    0 20px 52px rgba(16,13,12,.16),
    0 1px 0 rgba(255,255,255,.1) inset;
  backdrop-filter: blur(28px) saturate(215%) brightness(.88) contrast(108%);
  -webkit-backdrop-filter: blur(28px) saturate(215%) brightness(.88) contrast(108%);
}
.nav::before {
  content: ''; position: absolute; inset: 1px; z-index: -1; border-radius: inherit; pointer-events: none;
  background:
    radial-gradient(75% 150% at 8% -30%, rgba(255,255,255,.2), transparent 55%),
    radial-gradient(45% 120% at 88% 130%, rgba(255,255,255,.075), transparent 62%),
    linear-gradient(115deg, rgba(255,255,255,.055), transparent 44%);
}
.nav-logo { filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,.18)); opacity: .96; }
.nav-links a { color: rgba(246,244,238,.76); text-shadow: 0 1px 8px rgba(0,0,0,.22); }
.nav-links a:hover { color: var(--ink-inv); background: rgba(255,255,255,.08); }
.nav-links a[aria-current="page"] {
  color: #fff; background: rgba(255,255,255,.15);
  box-shadow: none;
}
.nav .nav-lang a { color: var(--ink-inv-muted); }
.nav .nav-lang a:hover, .nav .nav-lang a.active { color: var(--ink-inv); }
.nav .nav-lang-sep { color: var(--line-inv); }
.nav-burger { color: var(--ink-inv); border-color: transparent; background: rgba(255,255,255,.08); }
.nav-links--mobile {
  display: none !important; flex-direction: column; margin-top: 10px; padding: 12px;
  background: rgba(18,17,21,.38); border: 1px solid transparent;
  border-radius: var(--r-lg); box-shadow: 0 18px 50px rgba(0,0,0,.18);
  backdrop-filter: blur(28px) saturate(210%) brightness(.86); -webkit-backdrop-filter: blur(28px) saturate(210%) brightness(.86);
}
.nav-links--mobile a { width: 100%; padding: 12px 16px; color: var(--ink-inv-muted); }
.nav-links--mobile a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.12); }
.nav-lang--mobile a { color: var(--ink-inv-muted); }
.nav-lang--mobile a.active { color: var(--ink-inv); }

/* Concert details — centred, light editorial sheet */
.concert-dialog {
  position: fixed; inset: 0; margin: auto;
  width: min(720px, calc(100vw - 32px)); max-width: 720px; max-height: min(820px, calc(100dvh - 32px));
  padding: 0; overflow: auto; color: var(--fg);
  border: 1px solid rgba(255,255,255,.86); border-radius: 30px;
  background-color: #fbf8f2 !important;
  background-image: linear-gradient(145deg, #fffdf9 0%, #f7f1e8 100%) !important;
  box-shadow: 0 1px 0 #fff inset, 0 36px 100px rgba(24,19,17,.3);
  backdrop-filter: blur(30px) saturate(140%); -webkit-backdrop-filter: blur(30px) saturate(140%);
}
.concert-dialog[open] { animation: dialog-enter .38s var(--ease) both; }
@keyframes dialog-enter { from { opacity: 0; transform: translateY(18px) scale(.975); } to { opacity: 1; transform: none; } }
.concert-dialog::backdrop {
  background: rgba(31,25,22,.36); backdrop-filter: blur(12px) saturate(80%);
  -webkit-backdrop-filter: blur(12px) saturate(80%); animation: fade-in .25s ease both;
}
.concert-dialog__body { padding: clamp(28px, 5vw, 54px); }
.concert-dialog__close {
  top: 22px; right: 22px; z-index: 2; width: 40px; height: 40px;
  color: var(--muted-md); background: rgba(255,255,255,.62); border-color: var(--line);
  box-shadow: 0 1px 0 #fff inset;
}
.concert-dialog__close:hover { color: var(--fg); background: #fff; }
.concert-dialog__date-block {
  width: max-content; display: flex; flex-direction: column; padding: 11px 17px; margin-bottom: 36px;
  border: 1px solid var(--line); border-radius: 15px; color: var(--muted); font-size: 10px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; background: rgba(255,255,255,.42);
}
.concert-dialog__day { font: 500 20px/1.15 'Fraunces', serif; color: var(--fg); letter-spacing: 0; text-transform: none; }
.concert-dialog__heading { padding-right: 50px; margin-bottom: 34px; }
.concert-dialog__kicker { color: var(--grad-1); margin-bottom: 9px; }
.concert-dialog__city-title { font-size: clamp(42px, 7vw, 68px); color: var(--fg); margin: 0; }
.concert-dialog__note { color: var(--muted-md); font-style: normal; margin: 12px 0 0; }
.concert-dialog__details {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px;
  padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.concert-dialog__section-label { color: var(--muted); margin-bottom: 10px; }
.concert-dialog__venue-name { color: var(--fg); font: 500 18px/1.3 'Fraunces', serif; margin-bottom: 6px; }
.concert-dialog__address-text { color: var(--muted); font-size: 12px; line-height: 1.55; }
.concert-dialog__address { display: inline-block; color: var(--grad-1); font-size: 12px; margin: 13px 0 0; }
.concert-dialog__program-block { margin: 0; }
.concert-dialog__program-list { color: var(--fg); gap: 10px; line-height: 1.5; }
.concert-dialog__program-list li { padding-left: 15px; position: relative; }
.concert-dialog__program-list li::before { content: '—'; position: absolute; left: 0; color: var(--grad-1); }
.concert-dialog__footer { display: flex; justify-content: flex-end; margin-top: 28px; }

@media (max-width: 640px) {
  .site-header .wrap { padding: 0 12px; }
  .nav { padding-left: 16px; }
  .concert-dialog { width: calc(100vw - 20px); max-height: calc(100dvh - 20px); border-radius: 24px; }
  .concert-dialog__body { padding: 26px 22px; }
  .concert-dialog__date-block { margin-bottom: 28px; }
  .concert-dialog__heading { margin-bottom: 26px; }
  .concert-dialog__city-title { font-size: 44px; }
  .concert-dialog__details { gap: 24px; }
  .concert-dialog__footer .btn { width: 100%; justify-content: center; }
}

/* Refined editorial finish: quieter motion, clearer discography. */
.h1 .grad,
.grad-text {
  background-size: 100% auto;
  animation: none;
}
.btn.primary {
  background: #9f2636;
  box-shadow: 0 8px 24px rgba(113,30,43,.16);
}
.btn.primary:hover { background: #711e2b; }
.waveform span { animation: none; transform: none; }
.display-bg { animation: fade-in 1.2s var(--ease) both; }

.recordings-section { padding-top: var(--s-7); }
.recordings-list { border-top: 1px solid var(--line-md); }
.recording-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) minmax(120px, auto);
  gap: clamp(20px, 4vw, 52px);
  align-items: center;
  padding: 25px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease), background .3s;
}
.recording-row:hover { padding-left: 14px; padding-right: 14px; background: rgba(255,255,255,.28); }
.recording-year,
.recording-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.recording-row h3 { margin: 0 0 4px; font-size: clamp(19px, 2.2vw, 27px); font-style: normal; }
.recording-row p { color: var(--muted-md); font-size: 13px; }
.recording-label { text-align: right; }

@media (max-width: 640px) {
  .press-line { padding: 48px 0 52px; overflow: hidden; }
  .press-line .wrap { padding-right: 0; }
  .press-line-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 24px 12px 0;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .press-line-grid::-webkit-scrollbar { display: none; }
  .press-line-item {
    flex: 0 0 min(82vw, 350px);
    min-height: 190px;
    padding: 22px;
    justify-content: space-between;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: rgba(255,255,255,.28);
  }
  .press-line-item p { font-size: 16px; line-height: 1.48; }
  .press-line-source { font-size: 8px; line-height: 1.45; }
  .recording-row { grid-template-columns: 48px minmax(0, 1fr); gap: 14px; }
  .recording-label { grid-column: 2; text-align: left; }
}

@media (max-width: 860px) {
  .nav-links--mobile.is-open { display: flex !important; }
}


/* ════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ════════════════════════════════════════════════════════════ */
h1, .h1, h2, h3 {
  font-family: 'Fraunces', ui-serif, Georgia, serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.h1 {
  font-size: clamp(52px, 9.5vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin: 0 0 var(--s-4);
}

.h1 .grad,
.grad-text {
  background: var(--gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 16s linear infinite;
}

/* Italic glyphs can overhang their inline box. Give gradient-clipped
   hero words a tiny paint area so first/last strokes are never cut. */
.h1 .grad {
  display: inline-block;
  padding-inline: .045em .11em;
  margin-inline: -.045em -.11em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.h1 em, h2 em {
  font-style: italic;
  font-weight: 400;
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  margin: 0 0 var(--s-4);
}

h3 {
  font-size: clamp(19px, 2vw, 23px);
  font-style: italic;
  font-weight: 400;
  margin: 0 0 var(--s-2);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 600;
  margin: 0 0 var(--s-3);
  padding: 6px 14px 6px 6px;
  border-radius: var(--r-pill);
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.kicker::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

.sub {
  max-width: 54ch;
  color: var(--muted-md);
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grad-1);
  font-weight: 600;
  margin: 0 0 var(--s-3);
  display: block;
}

.small {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.accent { color: var(--grad-1); }

/* ════════════════════════════════════════════════════════════
   UTILITIES — shared layout/typography primitives
   (replaces one-off inline styles repeated across pages)
   ════════════════════════════════════════════════════════════ */
.prose {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  line-height: 1.8;
  color: var(--muted-md);
}
.prose--measure { max-width: 72ch; }
.prose p { color: inherit; }

.hl { color: var(--fg); font-weight: 400; }

.row-between {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.row-between--center { align-items: center; }

.self-end { align-self: flex-end; }

.mt-0 { margin-top: 0; }
.mt-3 { margin-top: var(--s-3); }
.mt-4 { margin-top: var(--s-4); }
.m-0 { margin: 0; }

.text-soft {
  color: var(--muted-md);
  line-height: 1.82;
  font-size: 15px;
}

.mb-space { margin-bottom: var(--s-4); }

.section--tight { padding-bottom: var(--s-7); }

.relative { position: relative; overflow: clip; }

.card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.card-cta--wide { gap: 24px; }
.card-cta-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  margin: 0 0 4px;
}
.card-cta-title--lg {
  font-size: 22px;
  letter-spacing: -0.015em;
}

.link-underline {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-code {
  font-size: 12px;
  background: var(--bg-card);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--grad-1);
}

.proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg);
  background: var(--bg-card);
  border: 1px solid var(--line-md);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  backdrop-filter: blur(8px);
}
.proof::before {
  content: '✦';
  color: var(--grad-2);
}

/* ════════════════════════════════════════════════════════════
   NAV — floating glass pill
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0 0;
  pointer-events: none;
}

.nav {
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 10px 10px 22px;
  background: linear-gradient(115deg, rgba(42,39,47,.22), rgba(12,11,15,.3));
  backdrop-filter: saturate(215%) blur(28px) brightness(.88) contrast(108%);
  -webkit-backdrop-filter: saturate(215%) blur(28px) brightness(.88) contrast(108%);
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  box-shadow: 0 20px 52px rgba(16,13,12,.16), 0 1px 0 rgba(255,255,255,.1) inset;
}

.nav-logo {
  height: 36px;
  width: auto;
  opacity: .96;
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0,0,0,.18));
}
.nav-mobile-wordmark { display: none; }

.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(246,244,238,.76);
  text-shadow: 0 1px 8px rgba(0,0,0,.22);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  position: relative;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink-inv); background: rgba(255,255,255,.08); }
.nav-links a[aria-current="page"] {
  color: #fff;
  background: rgba(255,255,255,.15);
}

.nav-cta {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--grad-fg) !important;
  background: var(--gradient);
  background-size: 200% auto;
  padding: 10px 20px !important;
  border-radius: var(--r-pill);
  transition: background-position 0.4s var(--ease), transform .2s;
}
.nav-cta:hover { background-position: 100% 50%; transform: translateY(-1px); }
.nav-cta--quiet {
  color: #fff !important;
  background: #9f2636;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 9px 24px rgba(113,30,43,.28), 0 1px 0 rgba(255,255,255,.12) inset;
  font-weight: 600;
}
.nav-cta--quiet:hover {
  color: #fff !important;
  background: #711e2b;
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 11px 30px rgba(113,30,43,.36), 0 1px 0 rgba(255,255,255,.12) inset;
}

/* elegant EN/IT switch, sits quietly in the nav */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.nav-lang a {
  color: var(--muted);
  padding: 4px 2px;
  transition: color .2s;
}
.nav-lang a:hover { color: var(--fg); }
.nav-lang a.active {
  color: var(--fg);
  border-bottom: 1px solid var(--grad-1);
}
.nav-lang-sep { color: var(--line-md); }
.nav-lang--mobile {
  margin-top: 6px;
  padding: 12px 16px 4px;
  font-size: 12px;
  gap: 10px;
}

/* the language switch lives inside the dark nav pill and the mobile
   panel (also dark) — override with invariant tokens so it stays
   readable regardless of the page theme. The bio pages use the same
   .nav-lang component sitting directly on the light page, where the
   default (theme-aware) colors above still apply. */
.nav .nav-lang a,
.nav-lang--mobile a {
  color: var(--ink-inv-muted);
}
.nav .nav-lang a:hover,
.nav-lang--mobile a:hover {
  color: var(--ink-inv);
}
.nav .nav-lang a.active,
.nav-lang--mobile a.active {
  color: var(--ink-inv);
}
.nav .nav-lang-sep,
.nav-lang--mobile .nav-lang-sep {
  color: var(--line-inv);
}

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  border: 1px solid transparent;
  color: var(--ink-inv);
}

/* Readable fallback where backdrop-filter is unavailable. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav { background: rgba(22,21,26,.9); }
  .nav-links--mobile { background: rgba(22,21,26,.96); }
}

@media (max-width: 860px) {
  .nav-links:not(.nav-links--mobile) { display: none; }
  .nav > .nav-lang,
  .nav > .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav { gap: 12px; }
  .nav-mobile-wordmark {
    position: absolute;
    left: 50%;
    display: block;
    transform: translateX(-50%);
    color: rgba(246,244,238,.72);
    font: 400 13px/1 'Fraunces', serif;
    letter-spacing: .035em;
    white-space: nowrap;
    pointer-events: none;
  }
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero-outer {
  position: relative;
}

.hero {
  padding: 80px 0 96px;
  position: relative;
}

/* ── CINEMATIC full-bleed photo hero ── */
.hero-cinematic {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
}
.hero-cinematic-bg {
  position: absolute;
  top: -120px; left: 0; right: 0; bottom: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-cinematic-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--img-pos, 50% 28%);
  filter: grayscale(0.2) contrast(1.06) brightness(.85) saturate(1.05);
  transform: scale(1.06);
  animation: hero-zoom 18s var(--ease) both;
}
@keyframes hero-zoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1.02); }
}
.hero-cinematic-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, var(--bg-inv) 0%, rgba(22,21,26,.45) 34%, rgba(22,21,26,.08) 60%, rgba(22,21,26,.4) 100%),
    linear-gradient(100deg, rgba(113,30,43,.28) 0%, transparent 45%),
    radial-gradient(120% 90% at 85% 0%, rgba(193,138,82,.18), transparent 55%);
}
.hero-cinematic-content {
  position: relative;
  z-index: 1;
  padding: 64px 0 76px;
  width: 100%;
}
.hero-cinematic .h1 {
  color: var(--ink-inv);
  font-size: clamp(56px, 11vw, 168px);
  text-shadow: 0 8px 60px rgba(0,0,0,.5);
}
.hero-cinematic .sub {
  color: rgba(246,244,238,.82);
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
/* every UI element placed over the hero photo must stay readable
   regardless of the page's light/dark theme — force the invariant
   "dark chrome" palette here. */
.hero-cinematic-content .kicker {
  color: var(--ink-inv);
  background: rgba(0,0,0,.32);
  border-color: var(--line-inv);
}
.hero-cinematic-content .proof {
  color: var(--ink-inv);
  background: rgba(0,0,0,.32);
  border-color: var(--line-inv);
}
.hero-cinematic-content .btn {
  color: var(--ink-inv);
  background: rgba(0,0,0,.28);
  border-color: var(--line-inv);
}
.hero-cinematic-content .btn:hover {
  background: rgba(0,0,0,.4);
  border-color: rgba(246,244,238,.32);
}
.hero-cinematic-content .btn.primary {
  color: var(--grad-fg);
}
.hero-scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .6;
  animation: fade-in 1.4s var(--ease) 1s both;
}
.hero-scroll-cue span {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-inv);
}
.hero-scroll-cue::after {
  content: '';
  width: 1px; height: 30px;
  background: linear-gradient(180deg, var(--ink-inv), transparent);
  animation: float 2.4s ease-in-out infinite;
}

/* two-column hero: copy + photo */
.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--s-6);
  align-items: center;
}
@media (max-width: 940px) {
  .hero-split { grid-template-columns: 1fr; gap: var(--s-4); }
}

.hero-photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--line-md);
  box-shadow: var(--sh-lg);
  animation: fade-up 1.1s var(--ease) both;
  animation-delay: .3s;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.05) brightness(1.02);
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(22,21,26,.6) 100%),
              linear-gradient(100deg, rgba(159,38,54,.18), transparent 60%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-photo::before {
  content: '';
  position: absolute; inset: -1px;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(193,138,82,.18);
}

.hero-badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.display-bg {
  width: clamp(380px, 52vw, 720px);
  height: auto;
  max-width: none;
  opacity: .055;
  filter: grayscale(1) contrast(.62);
  mix-blend-mode: multiply;
  user-select: none;
  pointer-events: none;
  position: absolute;
  right: -9vw;
  top: 48%;
  transform: translateY(-50%);
  z-index: 0;
  animation: none;
}

@media (max-width: 700px) {
  .display-bg { width: 460px; right: -210px; top: 50%; opacity: .042; }
}

/* waveform motif — musical signature divider */
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 22px;
  opacity: .55;
}
.waveform span {
  display: block;
  width: 2.5px;
  border-radius: 2px;
  background: var(--gradient);
  animation: wave-bar 1.8s ease-in-out infinite;
}
.waveform span:nth-child(1) { height: 30%; animation-delay: 0s; }
.waveform span:nth-child(2) { height: 70%; animation-delay: .12s; }
.waveform span:nth-child(3) { height: 100%; animation-delay: .24s; }
.waveform span:nth-child(4) { height: 55%; animation-delay: .36s; }
.waveform span:nth-child(5) { height: 85%; animation-delay: .48s; }
.waveform span:nth-child(6) { height: 40%; animation-delay: .6s; }
.waveform span:nth-child(7) { height: 65%; animation-delay: .72s; }
@keyframes wave-bar {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1); }
}

/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */
.btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: var(--s-4); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--fg);
  background: var(--bg-card);
  border: 1px solid var(--line-md);
  border-radius: var(--r-pill);
  padding: 13px 24px;
  backdrop-filter: blur(8px);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover {
  background: var(--bg-card-h);
  border-color: rgba(246,244,238,.35);
  transform: translateY(-2px);
}
.btn.primary {
  color: var(--grad-fg);
  background: var(--gradient);
  background-size: 200% auto;
  border: none;
  font-weight: 600;
  box-shadow: var(--sh-glow);
}
.btn.primary:hover { background-position: 100% 50%; }

/* ── Compact cinematic hero (inner pages) ── */
.hero-cinematic--inner {
  min-height: 62vh;
}
.hero-cinematic--inner .h1 {
  font-size: clamp(46px, 8vw, 96px);
}

/* ── Photo band: full-bleed image strip between sections ── */
.photo-band {
  position: relative;
  height: 62vh;
  min-height: 420px;
  max-height: 640px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .photo-band { height: 46vh; min-height: 320px; }
}
.photo-band img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--img-pos, 50% 50%);
  filter: grayscale(0.25) contrast(1.05) brightness(.94);
}
.photo-band::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(113,30,43,.22), transparent 55%),
              linear-gradient(0deg, rgba(22,21,26,.42), transparent 40%);
}
.photo-band-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: var(--s-4) 0 var(--s-5);
}
.photo-band-caption p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--ink-inv);
  max-width: 44ch;
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
}

/* ── Split image + text section ── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  align-items: center;
}
@media (max-width: 860px) {
  .split-grid { grid-template-columns: 1fr; }
}
.split-grid.reverse .split-photo { order: 2; }
.split-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
}
.split-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--img-pos, 50% 50%);
  filter: grayscale(0.3) contrast(1.05) brightness(1);
  transition: transform .6s var(--ease);
}
.split-photo:hover img { transform: scale(1.04); }
.split-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(159,38,54,.16), transparent 60%);
  mix-blend-mode: multiply;
}

/* ════════════════════════════════════════════════════════════
   PRESS QUOTES — quiet editorial row (static, not a news ticker)
   ════════════════════════════════════════════════════════════ */
.press-line {
  border: 0;
  padding: 92px 0 88px;
  margin-top: 0;
  background: linear-gradient(180deg, rgba(22,21,26,.075) 0, rgba(33,28,27,.025) 42px, transparent 150px);
}
.press-line-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.press-line-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.press-line-item p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted-md);
}
.press-line-item p::before { content: '“'; }
.press-line-item p::after { content: '”'; }
.press-line-source {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
@media (max-width: 860px) {
  .press-line-grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .press-line { padding: 72px 0 68px; }
}


/* ════════════════════════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════════════════════════ */
.section {
  padding: var(--s-6) 0;
  border-top: 1px solid var(--line);
  position: relative;
}

.section-alt-wrap {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 14%, var(--bg-2) 86%, var(--bg) 100%);
  border-radius: 0;
  margin: 0;
  padding: 18px 0 48px;
  overflow: clip;
}
.section-alt-wrap .section { border-top: none; }
@media (max-width: 640px) {
  .section-alt-wrap { border-radius: 0; padding: 8px 0 32px; }
}

.home-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: var(--s-5);
}
.home-section-head h2 { margin-bottom: 0; }

/* ════════════════════════════════════════════════════════════
   GRID / CARDS
   ════════════════════════════════════════════════════════════ */
.grid {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: repeat(12, 1fr);
}
.col4  { grid-column: span 4; }
.col6  { grid-column: span 6; }
.col12 { grid-column: span 12; }

@media (max-width: 860px) {
  .col4, .col6 { grid-column: span 12; }
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  background: var(--bg-card);
  backdrop-filter: blur(6px);
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.35s var(--ease), border-color 0.3s, transform .3s var(--ease), background .3s;
  position: relative;
}
.card:hover {
  box-shadow: var(--sh-md);
  border-color: var(--line-md);
  background: var(--bg-card-h);
  transform: translateY(-4px);
}

.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-style: italic;
  color: var(--grad-1);
  opacity: .5;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.card-project {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  min-height: 190px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 0 0, rgba(255,255,255,.42), transparent 50%),
    var(--bg-card);
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
  box-shadow: 0 12px 36px rgba(33,28,27,.055);
  transition: transform .4s var(--ease), border-color .3s, background .3s, box-shadow .4s var(--ease);
}
.card-project::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 180px;
  right: -78px;
  bottom: -104px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159,38,54,.13), transparent 68%);
  transition: transform .6s var(--ease), opacity .4s;
}
.card-project:hover {
  transform: translateY(-6px);
  border-color: rgba(159,38,54,.22);
  background: var(--bg-card-h);
  box-shadow: 0 22px 54px rgba(33,28,27,.11);
}
.card-project:hover::after { transform: scale(1.2); }
.card-project-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 30px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  flex-shrink: 0;
  line-height: 1;
}
.card-project-title {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

/* asymmetric project card variants — visual rhythm instead of a uniform grid */
.card-project.col6 {
  grid-column: span 6;
  padding: var(--s-5);
  background:
    radial-gradient(100% 140% at 0 0, rgba(255,255,255,.5), transparent 48%),
    linear-gradient(145deg, rgba(159,38,54,.15), rgba(113,30,43,.045) 58%, var(--bg-card));
}
.card-project.col4 { grid-column: span 3; }
.card-project.col6 .card-project-num { font-size: 44px; }
.card-project.col6 .card-project-title { font-size: 23px; }
.card-project.tint {
  background: linear-gradient(155deg, rgba(193,138,82,.08), var(--bg-card) 60%);
}
@media (max-width: 860px) {
  .card-project.col6,
  .card-project.col4 { grid-column: span 12; }
}

/* ── Facts line: a single quiet sentence, not a spec sheet ── */
.facts-line {
  text-align: center;
  padding: var(--s-4) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.facts-line p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
  color: var(--muted-md);
  max-width: 70ch;
  margin: 0 auto;
}
.facts-line strong {
  font-style: normal;
  font-weight: 500;
  color: var(--fg);
}

/* ── Tilted photo frame — editorial collage feel ── */
.tilt-photo {
  transform: rotate(-2.2deg);
  transition: transform .5s var(--ease);
}
.tilt-photo:hover { transform: rotate(0deg) scale(1.015); }
.tilt-photo.tilt-right {
  transform: rotate(2deg);
}
.tilt-photo.tilt-right:hover { transform: rotate(0deg) scale(1.015); }

/* ════════════════════════════════════════════════════════════
   HOME ABOUT / VIDEO
   ════════════════════════════════════════════════════════════ */
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  align-items: center;
}
@media (max-width: 860px) {
  .home-about-grid { grid-template-columns: 1fr; }
}

.video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-caption {
  font-size: 13px;
  color: var(--muted-md);
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════
   CONCERT LIST
   ════════════════════════════════════════════════════════════ */
.concert-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.concert-row {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--bg-card);
  transition: background .25s var(--ease), border-color .25s, transform .25s var(--ease);
}
.concert-row:hover {
  background: var(--bg-card-h);
  border-color: var(--line-md);
  transform: translateX(4px);
}
.concert-row--upcoming {
  border-color: rgba(139,123,255,.25);
}

.concert-date {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--fg);
  flex-shrink: 0;
  width: 68px;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.concert-date-year {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.concert-body { flex: 1; min-width: 0; }
.concert-city {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}
.concert-city--lg {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 500;
}
.concert-venue {
  font-size: 13px;
  color: var(--muted-md);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .concert-row { flex-wrap: wrap; padding: 16px; gap: 12px; border-radius: var(--r-lg); }
  .concert-date { width: auto; flex-direction: row; gap: 8px; align-items: baseline; }
  .concert-body { flex-basis: calc(100% - 92px); }
  .concert-row .btn { margin-left: auto; }
}

/* ════════════════════════════════════════════════════════════
   CONCERT DIALOG / MODAL
   ════════════════════════════════════════════════════════════ */
.concert-dialog {
  border: 1px solid var(--line-inv);
  border-radius: var(--r-xl);
  padding: 0;
  background: #101216;
  color: var(--ink-inv);
  max-width: 520px;
  width: calc(100vw - 40px);
  box-shadow: var(--sh-lg);
}
.concert-dialog::backdrop {
  background: rgba(3,4,6,.7);
  backdrop-filter: blur(6px);
}
.concert-dialog__body {
  padding: var(--s-5);
  position: relative;
}
.concert-dialog__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line-inv);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-inv-muted);
  transition: background .2s, color .2s;
}
.concert-dialog__close:hover { background: rgba(255,255,255,.16); color: var(--ink-inv); }

.concert-dialog__kicker {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grad-1);
  font-weight: 600;
  margin-bottom: 10px;
}
.concert-dialog__city-title {
  font-family: 'Fraunces', serif;
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.concert-dialog__venue-name {
  font-size: 15px;
  color: var(--ink-inv-muted);
  margin-bottom: 14px;
}
.concert-dialog__address {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-inv-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 18px;
}
.concert-dialog__program-block { margin-bottom: 16px; }
.concert-dialog__section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-inv-muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.concert-dialog__program-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-inv);
}
.concert-dialog__note {
  font-size: 13px;
  color: var(--ink-inv-muted);
  font-style: italic;
  margin-bottom: 18px;
}
.concert-dialog__footer { margin-top: 20px; }

/* ════════════════════════════════════════════════════════════
   PRESS GRID / PHOTOS
   ════════════════════════════════════════════════════════════ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: var(--s-2);
}
.press-grid__item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  background: #171519;
  box-shadow: 0 12px 32px rgba(33,28,27,.08);
}
.press-grid__item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.press-grid__link { display: block; width: 100%; height: 100%; }
.press-grid__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.press-grid__item:hover img { transform: scale(1.06); }
.press-grid__item figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding: 34px 18px 14px;
  color: rgba(246,244,238,.86);
  background: linear-gradient(180deg, transparent, rgba(12,11,14,.78));
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.press-grid__item:hover figcaption { opacity: 1; transform: translateY(0); }
.press-grid__item:focus-within {
  outline: 2px solid rgba(159,38,54,.68);
  outline-offset: 3px;
}
.press-grid__item:focus-within figcaption { opacity: 1; transform: translateY(0); }
.press-grid__item figcaption span {
  color: rgba(246,244,238,.64);
  font: italic 400 16px/1 'Fraunces', serif;
}
.press-grid__item figcaption strong {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.media-page .hero-cinematic-bg img {
  transform: scale(1.015);
  animation: media-hero-breathe 18s var(--ease) both;
}
@keyframes media-hero-breathe {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

@media (max-width: 700px) {
  .press-grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid__item:first-child { grid-column: span 2; }
  .press-grid__item figcaption {
    padding: 28px 12px 10px;
    opacity: 1;
    transform: none;
  }
  .press-grid__item figcaption strong { display: none; }
}

/* Full-screen editorial lightbox for official photography. */
.lightbox-open { overflow: hidden; }
.media-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--ink-inv);
  background: transparent;
  overflow: hidden;
}
.media-lightbox[open] { display: grid; place-items: center; }
.media-lightbox::backdrop {
  background: rgba(8,7,9,.88);
  backdrop-filter: blur(24px) saturate(.7);
}
.media-lightbox__stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 84px;
  align-items: center;
  padding: clamp(70px, 8vh, 104px) clamp(18px, 3vw, 48px) 34px;
  background:
    radial-gradient(70% 85% at 50% 50%, rgba(159,38,54,.12), transparent 70%),
    rgba(10,9,12,.74);
}
.media-lightbox figure {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  gap: 18px;
}
.media-lightbox figure img {
  min-width: 0;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: calc(100dvh - 158px);
  object-fit: contain;
  border-radius: clamp(12px, 1.5vw, 22px);
  box-shadow: 0 34px 100px rgba(0,0,0,.48);
}
.media-lightbox figcaption {
  width: min(100%, 1100px);
  display: flex;
  justify-content: space-between;
  color: rgba(246,244,238,.62);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.media-lightbox figcaption strong { color: rgba(246,244,238,.78); font-weight: 500; }
.media-lightbox button {
  display: grid;
  place-items: center;
  border: 1px solid rgba(246,244,238,.18);
  border-radius: 50%;
  color: var(--ink-inv);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, border-color .25s;
}
.media-lightbox button:hover {
  transform: scale(1.06);
  border-color: rgba(246,244,238,.34);
  background: rgba(255,255,255,.13);
}
.media-lightbox button:focus-visible { outline: 2px solid var(--grad-1); outline-offset: 4px; }
.media-lightbox__close {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 26px;
  width: 48px;
  height: 48px;
  font: 300 30px/1 'Inter', sans-serif;
}
.media-lightbox__nav {
  width: 54px;
  height: 54px;
  justify-self: center;
  font-size: 20px;
}

@media (max-width: 700px) {
  .media-lightbox__stage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) 54px;
    gap: 14px;
    padding: 72px 14px 18px;
  }
  .media-lightbox figure { grid-column: 1 / -1; grid-row: 1; gap: 12px; }
  .media-lightbox figure img { max-height: calc(100dvh - 170px); border-radius: 12px; }
  .media-lightbox__nav { grid-row: 2; width: 48px; height: 48px; }
  .media-lightbox__nav--prev { grid-column: 1; justify-self: end; }
  .media-lightbox__nav--next { grid-column: 2; justify-self: start; }
  .media-lightbox__close { top: 14px; right: 14px; width: 44px; height: 44px; }
  .media-lightbox figcaption strong { display: none; }
}

/* ════════════════════════════════════════════════════════════
   FOOTER — warm editorial close
   ════════════════════════════════════════════════════════════ */
.footer-outer {
  background:
    radial-gradient(65% 110% at 100% 0%, rgba(159,38,54,.11), transparent 62%),
    linear-gradient(180deg, #eee5d9 0%, #e7dccf 100%);
  border-top: 1px solid rgba(33,28,27,.12);
  position: relative;
  color: var(--fg);
  overflow: hidden;
}
.footer-wrap { padding: 0 0 var(--s-4); }

.footer-invitation {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-5);
  padding-top: clamp(46px, 6vw, 76px);
  padding-bottom: clamp(46px, 6vw, 76px);
  border-bottom: 1px solid rgba(33,28,27,.12);
}
.footer-eyebrow,
.footer-column-title {
  display: block;
  margin-bottom: 16px;
  color: var(--muted-md);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.footer-invitation h2 {
  max-width: 850px;
  margin: 0 0 12px;
  color: var(--fg);
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -.035em;
}
.footer-invitation p { color: var(--muted-md); font-size: 14px; }
.footer-arrow {
  flex: 0 0 auto;
  width: clamp(64px, 8vw, 92px);
  height: clamp(64px, 8vw, 92px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(33,28,27,.18);
  border-radius: 50%;
  color: var(--fg);
  font-size: 30px;
  background: rgba(255,255,255,.38);
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.footer-arrow:hover { transform: rotate(8deg) scale(1.04); color: #fff8f0; background: var(--gradient); border-color: transparent; }

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.8fr) minmax(130px, .6fr) minmax(140px, .6fr);
  gap: clamp(36px, 8vw, 110px);
  padding-top: clamp(42px, 5vw, 64px);
  padding-bottom: clamp(38px, 5vw, 58px);
}

.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.footer-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-md);
}
.footer-email {
  margin-top: 24px;
  color: var(--muted-md);
  font-size: 13px;
  text-decoration: underline;
  text-decoration-color: rgba(33,28,27,.25);
  text-underline-offset: 5px;
  transition: color .2s;
}
.footer-email:hover { color: var(--fg); }
.footer-column { align-self: start; }

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--muted-md);
  padding: 0;
  transition: color .2s, transform .2s;
}
.footer-nav a:hover { color: var(--fg); transform: translateX(3px); }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
}
.footer-social a {
  display: flex; justify-content: space-between; gap: 18px;
  min-width: 120px;
  font-size: 14px;
  color: var(--muted-md);
  transition: color .2s;
}
.footer-social a:hover { color: var(--fg); }
.footer-social a span { font-size: 11px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-4);
  border-top: 1px solid rgba(33,28,27,.12);
  font-size: 12px;
  color: var(--muted);
}
.footer-endorser { display: flex; align-items: center; gap: 14px; }
.footer-endorser > span { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-endorser__logos { display: flex; align-items: center; gap: 12px; }
.footer-endorser__logos a { display: flex; align-items: center; }

.jargar-logo { width: 44px; height: 44px; object-fit: contain; filter: grayscale(1) opacity(.58); transition: filter .2s; }
.jargar-logo:hover { filter: grayscale(1) opacity(.9); }
.thomastik-logo { width: 70px; height: 42px; object-fit: contain; filter: grayscale(1) opacity(.58); transition: filter .2s; }
.thomastik-logo:hover { filter: grayscale(1) opacity(.9); }

@media (max-width: 760px) {
  .footer-invitation { align-items: flex-start; }
  .footer-invitation h2 { font-size: clamp(38px, 12vw, 58px); }
  .footer-arrow { width: 58px; height: 58px; font-size: 22px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; padding-bottom: 20px; }
}
@media (max-width: 520px) {
  .footer-invitation { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* ════════════════════════════════════════════════════════════
   2026 EDITORIAL LAYER — clearer hierarchy, stronger prestige
   ════════════════════════════════════════════════════════════ */
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--grad-3); outline-offset: 4px; }
.skip-link {
  position: fixed; left: 24px; top: 12px; z-index: 1000;
  padding: 10px 16px; border-radius: var(--r-pill);
  color: var(--ink-inv); background: var(--bg-inv);
  transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow-light {
  display: block; margin-bottom: 22px; color: rgba(246,244,238,.78);
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
}
.hero-cinematic-content { max-width: var(--max); }
.hero-cinematic .h1 { max-width: 1120px; text-wrap: balance; }
.hero-cinematic .sub { font-size: clamp(16px, 1.5vw, 20px); }

.credentials {
  position: relative; z-index: 2; color: var(--ink-inv);
  background: var(--bg-inv); border-top: 1px solid var(--line-inv);
  border-bottom: 1px solid var(--line-inv);
}
.credentials__inner {
  min-height: 72px; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-inv-muted); white-space: nowrap; overflow: hidden;
}
.credentials__inner i { width: 3px; height: 3px; flex: 0 0 3px; border-radius: 50%; background: var(--grad-3); }

.media-cover {
  position: relative; aspect-ratio: 4 / 5; min-height: 520px; overflow: hidden;
  border-radius: var(--r-xl); box-shadow: var(--sh-lg); background: var(--bg-inv);
}
.media-cover > img {
  width: 100%; height: 100%; object-fit: cover; object-position: 52% center;
  filter: grayscale(.42) contrast(1.08); transition: transform 1s var(--ease), filter .6s;
}
.media-cover:hover > img { transform: scale(1.035); filter: grayscale(.15) contrast(1.04); }
.media-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,11,14,.05), rgba(12,11,14,.86)); pointer-events: none;
}
.media-cover__overlay {
  position: absolute; z-index: 2; inset: auto 0 0; padding: clamp(24px, 4vw, 42px);
  color: var(--ink-inv); display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: end;
}
.media-cover__play {
  width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--line-inv);
  border-radius: 50%; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); font-size: 12px;
}
.media-cover__overlay div span { display: block; color: var(--ink-inv-muted); text-transform: uppercase; letter-spacing: .18em; font-size: 10px; }
.media-cover__overlay strong { display: block; margin-top: 7px; font: 400 clamp(25px, 3vw, 38px)/1.05 'Fraunces', serif; }
.media-cover__link { grid-column: 2; font-size: 12px; text-decoration: underline; text-underline-offset: 5px; color: var(--ink-inv-muted); }

.section-intro { display: grid; grid-template-columns: 72px 1fr; gap: 20px; align-items: start; margin-bottom: var(--s-5); }
.section-intro h2 { margin: 0; }
.section-index { font: italic 400 22px/1 'Fraunces', serif; color: var(--grad-1); padding-top: 4px; }
.calendar-section { padding-top: var(--s-7); }
.concert-row { position: relative; overflow: hidden; }
.concert-row::before { content: ''; width: 2px; align-self: stretch; background: var(--gradient); opacity: 0; transition: opacity .25s; }
.concert-row:hover::before { opacity: 1; }
.concert-row--upcoming { border-color: rgba(159,38,54,.25); }
.concert-empty {
  min-height: 250px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--s-5);
  padding: clamp(28px, 6vw, 72px); border: 1px solid var(--line); border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(159,38,54,.08), rgba(193,138,82,.06));
}
.concert-empty__mark { font: italic 300 clamp(54px, 9vw, 112px)/.8 'Fraunces', serif; color: transparent; -webkit-text-stroke: 1px var(--line-md); }
.concert-empty h3 { font-size: clamp(25px, 3vw, 38px); margin-bottom: 8px; }
.concert-empty p { max-width: 58ch; color: var(--muted-md); font-size: 14px; }

.booking-panel {
  padding: clamp(34px, 7vw, 84px); border-radius: var(--r-xl); color: var(--ink-inv);
  background: linear-gradient(125deg, rgba(113,30,43,.72), rgba(22,21,26,.96) 55%), url('/images/ensemble/quartetto-guadagnini-archi-italiani.jpg') center/cover;
}
.booking-panel__overline { margin-bottom: 18px; color: var(--ink-inv-muted); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.booking-panel h2 { color: var(--ink-inv); font-size: clamp(34px, 5vw, 64px); margin-bottom: 18px; }
.booking-panel > p:not(.booking-panel__overline) { max-width: 57ch; color: var(--ink-inv-muted); margin-bottom: 28px; }

.media-feature {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  min-height: 560px; overflow: hidden; border-radius: var(--r-xl); background: var(--bg-inv); color: var(--ink-inv);
}
.media-feature > img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.28) contrast(1.08); }
.media-feature__copy { min-width: 0; padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.media-feature__copy h2 {
  max-width: 12ch;
  color: var(--ink-inv);
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: .98;
  text-wrap: balance;
}
.media-feature__copy p { color: var(--ink-inv-muted); margin: 0 0 28px; }

@media (max-width: 700px) {
  .site-header { padding-top: 10px; }
  .site-header .wrap { padding: 0 10px; }
  .nav { gap: 12px; padding: 8px 8px 8px 16px; }
  .nav-logo { height: 32px; }
  .hero-cinematic { min-height: 86svh; }
  .hero-cinematic-bg { top: -90px; }
  .hero-cinematic-content { padding: 112px 20px 52px; }
  .hero-cinematic .h1 { font-size: clamp(45px, 14vw, 70px); line-height: .91; }
  .hero-cinematic .sub { max-width: 34ch; font-size: 16px; line-height: 1.55; }
  .hero-scroll-cue { display: none; }
  .press-line { padding: 62px 0 58px; background-size: 100% 120px; }
  .press-line-grid { gap: 30px; }
  .press-line-item { gap: 7px; }
  .press-line-item p { font-size: 16px; line-height: 1.48; }
  .press-line-source { font-size: 10px; line-height: 1.5; }
  .credentials__inner { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .media-cover { min-height: 430px; }
  .section-intro { grid-template-columns: 42px 1fr; }
  .concert-empty { grid-template-columns: 1fr; gap: 24px; }
  .concert-empty__mark { display: none; }
  .concert-row::before { display: none; }
  .concert-row:hover { transform: none; }
  .concert-row .btn { margin-left: auto; }
  .card-project,
  .card-project.col6,
  .card-project.col4 { grid-column: span 12; min-height: 0; padding: 24px; }
  .card-project.col6 .card-project-num { font-size: 36px; }
  .card-project.col6 .card-project-title { font-size: 21px; }
  .nav-cta { display: none; }
  .media-feature { grid-template-columns: 1fr; min-height: auto; }
  .media-feature > img { min-height: 330px; }
}

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

/* Final concert-sheet cascade: keep this after the legacy dialog rules. */
.concert-dialog {
  position: fixed; inset: 0; margin: auto;
  width: min(720px, calc(100vw - 32px)); max-width: 720px;
  max-height: min(820px, calc(100dvh - 32px)); overflow: auto;
  padding: 0; color: var(--fg);
  border: 1px solid #e3dbcf; border-radius: 30px;
  background: #fbf8f2;
  box-shadow: 0 1px 0 #fff inset, 0 36px 100px rgba(24,19,17,.3);
}
.concert-dialog::backdrop { background: rgba(31,25,22,.4); backdrop-filter: blur(10px); }
.concert-dialog__body { padding: clamp(28px, 5vw, 54px); }
.concert-dialog__close {
  top: 22px; right: 22px; width: 40px; height: 40px; color: var(--muted-md);
  background: #fff; border-color: var(--line); box-shadow: 0 1px 0 #fff inset;
}
.concert-dialog__close:hover { color: var(--fg); background: var(--bg-2); }
.concert-dialog__date-block {
  width: max-content; display: flex; flex-direction: column; padding: 11px 17px; margin-bottom: 36px;
  border: 1px solid var(--line); border-radius: 15px; color: var(--muted); background: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.concert-dialog__day { font: 500 20px/1.15 'Fraunces', serif; color: var(--fg); letter-spacing: 0; text-transform: none; }
.concert-dialog__heading { padding-right: 50px; margin-bottom: 34px; }
.concert-dialog__kicker { color: var(--grad-1); margin-bottom: 9px; }
.concert-dialog__city-title { color: var(--fg); font-size: clamp(42px, 7vw, 68px); margin: 0; }
.concert-dialog__note { color: var(--muted-md); font-style: normal; margin: 12px 0 0; }
.concert-dialog__details {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px;
  padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.concert-dialog__section-label { color: var(--muted); margin-bottom: 10px; }
.concert-dialog__venue-name { color: var(--fg); font: 500 18px/1.3 'Fraunces', serif; margin-bottom: 6px; }
.concert-dialog__address-text { color: var(--muted-md); font-size: 12px; line-height: 1.55; }
.concert-dialog__address { display: inline-block; color: var(--grad-1); font-size: 12px; margin: 13px 0 0; }
.concert-dialog__program-block { margin: 0; }
.concert-dialog__program-list { color: var(--fg); gap: 10px; line-height: 1.5; }
.concert-dialog__program-list li { padding-left: 15px; position: relative; }
.concert-dialog__program-list li::before { content: '—'; position: absolute; left: 0; color: var(--grad-1); }
.concert-dialog__footer { display: flex; justify-content: flex-end; margin-top: 28px; }

/* The mobile panel must never leak into the desktop navigation. */
.nav-links--mobile { display: none !important; }
@media (max-width: 860px) {
  .nav-links--mobile.is-open { display: flex !important; }
}
@media (max-width: 640px) {
  .concert-dialog { width: calc(100vw - 20px); max-height: calc(100dvh - 20px); border-radius: 24px; }
  .concert-dialog__body { padding: 26px 22px; }
  .concert-dialog__date-block { margin-bottom: 28px; }
  .concert-dialog__heading { margin-bottom: 26px; }
  .concert-dialog__city-title { font-size: 44px; }
  .concert-dialog__details { gap: 24px; }
  .concert-dialog__footer .btn { width: 100%; justify-content: center; }
}

/* Homepage social reportage — a warmer closing note before the footer. */
.social-moments {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  padding: clamp(92px, 11vw, 150px) 0 clamp(100px, 12vw, 164px);
}
.social-moments__copy h2 {
  max-width: 680px;
  margin: 18px 0 26px;
  font-size: clamp(43px, 5.5vw, 72px);
  line-height: .98;
  text-wrap: balance;
}
.social-moments__copy > p {
  max-width: 46ch;
  color: var(--muted-md);
  font-size: 14px;
  line-height: 1.75;
}
.social-moments__cta {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-md);
  color: var(--fg);
  font-size: 12px;
  font-weight: 600;
  transition: color .2s, border-color .2s, gap .35s var(--ease);
}
.social-moments__cta i { color: var(--grad-1); font-style: normal; font-size: 17px; }
.social-moments__cta:hover { gap: 28px; color: var(--grad-1); border-color: var(--grad-1); }
.social-moments__gallery {
  position: relative;
  min-height: clamp(480px, 55vw, 660px);
  display: block;
  isolation: isolate;
}
.social-moments__photo {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 5px solid rgba(247,243,236,.94);
  border-radius: 22px;
  background: var(--bg-2);
  box-shadow: 0 24px 60px rgba(33,28,27,.16);
  transition: transform .7s var(--ease), box-shadow .5s;
}
.social-moments__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.social-moments__photo--1 { width: 68%; height: 45%; top: 3%; left: 0; transform: rotate(-3deg); z-index: 1; }
.social-moments__photo--1 img { object-position: center 48%; }
.social-moments__photo--2 { width: 49%; height: 54%; right: 0; top: 18%; transform: rotate(3.5deg); z-index: 3; }
.social-moments__photo--2 img { object-position: center 38%; }
.social-moments__photo--3 { width: 64%; height: 47%; left: 7%; bottom: 1%; transform: rotate(1.5deg); z-index: 2; }
.social-moments__photo--3 img { object-position: center 34%; }
.social-moments__gallery:hover .social-moments__photo { box-shadow: 0 30px 74px rgba(33,28,27,.21); }
.social-moments__gallery:hover .social-moments__photo--1 { transform: rotate(-4deg) translate(-5px, -7px); }
.social-moments__gallery:hover .social-moments__photo--2 { transform: rotate(4.5deg) translate(6px, -5px); }
.social-moments__gallery:hover .social-moments__photo--3 { transform: rotate(.5deg) translate(-2px, 7px); }
.social-moments__gallery:hover img { transform: scale(1.025); }

/* A real performance on the homepage, with the restraint of a programme note. */
.home-performance {
  overflow: hidden;
  border-radius: var(--r-xl);
  color: var(--ink-inv);
  background: var(--bg-inv);
  box-shadow: var(--sh-lg);
}
.home-performance__video {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #09090b;
}
.home-performance__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.home-performance__caption {
  min-height: 150px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(80% 160% at 100% 0, rgba(159,38,54,.24), transparent 58%),
    var(--bg-inv);
}
.home-performance__caption span,
.home-performance__caption small {
  display: block;
  color: var(--ink-inv-muted);
}
.home-performance__caption span {
  margin-bottom: 9px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.home-performance__caption strong {
  display: block;
  max-width: 28ch;
  color: var(--ink-inv);
  font: 400 clamp(21px, 2.7vw, 30px)/1.17 'Fraunces', serif;
}
.home-performance__caption small { margin-top: 8px; font-size: 11px; }
.home-performance__caption > a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-inv);
  border-radius: 50%;
  color: var(--ink-inv);
  font-size: 18px;
  transition: transform .3s var(--ease), background .2s;
}
.home-performance__caption > a:hover { transform: translate(3px, -3px); background: rgba(255,255,255,.09); }

/* Individual portraits: less corporate grid, more contemporary contact sheet. */
.about-members__grid { align-items: start; }
.about-members__grid > figure:nth-child(even) { margin-top: 34px; }
.about-members__grid > figure::before {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 18px;
  color: rgba(255,255,255,.72);
  font: italic 400 13px/1 'Fraunces', serif;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}
.about-members__grid > figure:nth-child(1)::before { content: '01'; }
.about-members__grid > figure:nth-child(2)::before { content: '02'; }
.about-members__grid > figure:nth-child(3)::before { content: '03'; }
.about-members__grid > figure:nth-child(4)::before { content: '04'; }
.about-members__grid > figure:nth-child(1) img { object-position: 50% 22%; }
.about-members__grid > figure:nth-child(2) img { object-position: 50% 20%; }
.about-members__grid > figure:nth-child(3) img { object-position: 50% 18%; }
.about-members__grid > figure:nth-child(4) img { object-position: 50% 22%; }

@media (max-width: 860px) {
  .social-moments { grid-template-columns: 1fr; gap: 50px; }
  .social-moments__copy { max-width: 680px; }
  .social-moments__gallery { width: min(100%, 680px); min-height: min(82vw, 610px); margin-inline: auto; }
}
@media (max-width: 520px) {
  .social-moments { padding: 82px 0 96px; gap: 34px; }
  .social-moments__copy h2 { font-size: 42px; }
  .social-moments__gallery { min-height: 116vw; }
  .social-moments__photo { border-width: 4px; border-radius: 18px; }
  .social-moments__photo--1 { width: 78%; height: 38%; }
  .social-moments__photo--2 { width: 58%; height: 47%; top: 26%; }
  .social-moments__photo--3 { width: 76%; height: 39%; left: 3%; }
  .home-performance { border-radius: 24px; }
  .home-performance__video { aspect-ratio: 16 / 9; }
  .home-performance__caption { min-height: 0; padding: 22px; }
  .home-performance__caption > a { width: 42px; height: 42px; }
  .about-members__grid > figure:nth-child(even) { margin-top: 18px; }
}

/* ════════════════════════════════════════════════════════════
   CONCERT SHEET — definitive editorial treatment
   ════════════════════════════════════════════════════════════ */
.concert-dialog {
  position: fixed;
  inset: 0;
  width: min(760px, calc(100vw - 32px));
  max-width: 760px;
  max-height: min(880px, calc(100dvh - 32px));
  margin: auto;
  overflow: auto;
  padding: 0;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 34px;
  color: var(--fg);
  background: #f8f3eb;
  box-shadow: 0 1px 0 #fff inset, 0 44px 130px rgba(24,16,18,.34);
}
.concert-dialog::before {
  content: '';
  position: fixed;
  z-index: 3;
  width: min(760px, calc(100vw - 32px));
  height: 5px;
  border-radius: 34px 34px 0 0;
  background: linear-gradient(90deg, var(--grad-1), var(--grad-2) 68%, var(--grad-3));
  pointer-events: none;
}
.concert-dialog::backdrop {
  background: rgba(22,17,19,.48);
  backdrop-filter: blur(16px) saturate(.8);
  -webkit-backdrop-filter: blur(16px) saturate(.8);
}
.concert-dialog[open] { animation: dialog-enter .44s var(--ease) both; }
.concert-dialog__body { position: relative; padding: clamp(34px, 6vw, 64px); }
.concert-dialog__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted-md);
  background: rgba(255,255,255,.58);
  box-shadow: 0 1px 0 #fff inset;
  transition: transform .3s var(--ease), color .2s, background .2s;
}
.concert-dialog__close:hover { transform: rotate(6deg); color: var(--fg); background: #fff; }
.concert-dialog__masthead {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: clamp(30px, 6vw, 58px);
  align-items: end;
  padding: 20px 54px 46px 0;
}
.concert-dialog__date-poster {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(100% 90% at 100% 0, rgba(193,138,82,.3), transparent 58%),
    linear-gradient(145deg, var(--grad-1), var(--grad-2));
  box-shadow: 0 18px 42px rgba(113,30,43,.22);
}
.concert-dialog__date-poster strong { font: 400 72px/.76 'Fraunces', serif; letter-spacing: -.06em; }
.concert-dialog__date-poster span { margin-top: 12px; font-size: 13px; font-weight: 650; letter-spacing: .18em; text-transform: uppercase; }
.concert-dialog__date-poster small { margin-top: 2px; color: rgba(255,255,255,.66); font-size: 10px; letter-spacing: .12em; }
.concert-dialog__heading { margin: 0; padding: 0; }
.concert-dialog__kicker { margin-bottom: 12px; color: var(--grad-1); font-size: 9px; font-weight: 650; letter-spacing: .18em; text-transform: uppercase; }
.concert-dialog__city-title { margin: 0; color: var(--fg); font-size: clamp(48px, 8vw, 76px); line-height: .88; letter-spacing: -.04em; }
.concert-dialog__note { margin: 16px 0 0; color: var(--muted-md); font-size: 13px; line-height: 1.55; }
.concert-dialog__venue-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  padding: 27px 0;
  border-top: 1px solid var(--line-md);
  border-bottom: 1px solid var(--line);
}
.concert-dialog__section-label { margin-bottom: 7px; color: var(--muted); font-size: 8px; font-weight: 650; letter-spacing: .17em; text-transform: uppercase; }
.concert-dialog__venue-name { margin: 0; color: var(--fg); font: 500 20px/1.28 'Fraunces', serif; }
.concert-dialog__address-text { margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.5; }
.concert-dialog__time { min-width: 84px; padding-left: 26px; border-left: 1px solid var(--line); }
.concert-dialog__time strong { color: var(--fg); font: 500 25px/1 'Fraunces', serif; }
.concert-dialog__program-block { margin: 0; padding: 34px 0 8px; }
.concert-dialog__program-list { display: block; margin: 0; color: var(--fg); list-style: none; counter-reset: concert-work; }
.concert-dialog__program-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, .34fr) minmax(0, .66fr);
  gap: 24px;
  padding: 18px 0 18px 34px;
  border-bottom: 1px solid var(--line);
  counter-increment: concert-work;
}
.concert-dialog__program-list li::before {
  content: counter(concert-work, decimal-leading-zero);
  display: block;
  position: absolute;
  top: 24px;
  left: 0;
  color: var(--grad-1);
  font: 650 8px/1 'Inter', sans-serif;
  letter-spacing: .08em;
}
.concert-dialog__program-list span { color: var(--muted-md); font-size: 11px; line-height: 1.5; }
.concert-dialog__program-list strong { color: var(--fg); font: 400 18px/1.35 'Fraunces', serif; }
.concert-dialog__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line-md);
}
.concert-dialog__address { display: inline-flex; margin: 0; color: var(--muted-md); font-size: 11px; text-decoration: underline; text-underline-offset: 5px; }
.concert-dialog__footer .btn { flex-shrink: 0; }

@media (max-width: 640px) {
  .concert-dialog { width: calc(100vw - 14px); max-height: calc(100dvh - 14px); border-radius: 26px; }
  .concert-dialog::before { width: calc(100vw - 14px); border-radius: 26px 26px 0 0; }
  .concert-dialog__body { padding: 26px 22px 30px; }
  .concert-dialog__close { top: 18px; right: 18px; width: 38px; height: 38px; }
  .concert-dialog__masthead { grid-template-columns: 92px minmax(0, 1fr); gap: 20px; padding: 18px 42px 30px 0; }
  .concert-dialog__date-poster { min-height: 124px; padding: 14px; border-radius: 18px; }
  .concert-dialog__date-poster strong { font-size: 50px; }
  .concert-dialog__date-poster span { margin-top: 9px; font-size: 10px; }
  .concert-dialog__city-title { font-size: clamp(40px, 12vw, 54px); }
  .concert-dialog__venue-strip { gap: 18px; padding: 22px 0; }
  .concert-dialog__venue-name { font-size: 18px; }
  .concert-dialog__time { min-width: 66px; padding-left: 16px; }
  .concert-dialog__time strong { font-size: 21px; }
  .concert-dialog__program-block { padding-top: 27px; }
  .concert-dialog__program-list li { grid-template-columns: 1fr; gap: 4px; padding: 15px 0 15px 28px; }
  .concert-dialog__program-list li::before { top: 20px; }
  .concert-dialog__program-list strong { font-size: 17px; }
  .concert-dialog__footer { align-items: stretch; flex-direction: column; }
  .concert-dialog__footer .btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   CONCERTS PAGE — editorial calendar
   ════════════════════════════════════════════════════════════ */
.concerts-page .hero-cinematic--inner {
  min-height: 68svh;
}
.concerts-page .hero-cinematic-bg::after {
  background:
    linear-gradient(180deg, rgba(12,11,14,.12) 0%, rgba(12,11,14,.2) 36%, rgba(12,11,14,.88) 100%),
    linear-gradient(100deg, rgba(113,30,43,.34), transparent 52%);
}
.concerts-page .hero-cinematic-content {
  padding-bottom: 64px;
}
.concerts-page .hero-cinematic--inner .h1 {
  max-width: 900px;
  font-size: clamp(58px, 9vw, 118px);
  line-height: .88;
}

.concerts-page .calendar-section {
  padding: 112px 0 124px;
  border-top: 0;
}
.concerts-page .section-intro {
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.concerts-page .section-index {
  color: rgba(159,38,54,.76);
  font-size: 18px;
  padding-top: 9px;
}
.concerts-page .section-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.concerts-page .section-intro h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.concerts-page .calendar-section .concert-list { gap: 14px; }
.concerts-page .calendar-section .concert-row {
  min-height: 104px;
  padding: 22px 28px;
  gap: 28px;
  border-color: rgba(159,38,54,.18);
  background:
    radial-gradient(100% 160% at 0 0, rgba(255,255,255,.52), transparent 50%),
    linear-gradient(110deg, rgba(159,38,54,.055), rgba(255,255,255,.12));
  box-shadow: 0 10px 34px rgba(33,28,27,.045);
}
.concerts-page .calendar-section .concert-row--first {
  min-height: 126px;
  border-color: rgba(159,38,54,.28);
  background:
    radial-gradient(90% 180% at 0 0, rgba(255,255,255,.65), transparent 50%),
    linear-gradient(110deg, rgba(159,38,54,.115), rgba(193,138,82,.045));
  box-shadow: 0 18px 52px rgba(113,30,43,.09);
}
.concerts-page .calendar-section .concert-row:hover {
  transform: translateY(-3px);
  border-color: rgba(159,38,54,.32);
  box-shadow: 0 20px 52px rgba(33,28,27,.1);
}
.concerts-page .concert-date {
  width: 78px;
  font-size: 22px;
  letter-spacing: -.015em;
}
.concerts-page .concert-date-year {
  margin-top: 5px;
  letter-spacing: .12em;
}
.concerts-page .calendar-section .concert-city--lg {
  font-size: clamp(23px, 2.5vw, 31px);
  line-height: 1.1;
}
.concerts-page .concert-venue {
  margin-top: 7px;
  font-size: 13px;
}
.concerts-page .calendar-section .concert-row > .btn {
  color: rgba(255,245,241,.95);
  border-color: transparent;
  background: linear-gradient(135deg, rgba(159,38,54,.78), rgba(113,30,43,.72));
  box-shadow: 0 8px 22px rgba(113,30,43,.14);
}
.concerts-page .calendar-section .concert-row > .btn:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(159,38,54,.94), rgba(113,30,43,.88));
}

.concerts-page .photo-band {
  width: calc(100% - 32px);
  height: min(66vh, 700px);
  min-height: 440px;
  margin: 0 16px;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.concerts-page .photo-band::after {
  background:
    linear-gradient(100deg, rgba(113,30,43,.28), transparent 58%),
    linear-gradient(0deg, rgba(12,11,14,.72), transparent 54%);
}
.concerts-page .photo-band > img { object-position: 50% 30%; }
.concerts-page .photo-band-caption { padding-bottom: 48px; }
.concerts-page .photo-band-caption p {
  max-width: 38ch;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.28;
}

.concerts-page .calendar-archive {
  padding: 124px 0 112px;
  border-top: 0;
}
.concerts-page .calendar-archive .concert-list { gap: 0; }
.concerts-page .calendar-archive .concert-row {
  padding: 22px 8px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.concerts-page .calendar-archive .concert-row--first { border-top: 1px solid var(--line); }
.concerts-page .calendar-archive .concert-row:hover {
  padding-left: 18px;
  padding-right: 18px;
  transform: none;
  background: rgba(255,255,255,.26);
}
.concerts-page .calendar-archive .concert-row::before { display: none; }
.concerts-page .calendar-archive .concert-city { font-family: 'Fraunces', serif; font-size: 19px; }
.concerts-page .calendar-archive .concert-row > .btn { background: transparent; }
.concerts-page [hidden] { display: none !important; }
.concerts-page .archive-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 48px;
}
.concerts-page .archive-more {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 9px 10px 9px 22px;
  border: 0;
  border-radius: var(--r-pill);
  color: var(--muted-md);
  background: rgba(255,255,255,.4);
  box-shadow: 0 10px 34px rgba(33,28,27,.07);
  backdrop-filter: blur(18px) saturate(150%);
  transition: transform .3s var(--ease), background .25s, color .25s, box-shadow .3s;
}
.concerts-page .archive-more:hover {
  color: var(--fg);
  background: rgba(255,255,255,.68);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(33,28,27,.11);
}
.concerts-page .archive-more__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, rgba(159,38,54,.88), rgba(113,30,43,.82));
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}
.concerts-page .concert-row[data-modal-row] { cursor: pointer; }
.concerts-page .concert-row[data-modal-row]:focus-visible {
  outline: 2px solid rgba(159,38,54,.7);
  outline-offset: 4px;
}
.concerts-page .concert-month {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 34px 8px 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.concerts-page .concert-month:first-child { margin-top: 0; }
.concerts-page .concert-month::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--line-md), transparent);
}
.concerts-page .calendar-archive .concert-month {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .concerts-page .hero-cinematic--inner { min-height: 72svh; }
  .concerts-page .hero-cinematic--inner .h1 { font-size: clamp(50px, 15vw, 72px); }
  .concerts-page .hero-cinematic-content { padding-bottom: 46px; }
  .concerts-page .calendar-section,
  .concerts-page .calendar-archive { padding: 76px 0; }
  .concerts-page .section-intro { grid-template-columns: 34px 1fr; gap: 12px; margin-bottom: 34px; }
  .concerts-page .section-index { font-size: 15px; padding-top: 7px; }
  .concerts-page .section-intro h2 { font-size: clamp(34px, 11vw, 48px); }
  .concerts-page .calendar-section .concert-row,
  .concerts-page .calendar-section .concert-row--first {
    min-height: 0;
    padding: 20px;
    gap: 13px;
  }
  .concerts-page .calendar-section .concert-row:hover { transform: none; }
  .concerts-page .concert-date { width: auto; font-size: 19px; }
  .concerts-page .calendar-section .concert-city--lg { font-size: 23px; }
  .concerts-page .photo-band {
    width: calc(100% - 20px);
    height: clamp(250px, 58vw, 380px);
    min-height: 0;
    margin: 0 10px;
    border-radius: var(--r-lg);
  }
  .concerts-page .photo-band > img { object-position: 52% 26%; }
  .concerts-page .photo-band-caption { padding: 0 10px 30px; }
  .concerts-page .calendar-archive .concert-row { padding: 18px 4px; border-radius: 0; }
  .concerts-page .calendar-archive .concert-row:hover { padding-left: 4px; padding-right: 4px; }
  .concerts-page .concert-month { margin: 28px 4px 2px; gap: 12px; }
}

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE — quartet portrait
   ════════════════════════════════════════════════════════════ */
.about-page .hero-cinematic--inner { min-height: 76svh; }
.about-page .hero-cinematic-bg img { object-position: 50% 12%; }
.about-page .hero-cinematic-bg::after {
  background:
    linear-gradient(180deg, rgba(12,11,14,.08), rgba(12,11,14,.18) 42%, rgba(12,11,14,.9) 100%),
    linear-gradient(100deg, rgba(113,30,43,.3), transparent 56%);
}
.about-page .hero-cinematic-content { padding-bottom: 68px; }
.about-page .hero-cinematic--inner .h1 {
  max-width: 940px;
  font-size: clamp(62px, 9.5vw, 132px);
  line-height: .88;
}
.about-page .hero-cinematic .sub { max-width: 68ch; }

.about-members {
  position: relative;
  z-index: 2;
  color: var(--ink-inv);
  background: rgba(22,21,26,.97);
}
.about-members__grid {
  padding-top: 48px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.about-members__grid > figure {
  position: relative;
  min-width: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: #08080a;
}
.about-members__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  filter: grayscale(.12) contrast(1.03);
  transition: transform .8s var(--ease), filter .5s;
}
.about-members__grid figure:hover img { transform: scale(1.025); filter: grayscale(0) contrast(1.02); }
.about-members__grid figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 54px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(6,6,8,.88));
}
.about-members__grid strong {
  display: block;
  color: var(--ink-inv);
  font: 400 clamp(16px, 1.65vw, 21px)/1.2 'Fraunces', serif;
  white-space: nowrap;
}
.about-members__grid span {
  display: block;
  margin-top: 7px;
  color: var(--ink-inv-muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-biography {
  padding: 128px 0 136px;
  border-top: 0;
}
.about-biography > h2 {
  max-width: 930px;
  margin-bottom: 66px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: .98;
}
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, .55fr);
  gap: clamp(52px, 9vw, 124px);
  align-items: start;
}
.about-story-grid .prose--measure { max-width: 760px; }
.about-story-grid .prose p { font-size: 15px; line-height: 1.85; }
.about-story-grid .about-lede {
  margin-bottom: 32px;
  color: var(--fg);
  font: 400 clamp(24px, 3vw, 36px)/1.35 'Fraunces', serif;
  letter-spacing: -.015em;
}
.about-facts {
  border-top: 1px solid var(--line-md);
}
.about-facts > div {
  padding: 24px 0 22px;
  border-bottom: 1px solid var(--line);
}
.about-facts strong {
  display: block;
  color: var(--grad-1);
  font: italic 400 clamp(30px, 4vw, 48px)/1 'Fraunces', serif;
}
.about-facts span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.about-page > .photo-band {
  width: calc(100% - 32px);
  height: min(76svh, 780px);
  min-height: 520px;
  margin: 0 16px;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.about-page > .photo-band::after {
  background:
    linear-gradient(95deg, rgba(113,30,43,.3), transparent 62%),
    linear-gradient(0deg, rgba(12,11,14,.76), transparent 58%);
}
.about-page > .photo-band .photo-band-caption { padding-bottom: 52px; }
.about-page > .photo-band .photo-band-caption p {
  max-width: 36ch;
  font-size: clamp(25px, 3.5vw, 42px);
  line-height: 1.22;
}

.about-name-section {
  padding: 132px 0;
  border-top: 0;
}
.about-name-section .split-grid {
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(56px, 9vw, 120px);
}
.about-name-section h2 {
  margin-bottom: 28px;
  font-size: clamp(46px, 6vw, 76px);
}
.about-name-section .split-photo {
  aspect-ratio: 5 / 4;
  border: 0;
  border-radius: var(--r-xl);
  box-shadow: 0 28px 72px rgba(33,28,27,.16);
}
.about-name-section .tilt-photo { transform: rotate(1.4deg); }

.about-press-section {
  padding: 112px 0 124px;
  border-top-color: var(--line-md);
}
.about-press-section > h2 {
  max-width: 760px;
  margin-bottom: 52px;
  font-size: clamp(44px, 6vw, 72px);
}

.about-closing {
  margin: 20px 0 104px;
  padding: clamp(46px, 7vw, 82px) !important;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 42px;
  overflow: hidden;
  border: 0;
  border-radius: var(--r-xl);
  color: var(--ink-inv);
  background:
    radial-gradient(90% 160% at 100% 0, rgba(159,38,54,.42), transparent 52%),
    linear-gradient(125deg, #201a1c, #111014 72%);
  box-shadow: var(--sh-lg);
}
.about-closing .kicker { color: rgba(246,244,238,.64); }
.about-closing h2 {
  margin: 0;
  color: var(--ink-inv);
  font-size: clamp(43px, 6vw, 78px);
  line-height: .98;
}
.about-closing h2 em { color: #d56d66; font-weight: 400; }
.about-closing .btn { color: var(--ink-inv); border-color: var(--line-inv); }
.about-closing .btn:not(.primary) { background: rgba(255,255,255,.06); }
.about-closing .btns { flex-wrap: nowrap; justify-content: flex-end; }

@media (max-width: 860px) {
  .about-members__grid { grid-template-columns: 1fr 1fr; padding-top: 20px; padding-bottom: 20px; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-facts { display: grid; grid-template-columns: repeat(3, 1fr); }
  .about-facts > div { padding-right: 16px; }
  .about-name-section .split-grid { grid-template-columns: 1fr; }
  .about-closing { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .about-page .hero-cinematic--inner { min-height: 78svh; }
  .about-page .hero-cinematic-bg img { object-position: 50% 18%; }
  .about-page .hero-cinematic--inner .h1 { font-size: clamp(50px, 15vw, 72px); }
  .about-page .hero-cinematic-content { padding-bottom: 44px; }
  .about-members__grid { grid-template-columns: 1fr 1fr; }
  .about-members__grid { gap: 8px; }
  .about-members__grid > figure { border-radius: 18px; }
  .about-members__grid figcaption { padding: 42px 12px 14px; }
  .about-members__grid strong { font-size: 14px; white-space: normal; }
  .about-members__grid span { margin-top: 4px; font-size: 8px; }
  .about-biography { padding: 82px 0 88px; }
  .about-biography > h2 { margin-bottom: 42px; font-size: 45px; }
  .about-story-grid { gap: 46px; }
  .about-story-grid .about-lede { font-size: 25px; }
  .about-facts { grid-template-columns: 1fr; }
  .about-facts > div { padding: 18px 0; }
  .about-page > .photo-band {
    width: calc(100% - 20px);
    height: 56svh;
    min-height: 390px;
    margin: 0 10px;
    border-radius: var(--r-lg);
  }
  .about-page > .photo-band .photo-band-caption { padding: 0 10px 30px; }
  .about-name-section { padding: 86px 0; }
  .about-name-section h2 { font-size: 46px; }
  .about-name-section .tilt-photo { transform: none; }
  .about-press-section { padding: 82px 0 90px; }
  .about-closing { margin-bottom: 72px; padding: 34px 24px !important; }
  .about-closing h2 { font-size: 43px; }
  .about-closing .btns { width: 100%; flex-direction: column; align-items: stretch; }
  .about-closing .btn { justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   PROJECTS PAGE — artistic chapters
   ════════════════════════════════════════════════════════════ */
.projects-page .hero-cinematic--inner { min-height: 74svh; }
.projects-page .hero-cinematic-bg img { object-position: 50% 18%; }
.projects-page .hero-cinematic-bg::after {
  background:
    linear-gradient(180deg, rgba(12,11,14,.06), rgba(12,11,14,.2) 40%, rgba(12,11,14,.9) 100%),
    linear-gradient(100deg, rgba(113,30,43,.3), transparent 56%);
}
.projects-page .hero-cinematic-content { padding-bottom: 68px; }
.projects-page .hero-cinematic--inner .h1 {
  max-width: 980px;
  font-size: clamp(72px, 11vw, 150px);
  line-height: .86;
}
.projects-page .hero-cinematic .sub { max-width: 62ch; }

.projects-intro {
  padding: 128px 0 144px;
  border-top: 0;
}
.projects-intro__head {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 112px;
}
.projects-intro__head .section-index { padding-top: 13px; }
.projects-intro__head h2 {
  margin: 0;
  max-width: 940px;
  font-size: clamp(50px, 7vw, 88px);
  line-height: .98;
}
.projects-intro__head h2 em { color: var(--grad-1); font-weight: 400; }
.project-chapters { display: flex; flex-direction: column; gap: 132px; }
.project-chapter {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, .84fr);
  gap: clamp(50px, 8vw, 112px);
  align-items: center;
}
.project-chapter--reverse { grid-template-columns: minmax(320px, .84fr) minmax(0, 1.16fr); }
.project-chapter--reverse .project-chapter__image { order: 2; }
.project-chapter__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--bg-inv);
  box-shadow: 0 28px 76px rgba(33,28,27,.16);
}
.project-chapter__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.3) contrast(1.05);
  transition: transform 1s var(--ease), filter .6s;
}
.project-chapter:nth-child(1) .project-chapter__image img { object-position: 50% 50%; }
.project-chapter:nth-child(2) .project-chapter__image img { object-position: 50% 20%; }
.project-chapter:nth-child(3) .project-chapter__image img { object-position: 50% 28%; }
.project-chapter__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(12,11,14,.72));
  pointer-events: none;
}
.project-chapter__image:hover img { transform: scale(1.035); filter: grayscale(.08) contrast(1.03); }
.project-chapter__image span {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 24px;
  color: rgba(246,244,238,.78);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.project-chapter__copy { position: relative; }
.project-chapter__num {
  display: block;
  margin-bottom: 42px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(159,38,54,.45);
  font: italic 300 clamp(70px, 9vw, 122px)/.7 'Fraunces', serif;
}
.project-chapter__label {
  display: block;
  margin-bottom: 16px;
  color: var(--grad-1);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.project-chapter__copy h3 {
  margin-bottom: 22px;
  color: var(--fg);
  font: 400 clamp(36px, 4.6vw, 62px)/1.02 'Fraunces', serif;
  letter-spacing: -.025em;
}
.project-chapter__copy p {
  max-width: 48ch;
  color: var(--muted-md);
  font-size: 15px;
  line-height: 1.8;
}
.project-chapter__summary {
  padding-left: 18px;
  border-left: 2px solid rgba(159,38,54,.48);
  color: var(--fg) !important;
  font: 400 18px/1.55 'Fraunces', serif !important;
}
.project-chapter__story {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.project-chapter__story p { font-size: 13px; line-height: 1.78; }
.project-chapter__story p + p { margin-top: 16px; }

/* Projects overview: quiet gallery outside, complete editorial sheet inside. */
.projects-showcase { padding: 124px 0 132px; border-top: 0; }
.projects-showcase__head { max-width: 940px; margin-bottom: 56px; }
.projects-showcase__head h2 { margin-top: 18px; font-size: clamp(50px, 7vw, 88px); line-height: .96; text-wrap: balance; }
.projects-showcase__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.project-tile {
  position: relative; min-height: 365px; overflow: hidden; padding: 0; border: 0; border-radius: var(--r-lg);
  color: var(--ink-inv); background: var(--bg-inv); text-align: left; box-shadow: 0 18px 52px rgba(33,28,27,.11);
  isolation: isolate; transition: transform .45s var(--ease), box-shadow .45s;
}
.project-tile > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--project-pos); transition: transform 1s var(--ease), filter .6s; }
.project-tile__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,11,14,.04) 20%, rgba(12,11,14,.88) 100%); }
.project-tile__number { position: absolute; top: 26px; left: 28px; color: rgba(255,255,255,.76); font: italic 400 15px/1 'Fraunces', serif; }
.project-tile__copy { position: absolute; z-index: 2; inset: auto 0 0; display: grid; padding: clamp(28px, 4vw, 46px); }
.project-tile__copy small { color: rgba(255,255,255,.65); font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.project-tile__copy strong { max-width: 20ch; margin-top: 9px; color: #fff; font: 400 clamp(27px, 3vw, 38px)/1.04 'Fraunces', serif; }
.project-tile__copy i { width: max-content; margin-top: 22px; color: rgba(255,255,255,.72); font-size: 11px; font-style: normal; border-bottom: 1px solid rgba(255,255,255,.3); }
.project-tile:hover { transform: translateY(-5px); box-shadow: 0 30px 72px rgba(33,28,27,.18); }
.project-tile:hover > img { transform: scale(1.035); filter: saturate(1.08); }

.project-sheet {
  width: min(1080px, calc(100vw - 32px)); max-width: 1080px; max-height: calc(100dvh - 32px); overflow: auto;
  margin: auto; padding: 0; border: 0; border-radius: 34px; color: var(--fg); background: #f8f4ed;
  box-shadow: 0 48px 140px rgba(12,11,14,.42); overscroll-behavior: contain;
}
.project-sheet[open] { animation: project-sheet-in .48s var(--ease) both; }
@keyframes project-sheet-in { from { opacity: 0; transform: translateY(28px) scale(.975); } to { opacity: 1; transform: none; } }
.project-sheet::backdrop { background: rgba(15,13,15,.58); backdrop-filter: blur(18px) saturate(.75); }
.project-sheet__close {
  position: fixed; z-index: 5; top: max(30px, calc((100dvh - min(860px, 100dvh - 32px)) / 2 + 18px));
  right: max(30px, calc((100vw - min(1080px, 100vw - 32px)) / 2 + 18px));
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; color: #fff;
  background: rgba(12,11,14,.46); backdrop-filter: blur(14px); font-size: 25px; font-weight: 300; line-height: 1;
}
.project-sheet__hero { position: relative; min-height: 470px; overflow: hidden; color: #fff; background: var(--bg-inv); }
.project-sheet__hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,11,14,.08), rgba(12,11,14,.88)); }
.project-sheet__hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--project-pos); }
.project-sheet__hero > div { position: absolute; z-index: 2; left: clamp(28px, 6vw, 72px); right: clamp(28px, 6vw, 72px); bottom: clamp(32px, 6vw, 68px); }
.project-sheet__hero span { color: rgba(255,255,255,.68); font-size: 9px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.project-sheet__hero h2 { max-width: 850px; margin-top: 12px; color: #fff; font-size: clamp(44px, 7vw, 82px); line-height: .94; }
.project-sheet__body { padding: clamp(42px, 7vw, 82px); }
.project-sheet__lede { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 28px; padding-bottom: 42px; border-bottom: 1px solid var(--line-md); }
.project-sheet__lede span, .project-sheet__programme > span { color: var(--grad-1); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.project-sheet__lede p { max-width: 35ch; color: var(--fg); font: 400 clamp(24px, 3.4vw, 38px)/1.32 'Fraunces', serif; }
.project-sheet__story { max-width: 700px; margin: 46px 0; }
.project-sheet__story p { color: var(--muted-md); font-size: 15px; line-height: 1.84; }
.project-sheet__story p + p { margin-top: 19px; }
.project-sheet__review {
  max-width: 760px;
  margin: 50px 0;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(159,38,54,.18);
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(159,38,54,.08), rgba(193,138,82,.055));
}
.project-sheet__review > p {
  color: var(--fg);
  font: italic 400 clamp(23px, 3vw, 34px)/1.36 'Fraunces', serif;
}
.project-sheet__review footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.project-sheet__review a { color: var(--grad-1); }
.project-sheet__programme { max-width: 720px; margin: 48px 0 36px; }
.project-sheet__programme ol { margin-top: 14px; list-style: none; border-top: 1px solid var(--line-md); }
.project-sheet__programme li { padding: 17px 0; border-bottom: 1px solid var(--line); font: 400 19px/1.35 'Fraunces', serif; }

/* The annual proposals remain useful, but should read as a compact appendix. */
.projects-page .programmes-2027 { padding: 64px 0 76px; }
.projects-page .programmes-2027__intro {
  grid-template-columns: minmax(0, 1fr) minmax(260px, .7fr);
  gap: 34px 64px;
  margin-bottom: 28px;
}
.projects-page .programmes-2027__intro .kicker { margin-bottom: 4px; }
.projects-page .programmes-2027__intro h2 { font-size: clamp(38px, 4.5vw, 54px); }
.projects-page .programmes-2027__intro > p { font-size: 13px; line-height: 1.65; }
.projects-page .programme-card { min-height: 196px; padding: 25px 27px; border-radius: 22px; }
.projects-page .programme-card__head { padding-bottom: 14px; }
.projects-page .programme-card ol { gap: 10px; padding: 19px 0; }
.projects-page .programme-card li { padding-left: 22px; font-size: clamp(17px, 1.75vw, 21px); line-height: 1.25; }
.projects-page .programme-card__note { padding-top: 11px; }

.projects-page > .photo-band {
  width: calc(100% - 32px);
  height: min(72svh, 740px);
  min-height: 500px;
  margin: 0 16px;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.projects-page > .photo-band::after {
  background:
    linear-gradient(100deg, rgba(113,30,43,.32), transparent 62%),
    linear-gradient(0deg, rgba(12,11,14,.78), transparent 58%);
}
.projects-page > .photo-band .photo-band-caption { padding-bottom: 52px; }
.projects-page > .photo-band .photo-band-caption p {
  max-width: 34ch;
  font-size: clamp(25px, 3.5vw, 42px);
  line-height: 1.22;
}

.projects-context {
  margin: 112px 0 28px;
  padding: clamp(48px, 7vw, 84px) !important;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 110px);
  border: 0;
  border-radius: var(--r-xl);
  color: var(--ink-inv);
  background:
    radial-gradient(90% 160% at 100% 0, rgba(159,38,54,.36), transparent 52%),
    linear-gradient(125deg, #201a1c, #111014 74%);
  box-shadow: var(--sh-lg);
}
.projects-context .kicker { color: rgba(246,244,238,.62); }
.projects-context h2 {
  margin: 0;
  color: var(--ink-inv);
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1;
}
.projects-context__copy { align-self: end; }
.projects-context__copy p {
  color: rgba(246,244,238,.7);
  font-size: 14px;
  line-height: 1.8;
}
.projects-context__copy p + p { margin-top: 22px; }
.projects-context__copy strong { color: var(--ink-inv); font-weight: 500; }

.projects-closing {
  padding: 92px 0 110px !important;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  border-top: 0;
}
.projects-closing h2 {
  margin: 0;
  font-size: clamp(45px, 6vw, 76px);
  line-height: .98;
}
.projects-closing h2 em { color: var(--grad-1); font-weight: 400; }
.projects-closing .btns { flex-wrap: nowrap; justify-content: flex-end; }

.programmes-2027 { padding: 118px 0 132px; border-top: 1px solid var(--line-md); }
.programmes-2027__intro {
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  column-gap: clamp(48px, 9vw, 120px); align-items: end; margin-bottom: 58px;
}
.programmes-2027__intro .kicker { grid-column: 1 / -1; margin-bottom: 18px; }
.programmes-2027__intro h2 {
  max-width: 800px; margin: 0; font-size: clamp(48px, 7vw, 88px); line-height: .96;
}
.programmes-2027__intro > p { color: var(--muted-md); font-size: 14px; line-height: 1.75; }
.programmes-2027__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.programme-card {
  min-height: 310px; display: flex; flex-direction: column; padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: radial-gradient(90% 140% at 100% 0, rgba(159,38,54,.09), transparent 52%), rgba(255,255,255,.2);
  box-shadow: 0 12px 38px rgba(33,28,27,.045);
  transition: transform .4s var(--ease), border-color .25s, box-shadow .4s;
}
.programme-card:hover { transform: translateY(-4px); border-color: rgba(159,38,54,.26); box-shadow: 0 22px 52px rgba(33,28,27,.09); }
.programme-card__head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.programme-card__head span,
.programme-card__head i { font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.programme-card__head span { color: var(--grad-1); }
.programme-card__head i { color: var(--muted); font-style: normal; text-align: right; }
.programme-card ol {
  display: flex; flex-direction: column; gap: 16px; margin: auto 0; padding: 30px 0;
  list-style: none; counter-reset: works;
}
.programme-card li {
  position: relative; padding-left: 26px; color: var(--fg);
  font: 400 clamp(20px, 2.4vw, 28px)/1.24 'Fraunces', serif; counter-increment: works;
}
.programme-card li::before {
  content: counter(works, decimal-leading-zero); position: absolute; top: .55em; left: 0;
  color: var(--muted); font: 600 8px/1 'Inter', sans-serif; letter-spacing: .08em;
}
.programme-card__note { padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; line-height: 1.5; }

.faccini-project {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: start;
  padding: 126px 0 142px;
  border-top: 1px solid var(--line-md);
}
.faccini-project__visual {
  position: sticky;
  top: 118px;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: #ede3d7;
  box-shadow: 0 28px 74px rgba(33,28,27,.15);
  transform: rotate(-1.2deg);
}
.faccini-project__visual img { width: 100%; height: auto; }
.faccini-project__visual span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: var(--r-pill);
  color: #fff;
  background: rgba(18,17,21,.5);
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}
.faccini-project__content > h2 {
  margin: 17px 0 14px;
  font-size: clamp(52px, 7vw, 92px);
  line-height: .92;
}
.faccini-project__subtitle {
  max-width: 36ch;
  color: var(--grad-1);
  font: italic 400 clamp(22px, 2.7vw, 31px)/1.32 'Fraunces', serif;
}
.faccini-project__story { margin-top: 52px; padding-top: 34px; border-top: 1px solid var(--line-md); }
.faccini-project__story h3 { max-width: 24ch; margin-bottom: 24px; font-size: clamp(27px, 3vw, 38px); }
.faccini-project__story p { max-width: 62ch; color: var(--muted-md); font-size: 14px; line-height: 1.8; }
.faccini-project__story p + p { margin-top: 17px; }
.faccini-project__programme { margin: 46px 0 36px; }
.faccini-project__programme > span {
  display: block;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.faccini-project__programme ol { list-style: none; border-top: 1px solid var(--line-md); }
.faccini-project__programme li {
  display: grid;
  grid-template-columns: minmax(130px, .38fr) minmax(0, .62fr);
  gap: 24px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.faccini-project__programme small { color: var(--muted); font-size: 10px; line-height: 1.5; }
.faccini-project__programme strong { color: var(--fg); font: 400 18px/1.35 'Fraunces', serif; }

@media (max-width: 860px) {
  .projects-intro__head { grid-template-columns: 54px 1fr; }
  .project-chapter,
  .project-chapter--reverse { grid-template-columns: 1fr; gap: 46px; }
  .project-chapter--reverse .project-chapter__image { order: 0; }
  .projects-context { grid-template-columns: 1fr; }
  .projects-closing { align-items: flex-start; flex-direction: column; }
  .programmes-2027__intro { grid-template-columns: 1fr; gap: 24px; }
  .faccini-project { grid-template-columns: 1fr; }
  .faccini-project__visual { position: relative; top: auto; width: min(100%, 540px); }
  .project-tile { min-height: 350px; }
}

@media (max-width: 640px) {
  .projects-page .hero-cinematic--inner { min-height: 76svh; }
  .projects-page .hero-cinematic-bg img { object-position: 54% 20%; }
  .projects-page .hero-cinematic--inner .h1 { font-size: clamp(58px, 18vw, 82px); }
  .projects-page .hero-cinematic-content { padding-bottom: 44px; }
  .projects-intro { padding: 82px 0 94px; }
  .projects-intro__head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 72px; }
  .projects-intro__head h2 { font-size: 44px; }
  .project-chapters { gap: 86px; }
  .project-chapter { gap: 34px; }
  .project-chapter__image { aspect-ratio: 5 / 4; border-radius: var(--r-lg); }
  .project-chapter__image span { left: 20px; bottom: 18px; }
  .project-chapter__num { margin-bottom: 28px; font-size: 74px; }
  .project-chapter__copy h3 { font-size: 38px; }
  .projects-page > .photo-band {
    width: calc(100% - 20px);
    height: 52svh;
    min-height: 360px;
    margin: 0 10px;
    border-radius: var(--r-lg);
  }
  .projects-page > .photo-band .photo-band-caption { padding: 0 10px 30px; }
  .projects-context { margin-top: 78px; padding: 38px 24px !important; gap: 34px; }
  .projects-context h2 { font-size: 43px; }
  .projects-closing { padding: 72px 0 84px !important; }
  .projects-closing h2 { font-size: 43px; }
  .projects-closing .btns { width: 100%; flex-direction: column; align-items: stretch; }
  .projects-closing .btn { justify-content: center; }
  .programmes-2027 { padding: 82px 0 92px; }
  .programmes-2027__intro { margin-bottom: 38px; }
  .programmes-2027__intro h2 { font-size: 44px; }
  .programmes-2027__grid { grid-template-columns: 1fr; }
  .programme-card { min-height: 270px; padding: 26px 22px; }
  .programme-card__head { flex-direction: column; gap: 6px; }
  .programme-card__head i { text-align: left; }
  .programme-card li { font-size: 23px; }
  .faccini-project { padding: 88px 0 98px; gap: 52px; }
  .faccini-project__content > h2 { font-size: 52px; }
  .faccini-project__story { margin-top: 38px; }
  .faccini-project__programme li { grid-template-columns: 1fr; gap: 5px; }
  .projects-showcase { padding: 82px 0 92px; }
  .projects-showcase__head { margin-bottom: 38px; }
  .projects-showcase__head h2 { font-size: 44px; }
  .projects-showcase__grid { grid-template-columns: 1fr; }
  .project-tile { min-height: 340px; border-radius: 22px; }
  .project-tile__copy strong { font-size: 30px; }
  .project-sheet { width: calc(100vw - 14px); max-height: calc(100dvh - 14px); border-radius: 26px; }
  .project-sheet__close { position: fixed; top: 16px; right: 16px; }
  .project-sheet__hero { min-height: 390px; }
  .project-sheet__hero h2 { font-size: 46px; }
  .project-sheet__body { padding: 38px 24px 48px; }
  .project-sheet__lede { grid-template-columns: 1fr; gap: 13px; }
  .project-sheet__review footer { flex-direction: column; gap: 8px; }
  .projects-page .programmes-2027 { padding: 56px 0 68px; }
  .projects-page .programmes-2027__intro { grid-template-columns: 1fr; gap: 14px; margin-bottom: 25px; }
  .projects-page .programmes-2027__intro h2 { font-size: 38px; }
  .projects-page .programme-card { min-height: 0; padding: 22px 20px; }
  .projects-page .programme-card li { font-size: 19px; }
}

/* ════════════════════════════════════════════════════════════
   CONTACT PAGE — an invitation to collaborate
   ════════════════════════════════════════════════════════════ */
.contact-page .hero-cinematic--inner { min-height: 76svh; }
.contact-page .hero-cinematic-bg img { object-position: 50% 18%; }
.contact-page .hero-cinematic-bg::after {
  background:
    linear-gradient(180deg, rgba(12,11,14,.08), rgba(12,11,14,.18) 38%, rgba(12,11,14,.91) 100%),
    linear-gradient(100deg, rgba(113,30,43,.32), transparent 56%);
}
.contact-page .hero-cinematic-content { padding-bottom: 68px; }
.contact-page .hero-cinematic--inner .h1 {
  max-width: 1080px;
  font-size: clamp(62px, 9.5vw, 132px);
  line-height: .88;
}
.contact-page .hero-cinematic .sub { max-width: 50ch; }

.contact-primary {
  padding: 132px 0 142px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(64px, 10vw, 140px);
  align-items: center;
  border-top: 0;
}
.contact-primary__statement .section-index { display: block; margin-bottom: 38px; }
.contact-primary__statement h2 {
  margin-bottom: 32px;
  font-size: clamp(54px, 7.4vw, 94px);
  line-height: .96;
}
.contact-primary__statement h2 em { color: var(--grad-1); font-weight: 400; }
.contact-primary__statement p {
  max-width: 46ch;
  color: var(--muted-md);
  font-size: 16px;
  line-height: 1.75;
}
.contact-person {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 5vw, 60px);
  border-radius: var(--r-xl);
  color: var(--ink-inv);
  background:
    radial-gradient(110% 90% at 100% 0, rgba(159,38,54,.48), transparent 56%),
    linear-gradient(145deg, #282125, #121115 72%);
  box-shadow: 0 30px 80px rgba(33,28,27,.2);
}
.contact-person::after {
  content: 'QG';
  position: absolute;
  right: -18px;
  bottom: -42px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.07);
  font: italic 300 150px/.8 'Fraunces', serif;
  pointer-events: none;
}
.contact-person__label,
.contact-note {
  display: block;
  color: rgba(246,244,238,.58);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-person h3 {
  margin: 24px 0 8px;
  color: var(--ink-inv);
  font: 400 clamp(34px, 4vw, 48px)/1 'Fraunces', serif;
}
.contact-person > p { color: rgba(246,244,238,.65); font-size: 13px; line-height: 1.55; }
.contact-email {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 46px 0 24px;
  color: var(--ink-inv);
  font: 400 clamp(20px, 2.6vw, 31px)/1.25 'Fraunces', serif;
  text-decoration: underline;
  text-decoration-color: rgba(159,38,54,.72);
  text-underline-offset: 7px;
  transition: color .2s;
}
.contact-email:hover { color: #c96d79; }
.contact-phone { display: block; width: max-content; color: rgba(246,244,238,.78); font-size: 14px; }
.contact-note { margin-top: 44px; max-width: 34ch; line-height: 1.6; }

.contact-social {
  padding: 116px 0 126px;
  border-top-color: var(--line-md);
}
.contact-social__head {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 54px;
}
.contact-social__head .section-index { padding-top: 9px; }
.contact-social__head h2 { margin: 0; font-size: clamp(48px, 6vw, 76px); }
.contact-social__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.contact-social__grid a {
  min-height: 210px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.2);
  box-shadow: 0 12px 34px rgba(33,28,27,.045);
  transition: transform .4s var(--ease), background .25s, box-shadow .4s;
}
.contact-social__grid a:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.5);
  box-shadow: 0 24px 54px rgba(33,28,27,.11);
}
.contact-social__grid a:first-child {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(12,11,14,.08), rgba(12,11,14,.82)),
    url('/images/social/quartetto-guadagnini-momento-informale.webp') center 42% / cover;
}
.contact-social__grid a:first-child span { color: #e7a5ad; }
.contact-social__grid a:first-child strong,
.contact-social__grid a:first-child i { color: #fff; }
.contact-social__grid a:first-child:hover {
  background:
    linear-gradient(180deg, rgba(12,11,14,.02), rgba(12,11,14,.72)),
    url('/images/social/quartetto-guadagnini-momento-informale.webp') center 42% / cover;
}
.contact-social__grid a:nth-child(2) {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(12,11,14,.1), rgba(12,11,14,.84)),
    url('/images/social/quartetto-guadagnini-selfie-dopo-concerto.webp') center 42% / cover;
}
.contact-social__grid a:nth-child(2):hover {
  background:
    linear-gradient(180deg, rgba(12,11,14,.03), rgba(12,11,14,.74)),
    url('/images/social/quartetto-guadagnini-selfie-dopo-concerto.webp') center 42% / cover;
}
.contact-social__grid a:nth-child(3) {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(180deg, rgba(12,11,14,.08), rgba(12,11,14,.84)),
    url('/images/social/quartetto-guadagnini-backstage-concerto.webp') center 36% / cover;
}
.contact-social__grid a:nth-child(3):hover {
  background:
    linear-gradient(180deg, rgba(12,11,14,.02), rgba(12,11,14,.74)),
    url('/images/social/quartetto-guadagnini-backstage-concerto.webp') center 36% / cover;
}
.contact-social__grid a:nth-child(n+2) span { color: #e7a5ad; }
.contact-social__grid a:nth-child(n+2) strong,
.contact-social__grid a:nth-child(n+2) i { color: #fff; }
.contact-social__grid span {
  color: var(--grad-1);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contact-social__grid strong {
  margin-top: auto;
  color: var(--fg);
  font: 400 clamp(21px, 2.5vw, 29px)/1.15 'Fraunces', serif;
}
.contact-social__grid i {
  align-self: flex-end;
  margin-top: 20px;
  color: var(--muted);
  font-style: normal;
  font-size: 20px;
}

.contact-materials {
  margin: 10px 0 110px;
  padding: clamp(46px, 7vw, 80px) !important;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  border: 0;
  border-radius: var(--r-xl);
  color: var(--ink-inv);
  background:
    linear-gradient(90deg, rgba(12,11,14,.94) 0%, rgba(12,11,14,.68) 58%, rgba(12,11,14,.32)),
    url('/images/ensemble/quartetto-guadagnini-prove-ensemble.jpg') 58% 32% / cover;
  box-shadow: var(--sh-lg);
}
.contact-materials .kicker { color: rgba(246,244,238,.62); }
.contact-materials h2 {
  margin: 0;
  color: var(--ink-inv);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
}
.contact-materials .btn { flex-shrink: 0; }

@media (max-width: 860px) {
  .contact-primary { grid-template-columns: 1fr; }
  .contact-social__grid { grid-template-columns: 1fr; }
  .contact-social__grid a { min-height: 160px; }
  .contact-materials { align-items: flex-start; flex-direction: column; justify-content: flex-end; }
}

@media (max-width: 640px) {
  .contact-page .hero-cinematic--inner { min-height: 78svh; }
  .contact-page .hero-cinematic-bg img { object-position: 54% 20%; }
  .contact-page .hero-cinematic--inner .h1 { font-size: clamp(48px, 14.5vw, 70px); }
  .contact-page .hero-cinematic-content { padding-bottom: 44px; }
  .contact-primary { padding: 82px 0 92px; gap: 54px; }
  .contact-primary__statement h2 { font-size: 48px; }
  .contact-person { padding: 34px 24px; border-radius: var(--r-lg); }
  .contact-email { font-size: 21px; }
  .contact-social { padding: 82px 0 90px; }
  .contact-social__head { grid-template-columns: 34px 1fr; gap: 12px; }
  .contact-social__head h2 { font-size: 43px; }
  .contact-social__grid a { min-height: 145px; padding: 24px; }
  .contact-materials { min-height: 460px; margin-bottom: 72px; padding: 34px 24px !important; border-radius: var(--r-lg); }
  .contact-materials h2 { font-size: 38px; }
  .contact-materials .btn { width: 100%; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   PRESS KIT — concise professional area
   ════════════════════════════════════════════════════════════ */
.presskit-page .hero-cinematic--inner { min-height: 72svh; }
.presskit-page .hero-cinematic-bg img { object-position: 50% 0%; }
.presskit-page .hero-cinematic-bg::after {
  background:
    linear-gradient(180deg, rgba(12,11,14,.08), rgba(12,11,14,.18) 40%, rgba(12,11,14,.92) 100%),
    linear-gradient(100deg, rgba(113,30,43,.3), transparent 58%);
}
.presskit-page .hero-cinematic-content { padding-bottom: 66px; }
.presskit-page .hero-cinematic--inner .h1 {
  max-width: 1000px;
  font-size: clamp(64px, 9.5vw, 132px);
  line-height: .88;
}
.presskit-page .hero-cinematic .sub { max-width: 62ch; }

.presskit-essential {
  padding: 126px 0 132px;
  border-top: 0;
}
.presskit-essential__head {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  margin-bottom: 58px;
}
.presskit-essential__head .section-index { padding-top: 7px; }
.presskit-essential__head h2 {
  margin: 0;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1;
}
.presskit-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.presskit-links a {
  min-height: 230px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.48);
  box-shadow: 0 14px 38px rgba(33,28,27,.065);
  transition: transform .4s var(--ease), background .25s, box-shadow .4s;
}
.presskit-links a:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.5);
  box-shadow: 0 24px 54px rgba(33,28,27,.11);
}
.presskit-links span {
  color: var(--grad-1);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.presskit-links strong {
  margin-top: auto;
  color: var(--fg);
  font: 400 clamp(22px, 2.6vw, 31px)/1.15 'Fraunces', serif;
}
.presskit-links i { align-self: flex-end; margin-top: 20px; color: var(--muted); font-style: normal; font-size: 20px; }

.biography-library {
  padding: 118px 0 128px;
  border-top-color: var(--line-md);
  scroll-margin-top: 110px;
}
.biography-library__head {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  margin-bottom: 58px;
}
.biography-library__head .section-index { padding-top: 7px; }
.biography-library__head h2 {
  margin: 0;
  font-size: clamp(44px, 5.8vw, 72px);
  line-height: 1;
}
.biography-library__grid { display: grid; gap: 16px; }
.bio-kit-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px 34px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.42);
  box-shadow: 0 12px 34px rgba(33,28,27,.055);
}
.bio-kit-card__head { grid-row: 1 / span 3; }
.bio-kit-card__head span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(159,38,54,.48);
  font: italic 300 54px/.85 'Fraunces', serif;
}
.bio-kit-card__head strong {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.bio-kit-card__label {
  color: var(--grad-1);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.bio-kit-card > p {
  max-width: 92ch;
  color: var(--muted-md);
  font-size: 14px;
  line-height: 1.72;
}
.bio-kit-card__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.bio-kit-card__actions .btn { font-size: 11px; padding: 9px 15px; }
.bio-kit-card__web { align-self: center; margin-left: 4px; color: var(--muted); font-size: 10px; text-decoration: underline; text-decoration-color: var(--line-md); text-underline-offset: 4px; }
.bio-download-card { grid-template-columns: 115px minmax(0, 1fr); align-items: start; }
.bio-download-card .bio-kit-card__head { grid-row: 1 / span 2; }
.bio-download-card__files { display: grid; gap: 8px; }
.bio-download-card__files > a { min-height: 82px; padding: 17px 19px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid var(--line); border-radius: var(--r-md); color: var(--fg); background: rgba(255,255,255,.34); transition: border-color .25s, background .25s, transform .25s; }
.bio-download-card__files > a:hover { transform: translateY(-2px); border-color: rgba(159,38,54,.35); background: rgba(255,255,255,.62); }
.bio-download-card__files span { display: flex; flex-direction: column; gap: 5px; }
.bio-download-card__files strong { font: 400 20px/1.1 'Fraunces', serif; }
.bio-download-card__files small { color: var(--muted); font-size: 9px; }
.bio-download-card__files i { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; color: var(--grad-1); font-size: 15px; font-style: normal; }
.bio-download-card__files b { padding: 5px 7px; border: 1px solid rgba(159,38,54,.25); border-radius: 6px; font-size: 8px; letter-spacing: .1em; }
.bio-download-card > .bio-kit-card__web { justify-self: start; align-self: auto; margin: 7px 0 0; }

.press-photography { padding: 118px 0 126px; border-top: 1px solid var(--line-md); }
.press-photography__head { display: grid; grid-template-columns: 72px 1fr; gap: 20px; margin-bottom: 58px; }
.press-photography__head h2 { max-width: 16ch; font-size: clamp(45px, 6vw, 72px); }
.press-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.press-photo-download { overflow: hidden; border: 1px solid var(--line); border-radius: var(--r-lg); background: rgba(255,255,255,.34); box-shadow: var(--sh-sm); }
.press-photo-download > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .6s var(--ease); }
.press-photo-download:hover > img { transform: scale(1.025); }
.press-photo-download > div { padding: 20px 21px 22px; display: grid; grid-template-columns: 28px 1fr; }
.press-photo-download span { grid-row: 1 / span 4; color: var(--grad-1); font: italic 400 15px/1 'Fraunces', serif; }
.press-photo-download h3 { font-size: 22px; line-height: 1.08; }
.press-photo-download p { margin-top: 7px; color: var(--muted); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.press-photo-download small { margin-top: 9px; color: var(--muted-md); font-size: 9px; }
.press-photo-download a { margin-top: 18px; display: flex; justify-content: space-between; color: var(--fg); font-size: 10px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
.press-photo-download a i { color: var(--grad-1); font-size: 14px; font-style: normal; }
.press-photography__note { max-width: 76ch; margin: 30px 0 0; color: var(--muted); font-size: 10px; line-height: 1.65; }

.press-acclaim { width: min(100%, 1120px); margin-inline: auto; padding: 94px 0 104px; border-top: 1px solid var(--line-md); }
.press-acclaim__head { display: grid; grid-template-columns: 58px 1fr; gap: 16px; margin-bottom: 42px; }
.press-acclaim__head h2 { font-size: clamp(40px, 4.5vw, 58px); }
.press-acclaim__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.press-acclaim-card { min-height: 205px; margin: 0; padding: 22px 24px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r-md); background: rgba(255,255,255,.3); }
.press-acclaim-card--lead { color: var(--ink-inv); background: radial-gradient(100% 120% at 0 100%, rgba(113,30,43,.25), transparent 62%), #1b191d; }
.press-acclaim-card > span { color: var(--grad-1); font: italic 400 16px/1 'Fraunces', serif; }
.press-acclaim-card > p { max-width: 42ch; margin: auto 0; color: inherit; font: 400 clamp(18px, 1.65vw, 24px)/1.25 'Fraunces', serif; }
.press-acclaim-card--lead > p { font-size: clamp(20px, 1.8vw, 26px); }
.press-acclaim-card footer { display: flex; flex-direction: column; gap: 5px; }
.press-acclaim-card footer strong { color: inherit; font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.press-acclaim-card footer small { color: var(--muted); font-size: 8px; }
.press-acclaim-card--lead footer small { color: rgba(246,244,238,.54); }
.press-acclaim__note { max-width: 76ch; margin: 28px 0 0; color: var(--muted); font-size: 9px; }

.presskit-request {
  margin-bottom: 110px;
  padding: clamp(48px, 7vw, 84px) !important;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  gap: clamp(56px, 9vw, 120px);
  border: 0;
  border-radius: var(--r-xl);
  color: var(--ink-inv);
  background:
    radial-gradient(90% 150% at 100% 0, rgba(159,38,54,.42), transparent 54%),
    linear-gradient(125deg, #211b1e, #111014 72%);
  box-shadow: var(--sh-lg);
}
.presskit-request .kicker { color: rgba(246,244,238,.62); }
.presskit-request h2 {
  color: var(--ink-inv);
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1;
}
.presskit-request p { max-width: 58ch; color: rgba(246,244,238,.68); font-size: 14px; line-height: 1.75; }
.presskit-contact { align-self: end; display: flex; flex-direction: column; align-items: flex-start; }
.presskit-contact > span { color: var(--ink-inv); font: 400 27px/1.1 'Fraunces', serif; }
.presskit-contact > strong { margin-top: 7px; color: rgba(246,244,238,.58); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.presskit-contact > a:not(.btn) {
  margin: 30px 0;
  color: var(--ink-inv);
  font: 400 clamp(18px, 2.2vw, 25px)/1.3 'Fraunces', serif;
  text-decoration: underline;
  text-decoration-color: rgba(159,38,54,.72);
  text-underline-offset: 6px;
}

@media (max-width: 860px) {
  .presskit-links { grid-template-columns: 1fr; }
  .presskit-links a { min-height: 170px; }
  .presskit-request { grid-template-columns: 1fr; }
  .press-photo-grid { grid-template-columns: 1fr 1fr; }
  .press-acclaim__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .presskit-page .hero-cinematic--inner { min-height: 76svh; }
  .presskit-page .hero-cinematic-bg img { object-position: 48% 0%; }
  .presskit-page .hero-cinematic--inner .h1 { font-size: clamp(50px, 15vw, 72px); }
  .presskit-page .hero-cinematic-content { padding-bottom: 44px; }
  .presskit-essential { padding: 82px 0 90px; }
  .presskit-essential__head { grid-template-columns: 34px 1fr; gap: 12px; }
  .presskit-essential__head h2 { font-size: 42px; }
  .presskit-links a { min-height: 150px; padding: 24px; }
  .biography-library { padding: 82px 0 90px; }
  .biography-library__head { grid-template-columns: 34px 1fr; gap: 12px; }
  .biography-library__head h2 { font-size: 40px; }
  .bio-kit-card { grid-template-columns: 1fr; padding: 24px; }
  .bio-kit-card__head { grid-row: auto; display: flex; align-items: baseline; gap: 14px; }
  .bio-kit-card__head span { font-size: 43px; }
  .bio-kit-card__head strong { margin-top: 0; }
  .bio-kit-card > p { font-size: 13px; }
  .bio-kit-card__actions { flex-direction: column; }
  .bio-kit-card__actions .btn { width: 100%; justify-content: center; }
  .bio-kit-card__web { margin: 8px auto 0; }
  .bio-download-card { grid-template-columns: 1fr; }
  .bio-download-card .bio-kit-card__head { grid-row: auto; }
  .bio-download-card__files { width: 100%; }
  .bio-download-card > .bio-kit-card__web { justify-self: center; margin-top: 10px; }
  .press-photography { padding: 82px 0 90px; }
  .press-photography__head { grid-template-columns: 34px 1fr; gap: 12px; }
  .press-photography__head h2 { font-size: 40px; }
  .press-photo-grid { grid-template-columns: 1fr; gap: 12px; }
  .press-acclaim { padding: 72px 0 80px; }
  .press-acclaim__head { grid-template-columns: 34px 1fr; gap: 12px; }
  .press-acclaim__head h2 { font-size: 40px; }
  .press-acclaim__grid { grid-template-columns: 1fr; }
  .press-acclaim-card { min-height: 190px; padding: 21px; }
  .presskit-request { margin-bottom: 72px; padding: 38px 24px !important; border-radius: var(--r-lg); }
  .presskit-request h2 { font-size: 41px; }
  .presskit-contact .btn { width: 100%; justify-content: center; }
}

/* Fiscal information stays intentionally quiet and footer-only. */
.fiscal-page { padding-top: 34px; }
.fiscal-hero { padding: 110px 0 82px; }
.fiscal-hero .h1 { font-size: clamp(64px, 10vw, 126px); line-height: .88; }
.fiscal-card {
  margin-bottom: 110px;
  padding: clamp(38px, 6vw, 72px) !important;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(52px, 9vw, 120px);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.3);
  box-shadow: var(--sh-md);
}
.fiscal-card__brand > span,
.fiscal-card dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.fiscal-card__brand h2 { margin-top: 18px; font-size: clamp(34px, 4.5vw, 54px); line-height: 1.08; }
.fiscal-card dl > div { padding: 22px 0; border-bottom: 1px solid var(--line); }
.fiscal-card dl > div:first-child { padding-top: 0; }
.fiscal-card dd { margin-top: 10px; color: var(--fg); font: 400 19px/1.45 'Fraunces', serif; }
.footer-bottom a { color: inherit; text-decoration: underline; text-decoration-color: var(--line-md); text-underline-offset: 4px; }

@media (max-width: 700px) {
  .fiscal-page { padding-top: 12px; }
  .fiscal-hero { padding: 82px 0 62px; }
  .fiscal-card { grid-template-columns: 1fr; margin-bottom: 72px; padding: 30px 24px !important; border-radius: var(--r-lg); }
}

/* ════════════════════════════════════════════════════════════
   JOURNAL — scores, rehearsals and artistic notes
   ════════════════════════════════════════════════════════════ */
.home-journal-wrap { color: var(--ink-inv); background: radial-gradient(80% 120% at 0 100%, rgba(113,30,43,.32), transparent 58%), radial-gradient(70% 100% at 100% 0, rgba(193,138,82,.12), transparent 58%), #151419; }
.home-journal { padding: 108px 0 116px; border: 0; }
.home-journal .home-section-head h2 { color: var(--ink-inv); }
.home-journal .kicker { color: rgba(246,244,238,.68); border-color: rgba(246,244,238,.15); background: rgba(255,255,255,.04); }
.home-journal .btn { color: var(--ink-inv); border-color: rgba(246,244,238,.18); background: rgba(255,255,255,.05); }
.home-journal-grid { display: grid; grid-template-columns: 1.25fr .875fr .875fr; gap: 14px; }
.home-journal-card { position: relative; min-height: 390px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border: 1px solid rgba(246,244,238,.13); border-radius: var(--r-lg); color: var(--ink-inv); background: #201d20; isolation: isolate; }
.home-journal-card > img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: var(--img-pos, center); filter: grayscale(.32) brightness(.64); transition: transform .7s var(--ease), filter .5s; }
.home-journal-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12,11,14,.06), rgba(12,11,14,.9)); }
.home-journal-card:hover > img { transform: scale(1.045); filter: grayscale(.08) brightness(.72); }
.home-journal-card > span { margin-bottom: 14px; color: rgba(246,244,238,.64); font-size: 9px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.home-journal-card > strong { max-width: 15ch; font: 400 clamp(27px, 3vw, 42px)/1.02 'Fraunces', serif; }
.home-journal-card > i { margin-top: 24px; color: rgba(246,244,238,.7); font-size: 11px; font-style: normal; }
.home-journal-card:not(.home-journal-card--featured) > strong { font-size: clamp(25px, 2.3vw, 34px); }

.journal-hero { min-height: 72svh; }
.journal-hero .hero-cinematic-bg::after { background: linear-gradient(180deg, rgba(12,11,14,.16), rgba(12,11,14,.22) 38%, rgba(12,11,14,.94) 100%), linear-gradient(100deg, rgba(113,30,43,.34), transparent 56%); }
.journal-hero .h1 { font-size: clamp(82px, 14vw, 190px); line-height: .78; }
.journal-hero__dot { color: var(--grad-1); }
.journal-featured { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); gap: clamp(52px, 8vw, 110px); align-items: center; padding: 126px 0 136px; border: 0; }
.journal-featured__image, .journal-card__image { position: relative; display: block; overflow: hidden; border-radius: var(--r-xl); background: var(--bg-inv); box-shadow: var(--sh-lg); }
.journal-featured__image { aspect-ratio: 4/5; }
.journal-featured__image img, .journal-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: var(--img-pos, center); transition: transform .7s var(--ease); }
.journal-featured__image:hover img, .journal-card__image:hover img { transform: scale(1.035); }
.journal-featured__image > span, .journal-card__image > span { position: absolute; left: 20px; bottom: 18px; color: rgba(246,244,238,.9); font: italic 300 28px/1 'Fraunces', serif; text-shadow: 0 3px 20px rgba(0,0,0,.5); }
.journal-featured__copy h2 { max-width: 11ch; margin: 25px 0 24px; font-size: clamp(52px, 6vw, 82px); }
.journal-featured__copy > p { max-width: 44ch; color: var(--muted-md); font-size: 17px; line-height: 1.78; }
.journal-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 25px 0; color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.journal-meta span + span::before { content: '·'; margin-right: 24px; }
.journal-archive { padding: 118px 0 132px; border-top-color: var(--line-md); }
.journal-archive__head { display: grid; grid-template-columns: 72px 1fr; gap: 20px; margin-bottom: 64px; }
.journal-archive__head h2 { max-width: 15ch; font-size: clamp(45px, 6vw, 72px); }
.journal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 76px); }
.journal-card__image { aspect-ratio: 4/3; border-radius: var(--r-lg); }
.journal-card__copy { padding: 27px 4px 0; }
.journal-card__copy > span { color: var(--grad-1); font-size: 9px; font-weight: 650; letter-spacing: .15em; text-transform: uppercase; }
.journal-card__copy h3 { margin: 14px 0; font-size: clamp(30px, 3.6vw, 48px); }
.journal-card__copy h3 a { color: inherit; }
.journal-card__copy > p { max-width: 54ch; color: var(--muted-md); font-size: 14px; line-height: 1.75; }

.journal-article-hero { padding: clamp(180px, 20vh, 250px) 0 92px; background: linear-gradient(180deg, #ede4d8, var(--bg)); }
.journal-article-hero__inner { display: grid; grid-template-columns: 150px minmax(0, 1fr); }
.journal-back { grid-row: 1 / span 5; align-self: start; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.journal-article-hero .kicker { justify-self: start; }
.journal-article-hero h1 { max-width: 1120px; margin: 30px 0 34px; font-size: clamp(62px, 10vw, 138px); line-height: .88; }
.journal-article-hero p { max-width: 64ch; color: var(--muted-md); font: 400 clamp(21px, 2.5vw, 31px)/1.45 'Fraunces', serif; }
.journal-article-image { width: min(calc(100% - 32px), 1440px); margin: 0 auto; }
.journal-article-image img { width: 100%; height: min(72vw, 820px); object-fit: cover; object-position: var(--img-pos, center); border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
.journal-article-image figcaption { padding: 13px 4px 0; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.journal-article-body { position: relative; display: grid; grid-template-columns: minmax(160px, .55fr) minmax(0, 1.45fr); gap: 50px; padding-top: 126px; padding-bottom: 140px; }
.journal-article-body__mark { position: sticky; top: 160px; align-self: start; color: transparent; -webkit-text-stroke: 1px rgba(159,38,54,.2); font: italic 300 clamp(80px, 11vw, 150px)/.75 'Fraunces', serif; }
.journal-prose { max-width: 760px; }
.journal-prose section + section { margin-top: 100px; padding-top: 92px; border-top: 1px solid var(--line-md); }
.journal-prose section > span { color: var(--grad-1); font: italic 400 20px/1 'Fraunces', serif; }
.journal-prose h2 { margin: 18px 0 38px; font-size: clamp(40px, 5vw, 62px); }
.journal-prose p { color: var(--muted-md); font: 400 clamp(18px, 1.8vw, 21px)/1.82 'Fraunces', serif; }
.journal-prose p + p { margin-top: 28px; }
.journal-related { padding: 100px 0 120px; }
.journal-related__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 38px; }
.journal-related__grid a { min-height: 230px; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r-lg); background: rgba(255,255,255,.4); box-shadow: var(--sh-sm); }
.journal-related__grid span { color: var(--grad-1); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.journal-related__grid strong { max-width: 18ch; margin-top: auto; font: 400 clamp(25px, 3vw, 36px)/1.08 'Fraunces', serif; }
.journal-related__grid i { align-self: flex-end; color: var(--muted); font-style: normal; }

@media (max-width: 860px) {
  .home-journal-grid { grid-template-columns: 1fr 1fr; }
  .home-journal-card--featured { grid-column: 1 / -1; }
  .journal-featured { grid-template-columns: 1fr 1fr; gap: 42px; }
  .journal-article-hero__inner { grid-template-columns: 1fr; }
  .journal-back { grid-row: auto; margin-bottom: 42px; }
}
@media (max-width: 640px) {
  .home-journal { padding: 82px 0 88px; }
  .home-journal-grid { grid-template-columns: 1fr; }
  .home-journal-card--featured { grid-column: auto; }
  .home-journal-card { min-height: 350px; padding: 22px; }
  .journal-hero { min-height: 72svh; }
  .journal-hero .h1 { font-size: clamp(70px, 24vw, 102px); }
  .journal-featured { grid-template-columns: 1fr; gap: 44px; padding: 82px 0 94px; }
  .journal-featured__image { aspect-ratio: 4/4.6; border-radius: var(--r-lg); }
  .journal-featured__copy h2 { font-size: 48px; }
  .journal-archive { padding: 82px 0 92px; }
  .journal-archive__head { grid-template-columns: 38px 1fr; gap: 10px; }
  .journal-archive__head h2 { font-size: 41px; }
  .journal-grid { grid-template-columns: 1fr; gap: 68px; }
  .journal-article-hero { padding: 138px 0 64px; }
  .journal-article-hero h1 { margin-top: 24px; font-size: clamp(50px, 15vw, 68px); }
  .journal-article-hero p { font-size: 21px; }
  .journal-article-image { width: calc(100% - 16px); }
  .journal-article-image img { height: 68svh; border-radius: var(--r-lg); }
  .journal-article-body { grid-template-columns: 1fr; padding-top: 82px; padding-bottom: 96px; }
  .journal-article-body__mark { display: none; }
  .journal-prose section + section { margin-top: 72px; padding-top: 66px; }
  .journal-prose h2 { margin-bottom: 28px; font-size: 39px; }
  .journal-prose p { font-size: 18px; }
  .journal-related { padding: 78px 0 88px; }
  .journal-related__grid { grid-template-columns: 1fr; }
  .journal-related__grid a { min-height: 190px; }
}

/* MEDIA — a concise, editorial performance room */
.video-featured {
  width: min(100%, 1240px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(300px, .52fr);
  overflow: hidden;
  border-radius: var(--r-xl);
  color: var(--ink-inv);
  background: #17161b;
  box-shadow: var(--sh-lg);
}
.video-embed { position: relative; min-height: 440px; background: #050505; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-featured__copy { padding: clamp(32px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; }
.video-featured__copy .section-label { color: var(--grad-1); }
.video-featured__copy h2 { max-width: 12ch; margin: 23px 0 18px; color: var(--ink-inv); font-size: clamp(32px, 3.15vw, 46px); line-height: 1.02; }
.video-featured__copy p { margin: 0 0 30px; color: rgba(246,244,238,.62); font-size: 12px; letter-spacing: .04em; }
.video-featured__copy .btn { align-self: flex-start; }
.video-selection { width: min(100%, 1240px); margin: 36px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3vw, 38px); }
.video-card { display: grid; grid-template-columns: minmax(210px, .82fr) minmax(0, 1.18fr); grid-template-rows: auto 1fr auto; gap: 10px 26px; align-items: start; color: inherit; }
.video-card__image { position: relative; grid-row: 1 / 4; display: block; overflow: hidden; aspect-ratio: 16/10; border-radius: var(--r-lg); background: #111; box-shadow: var(--sh-md); }
.video-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .4s; }
.video-card__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 45%, rgba(10,9,12,.38)); }
.video-card__image i { position: absolute; right: 18px; bottom: 18px; z-index: 1; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: #fff; font-size: 13px; font-style: normal; background: rgba(159,38,54,.88); box-shadow: 0 10px 30px rgba(91,25,30,.35); backdrop-filter: blur(12px); }
.video-card:hover .video-card__image img { transform: scale(1.04); filter: brightness(.82); }
.video-card__number { color: var(--grad-1); font-size: 9px; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; }
.video-card strong { align-self: center; font: 400 clamp(25px, 2.4vw, 35px)/1.08 'Fraunces', serif; }
.video-card small { color: var(--muted); font-size: 11px; }
.video-channel-link { width: min(100%, 1240px); margin: 36px auto 0; display: flex; justify-content: flex-end; }

@media (max-width: 980px) {
  .video-featured { grid-template-columns: 1fr; }
  .video-embed { min-height: 0; aspect-ratio: 16/9; }
  .video-featured__copy { padding: 42px; }
  .video-selection { grid-template-columns: 1fr; gap: 42px; }
}
@media (max-width: 640px) {
  .video-featured { border-radius: var(--r-lg); }
  .video-featured__copy { padding: 30px 24px 34px; }
  .video-featured__copy h2 { margin-top: 22px; font-size: 39px; }
  .video-card { grid-template-columns: 1fr; grid-template-rows: auto; gap: 11px; }
  .video-card__image { grid-row: auto; aspect-ratio: 16/9; border-radius: var(--r-md); }
  .video-card strong { font-size: 29px; }
  .video-channel-link { justify-content: stretch; }
  .video-channel-link .btn { width: 100%; justify-content: center; }
}

/* Final mobile quote treatment: keep legacy responsive rules from
   reintroducing the old striped background and stacked layout. */
@media (max-width: 640px) {
  .press-line {
    padding: 48px 0 52px;
    overflow: hidden;
    background: transparent;
    background-image: none;
  }
  .press-line .wrap { padding-right: 0; }
  .press-line-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 24px 12px 0;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .press-line-grid::-webkit-scrollbar { display: none; }
  .press-line-item {
    flex: 0 0 min(82vw, 350px);
    min-height: 190px;
    padding: 22px;
    justify-content: space-between;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: rgba(255,255,255,.28);
  }
  .press-line-item p { font-size: 16px; line-height: 1.48; }
  .press-line-source { font-size: 8px; line-height: 1.45; }
}
