:root {
	--charcoal: #343031;
	--charcoal-deep: #252223;
	--paper: #f3f1ed;
	--white: #fff;
	--orange: #ff5a14;
	--muted: #c5bfba;
	--gutter: clamp(1.25rem, 5.5vw, 6rem);
	--line: #ffffff2e;
}
* {
	box-sizing: border-box;
}
html {
	background: var(--charcoal);
}
body {
	background: var(--charcoal);
	color: var(--white);
	font-synthesis: none;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}
a {
	color: inherit;
	text-decoration: none;
}
a:focus-visible {
	outline: 2px solid var(--orange);
	outline-offset: 4px;
}
img {
	width: 100%;
	display: block;
}
.site-shell {
	background: var(--charcoal);
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}
.grid-12,
.hero-layout,
.site-rails {
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: clamp(0.6rem, 1vw, 1.2rem);
	display: grid;
}
.grid-12,
.hero-layout {
	padding-inline: var(--gutter);
}
.site-rails {
	inset: 0 var(--gutter);
	z-index: 0;
	opacity: 0.3;
	pointer-events: none;
	position: absolute;
}
.site-rail {
	z-index: 0;
	justify-self: start;
	height: 100%;
}
.site-rail--fine {
	background: linear-gradient(
		to bottom,
		transparent 0 4%,
		#ffffffc2 4% 15%,
		transparent 15% 19%,
		var(--line) 19% 48%,
		transparent 48% 55%,
		var(--line) 55% 100%
	);
	grid-column: 2;
	width: 1px;
}
.site-rail--broken {
	background: linear-gradient(
		#fffffff7 0 13%,
		#0000 13% 18%,
		#ffffff1f 18% 30%,
		#0000 30% 35%,
		#ffffff2e 35% 68%,
		#0000 68% 74%,
		#ffffff1c 74% 100%
	);
	grid-column: 5;
	width: clamp(0.7rem, 1.2vw, 1.5rem);
}
.site-rail--broad {
	background: linear-gradient(
		#fffffff7 0 10%,
		#0000 10% 17%,
		#ffffff0d 17% 44%,
		#0000 44% 53%,
		#ffffff1a 53% 90%,
		#0000 90% 100%
	);
	grid-column: 9;
	width: clamp(2.2rem, 4.5vw, 5.4rem);
}
.site-rail--edge {
	background: linear-gradient(
		#0000 0 8%,
		#ffffffb8 8% 18%,
		#0000 18% 31%,
		#ffffff24 31% 75%,
		#0000 75% 81%,
		#ffffff1f 81% 100%
	);
	grid-column: 12;
	justify-self: end;
	width: 1px;
}
.hero {
	z-index: 2;
	background: var(--charcoal);
	min-height: 100svh;
	position: relative;
}
.top-nav {
	z-index: 9;
	top: 1.4rem;
	right: var(--gutter);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	gap: 1.5rem;
	font-size: 0.72rem;
	display: flex;
	position: absolute;
}
.top-nav a {
	border-bottom: 1px solid #0000;
	padding-block: 0.35rem;
}
.top-nav a:hover,
.top-nav a:focus-visible {
	border-color: currentColor;
}
.hero-layout {
	position: absolute;
	inset: 0;
}
.hero-title-block {
	z-index: 5;
	min-height: min(78svh, 52rem);
	color: var(--white);
	background: var(--orange);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 78%);
	grid-column: 1/6;
	align-self: start;
	margin-top: clamp(3.7rem, 8vh, 6.4rem);
	padding: clamp(1.4rem, 3vw, 3.2rem);
	position: relative;
}
.hero-kicker {
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 clamp(1.8rem, 5vh, 4rem);
	font-size: clamp(0.75rem, 1vw, 1rem);
}
.hero h1 {
	letter-spacing: -0.075em;
	text-transform: uppercase;
	margin: 0;
	font-size: clamp(4rem, 8.6vw, 9.7rem);
	font-weight: 400;
	line-height: 0.73;
}
.hero h1 span,
.hero h1 strong {
	display: block;
}
.hero h1 strong {
	letter-spacing: -0.025em;
	margin-top: 0.48em;
	font-size: 0.33em;
	font-weight: 400;
	line-height: 1;
}
.hero-meta {
	justify-content: space-between;
	align-items: end;
	gap: 1rem;
	display: flex;
	position: absolute;
	bottom: 25%;
	left: clamp(1.3rem, 3vw, 3.2rem);
	right: clamp(1.3rem, 3vw, 3.2rem);
}
.hero-meta p {
	margin: 0;
	font-size: clamp(1.2rem, 2.6vw, 3.4rem);
	line-height: 0.95;
}
.hero-meta p:last-child {
	font-size: clamp(2.2rem, 5vw, 6rem);
}
.hero-strip {
	z-index: 3;
	background: var(--white);
	flex-direction: column;
	align-self: stretch;
	display: flex;
	position: relative;
	overflow: hidden;
}
.hero-strip img {
	object-fit: cover;
	flex: none;
	width: 100%;
	height: 100%;
	animation-timing-function: linear;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
.hero-strip--one img {
	animation-name: hero-band-down;
	animation-duration: 160s;
}
.hero-strip--two img {
	animation-name: hero-band-up;
	animation-duration: 170s;
}
.hero-strip--three img {
	animation-name: hero-band-down;
	animation-duration: 150s;
}
@keyframes hero-band-down {
	0% {
		object-position: center top;
	}
	to {
		object-position: center bottom;
	}
}
@keyframes hero-band-up {
	0% {
		object-position: center bottom;
	}
	to {
		object-position: center top;
	}
}
.hero-strip--one {
	grid-column: 7/8;
	margin-top: 4.5rem;
	margin-bottom: -8rem;
}
.hero-strip--two {
	grid-column: 9/10;
	margin-top: 10vh;
	margin-bottom: -4rem;
}
.hero-strip--three {
	grid-column: 11/12;
	margin-top: 4.5rem;
	margin-bottom: -11rem;
}
.hero-strip__white {
	background: var(--white);
	min-height: 25%;
	display: block;
}
.hero-strip__white--short {
	min-height: 16%;
}
.hero-strip__orange {
	background: var(--orange);
	min-height: 22%;
	display: block;
}
.hero-orange-slab {
	z-index: 6;
	background: var(--orange);
	width: clamp(2.8rem, 5.5vw, 6.5rem);
	height: 31%;
	position: absolute;
	bottom: 17%;
	right: 11.2%;
}
.hero-dot {
	z-index: 7;
	aspect-ratio: 1;
	background: var(--orange);
	border-radius: 50%;
	width: clamp(1rem, 2vw, 2.2rem);
	position: absolute;
	right: 2.5%;
}
.hero-dot--one {
	top: 38%;
}
.hero-dot--two {
	top: 52%;
	right: 0;
}
.hero-entry {
	z-index: 9;
	right: var(--gutter);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	align-items: center;
	gap: 0.8rem;
	font-size: 0.78rem;
	display: flex;
	position: absolute;
	bottom: 1.5rem;
}
.hero-entry span:last-child {
	font-size: 1.25rem;
}
.festival-intro {
	z-index: 2;
	border-top: 1px solid #ffffff38;
	align-items: center;
	min-height: clamp(31rem, 67vh, 48rem);
	padding-block: clamp(8rem, 14vw, 14rem);
	position: relative;
}
.festival-intro:before {
	content: "";
	top: 0;
	bottom: 28%;
	left: calc(var(--gutter) + 20% - 0.8rem);
	background: var(--white);
	width: clamp(0.7rem, 1.2vw, 1.5rem);
	position: absolute;
}
.festival-intro__label {
	color: var(--orange);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	grid-column: 1/3;
	align-self: start;
	margin: 0;
	font-size: 0.72rem;
	line-height: 1.45;
}
.festival-intro__copy {
	z-index: 3;
	letter-spacing: -0.045em;
	grid-column: 4/11;
	margin: 0;
	font-size: clamp(1.8rem, 3.8vw, 4.25rem);
	font-weight: 400;
	line-height: 1.04;
	position: relative;
}
.festival-intro__orange {
	background: var(--orange);
	grid-column: 11/13;
	align-self: end;
	height: clamp(5rem, 12vw, 11rem);
	margin-bottom: -5rem;
}
.program {
	z-index: 2;
	position: relative;
}
.program-intro {
	border-top: clamp(0.75rem, 1.4vw, 1.5rem) solid var(--white);
	align-items: end;
	min-height: clamp(20rem, 42vw, 38rem);
	padding-block: clamp(4rem, 9vw, 8rem);
}
.program-label {
	color: var(--orange);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	grid-column: 1/3;
	margin: 0;
	font-size: 0.72rem;
}
.program-intro h2 {
	letter-spacing: -0.07em;
	text-transform: uppercase;
	grid-column: 3/10;
	margin: 0;
	font-size: clamp(4rem, 11vw, 10rem);
	font-weight: 400;
	line-height: 0.72;
}
.program-download {
    color: var(--white);
    letter-spacing: .14em;
    text-transform: uppercase;
    align-items: center;
    gap: .7rem;
    padding: .4rem 0;
    font-size: .7rem;
    text-decoration: none;
    display: inline-flex;
    grid-column: 2/10;
}
.program-note {
    grid-column: 10/13;
    margin: 0;
    font-size: clamp(.85rem,1.2vw,1.05rem);
    line-height: 1.45;
}
.date-nav {
	z-index: 30;
	width: clamp(3rem, 3.8vw, 3.8rem);
	color: var(--muted);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: #343031f5;
	border-left: 0;
	border-right: 1px solid #ffffff4d;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.7rem;
	padding: 1rem 0.35rem;
	font-size: 0.72rem;
	display: flex;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
}
.date-nav span {
	letter-spacing: 0.14em;
	writing-mode: vertical-rl;
	margin-bottom: 0.25rem;
	font-size: 0.56rem;
	line-height: 1;
	transform: rotate(180deg);
}
.date-nav a {
	width: 100%;
	color: var(--white);
	justify-content: center;
	padding-block: 0.25rem;
	display: flex;
}
.date-nav a:hover,
.date-nav a:focus-visible {
	color: var(--orange);
}
.day {
	border-top: 1px solid #ffffff3d;
	padding-block: clamp(4rem, 6vw, 6rem);
	scroll-margin-top: 1rem;
	position: relative;
}
.day:after {
	content: "";
	z-index: -1;
	background: var(--orange);
	width: clamp(1.3rem, 3vw, 3.3rem);
	height: 12%;
	position: absolute;
	top: 17%;
	right: 0;
}
#jour-19:after {
	height: 9%;
	top: 58%;
	left: 0;
	right: auto;
}
#jour-20:after {
	height: 8%;
	top: 43%;
}
#jour-23:after {
	height: 10%;
	top: 62%;
	left: 0;
	right: auto;
}
#jour-24:after {
	height: 11%;
	top: 36%;
}
#jour-25:after {
	height: 9%;
	top: 57%;
	left: 0;
	right: auto;
}
#jour-26:after {
	height: 10%;
	top: 44%;
}
#jour-27:after {
	height: 9%;
	top: 54%;
	left: 0;
	right: auto;
}
.day-heading {
	align-items: start;
	margin-bottom: clamp(5rem, 11vw, 10rem);
}
.day-date {
	grid-column: 1/4;
	align-items: start;
	gap: clamp(0.8rem, 1.5vw, 1.5rem);
	display: flex;
}
.day-number {
	color: var(--orange);
	letter-spacing: -0.095em;
	font-size: clamp(5rem, 12vw, 12rem);
	font-weight: 700;
	line-height: 0.66;
}
.day-date p {
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0.15rem 0 0;
	font-size: 0.7rem;
	line-height: 1.35;
}
.day-place {
	grid-column: 5/11;
	padding-top: 0.3rem;
}
.day-opening {
	color: var(--muted);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 0.65rem;
	font-size: 0.72rem;
}
.day-place h3 {
	letter-spacing: -0.055em;
	margin: 0;
	font-size: clamp(2rem, 4.6vw, 5.3rem);
	font-weight: 400;
	line-height: 0.95;
}
.event {
	align-items: start;
	min-height: 40rem;
	margin-block: clamp(4rem, 9vw, 9rem);
	position: relative;
}
.event > time {
	z-index: 4;
	color: var(--orange);
	letter-spacing: -0.04em;
	grid-column: 2/4;
	font-size: clamp(1.5rem, 3vw, 3.2rem);
	position: relative;
}
.event-main {
	z-index: 4;
	border-left: clamp(0.65rem, 1.1vw, 1.3rem) solid var(--white);
	grid-column: 4/9;
	padding-left: clamp(1.2rem, 2.4vw, 2.5rem);
	position: relative;
}
.event-main h4,
.event-heading h4 {
	letter-spacing: -0.065em;
	margin: 0 0 0.8rem;
	font-size: clamp(2.7rem, 5.7vw, 6.3rem);
	font-weight: 400;
	line-height: 0.9;
}
.event-title-subtitle {
	letter-spacing: -0.035em;
	margin-top: 0.25em;
	font-size: 0.48em;
	line-height: 1;
	display: block;
}
.event-status {
	color: var(--orange);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 1rem;
	font-size: 0.68rem;
}
.event-artists {
	max-width: 42rem;
	color: var(--white);
	margin: 0 0 clamp(2rem, 4vw, 4rem);
	font-size: clamp(1rem, 1.5vw, 1.3rem);
	line-height: 1.45;
}
.event-description {
	max-width: 43rem;
	color: var(--muted);
	font-size: clamp(0.98rem, 1.25vw, 1.12rem);
	line-height: 1.62;
}
.event-description p {
	margin: 0 0 1.25rem;
}
.event-image {
	z-index: 3;
	background: var(--paper);
	margin: 0;
	position: relative;
	overflow: hidden;
}
.event-image img {
	object-fit: cover;
	filter: sepia(0.13) saturate(0.75) contrast(1.03);
	height: 100%;
}
.event-portrait {
	z-index: 4;
	background: var(--paper);
	margin: 0;
	position: relative;
	overflow: hidden;
}
.event-portrait img {
	object-fit: cover;
	filter: sepia(0.13) saturate(0.75) contrast(1.03);
	height: 100%;
}
.event-image figcaption {
	color: var(--muted);
	background: var(--charcoal);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding-top: 0.55rem;
	font-size: 0.64rem;
}
.event-image--formation {
	aspect-ratio: 3/4;
	border-left: clamp(1rem, 2vw, 2.2rem) solid var(--white);
	grid-area: 1/9 / auto/13;
	height: auto;
	margin-top: -4rem;
}
.event--formation .event-main {
	grid-row: 1;
}
.event-biographies {
	z-index: 4;
	border-left: 1px solid var(--white);
	grid-area: 2/4 / auto/13;
	min-width: 0;
	margin-top: clamp(2rem, 4vw, 4rem);
	padding-left: clamp(1.2rem, 2.4vw, 2.5rem);
	position: relative;
}
.event-biographies summary {
	color: var(--white);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	align-items: center;
	gap: 0.7rem;
	padding: 0.4rem 0;
	font-size: 0.7rem;
	list-style: none;
	display: inline-flex;
}
.event-biographies summary::-webkit-details-marker {
	display: none;
}
.event-biographies summary:focus-visible {
	outline: 2px solid var(--orange);
	outline-offset: 4px;
}
.event-biographies__symbol:before {
	content: "+";
	color: var(--orange);
	font-size: 1rem;
	line-height: 1;
}
.event-biographies[open] .event-biographies__symbol:before {
	content: "−";
}
.event-biographies__grid {
	border-top: 1px solid #ffffff4d;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 3.5rem);
	padding: clamp(2rem, 4vw, 4rem) 0 1rem;
	display: grid;
}
.event-biographies__grid:has(> .artist-biography:nth-child(2):last-child) {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.event-biographies__grid:has(> .artist-biography:nth-child(4):last-child) {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.event-biographies__grid:has(> .artist-biography:nth-child(4):last-child)
	> .artist-biography:first-child {
	grid-area: 1/1;
}
.event-biographies__grid:has(> .artist-biography:nth-child(4):last-child)
	> .artist-biography:nth-child(2) {
	grid-area: 2/1;
}
.event-biographies__grid:has(> .artist-biography:nth-child(4):last-child)
	> .artist-biography:nth-child(3) {
	grid-area: 1/2;
}
.event-biographies__grid:has(> .artist-biography:nth-child(4):last-child)
	> .artist-biography:nth-child(4) {
	grid-area: 2/2;
}
.event-biographies__grid > .artist-biography:only-child {
	column-count: 3;
	grid-column: 1/-1;
	column-gap: clamp(1.5rem, 3vw, 3.5rem);
}
.event-biographies__grid > .artist-biography:only-child h5 {
	column-span: all;
}
.artist-biography {
	min-width: 0;
}
.artist-biography h5 {
	letter-spacing: -0.025em;
	margin: 0 0 1.5rem;
	font-size: clamp(1.25rem, 1.7vw, 1.8rem);
	font-weight: 400;
	line-height: 1.05;
}
.artist-biography p {
	color: var(--muted);
	margin: 0 0 1.15rem;
	font-size: clamp(0.9rem, 1.05vw, 1rem);
	line-height: 1.6;
}
.artist-biography a {
	overflow-wrap: anywhere;
	border-bottom: 1px solid var(--orange);
	color: var(--white);
	padding-bottom: 0.15rem;
	font-size: 0.78rem;
	line-height: 1.4;
	display: inline-block;
}
.event--wild-writings {
	row-gap: clamp(2.5rem, 5vw, 5rem);
	min-height: 0;
}
.wild-writings-schedule {
	z-index: 4;
	grid-area: 1/1/3/4;
	padding-right: clamp(1rem, 2vw, 2rem);
	position: relative;
}
.wild-writings-schedule > div {
	padding: 0 0 clamp(1.5rem, 3vw, 2.8rem);
}
.wild-writings-schedule time {
	color: var(--orange);
	letter-spacing: -0.04em;
	font-size: clamp(1.35rem, 2.5vw, 2.5rem);
}
.wild-writings-schedule p {
	color: var(--white);
	margin: 0.55rem 0 0;
	font-size: clamp(0.82rem, 1vw, 0.98rem);
	line-height: 1.45;
}
.event--wild-writings .event-main {
	grid-area: 1/4 / auto/13;
}
.wild-writings-credits strong,
.wild-writings-credits span {
	display: block;
}
.wild-writings-credits strong {
	color: var(--orange);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 0.65rem;
	font-size: 0.75em;
	font-weight: 400;
}
.wild-writings-description {
	grid-template-columns: repeat(9, minmax(0, 1fr));
	gap: clamp(2rem, 4vw, 4.5rem);
	max-width: none;
	display: grid;
}
.wild-writings-text--project {
	grid-area: 1/1 / auto/6;
}
.wild-writings-text__label {
	color: var(--orange);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-size: 0.68rem;
}
.wild-writings-text--author {
	color: var(--white);
	border-left: 1px solid #ffffff8c;
	grid-area: 2/5 / auto/10;
	padding-left: clamp(1rem, 2vw, 2rem);
}
.event-image--wild-writings {
	aspect-ratio: 3/4;
	border-left: clamp(1rem, 2vw, 2.2rem) solid var(--white);
}
.event-image--wild-writings-one {
	grid-area: 1/6 / auto/10;
}
.event-image--wild-writings-two {
	grid-area: 2/1 / auto/5;
}
.event-biographies--wild-writings {
	grid-area: 3/4 / auto/13;
}
.artist-biography--werner-moron {
	column-count: 2;
	border-top: 1px solid #ffffff4d;
	column-gap: clamp(1.5rem, 3vw, 3.5rem);
	margin-top: clamp(2rem, 4vw, 4rem);
	padding-top: clamp(2rem, 4vw, 4rem);
}
.artist-biography--werner-moron h5 {
	column-span: all;
}
.day-heading--armande {
	margin-top: clamp(9rem, 16vw, 16rem);
}
.event--armande {
	row-gap: clamp(2.5rem, 5vw, 5rem);
	min-height: 0;
}
.event--armande-left > time {
	grid-area: 1/6 / auto/8;
}
.event--armande-left .event-main {
	border-left-width: clamp(1.1rem, 2.4vw, 2.8rem);
	grid-area: 1/8 / auto/12;
}
.event--armande-left .event-image--armande {
	border-right: 1px solid var(--white);
	grid-area: 1/2 / auto/6;
}
.event--armande-right > time {
	grid-area: 1/1 / auto/3;
}
.event--armande-right .event-main {
	border-left-width: 1px;
	grid-area: 1/3 / auto/8;
}
.event--armande-right .event-image--armande {
	border-left: clamp(0.8rem, 1.6vw, 1.8rem) solid var(--white);
	grid-area: 1/8 / auto/12;
}
.event-image--armande {
	align-self: start;
	height: auto;
	margin-top: -3rem;
}
.event-image--armande img {
	object-fit: contain;
	height: auto;
}
.event-image--noise-story,
.event-image--sferos,
.event-image--noise-story img,
.event-image--sferos img {
	height: auto;
}
.event-image--noise-story img,
.event-image--sferos img {
	object-fit: contain;
}
.event--scratch {
	row-gap: 2rem;
	min-height: 34rem;
}
.event--scratch .event-heading {
	border-left: 1px solid var(--white);
	grid-area: 1/4 / auto/8;
	padding-left: clamp(1.2rem, 2.4vw, 2.5rem);
}
.event--scratch > .event-description {
	z-index: 4;
	border-left: 1px solid var(--white);
	grid-area: 2/4 / auto/8;
	padding-left: clamp(1.2rem, 2.4vw, 2.5rem);
	position: relative;
}
.event-portrait--raymond {
	aspect-ratio: 3/2;
	grid-area: 1/8 / auto/10;
	align-self: start;
}
.event-image--scratch {
	border-top: clamp(0.7rem, 1.2vw, 1.4rem) solid var(--white);
	grid-area: 2/8 / auto/13;
	height: clamp(18rem, 31vw, 31rem);
	margin-top: 0;
}
.event-biographies--scratch {
	grid-row: 3;
}
.event-orange-block {
	z-index: 5;
	background: var(--orange);
	grid-area: 2/8 / auto/9;
	align-self: end;
	height: clamp(5rem, 9vw, 9rem);
	margin-bottom: -2.5rem;
	position: relative;
}
.event--tide {
	min-height: 44rem;
}
.event--tide > time {
	grid-column: 6/8;
}
.event--tide .event-main {
	border-left-width: clamp(1.5rem, 3.2vw, 3.8rem);
	grid-column: 8/12;
}
.event-image--tide {
	border-right: 1px solid var(--white);
	grid-area: 1/2 / auto/6;
	height: clamp(28rem, 47vw, 48rem);
	margin-top: -3rem;
}
.event--quattrophage {
	min-height: 48rem;
}
.event--quattrophage .event-main {
	border-left-width: 1px;
	grid-column: 4/9;
}
.event-image--quattrophage {
	border-left: clamp(0.8rem, 1.6vw, 1.8rem) solid var(--white);
	grid-column: 9/12;
	height: clamp(32rem, 54vw, 58rem);
	margin-top: -4rem;
}
.event--sahara > time,
.event--night-music > time {
	grid-column: 6/8;
}
.event--sahara .event-main,
.event--night-music .event-main {
	border-left-width: clamp(1.1rem, 2.4vw, 2.8rem);
	grid-column: 8/12;
}
.event-image--sahara,
.event-image--night-music {
	border-right: 1px solid var(--white);
	grid-area: 1/2 / auto/6;
	height: clamp(28rem, 46vw, 48rem);
	margin-top: -3rem;
}
.event--pastoral > time,
.event--improvisation > time {
	grid-area: 1/1 / auto/3;
}
.event--pastoral .event-main,
.event--improvisation .event-main {
	border-left-width: 1px;
	grid-area: 1/3 / auto/8;
}
.event-image--pastoral,
.event-image--improvisation {
	border-left: clamp(0.8rem, 1.6vw, 1.8rem) solid var(--white);
	grid-area: 1/8 / auto/12;
	height: clamp(30rem, 48vw, 52rem);
	margin-top: -3rem;
}
.event-image--improvisation {
	grid-column: 8/12;
	height: auto;
}
.event--improvisation .event-main h4 {
	font-size: clamp(2.7rem, 5.1vw, 5.7rem);
}
.event-image--improvisation img {
	object-fit: contain;
	height: auto;
}
.event--shared {
	row-gap: clamp(2.5rem, 5vw, 5rem);
	min-height: 0;
}
.event--shared > time {
	grid-column: 1/3;
}
.shared-project {
	z-index: 4;
	min-width: 0;
	position: relative;
}
.shared-project--alimb {
	grid-column: 3/8;
}
.shared-project--lab {
	grid-column: 8/13;
}
.shared-project .event-main {
	border-left-width: 1px;
	padding-left: clamp(1.2rem, 2.4vw, 2.5rem);
}
.shared-project .event-main h4 {
	letter-spacing: -0.065em;
	margin: 0 0 0.8rem;
	font-size: clamp(2.7rem, 5.1vw, 5.7rem);
	font-weight: 400;
	line-height: 0.9;
}
.event-image--shared {
	border-top: clamp(0.7rem, 1.2vw, 1.4rem) solid var(--white);
	height: clamp(18rem, 27vw, 29rem);
	margin-top: clamp(2rem, 4vw, 4rem);
}
.event-biographies--shared {
	grid-area: 2/3 / auto/13;
	margin-top: 0;
}
.event--homo-luciola > time,
.event--network > time {
	grid-column: 6/8;
}
.event--homo-luciola .event-main,
.event--network .event-main {
	border-left-width: clamp(1.1rem, 2.4vw, 2.8rem);
	grid-column: 8/12;
}
.event-image--homo-luciola,
.event-image--network {
	border-right: 1px solid var(--white);
	grid-area: 1/2 / auto/6;
	height: clamp(28rem, 46vw, 48rem);
	margin-top: -3rem;
}
.event--feuilleton > time {
	grid-area: 1/1 / auto/3;
}
.event--feuilleton .event-main {
	border-left-width: 1px;
	grid-area: 1/3 / auto/8;
}
.event-image--feuilleton {
	border-left: clamp(0.8rem, 1.6vw, 1.8rem) solid var(--white);
	grid-area: 1/8 / auto/12;
	height: clamp(30rem, 48vw, 52rem);
	margin-top: -3rem;
}
.event-image--feuilleton,
.event-image--network {
	aspect-ratio: 1;
	height: auto;
}
.event-image--feuilleton img,
.event-image--network img {
	object-fit: contain;
	height: auto;
}
.institutions-section {
	z-index: 5;
	background: var(--charcoal);
	border-top: 1px solid #ffffff3d;
	padding-block: clamp(5rem, 8vw, 8rem);
	position: relative;
	overflow: hidden;
}
.institutions-section:before {
	content: "";
	height: clamp(14rem, 18vw, 18rem);
	top: 0;
	left: calc(var(--gutter) + 25%);
	background: #ffffff80;
	width: clamp(0.7rem, 1.2vw, 1.5rem);
	position: absolute;
}
.institutions-heading {
	z-index: 1;
	margin-bottom: clamp(3rem, 5vw, 5rem);
	position: relative;
}
.institutions-heading p {
	color: var(--orange);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	grid-column: 2/5;
	margin: 0 0 0.8rem;
	font-size: 0.72rem;
}
.institutions-composition {
	z-index: 1;
	align-items: start;
	row-gap: clamp(3rem, 5vw, 5rem);
	position: relative;
}
.institution {
	border-top: 1px solid #ffffff47;
	align-items: start;
	min-width: 0;
	padding-top: clamp(2rem, 3vw, 3rem);
	position: relative;
}
.institution-logo {
	background: 0 0;
	align-self: start;
	margin: 0;
}
.institution-logo img {
	object-fit: contain;
	width: 100%;
	height: auto;
}
.institution-content h3 {
	color: var(--white);
	letter-spacing: -0.065em;
	margin: 0 0 0.7rem;
	font-size: clamp(2.2rem, 3.6vw, 4rem);
	font-weight: 400;
	line-height: 0.9;
}
.institution-content a {
	border-bottom: 1px solid var(--orange);
	color: var(--orange);
	margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
	padding-bottom: 0.2rem;
	font-size: 0.8rem;
	display: inline-block;
}
.institution-content p {
	color: var(--muted);
	margin: 0 0 1.25rem;
	font-size: clamp(0.9rem, 1vw, 1rem);
	line-height: 1.58;
}
.institution--city-sonic {
	grid-area: 1/2 / auto/7;
}
.institution--city-sonic .institution-logo {
	grid-column: 1/4;
}
.institution--city-sonic .institution-content {
	grid-column: 4/13;
}
.institution--transcultures {
	grid-area: 1/7 / auto/13;
	margin-top: clamp(3rem, 6vw, 6rem);
}
.institution--transcultures .institution-content {
	grid-column: 1/10;
}
.institution--transcultures .institution-logo {
	grid-column: 10/13;
	margin-top: 0.25rem;
}
.institution--transonic {
	grid-area: 2/4 / auto/11;
}
.institution--transonic .institution-logo {
	grid-column: 1/4;
}
.institution--transonic .institution-content {
	grid-column: 4/13;
}
.credits-section {
	z-index: 5;
	background: var(--charcoal);
	border-top: 1px solid #ffffff3d;
	padding-block: clamp(6rem, 10vw, 10rem);
	position: relative;
	overflow: hidden;
}
.credits-heading {
	align-items: end;
	margin-bottom: clamp(4rem, 7vw, 7rem);
	position: relative;
}
.credits-heading p {
	color: var(--orange);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	grid-column: 2/5;
	margin: 0 0 0.7rem;
	font-size: 0.7rem;
}
.credits-heading h2 {
	color: var(--white);
	letter-spacing: -0.07em;
	grid-area: 2/4 / auto/10;
	margin: 0;
	font-size: clamp(4rem, 8vw, 8rem);
	font-weight: 400;
	line-height: 0.82;
}
.credits-heading:after {
	content: "";
	aspect-ratio: 1;
	background: var(--orange);
	width: clamp(0.8rem, 1.4vw, 1.5rem);
	box-shadow:
		clamp(2rem, 4vw, 4rem) 0 0 var(--orange),
		0 clamp(2rem, 4vw, 4rem) 0 var(--orange);
	border-radius: 50%;
	grid-area: 2/11;
	align-self: center;
}
.credits-composition {
	align-items: start;
	row-gap: clamp(3.5rem, 6vw, 6rem);
}
.credits-block {
	border-top: 1px solid #ffffff47;
	min-width: 0;
	padding-top: clamp(1.4rem, 2.5vw, 2.5rem);
}
.credits-block h3 {
	color: var(--orange);
	letter-spacing: -0.02em;
	margin: 0 0 1.5rem;
	font-size: clamp(1rem, 1.45vw, 1.35rem);
	font-weight: 500;
	line-height: 1.2;
}
.credits-block p {
	color: var(--muted);
	margin: 0 0 1rem;
	font-size: clamp(0.86rem, 0.95vw, 0.96rem);
	line-height: 1.55;
}
.credits-block strong {
	color: var(--white);
	font-weight: 600;
}
.credits-block--projects {
	grid-area: 1/2/4/8;
}
.credits-block--photos {
	grid-area: 1/9 / auto/13;
}
.credits-block--artistic-direction {
	grid-area: 2/9 / auto/11;
}
.credits-block--team {
	grid-area: 2/11 / auto/13;
}
.credits-block--production {
	grid-area: 3/8 / auto/10;
}
.credits-block--coordination {
	grid-area: 3/10 / auto/13;
}
.credits-block--thanks {
	grid-area: 4/4 / auto/11;
}
.credits-contact {
	color: var(--white) !important;
	margin-top: 2rem !important;
}
.credits-links a {
	border-bottom: 1px solid var(--orange);
	color: var(--white);
	padding-bottom: 0.15rem;
	display: inline-block;
}
.venues-section {
	z-index: 5;
	color: var(--charcoal);
	background: var(--orange);
	padding-block: clamp(7rem, 13vw, 13rem);
	scroll-margin-top: 1rem;
	position: relative;
	overflow: hidden;
}
.venues-section:before {
	content: "";
	top: 0;
	bottom: 0;
	left: calc(var(--gutter) + 25%);
	opacity: 0.6;
	background: #fffffff0;
	width: clamp(0.7rem, 1.2vw, 1.5rem);
	position: absolute;
}
.venues-heading {
	z-index: 1;
	align-items: end;
	margin-bottom: clamp(6rem, 11vw, 11rem);
	position: relative;
}
.venues-heading p {
	color: var(--white);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	grid-column: 2/5;
	margin: 0 0 0.8rem;
	font-size: 0.72rem;
}
.venues-heading h2 {
	color: var(--white);
	letter-spacing: -0.08em;
	grid-area: 2/4 / auto/10;
	margin: 0;
	font-size: clamp(5rem, 14vw, 14rem);
	font-weight: 400;
	line-height: 0.72;
}
.venues-heading__mark {
	background: 0 0;
	grid-area: 2/10 / auto/12;
	place-self: center end;
	width: 100%;
	margin: 0;
}
.venues-heading__mark img {
	object-fit: contain;
	width: 100%;
	height: auto;
}
.venues-grid {
	z-index: 1;
	row-gap: clamp(5rem, 9vw, 9rem);
	position: relative;
}
.venue {
	border-top: 1px solid #3430318c;
	grid-template-columns: minmax(7rem, 0.75fr) minmax(0, 2fr);
	align-items: start;
	gap: clamp(1.4rem, 2.6vw, 3rem);
	padding-top: clamp(1.4rem, 2.4vw, 2.5rem);
	display: grid;
}
.venue--armande {
	grid-column: 1/7;
}
.venue--laveu {
	grid-column: 7/13;
}
.venue--serres {
	grid-column: 2/8;
}
.venue--overflow {
	grid-column: 8/13;
}
.venue--fonck {
	grid-column: 4/11;
}
.venue-logo {
	justify-content: center;
	align-items: flex-start;
	min-width: 0;
	margin: 0;
	display: flex;
}
.venue-logo img {
	object-fit: contain;
	mix-blend-mode: multiply;
	width: 100%;
	height: auto;
	max-height: 8rem;
}
.venue-logo--wide img {
	max-height: 5rem;
}
.venue-content h3 {
	color: #343031;
	letter-spacing: -0.055em;
	margin: 0 0 0.75rem;
	font-size: clamp(2rem, 3.6vw, 4.2rem);
	font-weight: 400;
	line-height: 0.95;
}
.venue-content p {
	margin: 0 0 1.25rem;
	font-size: clamp(0.92rem, 1.05vw, 1.02rem);
	line-height: 1.58;
}
.venue-content .venue-address {
	color: var(--white);
	letter-spacing: 0.035em;
	margin-bottom: 1.8rem;
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.4;
}
.venue-content a {
	overflow-wrap: anywhere;
	border-bottom: 1px solid var(--white);
	color: var(--white);
	padding-bottom: 0.2rem;
	font-size: 0.8rem;
	display: inline-block;
}
.footer {
	z-index: 2;
	border-top: clamp(0.8rem, 1.7vw, 1.9rem) solid var(--white);
	background: var(--charcoal-deep);
	align-items: end;
	min-height: 16rem;
	padding-block: 4rem;
	font-size: 0.78rem;
	line-height: 1.4;
	position: relative;
}
.footer p {
	grid-column: 1/6;
	margin: 0;
}
.footer a {
	grid-column: 10/13;
	justify-self: end;
}
@media (width<=900px) {
	:root {
		--gutter: clamp(1.1rem, 4vw, 2rem);
	}
	.site-shell {
		padding-left: 2.65rem;
	}
	.date-nav {
		gap: 0.55rem;
		width: 2.65rem;
		padding: 0.8rem 0.25rem;
	}
	.date-nav span {
		display: none;
	}
	.hero-title-block {
		grid-column: 1/7;
	}
	.hero-strip--one {
		grid-column: 8/9;
	}
	.hero-strip--two {
		grid-column: 10/11;
	}
	.hero-strip--three {
		grid-column: 12/13;
	}
	.festival-intro:before {
		left: calc(var(--gutter) + 10%);
	}
	.festival-intro__copy {
		grid-column: 4/12;
	}
	.program-intro h2 {
		grid-column: 3/11;
	}
	.program-note {
		grid-column: 9/13;
	}
	.day-date {
		grid-column: 1/5;
	}
	.day-place {
		grid-column: 5/12;
	}
	.event-main {
		grid-column: 4/9;
	}
	.event-image--formation,
	.event-image--quattrophage {
		grid-column: 9/13;
	}
	.event--tide .event-main {
		grid-column: 7/13;
	}
	.event--tide > time {
		grid-column: 5/7;
	}
	.event-image--tide {
		grid-column: 1/5;
	}
	.event--sahara .event-main,
	.event--night-music .event-main {
		grid-column: 7/13;
	}
	.event--sahara > time,
	.event--night-music > time {
		grid-column: 5/7;
	}
	.event-image--sahara,
	.event-image--night-music {
		grid-column: 1/5;
	}
	.event--homo-luciola .event-main,
	.event--network .event-main {
		grid-column: 7/13;
	}
	.event--homo-luciola > time,
	.event--network > time {
		grid-column: 5/7;
	}
	.event-image--homo-luciola,
	.event-image--network {
		grid-column: 1/5;
	}
}
@media (width<=680px) {
	.grid-12,
	.hero-layout,
	.site-rails {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		column-gap: 0.6rem;
	}
	.site-rail--fine {
		grid-column: 1;
	}
	.site-rail--broken {
		grid-column: 3;
		width: 0.75rem;
	}
	.site-rail--broad {
		grid-column: 5;
		width: 2.1rem;
	}
	.site-rail--edge {
		display: none;
	}
	.top-nav {
		right: var(--gutter);
		gap: 1rem;
		font-size: 0.58rem;
	}
	.hero-title-block {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 83%);
		grid-column: 1/6;
		min-height: 65svh;
		margin-top: 4.2rem;
	}
	.hero h1 {
		font-size: clamp(3.55rem, 20vw, 7rem);
	}
	.hero-meta {
		bottom: 17%;
		left: 1.25rem;
		right: 1.25rem;
	}
	.hero-meta p {
		font-size: 1rem;
	}
	.hero-meta p:last-child {
		font-size: clamp(2rem, 12vw, 4.6rem);
	}
	.hero-strip--one {
		grid-column: 6/7;
		margin-top: 17vh;
		margin-bottom: -7rem;
	}
	.hero-strip--two {
		display: none;
	}
	.hero-strip--three {
		z-index: 4;
		grid-column: 5/6;
		align-self: end;
		height: 32vh;
		margin: 0 -0.6rem -6rem 0;
	}
	.hero-orange-slab {
		width: 2.5rem;
		height: 21%;
		bottom: 11%;
		right: 8%;
	}
	.hero-dot {
		display: none;
	}
	.hero-entry {
		right: var(--gutter);
		font-size: 0.66rem;
		bottom: 1.2rem;
	}
	.festival-intro {
		align-content: center;
		row-gap: 3rem;
		min-height: 72svh;
		padding-block: 8rem;
	}
	.festival-intro:before {
		top: 0;
		bottom: 47%;
		left: calc(var(--gutter) + 8%);
		width: 0.75rem;
	}
	.festival-intro__label {
		grid-column: 1/3;
		align-self: start;
	}
	.festival-intro__copy {
		grid-column: 2/7;
		font-size: clamp(1.75rem, 8.8vw, 3.1rem);
		line-height: 1.04;
	}
	.festival-intro__orange {
		grid-column: 5/7;
		height: 5rem;
		margin: 0;
	}
	.program-intro {
		row-gap: 1.4rem;
		min-height: 24rem;
	}
	.program-label {
		grid-column: 1/3;
	}
	.program-intro h2 {
		grid-area: 2/1 / auto/7;
		font-size: clamp(3.8rem, 20vw, 7rem);
	}
	.program-note {
		grid-area: 1/3 / auto/7;
	}
	.date-nav {
		gap: 0.55rem;
		width: 2.65rem;
		padding: 0.8rem 0.25rem;
	}
	.date-nav span {
		display: none;
	}
	.day {
		padding-block: 5rem;
	}
	.day-heading {
		row-gap: 2rem;
		margin-bottom: 5rem;
	}
	.day-date {
		grid-column: 1/7;
	}
	.day-number {
		font-size: clamp(5.5rem, 28vw, 9rem);
	}
	.day-place {
		grid-area: 2/2 / auto/7;
	}
	.day-place h3 {
		font-size: clamp(2rem, 10vw, 3.5rem);
	}
	.event,
	.event--scratch,
	.event--tide,
	.event--quattrophage,
	.event--sahara,
	.event--pastoral,
	.event--shared,
	.event--night-music,
	.event--improvisation,
	.event--homo-luciola,
	.event--feuilleton,
	.event--network {
		row-gap: 1.4rem;
		min-height: 0;
		margin-block: 4rem 8rem;
	}
	.event--wild-writings {
		row-gap: 2.5rem;
		min-height: 0;
		margin-block: 4rem 8rem;
	}
	.wild-writings-schedule {
		grid-area: 1/1 / auto/7;
		gap: 1.5rem;
		padding-right: 0;
		display: grid;
	}
	.wild-writings-schedule > div {
		grid-template-columns: minmax(4.5rem, auto) 1fr;
		align-items: baseline;
		gap: 1rem;
		padding: 0;
		display: grid;
	}
	.wild-writings-schedule p {
		margin: 0;
	}
	.event--wild-writings .event-main {
		border-left-width: 0.75rem;
		grid-area: 2/2 / auto/7;
		padding-left: 1rem;
	}
	.wild-writings-description {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.wild-writings-text--project,
	.event-image--wild-writings-one,
	.event-image--wild-writings-two,
	.wild-writings-text--author {
		grid-area: auto/1;
	}
	.event-image--wild-writings {
		border-left-width: 0.75rem;
		height: auto;
	}
	.event-biographies--wild-writings {
		grid-area: 3/2 / auto/7;
		margin-top: 0;
	}
	.artist-biography--werner-moron {
		column-count: 1;
	}
	.day-heading--armande {
		margin-top: 8rem;
	}
	.event--armande .event-image--armande {
		border-top: 0;
		border-right: 0;
		border-left: 1.2rem solid var(--white);
		grid-area: 3/2 / auto/7;
		height: auto;
		margin: 1rem 0 0;
	}
	.event > time,
	.event--tide > time,
	.event--sahara > time,
	.event--night-music > time,
	.event--homo-luciola > time,
	.event--network > time,
	.event--feuilleton > time {
		grid-area: 1/1 / auto/3;
	}
	.event-main,
	.event--tide .event-main,
	.event--quattrophage .event-main,
	.event--sahara .event-main,
	.event--night-music .event-main,
	.event--pastoral .event-main,
	.event--improvisation .event-main,
	.event--homo-luciola .event-main,
	.event--feuilleton .event-main,
	.event--network .event-main {
		border-left-width: 0.75rem;
		grid-area: 2/2 / auto/7;
		padding-left: 1rem;
	}
	.event-main h4,
	.event-heading h4,
	.event--improvisation .event-main h4 {
		font-size: clamp(2.5rem, 12vw, 4.5rem);
	}
	.event--scratch .event-heading {
		border-left-width: 0.75rem;
		grid-area: 2/2 / auto/7;
		padding-left: 1rem;
	}
	.event--scratch > .event-description {
		border-left-width: 0.75rem;
		grid-area: 3/2 / auto/7;
		padding-left: 1rem;
	}
	.event-portrait--raymond {
		display: none;
	}
	.event-artists {
		margin-bottom: 2.5rem;
	}
	.event-description {
		font-size: 0.97rem;
		line-height: 1.58;
	}
	.event-image--formation,
	.event-image--scratch,
	.event-image--tide,
	.event-image--quattrophage,
	.event-image--sahara,
	.event-image--pastoral,
	.event-image--night-music,
	.event-image--improvisation,
	.event-image--homo-luciola,
	.event-image--feuilleton,
	.event-image--network {
		border-top: 0;
		border-right: 0;
		border-left: 1.2rem solid var(--white);
		grid-area: 3/2 / auto/7;
		height: clamp(18rem, 92vw, 35rem);
		margin: 1rem 0 0;
	}
	.event-biographies {
		border-left-width: 0.75rem;
		grid-area: 4/2 / auto/7;
		margin-top: 1rem;
		padding-left: 1rem;
	}
	.event-biographies__grid {
		grid-template-columns: 1fr;
		gap: 2.75rem;
		padding-top: 2rem;
	}
	.event-biographies__grid > .artist-biography:only-child {
		column-count: 1;
	}
	.event-biographies__grid:has(> .artist-biography:nth-child(4):last-child)
		> .artist-biography {
		grid-area: auto/1;
	}
	.event-image--scratch {
		grid-row: 5;
		height: clamp(14rem, 64vw, 23rem);
	}
	.event-biographies--scratch {
		grid-row: 4;
	}
	.event-image--tide {
		grid-column: 1/6;
		height: clamp(20rem, 90vw, 32rem);
	}
	.event-image--quattrophage {
		grid-column: 3/7;
		height: clamp(25rem, 115vw, 43rem);
	}
	.event-image--sahara,
	.event-image--night-music,
	.event-image--homo-luciola,
	.event-image--network {
		grid-column: 1/6;
		height: clamp(20rem, 90vw, 32rem);
	}
	.event-image--pastoral,
	.event-image--improvisation,
	.event-image--feuilleton {
		grid-column: 2/7;
		height: clamp(22rem, 100vw, 36rem);
	}
	.event-image--feuilleton,
	.event-image--network {
		aspect-ratio: 1;
		height: auto;
	}
	.event--shared > time {
		grid-area: 1/1 / auto/3;
	}
	.shared-project {
		grid-column: 2/7;
	}
	.shared-project--alimb {
		grid-row: 2;
	}
	.shared-project--lab {
		grid-row: 3;
		margin-top: 3rem;
	}
	.shared-project .event-main {
		border-left-width: 0.75rem;
		padding-left: 1rem;
	}
	.shared-project .event-main h4 {
		font-size: clamp(2.5rem, 12vw, 4.5rem);
	}
	.event-image--shared {
		border-top-width: 0;
		border-left: 1.2rem solid var(--white);
		height: clamp(17rem, 82vw, 30rem);
		margin-top: 2rem;
	}
	.event-biographies--shared {
		grid-area: 4/2 / auto/7;
		margin-top: 1rem;
	}
	.event-orange-block {
		grid-area: 6/5 / auto/7;
		height: 4.5rem;
		margin: -3rem 0 0;
	}
	.footer {
		row-gap: 3rem;
	}
	.venues-section,
	.institutions-section {
		padding-block: 6rem;
	}
	.institutions-section:before {
		left: calc(var(--gutter) + 16.666%);
		width: 0.75rem;
		height: 23rem;
	}
	.institutions-heading {
		margin-bottom: 3rem;
	}
	.institutions-heading p {
		grid-column: 2/7;
	}
	.institutions-composition {
		row-gap: 4rem;
	}
	.institution {
		row-gap: 2.5rem;
		padding-top: 2rem;
	}
	.institution--city-sonic,
	.institution--transcultures,
	.institution--transonic {
		grid-area: auto/2/auto/7;
		margin-top: 0;
	}
	.institution--city-sonic .institution-logo,
	.institution--transcultures .institution-logo,
	.institution--transonic .institution-logo {
		grid-area: 1/1 / auto/5;
		max-width: 11rem;
		margin-top: 0;
	}
	.institution--city-sonic .institution-content,
	.institution--transcultures .institution-content,
	.institution--transonic .institution-content {
		grid-area: 2/1 / auto/13;
	}
	.credits-section {
		padding-block: 6rem;
	}
	.credits-heading {
		margin-bottom: 4rem;
	}
	.credits-heading p {
		grid-column: 2/7;
	}
	.credits-heading h2 {
		grid-area: 2/2 / auto/7;
		font-size: clamp(4rem, 20vw, 7rem);
	}
	.credits-heading:after {
		grid-area: 3/5;
		margin-top: 1.5rem;
	}
	.credits-composition {
		row-gap: 3.5rem;
	}
	.credits-block,
	.credits-block--projects,
	.credits-block--photos,
	.credits-block--artistic-direction,
	.credits-block--team,
	.credits-block--production,
	.credits-block--coordination,
	.credits-block--thanks {
		grid-area: auto/2/auto/7;
	}
	.venues-section:before {
		left: calc(var(--gutter) + 16.666%);
		width: 0.75rem;
	}
	.venues-heading {
		margin-bottom: 6rem;
	}
	.venues-heading p {
		grid-column: 2/7;
	}
	.venues-heading h2 {
		grid-area: 2/2 / auto/5;
		font-size: clamp(5rem, 28vw, 9rem);
	}
	.venues-heading__mark {
		grid-area: 2/5 / auto/7;
		max-width: 7rem;
	}
	.venues-grid {
		row-gap: 5rem;
	}
	.venue,
	.venue--armande,
	.venue--laveu,
	.venue--serres,
	.venue--overflow,
	.venue--fonck {
		grid-column: 2/7;
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.venue-logo {
		justify-content: flex-start;
	}
	.venue-logo img {
		width: auto;
		max-width: min(11rem, 55vw);
		max-height: 7rem;
	}
	.venue-logo--wide img {
		max-width: min(14rem, 65vw);
		max-height: 4rem;
	}
	.footer p,
	.footer a {
		grid-column: 1/7;
	}
	.footer a {
		justify-self: start;
	}
}
@media (prefers-reduced-motion: reduce) {
	*,
	:before,
	:after {
		scroll-behavior: auto !important;
	}
	.hero-strip img {
		object-position: center center;
		animation: none;
	}
}
