:root {
  --ink: #080709;
  --ink-soft: #131116;
  --ivory: #f1eee7;
  --ivory-deep: #d8d1c5;
  --red: #a51f2b;
  --red-bright: #d52c32;
  --gold: #f4b832;
  --muted: #aaa4a6;
  --line: rgba(255, 255, 255, 0.18);
  --display: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
  --shell: min(1220px, calc(100% - 48px));
}

* { box-sizing: border-box; }
img, video, [data-protected-media] { -webkit-touch-callout: none; }
img, video { -webkit-user-drag: none; user-select: none; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ivory);
  background: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  width: 100%; overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
:where(a, button):focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
.page-shell { width: var(--shell); margin-inline: auto; }
.page-shell > * { min-width: 0; }
.section-dark { background: var(--ink); }
.section-ivory { color: var(--ink); background: var(--ivory); }
.section-red { color: #fff; background: var(--red); }
.sr-only, .skip-link:not(:focus) {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link:focus { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 12px 16px; background: #fff; color: #000; }

.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto; height: clamp(180px, calc(14vw + 34px), 380px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5vw; transition: height .35s ease, background .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { height: 70px; background: rgba(8, 7, 9, .92); border-color: var(--line); backdrop-filter: blur(18px); }
.site-header:not(.is-scrolled) { padding-top: 28px; }
.brand { position: relative; z-index: 2; width: 33.333vw; height: auto; display: flex; align-items: center; transition: width .35s ease, height .35s ease; }
.brand img { width: 100%; height: auto; object-fit: contain; object-position: left center; }
.site-header.is-scrolled .brand { width: 240px; height: 64px; }
.site-header.is-scrolled .brand img { max-height: 62px; }
.site-nav { display: flex; gap: clamp(9px, 1vw, 18px); align-items: center; }
.site-nav a { position: relative; padding-block: 8px; font-size: 10px; font-weight: 700; letter-spacing: .07em; white-space: nowrap; text-transform: uppercase; }
.nav-item { position: relative; }
.nav-parent { position: relative; display: flex; align-items: center; gap: 7px; padding: 8px 0; border: 0; background: transparent; cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: .07em; white-space: nowrap; text-transform: uppercase; }
.nav-parent > span { color: var(--gold); font-size: 13px; transition: transform .25s ease; }
.nav-parent.is-active { color: var(--gold); }
.nav-item.is-open .nav-parent > span { transform: rotate(180deg); }
.submenu { position: absolute; top: calc(100% + 15px); left: -14px; width: 255px; padding: 10px 12px; background: #111011; border: 1px solid rgba(244,184,50,.3); box-shadow: 0 20px 50px rgba(0,0,0,.42); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .22s ease, visibility .22s ease, transform .22s ease; }
.nav-item:hover .submenu, .nav-item:focus-within .submenu, .nav-item.is-open .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.1); color: #f0edef; font-size: 13px; font-weight: 700; letter-spacing: 0; text-transform: none; transition: color .2s ease, padding-left .2s ease, background .2s ease; }
.submenu a:last-child { border-bottom: 0; }
.submenu a:hover { padding-left: 17px; color: var(--gold); background: rgba(255,255,255,.025); }
.site-nav a::after { content: ""; position: absolute; inset: auto 0 2px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; border: 0; background: transparent; }
.language-switcher { position: absolute; z-index: 103; top: 18px; right: 3.5vw; display: flex; align-items: center; padding: 3px; border: 1px solid rgba(255,255,255,.22); background: rgba(8,7,9,.68); backdrop-filter: blur(10px); }
.language-switcher button { min-width: 34px; height: 28px; padding: 0 7px; border: 0; background: transparent; color: rgba(255,255,255,.58); cursor: pointer; font-size: 9px; font-weight: 800; letter-spacing: .08em; transition: color .2s ease, background .2s ease; }
.language-switcher button:hover { color: #fff; }
.language-switcher button[aria-pressed="true"] { color: #111; background: var(--gold); }
.site-header.is-scrolled .language-switcher { top: 50%; transform: translateY(-50%); }

@media (min-width: 1401px) {
  .site-header:not(.is-scrolled) .site-nav {
    margin-left: clamp(56px, 5vw, 105px);
  }
  .site-header.is-scrolled {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) auto;
    column-gap: 24px;
  }
  .site-header.is-scrolled .brand { width: 240px; }
  .site-header.is-scrolled .site-nav { min-width: 0; justify-self: end; }
  .site-header.is-scrolled .language-switcher {
    position: static;
    justify-self: end;
    transform: none;
  }
}

.hero { position: relative; min-height: max(100svh, 860px); display: flex; align-items: flex-start; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background: url("assets/hero-scene.jpg") 62% 50% / cover no-repeat; transform: scale(1.04); will-change: transform; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,2,4,.92) 0%, rgba(3,2,4,.55) 40%, rgba(3,2,4,.08) 78%), linear-gradient(0deg, rgba(3,2,4,.65), transparent 40%); }
.hero::after { content: ""; position: absolute; width: 42vw; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; right: -15vw; bottom: -22vw; }
.hero-content { position: relative; z-index: 1; padding: clamp(255px, 19vw, 365px) 0 120px; }
.eyebrow { margin-bottom: 22px; color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow-dark { color: #7e252e; }
.hero h1, h2 { font-family: var(--display); font-weight: 400; letter-spacing: -.045em; line-height: .92; }
.hero h1 { max-width: 890px; margin-bottom: 32px; font-size: clamp(60px, 7.4vw, 118px); }
em { color: var(--gold); font-weight: 400; }
.hero-copy { margin-bottom: 36px; color: rgba(255,255,255,.77); font-family: var(--display); font-size: clamp(18px, 1.5vw, 24px); line-height: 1.5; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 25px; border: 1px solid transparent; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: #111; background: var(--gold); }
.button-primary:hover { background: #fff; }
.button-ghost { border-color: rgba(255,255,255,.5); }
.button-ghost:hover { color: #111; background: #fff; border-color: #fff; }
.button-dark { color: #fff; background: var(--ink); }
.scroll-cue { position: absolute; z-index: 2; right: 3.5vw; bottom: 45px; display: flex; align-items: center; gap: 13px; writing-mode: vertical-rl; font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue i { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { transform: scaleY(.5); transform-origin: top; opacity: .5; } }

.home-news { position: relative; z-index: 4; margin-top: -118px; padding-bottom: clamp(30px, 4vw, 62px); scroll-margin-top: 90px; background: var(--ink); }
.news-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: hidden; border-top: 3px solid var(--gold); background: #0d0b0e; box-shadow: 0 30px 85px rgba(0,0,0,.38); }
.news-intro, .news-card { min-width: 0; min-height: 286px; padding: clamp(25px, 2.3vw, 38px); }
.news-intro { display: flex; flex-direction: column; justify-content: flex-end; background: var(--gold); color: #111; }
.news-intro .eyebrow { margin-bottom: auto; color: #6c171f; }
.news-intro h2 { margin: 0 0 18px; font: 400 clamp(32px, 2.6vw, 42px)/.95 var(--display); letter-spacing: -.035em; }
.news-intro > p:last-child { max-width: 230px; margin: 0; font-size: 13px; line-height: 1.55; }
.news-card { position: relative; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; border-left: 1px solid rgba(255,255,255,.16); color: var(--ivory); background: #0d0b0e; }
.news-grid > :nth-child(n + 5) { border-top: 1px solid rgba(255,255,255,.16); }
.news-card-featured { isolation: isolate; background: linear-gradient(105deg, rgba(8,7,9,.98) 0%, rgba(8,7,9,.86) 56%, rgba(8,7,9,.32) 100%), url("assets/actualite-forum.avif") 66% center / cover no-repeat; }
.news-card-workshops { isolation: isolate; background: linear-gradient(105deg, rgba(8,7,9,.97) 0%, rgba(8,7,9,.82) 56%, rgba(8,7,9,.28) 100%), url("assets/photo-danse.jpg") 58% center / cover no-repeat; }
.news-card-cargolfest { isolation: isolate; background: linear-gradient(105deg, rgba(8,7,9,.97) 0%, rgba(8,7,9,.82) 56%, rgba(8,7,9,.28) 100%), url("assets/actualite-cargolfest.avif") 58% center / cover no-repeat; }
.news-card-tiempos { isolation: isolate; background: linear-gradient(105deg, rgba(8,7,9,.97) 0%, rgba(8,7,9,.82) 56%, rgba(8,7,9,.28) 100%), url("assets/actualite-tiempos.webp") 58% center / auto 88% no-repeat; }
.news-card-festival { isolation: isolate; background: linear-gradient(105deg, rgba(8,7,9,.98) 0%, rgba(8,7,9,.84) 56%, rgba(8,7,9,.3) 100%), url("assets/actualite-festival.webp") 61% center / cover no-repeat; }
.news-card-christmas { isolation: isolate; background: linear-gradient(105deg, rgba(8,7,9,.97) 0%, rgba(8,7,9,.82) 56%, rgba(8,7,9,.28) 100%), url("assets/actualite-noel-distillerie.webp") 54% center / cover no-repeat; }
.news-card-anniversary { isolation: isolate; background: #080709; }
.news-card-video { position: absolute; z-index: -2; inset: 7%; width: 86%; height: 86%; object-fit: contain; object-position: center; opacity: .64; filter: grayscale(.04) saturate(.88) brightness(1.02) contrast(1.03); }
.news-card-featured::after, .news-card-workshops::after, .news-card-cargolfest::after, .news-card-tiempos::after, .news-card-festival::after, .news-card-christmas::after, .news-card-anniversary::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(0deg, rgba(165,31,43,.3), transparent 58%); pointer-events: none; }
.news-card-anniversary::after { background: linear-gradient(90deg, rgba(8,7,9,.62) 0%, rgba(8,7,9,.28) 56%, rgba(8,7,9,.1) 100%), linear-gradient(0deg, rgba(165,31,43,.2), transparent 62%); }
.news-card-anniversary > :not(.news-card-video) { position: relative; z-index: 1; }
.news-card-anniversary h3, .news-card-anniversary p { text-shadow: 0 2px 14px rgba(0,0,0,.92); }
.news-meta { margin: 0; color: rgba(255,255,255,.58); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.news-card .eyebrow { margin-bottom: 12px; font-size: 9px; }
.news-card h3 { max-width: 430px; margin: 0 0 12px; font: 400 clamp(25px, 2.1vw, 35px)/1.03 var(--display); letter-spacing: -.025em; }
.news-card div > p:not(.eyebrow):not(.news-status) { max-width: 440px; margin: 0; color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.6; }
.news-status { width: fit-content; margin: 14px 0 0; padding: 7px 10px; color: var(--gold); background: rgba(8,7,9,.62); border: 1px solid rgba(244,184,50,.45); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.news-card > a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.24); color: var(--ivory); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; transition: color .25s ease, border-color .25s ease; }
.news-card > a span { color: var(--gold); font-size: 15px; }
.news-card > a:hover { color: var(--gold); border-color: var(--gold); }
.news-lightbox-open { overflow: hidden; }
.news-lightbox { width: min(94vw, 1480px); max-width: none; height: min(92dvh, 980px); max-height: none; margin: auto; padding: 0; overflow: hidden; color: var(--ivory); background: #080709; border: 1px solid rgba(244,184,50,.45); box-shadow: 0 35px 120px rgba(0,0,0,.72); }
.news-lightbox[open] { display: grid; place-items: stretch; }
.news-lightbox::backdrop { background: rgba(3,2,4,.9); backdrop-filter: blur(10px); }
.news-lightbox-frame { position: relative; min-width: 0; min-height: 0; display: grid; place-items: center; padding: 54px 28px 24px; }
.news-lightbox figure { width: 100%; height: 100%; min-width: 0; min-height: 0; display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 18px; margin: 0; }
.news-lightbox img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.news-lightbox figcaption { display: flex; align-items: baseline; justify-content: space-between; gap: 28px; padding: 0 4px; }
.news-lightbox figcaption span { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.news-lightbox figcaption strong { font: 400 clamp(24px, 2.6vw, 40px)/1 var(--display); }
.news-lightbox-close { position: absolute; z-index: 2; top: 10px; right: 12px; width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,.32); background: rgba(8,7,9,.82); color: var(--ivory); cursor: pointer; font: 300 28px/1 var(--sans); transition: color .2s ease, background .2s ease, border-color .2s ease; }
.news-lightbox-close:hover { color: #111; background: var(--gold); border-color: var(--gold); }

.manifesto { padding: clamp(100px, 12vw, 190px) 0; }
.manifesto-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 50px; }
.section-number { color: #777176; font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.manifesto-lead { margin-bottom: 60px; font: 400 clamp(50px, 7.3vw, 110px)/.97 var(--display); letter-spacing: -.045em; }
.manifesto-copy { max-width: 710px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; color: var(--muted); font-size: 16px; line-height: 1.8; }

.activities { padding: clamp(100px, 11vw, 170px) 0; }
.section-heading { display: grid; grid-template-columns: 2.2fr 1fr; gap: 50px; align-items: end; margin-bottom: 75px; }
.section-heading h2, .shows h2, .anniversary h2, .artists h2, .gallery-section h2, .twinning h2, .contact h2 { margin-bottom: 0; font-size: clamp(52px, 7.2vw, 104px); }
.section-heading > p { max-width: 360px; margin-bottom: 4px; color: #5f5958; font-size: 15px; line-height: 1.7; }
.section-heading-light > p { color: var(--muted); }
.activity-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.activity-card { position: relative; width: 100%; height: clamp(320px, 72svh, 650px); min-height: 0; overflow: hidden; isolation: isolate; background: #0d0b0e; }
.activity-card { scroll-margin-top: 90px; }
.activity-card::before { content: ""; position: absolute; z-index: 0; inset: -35px; background-position: center; background-size: cover; filter: blur(24px) brightness(.3) saturate(.72); transform: scale(1.08); }
.activity-card:nth-child(1)::before { background-image: url("assets/activite-danse.jpg"); }
.activity-card:nth-child(2)::before { background-image: url("assets/activite-coro.png"); }
.activity-card:nth-child(3)::before, .activity-card:nth-child(4)::before { background-image: url("assets/activite-musique.jpg"); }
.activity-card:nth-child(5)::before { background-image: url("assets/artiste-scene.jpg"); }
.activity-grid .activity-card-wide::before { background-image: url("assets/photo-stages.jpg"); }
#activite-guitare::before { background-image: url("assets/photo-guitare.jpg"); }
#activite-cajon::before { background-image: url("assets/photo-cajon.jpg"); }
#activite-coro::before { background-image: url("assets/photo-coro.jpg"); }
#activite-flamenco::before { background-image: url("assets/photo-danse.jpg"); }
.activity-card img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; filter: saturate(.86) contrast(1.04); transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.activity-card:hover img { transform: none; filter: saturate(1) contrast(1.03) brightness(1.04); }
.activity-card::after { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(0deg, rgba(4,3,5,.92), rgba(4,3,5,.08) 68%); }
.activity-overlay { position: absolute; z-index: 3; inset: auto 30px 28px; color: #fff; }
.activity-overlay p { margin-bottom: 12px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.activity-overlay h3 { margin-bottom: 18px; font: 400 clamp(38px, 4vw, 62px)/.95 var(--display); letter-spacing: -.035em; }
.activity-overlay-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 25px; }
.activity-detail-toggle { display: inline-flex; align-items: center; gap: 14px; padding: 0 0 7px; border: 0; border-bottom: 1px solid rgba(255,255,255,.55); background: transparent; color: #fff; cursor: pointer; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.activity-detail-toggle i { color: var(--gold); font: normal 18px/1 var(--sans); transition: transform .3s ease; }
.activity-detail-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
.activity-calendar-link { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 7px; border-bottom: 1px solid rgba(255,189,38,.62); color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.activity-calendar-link span { font-size: 15px; transition: transform .25s ease; }
.activity-calendar-link:hover span, .activity-calendar-link:focus-visible span { transform: translateY(3px); }
.activity-card:nth-child(3), .activity-card:nth-child(4) { min-height: 0; }
.activity-card:nth-child(3) img { object-position: 72% center; }
.activity-card:nth-child(4) img { object-position: 25% center; }
.activity-grid .activity-card-large { grid-row: auto; }
.activity-grid .activity-card-wide { grid-column: auto; min-height: 0; }
.activity-card-wide img { object-position: center 44%; }
.activity-card-link { position: absolute; z-index: 4; inset: 0; }
.activity-details { display: grid; grid-template-rows: 0fr; opacity: 0; visibility: hidden; color: var(--ivory); background: var(--ink); transition: grid-template-rows .55s cubic-bezier(.2,.7,.2,1), opacity .35s ease, visibility .55s; }
.activity-details.is-open { grid-template-rows: 1fr; opacity: 1; visibility: visible; }
.activity-details-inner { min-height: 0; overflow: hidden; }
.activity-details-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 0 7vw; padding: 0 5vw; }
.activity-details.is-open .activity-details-inner { padding-block: clamp(55px, 7vw, 95px); }
.detail-intro { grid-row: span 2; }
.detail-intro h3 { margin-bottom: 28px; font: 400 clamp(42px, 5vw, 72px)/.96 var(--display); letter-spacing: -.04em; }
.detail-intro > p:last-child { max-width: 510px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.detail-facts { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.detail-facts article { min-height: 130px; padding: 22px 22px 22px 0; border-bottom: 1px solid var(--line); }
.detail-facts article:nth-child(odd) { border-right: 1px solid var(--line); }
.detail-facts article:nth-child(even) { padding-left: 22px; }
.detail-facts span { display: block; margin-bottom: 13px; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.detail-facts strong { font: 400 clamp(18px, 1.8vw, 26px)/1.2 var(--display); }
.tiempos-artists { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; margin-top: 65px; }
.tiempos-artists figure { position: relative; min-height: 310px; margin: 0; overflow: hidden; background: var(--ink-soft); }
.tiempos-artists img { width: 100%; height: 100%; min-height: 310px; object-fit: cover; object-position: center top; filter: saturate(.78) contrast(1.06); transition: transform .7s ease, filter .45s ease; }
.tiempos-artists figure:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.04); }
.tiempos-artists figure::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(7,6,8,.94)); }
.tiempos-artists figcaption { position: absolute; z-index: 1; right: 17px; bottom: 17px; left: 17px; font: 400 clamp(19px, 1.7vw, 26px)/1 var(--display); }
.tiempos-artists small { display: block; margin-top: 8px; color: var(--gold); font: 800 8px/1 var(--sans); letter-spacing: .13em; text-transform: uppercase; }
.tiempos-reportage { grid-column: 1 / -1; margin-top: clamp(75px, 8vw, 125px); }
.tiempos-reportage-heading { display: grid; grid-template-columns: .55fr 1.25fr 1fr; gap: clamp(24px, 4vw, 70px); align-items: end; margin-bottom: 42px; }
.tiempos-reportage-heading .eyebrow { align-self: start; }
.tiempos-reportage-heading h4 { margin: 0; font: 400 clamp(37px, 4.5vw, 66px)/.93 var(--display); letter-spacing: -.035em; }
.tiempos-reportage-heading h4 em { color: var(--gold); font-weight: 400; }
.tiempos-reportage-heading > p:last-child { max-width: 500px; margin: 0 0 4px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.tiempos-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px; }
.tiempos-photo { position: relative; grid-column: span 4; height: clamp(235px, 23vw, 350px); margin: 0; overflow: hidden; background: var(--ink-soft); }
.tiempos-photo-wide { grid-column: span 7; }
.tiempos-photo-wide + .tiempos-photo { grid-column: span 5; }
.tiempos-photo-half { grid-column: span 6; }
.tiempos-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.06); transition: transform .8s ease, filter .5s ease; }
.tiempos-photo:nth-child(2) img { object-position: center 42%; }
.tiempos-photo:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.03); }
.tiempos-photo::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(7,6,8,.9)); }
.tiempos-photo figcaption { position: absolute; z-index: 1; right: 20px; bottom: 20px; left: 20px; font: 400 clamp(21px, 2vw, 31px)/1 var(--display); }
.tiempos-photo small { display: block; margin-top: 8px; color: var(--gold); font: 800 8px/1 var(--sans); letter-spacing: .13em; text-transform: uppercase; }
.tiempos-calendar { grid-column: 1 / -1; margin-top: clamp(90px, 10vw, 155px); padding-top: clamp(65px, 7vw, 105px); border-top: 1px solid var(--line); scroll-margin-top: 100px; }
.tiempos-calendar .section-heading { margin-bottom: 55px; }
#stages { scroll-margin-top: 90px; }
.detail-schedule { grid-column: 1 / -1; margin-top: 65px; padding-top: 30px; border-top: 1px solid var(--line); }
.detail-schedule h4 { margin: 0 0 28px; font: 400 clamp(26px, 3vw, 42px) var(--display); }
.schedule-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.schedule-grid-week { grid-template-columns: repeat(6, 1fr); }
.schedule-grid-week p { grid-column: span 2; }
.schedule-grid-week p:nth-last-child(-n + 2) { grid-column: span 3; }
.schedule-grid p { min-height: 118px; margin: 0; padding: 19px; background: var(--ink-soft); }
.schedule-grid b, .schedule-grid span { display: block; }
.schedule-grid b { margin-bottom: 10px; color: var(--gold); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.schedule-grid span { color: #d0cace; font-size: 13px; line-height: 1.55; }
.detail-schedule-compact p { max-width: 860px; margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.detail-footnote { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 45px; padding-top: 22px; border-top: 1px solid var(--line); }
.detail-footnote-action { justify-content: flex-end; }
.detail-footnote p { margin: 0; color: #777176; font-size: 11px; line-height: 1.5; }
.detail-footnote a { flex: 0 0 auto; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.detail-footnote-actions { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 18px 22px; }
.detail-footnote a.footnote-registration { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 46px; padding: 0 24px; color: #100d0f; background: var(--gold); border: 1px solid var(--gold); box-shadow: 0 10px 28px rgba(244,184,50,.2); text-align: center; transition: color .25s ease, background .25s ease, transform .25s ease; }
.detail-footnote a.footnote-registration:hover { color: var(--gold); background: transparent; transform: translateY(-2px); }

.together { position: relative; min-height: min(900px, 95svh); display: flex; align-items: center; overflow: hidden; }
.together-media { position: absolute; inset: 0; background: url("assets/spectacle-final.jpg") center 35% / cover; }
.together-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,4,6,.94) 0%, rgba(5,4,6,.73) 42%, rgba(5,4,6,.15) 78%), linear-gradient(0deg, rgba(5,4,6,.45), transparent); }
.together-content { position: relative; z-index: 1; padding-block: 110px; }
.together h2 { max-width: 780px; margin-bottom: 38px; font-size: clamp(58px, 8.5vw, 128px); }
.together-content > p:not(.eyebrow) { max-width: 560px; margin-bottom: 35px; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.75; }
.text-link { display: inline-flex; gap: 25px; align-items: center; padding-bottom: 8px; border-bottom: 1px solid var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.text-link span { color: var(--gold); font-size: 18px; }

.next-event { display: grid; grid-template-columns: 190px 1fr auto; gap: 50px; align-items: center; margin-top: 15px; padding: 34px; border: 1px solid rgba(255,255,255,.22); background: linear-gradient(100deg, rgba(165,31,43,.2), rgba(255,255,255,.03)); }
.next-event-date { padding-right: 35px; border-right: 1px solid var(--line); }
.next-event-date span { display: block; margin-bottom: 9px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.next-event-date strong { font: 400 68px/.72 var(--display); }
.next-event-copy .eyebrow { margin-bottom: 10px; }
.next-event-copy h3 { margin-bottom: 9px; font: 400 clamp(29px, 3vw, 44px)/1.1 var(--display); }
.stage-dates { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1px; margin: 20px 0; background: rgba(255,255,255,.14); }
.stage-dates time { display: flex; align-items: center; min-height: 54px; padding: 12px 15px; background: #151216; color: var(--ivory); font-size: 12px; font-weight: 700; line-height: 1.35; }
.stage-dates time:first-child { color: var(--gold); }
.next-event-copy > p:last-child { max-width: 550px; margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.next-event-actions { display: grid; gap: 14px; min-width: 175px; }
.next-event-actions .button { width: 100%; }

.shows { padding: clamp(100px, 11vw, 170px) 0; }
.shows-intro { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; margin-bottom: 70px; }
.show-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 12px; align-items: start; }
.show-card { position: relative; overflow: hidden; }
.show-card img { width: 100%; height: 550px; object-fit: cover; filter: saturate(.8); transition: transform .8s ease, filter .5s; }
.show-card-main img { height: 720px; object-position: center 45%; }
.show-card:hover img { transform: scale(1.025); filter: saturate(1); }
.show-card > div { padding: 24px 2px; }
.show-card-main > div { text-align: center; }
.show-card p { margin-bottom: 10px; color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.show-card h3 { margin-bottom: 12px; font: 400 clamp(28px, 3vw, 42px)/1.05 var(--display); }
.show-card span { color: #686163; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.show-photo-duo { display: grid; grid-template-columns: 1.45fr .75fr; gap: 12px; height: clamp(440px, 47vw, 620px); margin-top: 12px; }
.show-photo-duo figure { min-width: 0; height: 100%; margin: 0; overflow: hidden; background: #0d0b0e; }
.show-photo-duo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); transition: transform .8s ease, filter .5s ease; }
.show-photo-duo figure:first-child img { object-position: center 42%; }
.show-photo-duo figure:last-child img { object-position: center 50%; }
.show-photo-duo figure:hover img { transform: scale(1.02); filter: saturate(1); }

.anniversary { position: relative; isolation: isolate; min-height: 950px; padding: clamp(120px, 13vw, 200px) 0; overflow: hidden; background: #0b090b; }
.anniversary::before { content: ""; position: absolute; z-index: 0; inset: 0; background: url("assets/anniversary-tous.jpg") center / contain no-repeat; opacity: .62; filter: saturate(.72) contrast(1.06); }
.anniversary::after { content: ""; position: absolute; z-index: 0; inset: 0; background: linear-gradient(90deg, rgba(8,7,9,.6), rgba(8,7,9,.38)), linear-gradient(0deg, rgba(165,31,43,.38), rgba(8,7,9,.12) 58%, rgba(8,7,9,.42)); }
.anniversary-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; }
.anniversary h2 em, .contact h2 em { color: var(--gold); }
.anniversary-note { max-width: 460px; margin-top: 38px; color: rgba(255,255,255,.74); line-height: 1.7; }
.timeline { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.38); }
.timeline li { display: grid; grid-template-columns: 125px 1fr; gap: 30px; padding: 28px 0 35px; border-bottom: 1px solid rgba(255,255,255,.28); }
.timeline time { padding-top: 5px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.timeline h3 { margin-bottom: 10px; font: 400 31px/1.05 var(--display); }
.timeline p { margin: 0; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.6; }
.timeline-future { opacity: .58; }

.artists { padding: clamp(100px, 11vw, 170px) 0; }
.artists-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: 8vw; align-items: center; }
.artist-photo { position: relative; }
.artist-photo img { width: 100%; min-height: 710px; object-fit: cover; object-position: 60% center; filter: saturate(.82); }
.artist-photo p { position: absolute; left: -34px; bottom: 70px; margin: 0; padding: 14px 18px; background: var(--red); font: italic 18px var(--display); }
.artists-copy > p:not(.eyebrow) { max-width: 620px; margin: 35px 0 50px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.artists-directory-wrap { margin-top: clamp(80px, 9vw, 145px); }
.artists-directory-tile { display: grid; grid-template-columns: 1.12fr .88fr; min-height: 520px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); background: #110f12; }
.artists-directory-collage { display: grid; grid-template-columns: 1.18fr .82fr; grid-template-rows: 1fr 1fr; min-height: 520px; gap: 4px; background: var(--ink); }
.artists-directory-collage img { width: 100%; height: 100%; min-height: 0; object-fit: cover; filter: saturate(.72) contrast(1.07); transition: filter .55s ease, transform .85s ease; }
.artists-directory-collage img:first-child { grid-row: 1 / 3; }
.artists-directory-tile:hover .artists-directory-collage img { filter: saturate(.95) contrast(1.04); transform: scale(1.015); }
.artists-directory-teaser { display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 5vw, 80px); }
.artists-directory-teaser h3, .artists-directory-heading h3 { margin: 14px 0 28px; font: 400 clamp(48px, 5.2vw, 78px)/.88 var(--display); letter-spacing: -.045em; }
.artists-directory-teaser h3 em, .artists-directory-heading h3 em { color: var(--gold); font-weight: 400; }
.artists-directory-teaser > p:not(.eyebrow) { max-width: 500px; margin: 0 0 34px; color: var(--muted); line-height: 1.75; }
.artists-directory-toggle { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; border: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #fff; background: transparent; cursor: pointer; font: 800 10px var(--sans); letter-spacing: .13em; text-align: left; text-transform: uppercase; }
.artists-directory-toggle i { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.32); color: var(--gold); font: 300 25px/1 var(--sans); transition: transform .35s ease, background .35s ease; }
.artists-directory-toggle:hover i, .artists-directory-toggle:focus-visible i { background: var(--gold); color: var(--ink); }
.artists-directory-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
.artists-directory:not([hidden]) { display: block; margin-top: 4px; padding: clamp(70px, 8vw, 120px) clamp(22px, 5vw, 76px); border: 1px solid rgba(255,255,255,.18); background: #0e0c0f; }
.artists-directory-heading { display: grid; grid-template-columns: .55fr 1.25fr 1fr; gap: clamp(24px, 4vw, 70px); align-items: end; margin-bottom: clamp(55px, 7vw, 95px); }
.artists-directory-heading .eyebrow { align-self: start; }
.artists-directory-heading h3 { margin: 0; }
.artists-directory-heading > p:last-child { margin: 0 0 4px; color: var(--muted); line-height: 1.75; }
.artist-profiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; }
.artist-profile { display: grid; grid-template-columns: minmax(150px, .72fr) 1.28fr; min-height: 330px; overflow: hidden; background: #171419; }
.artist-profile:nth-child(4n + 2), .artist-profile:nth-child(4n + 3) { background: #1d191e; }
.artist-profile > img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; object-position: center top; filter: grayscale(1) contrast(1.1); transition: filter .45s ease, transform .7s ease; }
.artist-profile:hover > img { filter: grayscale(1) contrast(1.16); transform: scale(1.025); }
.artist-profile > div { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; padding: clamp(26px, 3vw, 45px); background: inherit; }
.artist-meta { margin: 0 0 16px !important; color: var(--gold) !important; font-size: 9px !important; font-weight: 800; letter-spacing: .13em; line-height: 1.4 !important; text-transform: uppercase; }
.artist-profile h4 { margin: 0 0 20px; font: 400 clamp(28px, 2.4vw, 40px)/.98 var(--display); }
.artist-profile div > p:last-child { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.7; }

@media (min-width: 1121px) {
  .artist-profile:last-child:nth-child(odd) { grid-column: 1 / -1; grid-template-columns: .36fr 1.64fr; }
}

.gallery-section { padding: clamp(100px, 11vw, 170px) 0; }
.gallery-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 65px; }
.gallery-frame { position: relative; min-height: 650px; padding: 10px; overflow: hidden; background: var(--ink); box-shadow: 0 30px 70px rgba(24,17,16,.18); }
.gallery-collage { position: absolute; inset: 10px; display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 1fr 1fr; gap: 6px; }
.gallery-collage::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle, rgba(5,3,6,.25), rgba(5,3,6,.8)); }
.gallery-collage figure { margin: 0; overflow: hidden; }
.gallery-collage figure:first-child { grid-row: 1 / 3; }
.gallery-collage img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.07); transition: transform 1s ease, filter .6s ease; }
.gallery-frame:hover .gallery-collage img { transform: scale(1.025); filter: saturate(.95) contrast(1.03); }
.gallery-invitation { position: absolute; z-index: 1; inset: 0; display: grid; place-content: center; padding: 30px; text-align: center; color: #fff; }
.gallery-invitation p { margin-bottom: 18px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.gallery-invitation a { display: flex; align-items: center; justify-content: center; gap: 22px; font: 400 clamp(38px, 5vw, 72px)/1 var(--display); }
.gallery-invitation a span { color: var(--gold); font-size: .6em; }
.gallery-invitation small { margin-top: 18px; color: rgba(255,255,255,.62); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.partners { padding: clamp(100px, 11vw, 170px) 0; color: var(--ink); background: var(--ivory-deep); border-top: 10px solid var(--red); scroll-margin-top: 90px; }
.partners-heading { display: grid; grid-template-columns: 1.65fr 1fr; gap: 60px; align-items: end; margin-bottom: 70px; }
.partners-heading h2 { margin: 0; font: 400 clamp(56px, 7.2vw, 104px)/.9 var(--display); letter-spacing: -.045em; }
.partners-heading > p { max-width: 430px; margin: 0 0 6px; color: #5f5958; font-size: 15px; line-height: 1.75; }
.partner-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.partner-card { min-width: 0; display: grid; grid-template-rows: 190px 1fr; background: var(--ivory); border-top: 3px solid var(--red); box-shadow: 0 18px 45px rgba(35,26,25,.1); }
.partner-logo { display: flex; align-items: center; justify-content: center; min-width: 0; padding: 28px; overflow: hidden; background: #fff; border-bottom: 1px solid rgba(8,7,9,.1); }
.partner-logo-dark { background: #0c0b0d; }
.partner-logo img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s ease; }
a.partner-logo:hover img { transform: scale(1.035); }
.partner-card-body { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; padding: 30px; }
.partner-meta { margin: 0 0 14px; color: #8b2831; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.partner-card h3 { margin: 0 0 16px; font: 400 clamp(26px, 2.25vw, 36px)/1 var(--display); letter-spacing: -.025em; }
.partner-card-body > p:not(.partner-meta) { margin: 0 0 26px; color: #625c59; font-size: 13px; line-height: 1.7; }
.partner-link { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(8,7,9,.2); color: #6f1c25; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; transition: color .25s ease, border-color .25s ease; }
.partner-link span { color: var(--red); font-size: 15px; }
.partner-link:hover { color: var(--ink); border-color: var(--red); }
.partner-thanks { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; margin-top: 55px; padding-top: 34px; border-top: 1px solid rgba(8,7,9,.22); }
.partner-thanks p { margin: 0; }
.partner-thanks > p:last-child { max-width: 850px; color: #5f5958; font: italic clamp(20px, 2vw, 28px)/1.5 var(--display); }

.twinning { position: relative; padding: clamp(130px, 15vw, 230px) 0; overflow: hidden; }
.twinning-map { position: absolute; inset: 0 0 auto; width: 100%; height: clamp(760px, 60vw, 980px); object-fit: cover; object-position: center; opacity: 1; -webkit-mask-image: linear-gradient(#000 0%, #000 72%, transparent 100%); mask-image: linear-gradient(#000 0%, #000 72%, transparent 100%); }
.twinning::after { content: ""; position: absolute; inset: 0 0 auto; height: clamp(760px, 60vw, 980px); background: linear-gradient(90deg, rgba(8,7,9,.08), transparent 50%, rgba(8,7,9,.08)); pointer-events: none; }
.twinning-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 55px; align-items: center; }
.city span { display: block; margin-bottom: 11px; color: var(--muted); font-size: 9px; letter-spacing: .13em; }
.city { display: grid; grid-template-columns: minmax(0, 1fr) clamp(88px, 7vw, 108px); align-items: center; gap: 14px; padding: 15px 18px; overflow: hidden; background: rgba(8,7,9,.78); border-left: 2px solid var(--gold); backdrop-filter: blur(5px); }
.city-text { min-width: 0; }
.city strong { display: block; font: 400 clamp(24px, 1.9vw, 32px)/1 var(--display); }
.city-logo { display: block; flex: 0 0 auto; object-fit: contain; }
.city-logo-pellizco { width: 100%; max-height: 72px; }
.city-logo-poblesec { width: 100%; height: auto; border: 4px solid #fff; background: #fff; box-shadow: 0 12px 35px rgba(0,0,0,.32); }
.city-right { grid-template-columns: clamp(74px, 6.5vw, 96px) minmax(0, 1fr); text-align: right; align-self: center; border: 0; border-right: 2px solid var(--red-bright); }
.city-right .city-logo { grid-column: 1; grid-row: 1; }
.city-right .city-text { grid-column: 2; grid-row: 1; }
.city-left { align-self: start; }
.twinning-copy { padding: 55px 40px; text-align: center; background: rgba(8,7,9,.76); border: 1px solid rgba(244,184,50,.25); box-shadow: 0 25px 80px rgba(0,0,0,.35); backdrop-filter: blur(10px); }
.twinning-story { margin-top: 34px; }
.twinning-story p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.twinning-story p:first-child { color: var(--ivory); font: italic 19px/1.5 var(--display); }
.twinning-story p + p { margin-top: 20px; }
.twinning-link { display: flex; align-items: center; justify-content: center; gap: 14px; width: fit-content; margin: 28px auto 0; padding: 14px 18px; border: 1px solid rgba(244,184,50,.55); background: rgba(244,184,50,.08); color: var(--ivory); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: color .25s ease, background .25s ease, border-color .25s ease; }
.twinning-link:hover { color: #111; background: var(--gold); border-color: var(--gold); }
.twinning-link span { color: var(--gold); font-size: 17px; }
.twinning-link:hover span { color: #111; }
.twinning-slideshow { position: relative; z-index: 1; margin-top: clamp(70px, 8vw, 120px); }
.slideshow-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; margin-bottom: 24px; }
.slideshow-heading .eyebrow { margin-bottom: 12px; }
.slideshow-heading h3 { margin: 0; font: 400 clamp(38px, 5vw, 70px)/.95 var(--display); letter-spacing: -.035em; }
.slideshow-controls { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.slideshow-button { width: 45px; height: 45px; border: 1px solid rgba(255,255,255,.28); background: rgba(8,7,9,.72); color: var(--ivory); cursor: pointer; font-size: 18px; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.slideshow-button:hover { color: #111; background: var(--gold); border-color: var(--gold); }
.slideshow-count { min-width: 52px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-align: center; }
.slideshow-viewport { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid rgba(255,255,255,.2); background: #080709; box-shadow: 0 35px 90px rgba(0,0,0,.42); }
.twinning-slide { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transition: opacity 1s ease, visibility 1s; }
.twinning-slide.is-active { opacity: 1; visibility: visible; }
.slide-backdrop, .slide-image { position: absolute; inset: 0; width: 100%; height: 100%; }
.slide-backdrop { object-fit: cover; filter: blur(32px) brightness(.32) saturate(.8); transform: scale(1.1); }
.slide-image { z-index: 1; object-fit: contain; filter: saturate(.94) contrast(1.03); transform: scale(1.015); transition: transform 5s linear; }
.twinning-slide.is-active .slide-image { transform: scale(1); }
.slideshow-progress { position: absolute; z-index: 2; inset: auto 0 0; height: 3px; background: rgba(255,255,255,.16); }
.slideshow-progress span { display: block; width: 8.333%; height: 100%; background: linear-gradient(90deg, var(--gold), var(--red-bright)); transition: width .6s ease; }

.contact { padding: clamp(100px, 11vw, 170px) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: start; }
.contact-links { border-top: 1px solid rgba(255,255,255,.35); }
.contact-links a { display: grid; grid-template-columns: 70px 1fr auto; gap: 24px; align-items: center; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.35); transition: padding .25s ease, background .25s; }
.contact-links a:hover { padding-inline: 14px; background: rgba(0,0,0,.08); }
.contact-links span { color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-links strong { font: 400 clamp(19px, 2.2vw, 30px)/1.25 var(--display); }
.contact-links i { color: var(--gold); font-style: normal; font-size: 20px; }
.contact-links .contact-social { grid-template-columns: 92px 1fr 46px; min-height: 104px; padding: 24px 22px; border: 1px solid rgba(244,184,50,.48); background: #080709; box-shadow: 0 16px 38px rgba(40,4,9,.18); }
.contact-links .contact-social-first { margin-top: 28px; }
.contact-links .contact-social + .contact-social { margin-top: 10px; }
.contact-links .contact-social strong { color: var(--ivory); font-size: clamp(23px, 2.2vw, 32px); }
.contact-links .contact-social i { display: grid; width: 42px; height: 42px; place-items: center; color: #080709; background: var(--gold); border-radius: 50%; transition: transform .25s ease, background .25s ease; }
.contact-links .contact-social:hover { padding-inline: 28px; background: #121015; border-color: var(--gold); }
.contact-links .contact-social:hover i { transform: translate(3px, -3px); background: var(--ivory); }
.workshop-map-card { display: grid; grid-template-columns: 1fr auto; margin-top: 42px; overflow: hidden; color: var(--ivory); background: rgba(8,7,9,.92); border: 1px solid rgba(244,184,50,.48); box-shadow: 0 20px 48px rgba(40,4,9,.22); }
.workshop-map-card iframe { grid-column: 1 / -1; width: 100%; height: 230px; border: 0; filter: saturate(.75) contrast(1.05); pointer-events: none; }
.workshop-map-card span { grid-column: 1 / -1; padding: 22px 24px 0; color: var(--gold); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.workshop-map-card strong { padding: 7px 24px 0; font: 400 clamp(24px,2.4vw,34px)/1.05 var(--display); }
.workshop-map-card address { grid-column: 1; padding: 10px 24px 24px; color: rgba(255,255,255,.72); font-style: normal; font-size: 14px; line-height: 1.5; }
.workshop-map-card i { grid-column: 2; grid-row: 3 / 5; align-self: end; padding: 0 24px 25px 0; color: var(--gold); font-style: normal; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.workshop-map-card:hover { border-color: var(--gold); }

.site-footer { padding: 55px 0; background: #030304; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 220px 1fr auto; gap: 40px; align-items: center; }
.footer-grid img { width: 220px; max-height: 82px; object-fit: contain; }
.footer-grid p { margin: 0; text-align: center; color: #7e797c; font: italic 17px var(--display); }
.footer-grid .footer-links { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 22px; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-photo-credit { flex-basis: 100%; color: #7e797c; text-align: right; letter-spacing: .06em; text-transform: none; }
.footer-social { display: flex; gap: 14px; padding-inline: 18px; border-inline: 1px solid var(--line); }
.footer-grid a { color: var(--gold); }

.rules-page { min-height: 100vh; background: #080709; }
.rules-shell { width: min(880px, calc(100% - 40px)); margin-inline: auto; padding: clamp(38px, 7vw, 90px) 0; }
.rules-brand { display: block; width: min(390px, 82vw); margin: 0 auto clamp(50px, 7vw, 85px); }
.rules-brand img { width: 100%; }
.rules-document { padding: clamp(32px, 6vw, 72px); background: #100e12; border-top: 4px solid var(--gold); box-shadow: 0 30px 90px rgba(0,0,0,.42); }
.rules-kicker { margin-bottom: 18px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.rules-document h1 { margin: 0 0 clamp(40px, 6vw, 65px); font: 400 clamp(42px, 7vw, 74px)/.95 var(--display); letter-spacing: -.04em; }
.rules-content { color: rgba(255,255,255,.78); font-size: clamp(14px, 1.7vw, 17px); line-height: 1.8; }
.rules-content p { margin: 0; padding: 15px 0; }
.rules-back { display: inline-flex; align-items: center; gap: 13px; margin-top: 42px; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.rules-back:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .32s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1400px) {
  .site-header { padding-inline: 24px; }
  .menu-toggle { position: relative; z-index: 102; display: grid; gap: 7px; width: 44px; height: 44px; place-content: center; cursor: pointer; }
  .language-switcher { right: 82px; }
  .menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 1px; background: #fff; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: absolute; z-index: 101; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0; padding: max(108px, 15vh) 10vw 32px; overflow-y: auto; background: rgba(8,7,9,.985); transform: translateX(100%); opacity: 0; visibility: hidden; transition: transform .45s cubic-bezier(.2,.7,.2,1), opacity .3s, visibility .45s; }
  .site-nav.is-open { transform: translateX(0); opacity: 1; visibility: visible; }
  .site-nav a { width: 100%; padding: 7px 0; font: 400 clamp(22px, 3.7vh, 34px)/1.08 var(--display); letter-spacing: -.02em; text-transform: none; border-bottom: 1px solid var(--line); }
  .site-nav .nav-item { width: 100%; }
  .site-nav .nav-parent { width: 100%; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--line); font: 400 clamp(22px, 3.7vh, 34px)/1.08 var(--display); letter-spacing: -.02em; text-transform: none; }
  .site-nav a, .site-nav .nav-parent { white-space: normal; }
  .site-nav .nav-parent > span { font: 400 24px/1 var(--sans); }
  .site-nav .submenu { position: static; display: none; width: 100%; padding: 6px 0 8px 20px; border: 0; border-bottom: 1px solid var(--line); box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .site-nav .nav-item:hover .submenu, .site-nav .nav-item:focus-within .submenu { display: none; }
  .site-nav .nav-item.is-open .submenu { display: block; }
  .site-nav .submenu a { padding: 9px 0; border-bottom-color: rgba(255,255,255,.08); font: 600 clamp(16px, 2.4vh, 20px)/1.15 var(--sans); }
  .site-nav .submenu a:hover { padding-left: 6px; }
  .site-nav a::after { display: none; }
  body.menu-open { overflow: hidden; }
  body.menu-open .site-header { height: 100dvh; align-items: flex-start; padding-top: 12px; }
  body.menu-open .site-header .brand { z-index: 102; width: clamp(180px, 24vw, 260px); height: 76px; }
  body.menu-open .site-header .brand img { max-height: 74px; }
  body.menu-open .site-header .language-switcher { top: 18px; bottom: auto; transform: none; }
  .next-event { grid-template-columns: 150px 1fr; }
  .next-event .button { grid-column: 2; justify-self: start; }
  .activity-grid { grid-auto-rows: auto; }
}

@media (max-width: 1120px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-grid > :nth-child(n + 3) { border-top: 1px solid rgba(255,255,255,.16); }
  .news-intro, .news-card { min-height: 250px; }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .twinning-grid { grid-template-columns: 1fr; gap: 30px; }
  .twinning-copy { order: 2; }
  .city-left { order: 0; }
  .city-right { order: 1; }
  .twinning-map { height: 1220px; object-fit: fill; object-position: center; }
  .twinning::after { height: 1220px; }
  .artists-directory-heading { grid-template-columns: 1fr 1.5fr; }
  .artists-directory-heading .eyebrow { grid-column: 1 / 3; }
  .artist-profiles { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 32px); }
  .site-header { display: flex; padding-inline: 12px; }
  .site-header:not(.is-scrolled) { height: clamp(220px, calc(43vw + 58px), 252px); align-items: flex-start; padding-top: 56px; }
  .site-header:not(.is-scrolled) .brand { width: min(calc(100vw - 24px), 460px); max-width: none; height: auto; margin-inline: auto; }
  .site-header:not(.is-scrolled) .brand img { width: 100%; max-height: none; }
  .site-header.is-scrolled { height: 72px; }
  .site-header.is-scrolled .brand { width: 168px; height: 62px; }
  .site-header.is-scrolled .brand img { max-height: 60px; }
  .menu-toggle { position: absolute; right: 12px; top: 14px; border: 1px solid rgba(255,255,255,.38); background: rgba(8,7,9,.72); backdrop-filter: blur(8px); }
  .site-header:not(.is-scrolled) .language-switcher { top: 14px; right: auto; bottom: auto; left: 12px; transform: none; }
  .site-header.is-scrolled .language-switcher { right: 62px; }
  body.menu-open .site-header .brand { margin-inline: 0; }
  body.menu-open .site-header .language-switcher { top: 18px; right: 82px; left: auto; }
  .hero { min-height: 100svh; }
  .hero-media { background-position: 69% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(3,2,4,.92) 0%, rgba(3,2,4,.62) 62%, rgba(3,2,4,.28)); }
  .hero-content { padding: clamp(255px, calc(43vw + 88px), 310px) 0 98px; }
  .hero h1 { font-size: clamp(54px, 17vw, 80px); }
  .hero-copy br { display: none; }
  .hero-actions { display: grid; grid-template-columns: 1fr; max-width: 320px; }
  .scroll-cue { display: none; }
  .home-news { margin-top: -96px; padding-bottom: 28px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-intro { min-height: 150px; justify-content: flex-start; padding: 20px 24px; }
  .news-intro .eyebrow { margin-bottom: 10px; }
  .news-intro h2 { margin-bottom: 8px; }
  .news-intro > p:last-child { max-width: 310px; }
  .news-card { min-height: 260px; padding: 28px 24px; border-top: 1px solid rgba(255,255,255,.16); border-left: 0; }
  .news-card h3 { font-size: clamp(30px, 9vw, 42px); }
  .news-lightbox { width: calc(100vw - 20px); height: calc(100dvh - 20px); }
  .news-lightbox-frame { padding: 56px 12px 14px; }
  .news-lightbox figcaption { align-items: flex-start; flex-direction: column; gap: 7px; padding-inline: 4px; }
  .manifesto-grid, .section-heading, .shows-intro, .anniversary-grid, .artists-grid, .partners-heading, .contact-grid { grid-template-columns: 1fr; }
  .manifesto-grid { gap: 40px; }
  .manifesto-lead { font-size: clamp(47px, 14vw, 68px); }
  .manifesto-copy { grid-template-columns: 1fr; gap: 10px; }
  .section-heading { gap: 30px; margin-bottom: 48px; }
  .section-heading h2, .shows h2, .anniversary h2, .artists h2, .gallery-section h2, .twinning h2, .contact h2 { font-size: clamp(47px, 14vw, 70px); }
  .activity-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 0; padding: 0; overflow: visible; }
  .activity-card, .activity-card:nth-child(3), .activity-card:nth-child(4), .activity-grid .activity-card-wide { width: 100%; height: clamp(300px, 70svh, 560px); min-height: 0; }
  .activity-grid .activity-card-wide { grid-column: auto; }
  .activity-overlay { inset: auto 22px 24px; }
  .activity-details-inner { grid-template-columns: 1fr; padding-inline: 24px; }
  .detail-intro { grid-row: auto; margin-bottom: 45px; }
  .detail-schedule { margin-top: 48px; }
  .tiempos-artists { grid-template-columns: 1fr 1fr; margin-top: 48px; }
  .tiempos-artists figure:last-child { grid-column: 1 / -1; }
  .tiempos-reportage-heading { grid-template-columns: 1fr; gap: 20px; }
  .tiempos-reportage-heading > p:last-child { margin-top: 8px; }
  .tiempos-mosaic { grid-template-columns: 1fr 1fr; }
  .tiempos-photo, .tiempos-photo-wide, .tiempos-photo-wide + .tiempos-photo, .tiempos-photo-half { grid-column: auto; height: clamp(230px, 48vw, 360px); }
  .tiempos-photo-wide { grid-column: 1 / -1; }
  .schedule-grid { grid-template-columns: 1fr 1fr; }
  .schedule-grid-week p, .schedule-grid-week p:nth-last-child(-n + 2) { grid-column: auto; }
  .detail-footnote { align-items: flex-start; flex-direction: column; }
  .detail-footnote-actions { width: 100%; align-items: stretch; flex-direction: column; gap: 16px; }
  .detail-footnote a.footnote-registration { width: 100%; }
  .together { min-height: 860px; align-items: flex-end; }
  .together-media { background-position: 55% center; }
  .together-shade { background: linear-gradient(0deg, rgba(5,4,6,.96) 0%, rgba(5,4,6,.52) 72%, rgba(5,4,6,.2)); }
  .together h2 { font-size: 16vw; }
  .next-event { grid-template-columns: 1fr; gap: 28px; padding: 24px; }
  .next-event-date { padding: 0 0 24px; border: 0; border-bottom: 1px solid var(--line); }
  .next-event-date strong br { display: none; }
  .next-event .button { grid-column: 1; justify-self: stretch; }
  .next-event-actions { grid-column: 1; width: 100%; justify-self: stretch; }
  .show-grid { display: grid; grid-template-columns: 1fr; gap: 42px; margin: 0; padding: 0; overflow: visible; }
  .show-card { width: 100%; }
  .show-card img, .show-card-main img { width: 100%; height: auto; aspect-ratio: 4 / 5; }
  .show-card > div { padding: 20px 0 0; }
  .show-photo-duo { grid-template-columns: 1fr; height: auto; gap: 10px; margin-top: 10px; }
  .show-photo-duo figure { height: auto; }
  .show-photo-duo img { height: auto; object-fit: contain; }
  .anniversary { min-height: auto; }
  .anniversary-grid { gap: 70px; }
  .timeline li { grid-template-columns: 90px 1fr; gap: 18px; }
  .artist-photo img { min-height: 560px; }
  .artist-photo p { left: -7px; bottom: 25px; }
  .artists-grid { gap: 65px; }
  .artists-directory-wrap { margin-top: 80px; }
  .artists-directory-tile { grid-template-columns: 1fr; }
  .artists-directory-collage { min-height: 430px; }
  .artists-directory-teaser { padding: 42px 26px; }
  .artists-directory-teaser h3, .artists-directory-heading h3 { font-size: clamp(46px, 13vw, 66px); }
  .artists-directory:not([hidden]) { padding: 62px 12px 12px; }
  .artists-directory-heading { grid-template-columns: 1fr; padding: 0 14px; }
  .artists-directory-heading .eyebrow { grid-column: auto; }
  .artists-directory-heading > p:last-child { margin-top: 8px; }
  .artist-profile { grid-template-columns: 1fr; min-height: 0; }
  .artist-profile > img { height: auto; min-height: 0; aspect-ratio: 4 / 5; object-position: center 18%; }
  .artist-profile > div { min-height: 280px; padding: 32px 25px 38px; }
  .gallery-heading { align-items: flex-start; flex-direction: column; }
  .gallery-frame { min-height: 540px; }
  .gallery-collage { grid-template-columns: 1fr 1fr; grid-template-rows: 1.2fr .8fr; }
  .gallery-collage figure:first-child { grid-column: 1 / 3; grid-row: 1; }
  .partners-heading { gap: 28px; margin-bottom: 48px; }
  .partners-heading h2 { font-size: clamp(47px, 14vw, 70px); }
  .partner-grid { grid-template-columns: 1fr; gap: 12px; }
  .partner-card { grid-template-rows: 165px 1fr; }
  .partner-logo { padding: 24px; }
  .partner-thanks { grid-template-columns: 1fr; gap: 12px; margin-top: 42px; }
  .twinning { padding: 96px 0 120px; scroll-margin-top: 72px; }
  .twinning-grid { grid-template-columns: 1fr; gap: 30px; }
  .twinning-copy { order: 1; padding: 45px 22px; background: rgba(8,7,9,.58); backdrop-filter: blur(3px); }
  .city-left { order: 0; }
  .city-right { order: 2; }
  .city { background: rgba(8,7,9,.58); backdrop-filter: blur(3px); }
  .city { grid-template-columns: minmax(0, 1fr) 112px; }
  .city-right { grid-template-columns: 84px minmax(0, 1fr); }
  .twinning-map { height: 1750px; object-fit: fill; object-position: center top; opacity: 1; -webkit-mask-image: linear-gradient(#000 0%, #000 90%, transparent 100%); mask-image: linear-gradient(#000 0%, #000 90%, transparent 100%); }
  .twinning::after { height: 1750px; background: linear-gradient(90deg, rgba(8,7,9,.03), transparent 50%, rgba(8,7,9,.03)); }
  .slideshow-heading { align-items: flex-start; flex-direction: column; }
  .slideshow-viewport { aspect-ratio: 4 / 5; }
  .contact-grid { gap: 60px; }
  .workshop-map-card { margin-top: 30px; }
  .workshop-map-card iframe { height: 210px; }
  .contact-links a { grid-template-columns: 55px 1fr auto; gap: 12px; }
  .contact-links strong { min-width: 0; overflow-wrap: anywhere; }
  .contact-links .contact-social { grid-template-columns: minmax(0, 1fr) 42px; gap: 8px 16px; min-height: 0; padding: 22px 20px; }
  .contact-links .contact-social span { grid-column: 1; }
  .contact-links .contact-social strong { grid-column: 1; font-size: clamp(23px, 7vw, 30px); }
  .contact-links .contact-social i { grid-column: 2; grid-row: 1 / 3; }
  .contact-links .contact-social:hover { padding-inline: 20px; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-grid .footer-links { flex-direction: column; gap: 14px; }
  .footer-photo-credit { text-align: center; }
  .footer-social { padding: 0; border: 0; }
}

@media (max-width: 420px) {
  :root { --shell: calc(100% - 24px); }
  .site-header.is-scrolled { height: 68px; }
  .site-header.is-scrolled .brand { width: 150px; height: 58px; }
  .site-header.is-scrolled .brand img { max-height: 56px; }
  .menu-toggle { width: 40px; height: 40px; }
  .language-switcher button { min-width: 30px; padding-inline: 5px; }
  .hero-content { padding-top: clamp(255px, calc(43vw + 88px), 285px); }
  .hero h1 { font-size: clamp(49px, 16.7vw, 68px); }
  .hero-copy { font-size: 17px; line-height: 1.45; }
  .button { min-height: 50px; padding-inline: 15px; font-size: 9px; }
  .manifesto, .activities, .shows, .artists, .gallery-section, .partners, .contact { padding-block: 86px; }
  .manifesto-lead { font-size: 13.5vw; }
  .section-heading h2, .shows h2, .anniversary h2, .artists h2, .gallery-section h2, .twinning h2, .contact h2 { font-size: 13.5vw; }
  .activity-card, .activity-card:nth-child(3), .activity-card:nth-child(4), .activity-grid .activity-card-wide { height: clamp(280px, 68svh, 500px); min-height: 0; }
  .activity-overlay h3 { font-size: 40px; }
  .activity-details-inner { padding-inline: 18px; }
  .detail-facts { grid-template-columns: 1fr; }
  .detail-facts article, .detail-facts article:nth-child(even) { min-height: 0; padding: 19px 0; border-right: 0; }
  .schedule-grid, .schedule-grid-tiempos { grid-template-columns: 1fr; }
  .timeline li { grid-template-columns: 1fr; }
  .contact-links a { grid-template-columns: 1fr auto; }
  .contact-links span { grid-column: 1 / -1; }
  .workshop-map-card { grid-template-columns: 1fr; }
  .workshop-map-card strong, .workshop-map-card address, .workshop-map-card i { grid-column: 1; }
  .workshop-map-card i { grid-row: auto; padding: 0 24px 24px; }
  .footer-grid img { width: 180px; }
}

@media (max-width: 340px) {
  .tiempos-artists, .tiempos-mosaic { grid-template-columns: 1fr; }
  .tiempos-artists figure:last-child, .tiempos-photo-wide { grid-column: auto; }
  .tiempos-photo { height: 82vw; }
}

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