*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  margin-block-end: 0;
}

body {
  min-height: 100vh;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: 0 0;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

iframe {
  border: 0;
}
/**********************

	Fonts

***********************/
/* TITLE FONT */
@font-face {
  font-family: "Bigshot";
  src: url("fonts/BigshotOne-Regular.woff2") format("woff2"),
    url("fonts/BigshotOne-Regular.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* TEXT FONT */
@font-face {
  font-family: "InclusiveSans";
  src: url("fonts/InclusiveSans-Bold.woff2") format("woff2"),
    url("fonts/InclusiveSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "InclusiveSans";
  src: url("fonts/InclusiveSans-BoldItalic.woff2") format("woff2"),
    url("fonts/InclusiveSans-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "InclusiveSans";
  src: url("fonts/InclusiveSans-SemiBold.woff2") format("woff2"),
    url("fonts/InclusiveSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "InclusiveSans";
  src: url("fonts/InclusiveSans-SemiBoldItalic.woff2") format("woff2"),
    url("fonts/InclusiveSans-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "InclusiveSans";
  src: url("fonts/InclusiveSans-Medium.woff2") format("woff2"),
    url("fonts/InclusiveSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "InclusiveSans";
  src: url("fonts/InclusiveSans-MediumItalic.woff2") format("woff2"),
    url("fonts/InclusiveSans-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "InclusiveSans";
  src: url("fonts/InclusiveSans-Regular.woff2") format("woff2"),
    url("fonts/InclusiveSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "InclusiveSans";
  src: url("fonts/InclusiveSans-Italic.woff2") format("woff2"),
    url("fonts/InclusiveSans-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "InclusiveSans";
  src: url("fonts/InclusiveSans-Light.woff2") format("woff2"),
    url("fonts/InclusiveSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "InclusiveSans";
  src: url("fonts/InclusiveSans-LightItalic.woff2") format("woff2"),
    url("fonts/InclusiveSans-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/**********************

	Global vars

***********************/
:root {
  --base0: rgb(8, 8, 8);
  --base01: rgb(27, 27, 27);
  --base100: rgb(255, 255, 255);
  --cream: rgb(255, 255, 233);

  --dark-turquoise: rgb(5, 118, 118);
  --red: rgb(191, 39, 60);

  --darkorange: darkorange;
  --orange: rgb(255, 170, 51);
  --test: darkblue;

  --background: var(--cream);
  --contrast: var(--orange);
  --textcolor: var(--base0);

  --text-padding: 0.3em 0.5em 0.4em;
  --letter-spacing: 0.01em;

  --tiny-margin: calc(var(--small-margin) / 2);
  --small-margin: 18px;
  --med-margin: 48px;
  --big-margin: 72px;

  --p-top-scroll: calc(24px + 4rem);

  --content-left-margin: var(--small-margin);

  --ratio: 21/9;

  font-size: 14px;
  --huge-font-size: calc(1rem + 6vw);
  --title: calc(1rem + 3vw);
  --subtitle: calc(1rem + 2.5vw);
  --base-font-size: calc(1rem + 0.865vw);
  --small-font-size: calc(1rem + 0.185vw);
  --tiny-font-size: 1rem;
  --note: 10px;
}

/**********************

	GLOBAL RULES

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

html,
body {
  margin: 0;
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding: calc(var(--p-top-scroll) - 5px);
}

html {
  font-size: 100%;
}

body {
  background-color: var(--background);
  color: var(--textcolor);
  font-family: "InclusiveSans";
  font-weight: 400;
  font-feature-settings: "ss01";
  text-rendering: geometricPrecision;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: var(--letter-spacing);
  margin: 0;
}

h1 {
  font-weight: 700;
}

p,
li {
  line-height: 1.5;
  letter-spacing: normal;
}

strong {
  font-weight: 700;
}

p + p {
  margin-top: 1em;
}

a {
  display: inline-block;
  color: currentColor;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, padding 0.3s ease;
}

.main li > a,
span > a,
strong > a,
p > a {
  display: inline;
  border-bottom: 0.1em solid currentColor;
}

.main li > a:hover,
span > a:hover,
strong > a:hover,
p > a:hover {
  color: var(--dark-turquoise);
}

blockquote > p::before,
q::before {
  content: "«\0000A0";
}

blockquote > p::after,
q::after {
  content: "\0000A0»";
}

blockquote > p::before,
blockquote > p::after {
  font-weight: 700;
}

blockquote > p > q::before,
blockquote > p > q::after {
  color: var(--dark-turquoise);
}

blockquote p.cit {
  display: block;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  padding-left: 2em;
  margin-top: var(--tiny-margin);
}

mark {
  background-color: var(--contrast);
}

button {
  background-color: transparent;
  padding: 0;
  border-width: 0;
}

ul,
li {
  list-style: none;
  padding: 0;
}

figure {
  display: flex;
  flex-direction: column;
}

figure > img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

figure > figcaption {
  padding-top: var(--tiny-margin);
}

figure > figcaption,
figure > figcaption > p {
  font-size: var(--note) !important;
  line-height: 1.5;
}

.btn {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  background-color: var(--background);
  color: var(--textcolor);
  font-weight: 700;
  font-size: var(--font-size);
  line-height: 1.5;
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  padding: 1em 1.5em;
  border-top-left-radius: 1em;
  border-bottom-right-radius: 1em;
  border-bottom-width: 0;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

.btn:hover {
  padding-right: calc(1em + 18px);
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  height: 10px;
  width: 10px;
  background-image: url("../statics/arrow.svg");
  background-repeat: no-repeat;
  margin-left: 6px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.btn.contrast::after {
  background-image: url("../statics/arrow-bright.svg");
}

.btn:hover::after {
  opacity: 1;
}

/**********************

	  LAYOUTS

***********************/

/**********************

  HEADER /
	MENU - NAVIGATION

***********************/
.main-navigation {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: 75.35px;
  display: flex;
  align-items: center;
  background-color: var(--cream);
  /* padding: 4px 18px; */
  padding: 0 18px;
  overflow: hidden;
  transition: background-color 0.3s ease, border 0.3s ease;
  z-index: 1001;
}

/* .main-navigation.reveal {
  border-bottom: 1px solid currentColor;
} */

.menuButton {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  background-color: var(--cream);
  padding: 6px 0 0;
  border-width: 0;
  cursor: pointer;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  z-index: 1001;
}

.menuButton::before {
  content: "menu";
  position: absolute;
  left: 5%;
  top: 30%;
  color: var(--base0);
  transform: rotate(-31deg) scale(0);
  font-weight: 500;
  transition: transform 0.3s ease, color 0.3s ease;
}

.menuButton:hover::before {
  color: var(--base0);
}

.menuButton.active::before {
  color: var(--red);
}

.menuButton > p {
  font-size: var(--tiny-font-size);
  font-weight: 700;
  line-height: 0.75;
  text-align: left;
  text-transform: uppercase;
}

.menuButton > p > span {
  display: block;
  font-family: "InclusiveSans";
  font-weight: 500;
  line-height: 1.1;
  text-transform: lowercase;
  margin-top: 4px;
}

.menuButton > div {
  position: relative;
  width: 18px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: height 0.2s ease;
}

.menuButton > div > span {
  width: 100%;
  height: 1px;
  background-color: var(--base0);
  border-radius: 1px;
  transform-origin: left top;
  transition: transform 0.5s ease, opacity 0.3s ease, width 0.3s ease;
}

.main-navigation .logo {
  position: relative;
  display: flex;
  flex-shrink: 0;
  width: 100px;
  padding: 0.5em 1em 1em;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.menuButton.active .logo,
.menuButton:hover .logo {
  transform: rotate(5deg);
}

.main-navigation .logo > svg {
  position: relative;
  width: 100%;
  height: 100%;
}

.menuButton .logo > svg path {
  transition: fill 0.3s ease;
}

.menuButton.active .logo > svg path {
  fill: var(--red);
}

/** MENU ANIMATION **/
.menuButton.active::before,
.menuButton:hover::before {
  transform: rotate(-30deg) scale(1);
}

.menuButton.active .logo::before,
.menuButton.active .logo::after,
.menuButton:hover .logo::before,
.menuButton:hover .logo::after {
  width: 8px;
  height: 8px;
}

.menuButton.active .logo::before,
.menuButton:hover .logo::before {
  right: -10px;
  top: 8%;
}

.menuButton.active .logo::after,
.menuButton:hover .logo::after {
  right: -4px;
  top: 45%;
}

.menuButton.active > div,
.menuButton:hover > div {
  height: 12px;
}

.menuButton.active > div > span:nth-child(1),
.menuButton:hover > div > span:nth-child(1) {
  transform: rotate(45deg);
}

.menuButton.active > div > span:nth-child(2),
.menuButton:hover > div > span:nth-child(2) {
  width: 0;
}

.menuButton.active > div > span:nth-child(3),
.menuButton:hover > div > span:nth-child(3) {
  transform: rotate(-45deg) translate(-1.5px, 1px);
}

/** MENU TILES **/
#boxNav {
  --p-top: calc(24px + 3.65rem);
  position: fixed;
  top: var(--p-top);
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--small-margin);
  background-color: var(--cream);
  padding: var(--small-margin) var(--small-margin) var(--big-margin);
  overflow-y: auto;
  opacity: 0;
  translate: none;
  rotate: none;
  scale: none;
  transform: translateY(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 888;
}

#boxNav.reveal {
  opacity: 1;
  transform: translateY(0);
}

#boxNav .right {
  padding-top: var(--small-margin);
}

#boxNav .right .cit {
  max-width: 14ch;
  font-size: calc(1rem + 4vw);
  font-weight: 300;
  line-height: 1.15;
  text-align: center;
  margin: 0 auto;
}

#boxNav .right .cit > q::before,
#boxNav .right .cit > q::after {
  font-weight: 700;
}

#boxNav .left > h1 {
  display: inline-block;
  font-size: var(--subtitle);
  text-transform: uppercase;
  margin-bottom: 1em;
}

#boxNav .left > h1 > span {
  display: block;
  font-size: var(--small-font-size);
  border-bottom: 1px solid currentColor;
}

#home {
  width: 100%;
  align-items: flex-start;
  padding: var(--small-margin) 0;
}

#home svg {
  width: 100%;
  height: auto;
}

#home svg g,
#home svg path {
  fill: var(--red);
}

.menuList > li,
.menuList > li > p {
  position: relative;
}

.main-navigation a,
.main-navigation p.dropdown {
  display: inline-flex;
  align-items: center;
  font-size: var(--tiny-font-size);
  font-weight: 700;
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  padding-top: 1em;
}

.menuList > li > p.dropdown,
.menuList > li > a {
  font-size: var(--small-font-size);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.menuList > li:hover > p.dropdown,
.menuList > li:hover > a {
  color: var(--red);
}

.menuList > li > p.dropdown::before,
.menuList > li > a::before {
  content: "";
  height: 1em;
  width: 0.5em;
  background-color: currentColor;
  margin-right: 1em;
  border-radius: 1em;
}

.menuList p.dropdown {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.menuList > li > p.dropdown::after {
  content: "";
  height: 10px;
  width: 10px;
  background-image: url("../statics/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  transform-origin: 100% 100%;
  transform: rotate(90deg);
}

.menuList > li > p.dropdown.target {
  color: var(--red);
}

.menuList > li > p.dropdown.target::after {
  transform-origin: 100% 0;
  transform: rotate(-90deg);
}

.menuList > li .secondary-nav {
  display: none;
  padding: var(--small-margin);
  z-index: 950;
}

.menuList > li .secondary-nav.show {
  display: block;
}

.menuList > li .secondary-nav > ul > li + li::before {
  content: "";
  height: 1px;
  display: block;
  background-color: var(--base01);
  margin: var(--small-margin) 0;
}

.menuList > li .secondary-nav > ul > li > a {
  font-weight: 500;
}

.menuList > li .secondary-nav > ul > li > a:hover {
  --background: var(--red);
  --textcolor: var(--cream);
}

.menuList > li .secondary-nav > ul > li > a::after {
  background-image: url("../statics/arrow-bright.svg");
}

.menuList > li .secondary-nav > ul > li > a:hover::after {
  opacity: 1;
}

#boxNav figure > img {
  aspect-ratio: 16/10;
  object-fit: cover;
  mix-blend-mode: multiply;
}

/**********************

	FOOTER

***********************/
footer.footer {
  /* background-color: rgb(23, 91, 164);
  background-color: rgb(145, 80, 31); */
  background-color: rgb(191, 39, 60);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--med-margin);
  padding: var(--med-margin) var(--small-margin) var(--big-margin);
}

footer.footer section p.la-cite {
  color: var(--cream);
  font-size: var(--small-font-size);
  margin-bottom: var(--med-margin);
}

footer.footer section h1 {
  display: inline-block;
  color: var(--cream);
  font-weight: 700;
  font-size: var(--small-font-size);
  text-transform: uppercase;
}

footer.footer section ul + h1 {
  margin-top: var(--med-margin);
}

footer.footer section ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--small-margin);
  margin-top: 10px;
}

footer.footer section ul > li > a,
footer.footer section ul > li > p {
  font-weight: 600;
  font-size: var(--tiny-font-size);
  line-height: 1.5;
  padding: 0.4em 0.65em 0.5em;
  border-radius: 4px;
  transition: border-radius 0.3s ease;
}

footer.footer section ul > li > a {
  background-color: var(--cream);
}

footer.footer section ul > li > a:hover {
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 1em;
  border-bottom-right-radius: 1em;
}

footer.footer section ul > li > p {
  color: var(--cream);
  border: 1px solid currentColor;
}

#foot-nav > figure {
  min-width: 280px;
  width: 36%;
  flex-shrink: 0;
  margin: 0 auto;
  filter: drop-shadow(4px 4px 0 var(--cream)) drop-shadow(-4px 4px 0 var(--red));
}

#foot-nav > div {
  margin-top: var(--small-margin);
}

#contact {
  padding-top: var(--med-margin);
  border-top: 2px dotted var(--cream);
}

/**********************

	  CONTENT

***********************/

/** BIG TITLE SECTION **/
.sectionTitle {
  padding: calc(var(--big-margin) + var(--small-margin))
    calc(var(--small-margin) * 2) var(--big-margin);
}

.sectionTitle h1 {
  display: inline-flex;
  align-items: center;
  color: var(--red);
  font-weight: 700;
  font-size: var(--title);
  text-transform: uppercase;
  line-height: 1;
}

.sectionTitle h1::before {
  content: "";
  height: 1em;
  width: 0.5em;
  background-color: currentColor;
  margin-right: 0.5em;
  border-radius: 1em;
}

section#content {
  padding-top: var(--p-top-scroll);
}

/** ARTICLE GLOBAL TEXT RULES **/
.main section > h1,
.main article > h1 {
  display: flex;
  align-items: center;
  color: var(--red);
  font-size: var(--base-font-size);
  text-transform: uppercase;
  margin-bottom: var(--small-margin);
  transition: color 0.3s ease;
}

.main section > * + h1,
.main article > * + h1 {
  margin-top: var(--med-margin);
}

.main section > h1::before,
.main article > h1::before {
  content: "";
  height: 1em;
  width: 0.5em;
  background-color: currentColor;
  margin-right: 0.5em;
  border-radius: 1em;
}

.main section > h1.dropdown,
.main article > h1.dropdown,
.main section > h2.dropdown,
.main article > h2.dropdown {
  color: var(--base0);
  cursor: pointer;
}

.main section > h1.dropdown:hover,
.main article > h1.dropdown:hover,
.main section > h2.dropdown:hover,
.main article > h2.dropdown:hover {
  color: var(--red);
}

.main section > h1.dropdown::after,
.main article > h1.dropdown::after,
.main section > h2.dropdown::after,
.main article > h2.dropdown::after {
  content: "";
  height: 10px;
  width: 10px;
  background-image: url(../statics/arrow.svg);
  background-repeat: no-repeat;
  transform-origin: 100% 100%;
  transform: rotate(90deg);
  background-position: center center;
}

.main section > h1.dropdown.reveal,
.main article > h1.dropdown.reveal,
.main section > h2.dropdown.reveal,
.main article > h2.dropdown.reveal {
  color: var(--red);
}

.main section > h1.dropdown.reveal::after,
.main article > h1.dropdown.reveal::after,
.main section > h2.dropdown.reveal::after,
.main article > h2.dropdown.reveal::after {
  transform-origin: 100% 0;
  transform: rotate(-90deg);
}

.main section > h2,
.main article > h2 {
  display: flex;
  align-items: center;
  color: var(--dark-turquoise);
  font-size: var(--small-font-size);
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 0.125em;
  text-decoration-color: currentColor;
  margin: var(--small-margin) 0;
  transition: color 0.3s ease;
}

.main section > p + h2,
.main article > p + h2,
.main article > ul:not(.credits) + h2 {
  margin-top: var(--med-margin);
}

.main p,
.main li {
  font-size: var(--small-font-size);
}

.main .text li::before {
  content: "•";
  font-weight: 700;
  margin-right: 0.5em;
}

.main p + ul,
.main ul + p,
.main blockquote + p,
.main p + blockquote,
.main blockquote + ul,
.main ul + blockquote,
.main figure + p,
.main p + figure,
.main figure + ul,
.main ul + figure {
  margin-top: var(--small-margin);
}

.main .text blockquote,
.main .text figure {
  padding: var(--small-margin) 0;
}

.main .text blockquote > p {
  font-weight: 300;
  font-size: var(--base-font-size);
  line-height: 1.3;
}

.main figure > img {
  mix-blend-mode: multiply;
}

.main figure > iframe {
  aspect-ratio: 16 / 9;
  border: 0;
}

/* ARTICLE HEADER */
.main .pageTitle {
  position: relative;
  align-items: center;
  color: var(--red);
  font-family: "Bigshot";
  font-weight: 500;
  font-size: calc(1rem + 8.75vw);
  text-transform: none;
  line-height: 0.95;
  margin-bottom: var(--small-margin);
}

.main .pageTitle::before {
  display: none;
}

.main p.subtitle {
  font-weight: 600;
  font-size: var(--small-font-size);
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.main p.subtitle > span {
  color: var(--dark-turquoise);
}

.main p.dates {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--dark-turquoise);
  text-transform: uppercase;
  padding: 0.4em 0.65em 0.5em;
  margin-top: 0;
  margin-bottom: var(--small-margin);
  border: 1px solid currentColor;
  border-radius: 4px;
  z-index: 5;
}

.main p.dates > span {
  display: inline-flex;
  align-items: center;
  margin-right: 6px;
}

.main p.dates svg {
  height: 1.2em;
  width: 1.2em;
}

.main p.dates svg path {
  stroke: var(--dark-turquoise);
}

.main a.more {
  background-color: var(--dark-turquoise);
  color: var(--cream);
  font-weight: 700;
  font-size: var(--tiny-font-size);
  line-height: 1.5;
  padding: 0.4em 0.65em 0.5em;
  border-radius: 4px;
  transition: border-radius 0.3s ease;
}

.main a.more:hover {
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 1em;
  border-bottom-right-radius: 1em;
}

/** Page header **/
header.header {
  position: relative;
  height: 65vh;
  padding: var(--med-margin);
}

header.header.pageHead,
body.artiste header.header {
  --p-top: 120px;
  background-color: var(--red);
  padding: var(--p-top) 40px 40px;
  overflow: hidden;
}

header.header.pageHead {
  min-height: calc(100vh - 75.35px);
  min-height: calc(100svh - 75.35px);
}

body.artiste header.header {
  display: flex;
  align-items: flex-end;
}

header.header.pageHead > figure,
body.evenement header.header > figure,
body.artiste header.header > figure {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

header.header.pageHead > figure > img,
body.evenement header.header > figure > img,
body.artiste header.header > figure > img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
}

body.evenement header.header > figure > img {
  filter: brightness(0.85);
}

header.header > figure > figcaption {
  position: absolute;
  bottom: var(--tiny-margin);
  right: var(--tiny-margin);
  color: var(--cream);
  font-weight: 600;
  font-size: var(--note) !important;
  letter-spacing: var(--letter-spacing);
  text-transform: uppercase;
  padding-top: 0;
}

header.header > h1 {
  position: relative;
  width: 100%;
  color: var(--cream);
  font-family: "Bigshot";
  font-weight: 500;
  font-size: var(--huge-font-size);
  text-transform: none;
  line-height: 0.95;
  margin-bottom: var(--med-margin);
}

header.header > h1 > span {
  max-width: 62ch;
  display: flex;
  align-items: center;
  font-family: "InclusiveSans";
  font-weight: 600;
  font-size: var(--small-font-size);
  line-height: 1.5;
  text-transform: uppercase;
  margin: var(--small-margin) 0 0;
}

header.header.pageHead > h1::after {
  content: "";
  display: block;
  height: 1px;
  width: 50%;
  background-color: var(--cream);
  margin-top: var(--small-margin);
}

header.header.pageHead > .down {
  position: relative;
  display: flex;
  color: var(--background);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing);
}

header.header.pageHead > .down > span {
  height: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: var(--small-margin);
  -webkit-animation: blink 1.3s ease infinite;
  animation: blink 1.3s ease infinite;
}

header.header.pageHead > .down > span > svg {
  transform: rotate(90deg);
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.subpages {
  display: flex;
  flex-wrap: wrap;
  gap: var(--small-margin);
}

.pageNav {
  margin: 0 var(--small-margin);
  padding: var(--med-margin) 0 0;
}

.pageNav > a:hover {
  color: var(--dark-turquoise);
}

.pageNav > a + ul {
  margin-top: var(--small-margin);
}

.pageNav > ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--small-margin);
}

.pageNav > ul > li > a {
  font-size: var(--tiny-font-size);
  font-weight: 700;
  text-transform: uppercase;
  border-bottom-width: 0;
}

.pageNav > ul > li > a:hover {
  color: var(--red);
}

.pageNav > ul > li > .active {
  color: var(--red);
  padding-bottom: 0.5em;
  border-bottom: 2px dotted currentColor;
}

/** Page global section **/
main.main {
  display: block;
  margin-bottom: 148px;
}

body.page main.main {
  margin-bottom: 0;
}

.main section {
  position: relative;
  margin: 0 var(--small-margin);
}

.main section:not(.homeNews) {
  padding: var(--med-margin) 0 0;
}

.main .textHead {
  margin-bottom: var(--small-margin);
}

.main article + article {
  margin-top: var(--med-margin);
}

.main article.text {
  grid-column: 1;
}

.main article.textInsert {
  margin-bottom: var(--med-margin);
}

.main article.references,
.main article.pageGallery {
  grid-column: span 2;
}

.main .textHead::after {
  content: "";
  display: block;
  height: 1px;
  width: 50%;
  background-color: var(--base0);
  margin-top: var(--small-margin);
}

.main .sectionText {
  margin-bottom: var(--med-margin);
}

.main .sectionText > p {
  max-width: 82ch;
}

/** Page text navigation **/
#textSide {
  grid-row: 1;
  grid-column: 2;
  padding-top: var(--p-top-scroll);
}

#textSide p,
#textSide a,
#textSide h1,
#textSide h4 {
  font-size: var(--tiny-font-size);
}

#textSide .sideLinks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--small-margin);
  margin-bottom: var(--med-margin);
}

#textSide .sideLinks .btn {
  --background: var(--dark-turquoise);
  --textcolor: var(--cream);
  --font-size: var(--small-font-size);
}

#textSide .booking::after {
  background-image: url("../statics/arrow-bright.svg");
}

#textSide .booking:hover::after {
  opacity: 1;
}

#textSide h1 {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  font-size: var(--tiny-font-size);
  text-transform: uppercase;
  padding-bottom: 0.5em;
  border-bottom: 2px dotted currentColor;
}

#textSide h1 + h4,
#textSide h1 + p,
#textSide h1 + ul,
#textSide p + h1 {
  margin-top: 1em;
}

#textSide h4 {
  display: flex;
  align-items: center;
  font-weight: 600;
  text-transform: uppercase;
}

#textSide > h4::before {
  content: "";
  position: relative;
  display: inline-block;
  height: 1.2em;
  width: 1.2em;
  background-image: url("../statics/megaphone.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 4px;
}

#textSide h4 + p {
  margin-top: 0;
}

#textSide p + h4,
#textSide ul + h4,
#textSide h4 + h1 {
  margin-top: 1em;
}

#textSide .datesAndPlaces {
  margin-bottom: 1em;
}

#textSide h4.date,
#textSide h4.location {
  display: flex;
  align-items: center;
}

#textSide h4.date > span,
#textSide h4.location > span {
  display: inline-flex;
  align-items: center;
  margin-right: 4px;
}

#textSide h4.date svg,
#textSide h4.location svg {
  height: 1.2em;
  width: 1.2em;
}

#textSide span.scheduleLocation {
  color: var(--dark-turquoise);
}

#textSide ul.documents {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

#textSide a.document {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  background-color: var(--red);
  color: var(--cream);
  font-weight: 700;
  font-size: var(--tiny-font-size);
  text-transform: uppercase;
  padding: 0.4em 0.65em 0.5em;
  border-radius: 4px;
  transition: border-radius 0.3s ease;
}

#textSide a.document:hover {
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 1em;
  border-bottom-right-radius: 1em;
}

#textSide a.document > span {
  font-size: 0.75em;
}

#textSide a.document > svg {
  width: 1.2em;
  height: 1.2em;
}

#textSide a.document > svg path {
  stroke: var(--cream);
}

/** Page bios section **/
ul.bio {
  display: flex;
  flex-wrap: wrap;
  gap: var(--small-margin);
  margin-bottom: var(--med-margin);
}

ul.bio li {
  width: 100%;
}

ul.bio li > a {
  position: relative;
  aspect-ratio: 4/3;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red);
  font-size: var(--tiny-font-size);
  padding: 1em 1.15em 1.1em;
}

ul.bio li > a:hover {
  color: var(--cream);
}

ul.bio li > a > figure {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: multiply;
  overflow: hidden;
}

ul.bio li > a > figure > img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(1);
  transition: transform 1s ease;
}

ul.bio li > a:hover > figure > img {
  transform: scale(125%);
}

ul.bio li > a > h2 {
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
}

ul.bio li > a > h2::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background-color: var(--cream);
  margin-top: var(--tiny-margin);
  transition: width 0.3s ease;
}

ul.bio li > a:hover > h2::after {
  width: 100%;
}

/** Page credits section **/
ul.credits {
  display: none;
  grid-template-columns: 1fr;
  gap: var(--small-margin);
  margin-bottom: var(--med-margin);
}

ul.credits.show {
  display: grid;
}

ul.credits li p {
  font-size: var(--tiny-font-size);
}

ul.credits li p > strong {
  display: block;
  text-transform: uppercase;
}

/** Page gallery section **/

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: var(--small-margin);
  grid-column: span 2;
  margin-bottom: calc(var(--big-margin) + var(--med-margin));
}

.text + .galleryGrid {
  margin-top: calc(var(--big-margin) + var(--med-margin));
}

p + .galleryGrid {
  margin-top: var(--med-margin);
}

.galleryGrid figure {
  grid-column: span 3;
}

/** Tiles component section**/
section.tiles > ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--med-margin);
}

section.tiles > ul > li,
section.tiles > ul a {
  display: flex;
}

section.tiles > ul a {
  position: relative;
  flex-direction: column;
}

section.tiles > ul figure {
  aspect-ratio: 16/9;
  overflow: hidden;
}

section.tiles > ul figure > img {
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

section.tiles .infos {
  flex-grow: 1;
  background-color: var(--red);
  padding: var(--small-margin);
}

section.tiles .infos > h1 {
  color: var(--cream);
  font-family: "Bigshot";
  font-weight: 500;
  font-size: var(--subtitle);
  line-height: 1;
  margin-bottom: var(--small-margin);
}

section.tiles .infos > h1::after {
  content: "";
  display: block;
  height: 1px;
  width: 50%;
  background-color: var(--cream);
}

section.tiles .infos > h1 > span {
  display: block;
  font-family: "InclusiveSans";
  font-weight: 500;
  font-size: var(--small-font-size);
  line-height: 1.5;
  letter-spacing: normal;
  margin: var(--small-margin) 0;
}

section.tiles .infos > p.btn {
  --background: var(--cream);
  --textcolor: var(--base0);
  --font-size: var(--tiny-font-size);
}

section.tiles ul a:hover .infos > p.btn {
  background-color: var(--cream);
  padding-right: calc(1em + 18px);
}

section.tiles ul a:hover .infos > p.btn::after {
  opacity: 1;
}
/** Archives **/
ul.archives {
  justify-items: stretch;
  align-items: stretch;
}

ul.archives > li > a {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  background-color: var(--red);
  color: var(--cream);
  padding: var(--small-margin);
}

ul.archives > li > a > h1 {
  font-size: var(--subtitle);
  font-weight: 700;
  text-transform: uppercase;
}

ul.archives > li > a > .btn {
  font-size: var(--base-font-size);
  margin-top: auto;
  margin-right: auto;
}

ul.archives > li > a:hover {
  color: var(--cream);
}

ul.archives > li > a:hover > .btn {
  padding-right: calc(1em + 18px);
}

ul.archives > li > a:hover > .btn::after {
  opacity: 1;
}

/** Tiles events section**/
section.eventsTiles > ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--med-margin);
}

section.eventsTiles > ul a {
  display: flex;
  flex-direction: column;
  border-bottom-width: 0;
}

section.eventsTiles > ul a > figure {
  position: relative;
  aspect-ratio: 16/9;
  background-color: var(--red);
}

section.eventsTiles > ul a > figure::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-100%, -50%);
  height: 2em;
  width: 2em;
  background-image: url("../statics/arrow-up-right-square.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.3s ease;
}

section.eventsTiles > ul a:hover > figure::after {
  transform: translate(-50%, -50%);
  opacity: 1;
}

section.eventsTiles > ul a > figure > img {
  aspect-ratio: 16/9;
  object-fit: cover;
  mix-blend-mode: normal;
  /* filter: brightness(0.8); */
  transition: filter 0.3s ease;
}

section.eventsTiles.past > ul a > figure > img {
  filter: grayscale(1) brightness(0.8);
  /* transition: filter 0s ease; */
}

section.eventsTiles > ul a:hover > figure > img {
  filter: brightness(0.5);
}

section.eventsTiles.past > ul a:hover > figure > img {
  filter: grayscale(1) brightness(0.5);
}

section.eventsTiles > ul a > figure > figcaption,
section.eventsTiles > ul a > figure > div.tags {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: var(--cream);
}

section.eventsTiles > ul a > figure > figcaption > p,
section.eventsTiles > ul a > figure > div.tags > p {
  font-weight: 700;
  font-size: var(--note) !important;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing);
}

section.eventsTiles > ul .infos {
  padding: 0 10px;
}

section.eventsTiles > ul .infos > h1 {
  color: var(--red);
  font-family: "Bigshot";
  font-weight: 500;
  font-size: var(--subtitle);
  line-height: 1;
  margin: var(--tiny-margin) 0 0.15em;
}

section.eventsTiles.past > ul .infos > h1 {
  color: var(--textcolor);
}

section.eventsTiles > ul .infos > p {
  color: var(--dark-turquoise);
  font-size: var(--tiny-font-size);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing);
}

section.eventsTiles.past > ul .infos > p {
  color: var(--textcolor);
}

/**** STRIKE ****/
.strike {
  --p-top: 120px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--red);
  color: var(--cream);
  padding: var(--p-top) 40px 40px;
  overflow: hidden;
  z-index: 1001;
}

.strike h1 {
  position: relative;
  font-size: var(--subtitle);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: var(--med-margin);
}

.strike h1::after {
  content: "";
  display: block;
  height: 1px;
  width: 50%;
  background-color: var(--cream);
  margin-top: var(--small-margin);
}

.strike p {
  max-width: 82ch;
}

/**********************

	RESPONSIVE

***********************/
@media screen and (min-width: 375px) {
}

@media screen and (min-width: 580px) {
}

@media screen and (min-width: 768px) {
  .main-navigation {
    padding: 0 var(--med-margin);
  }

  #boxNav {
    padding: var(--small-margin) var(--med-margin) var(--big-margin);
  }

  footer.footer {
    padding: var(--med-margin) var(--med-margin) var(--big-margin);
  }

  #foot-nav {
    display: flex;
  }

  #foot-nav > figure {
    margin: 0;
  }

  #foot-nav > div {
    flex-grow: 1;
    padding-left: var(--small-margin);
    margin-top: 0;
  }

  .sectionTitle {
    padding: calc(var(--med-margin) * 2) calc(var(--med-margin) * 2)
      var(--big-margin);
  }

  .main section {
    margin: 0 var(--med-margin);
  }

  .main section:not(.homeNews) {
    padding: var(--med-margin) 0 var(--small-margin);
  }

  header.header.pageHead {
    padding: var(--p-top) 15% 40px;
  }

  .pageNav {
    margin: 0 var(--med-margin);
    padding: var(--med-margin) 0 var(--small-margin);
  }

  ul.bio {
    gap: var(--med-margin);
  }

  ul.bio li {
    width: calc(50% - 24px);
  }

  ul.bio li > a {
    width: 100%;
  }

  ul.credits {
    grid-template-columns: repeat(2, 1fr);
  }

  .galleryGrid {
    grid-gap: var(--med-margin);
  }

  section.tiles > ul {
    grid-template-columns: repeat(2, 1fr);
  }

  section.tiles .infos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  section.tiles .infos > p.btn {
    margin-top: auto;
  }

  section.eventsTiles > ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .calendar a > p.date {
    font-size: var(--small-font-size);
  }

  .strike {
    padding: var(--p-top) 15% 40px;
  }
}

@media screen and (min-width: 1024px) {
  :root {
    --note: 12px;
  }

  #boxNav {
    grid-template-columns: 1fr 60%;
    gap: var(--big-margin);
  }

  #boxNav .right {
    padding-top: var(--big-margin);
  }

  #home > svg {
    height: 25vw;
  }

  .subpages {
    gap: var(--med-margin);
  }

  .main section.grid-2 {
    display: grid;
    grid-template-columns: 1fr 30%;
    gap: var(--med-margin);
  }

  .main section.grid-2 > .textInsert {
    grid-column: 1 / span 1;
    margin-bottom: 0;
  }

  .main .pageTitle {
    font-size: var(--huge-font-size);
  }

  .main a.more {
    display: none;
  }

  .main .text blockquote,
  .main .text figure {
    padding: var(--med-margin) 0;
  }

  .main article + article {
    margin-top: 0;
  }

  #textSide {
    font-size: var(--tiny-font-size);
    margin-top: calc(1rem + 3vw);
    padding-top: 0;
  }

  ul.bio li {
    width: calc(33% - 28px);
  }

  section.eventsTiles > ul {
    grid-template-columns: repeat(3, 1fr);
  }

  section.eventsTiles > ul .infos > h1 {
    font-size: var(--base-font-size);
  }
}

@media screen and (min-width: 1366px) {
  blockquote p.cit {
    font-size: var(--tiny-font-size);
  }

  figure > figcaption,
  figure > figcaption > p {
    font-size: var(--tiny-font-size) !important;
  }

  footer.footer {
    grid-template-columns: 2fr 1fr;
  }

  #contact {
    padding-top: 0;
    padding-left: var(--med-margin);
    border-top: 0;
    border-left: 2px dotted var(--cream);
  }

  .pageNav {
    padding: var(--med-margin) var(--big-margin) var(--small-margin);
  }

  .main section.grid-2 {
    display: grid;
    grid-template-columns: 1fr 35%;
    gap: var(--med-margin);
  }

  .main section:not(.homeNews) {
    padding: var(--med-margin) var(--big-margin) var(--small-margin);
  }

  .galleryGrid {
    grid-template-columns: repeat(20, 1fr);
    margin-bottom: 0;
  }

  .galleryGrid figure {
    grid-column: 13 / span 8;
  }

  .galleryGrid figure:nth-child(2n) {
    grid-column: 8 / span 13;
    margin-top: var(--med-margin);
  }

  .galleryGrid figure:nth-child(3n) {
    grid-column: 1 / span 6;
    margin-top: var(--med-margin);
  }

  .galleryGrid figure:nth-child(5n) {
    grid-column: 1 / span 10;
    margin-top: var(--med-margin);
    margin-bottom: var(--med-margin);
  }

  .galleryGrid figure:first-child {
    grid-column: 1 / span 10;
  }

  .galleryGrid figure:nth-child(2) {
    grid-column: 12 / span 6;
    margin-top: var(--big-margin);
  }

  section.tiles .infos {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    background-color: var(--red);
    padding: 36px;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  section.tiles ul a:hover > .infos {
    opacity: 1;
  }

  section.tiles .infos > p.btn {
    margin-top: 0;
  }
}

@media screen and (min-width: 1920px) {
  section.tiles .infos {
    padding: 10%;
  }

  #foot-nav > figure {
    width: 480px;
  }
}
