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

@font-face {
  font-family: 'Neue Haas Unica';
  src: url('../fonts/NeueHaasUnica-Regular.woff2') format('woff2'),
       url('../fonts/NeueHaasUnica-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Unica';
  src: url('../fonts/NeueHaasUnica-Italic.woff2') format('woff2'),
       url('../fonts/NeueHaasUnica-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Unica';
  src: url('../fonts/NeueHaasUnica-Medium.woff2') format('woff2'),
       url('../fonts/NeueHaasUnica-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Unica';
  src: url('../fonts/NeueHaasUnica-MediumItalic.woff2') format('woff2'),
       url('../fonts/NeueHaasUnica-MediumItalic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Unica';
  src: url('../fonts/NeueHaasUnica-Bold.woff2') format('woff2'),
       url('../fonts/NeueHaasUnica-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Unica';
  src: url('../fonts/NeueHaasUnica-BoldItalic.woff2') format('woff2'),
       url('../fonts/NeueHaasUnica-BoldItalic.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Unica';
  src: url('../fonts/NeueHaasUnica-ExtraBold.woff2') format('woff2'),
       url('../fonts/NeueHaasUnica-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-black: #000;
  --color-sigrid: #7a20c8;
  --padding-global: 2rem;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Neue Haas Unica', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-black);
  background-color: #fff;
}

.layout {
  display: flex;
  position: relative;
}

main {
  display: flex;
  justify-content: center;
  flex: 1;
  padding: var(--padding-global) 4rem 15rem var(--padding-global);
}

.main--cat-sigrid {
  color: var(--color-sigrid);
}

h1, h2, h3, h4 {
  font-weight: normal;
  font-style: normal;
  font-size: inherit;
}

a {
  text-decoration: none;
}

a:link, a:visited {
  color: inherit;
}

p {
  padding-bottom: 1em;
}

ul, li {
  list-style-type: none;
}

img {
  vertical-align: middle;
}

.title--page {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.9;
  padding-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.title--list {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.logo {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
  text-align: right;
  padding: var(--padding-global);
  padding-left: 14rem;
  padding-right: 3rem;
  pointer-events: none;
}

.logo--misschiefs img {
  max-width: 45rem;
}

.logo--sigrid img {
  max-width: 60rem;
}

@media all and (max-width: 55rem) {
  main {
    padding-left: 0.2rem;
  }
  .logo {
    padding-left: 11.7rem;
  }
}
@media all and (max-width: 50rem) {
  main {
    padding: calc(var(--padding-global) + 1rem) var(--padding-global) 15rem var(--padding-global);
  }
  .logo {
    padding: var(--padding-global);
  }
  .title--page {
    font-size: clamp(1.7rem, 7vw, 5rem);
    padding-right: calc(3rem + var(--padding-global));
  }
}
@media all and (max-width: 30rem) {
  :root {
    --padding-global: 1rem;
  }
  main {
    padding-bottom: 10rem;
  }
  .title--page {
    line-height: 1;
  }
}

/* Menu */

.menu {
  position: sticky;
  top: 0;
  height: 100vh;
}

.menu nav {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: var(--padding-global);
  padding: var(--padding-global);
  overflow: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu nav::-webkit-scrollbar {
  display: none;
}

.menu__ul--misschiefs {
  padding-bottom: var(--padding-global);
}

.menu__ul--sigrid,
.menu__ul--bottom-sigrid {
  color: var(--color-sigrid);
}

.menu__ul--misschiefs.menu__ul--secondary a,
.menu__ul--misschiefs.menu__ul--secondary .menu__title {
  opacity: 0.3;
}

.menu__ul--sigrid.menu__ul--secondary a,
.menu__ul--sigrid.menu__ul--secondary .menu__title {
  opacity: 0.5;
}

.menu__ul--secondary a:hover,
.menu__ul--secondary:has(a:hover) .menu__title{
  opacity: 1;
}

.menu__ul--bottom {
  padding-top: ;
}

.menu__title {
  font-weight: 700;
  pointer-events: none;
}

.menu a:hover,
.menu a.active {
  text-decoration: underline;
  text-decoration-skip-ink: auto;
}

.menu__ul li.soon {
  white-space: nowrap;
}

.menu__ul li.soon a {
  position: relative;
}

.menu__ul li.soon a::after {
  content: "soon";
  margin-left: 0.5rem;
  opacity: 0;
  font-size: 0.8rem;
  text-decoration: none;
  display: inline-block;
}

.menu__ul li.soon:hover a::after {
  opacity: 1;
}

.burger-mobile {
  display: none;
  position: fixed;
  top: var(--padding-global);
  right: var(--padding-global);
  cursor: pointer;
  z-index: 1;
}

.burger-mobile svg {
  width: 3rem;
  fill: var(--color-black);
}

.burger-mobile--sigrid svg {
  fill: var(--color-sigrid);
}

.cross-mobile {
  display: none;
  position: fixed;
  top: var(--padding-global);
  right: var(--padding-global);
  cursor: pointer;
}

.cross-mobile svg {
  width: 2.6rem;
  fill: var(--color-black);
}

.cross-mobile--sigrid svg {
  fill: var(--color-sigrid);
}

@media all and (max-width: 50rem) {
  .menu {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: white;
    z-index: 150;
  }
  .menu.active {
    display: block;
  }
  .menu nav {
    height: 100vh;
    height: 100dvh;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    row-gap: 3rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    font-size: 1.5rem;
    text-transform: uppercase;
  }
  .menu__ul--misschiefs {
    padding-bottom: 3rem;
  }
  .menu__ul li.soon a::after {
    opacity: 1;
    font-size: 0.8rem;
  }
  .burger-mobile {
    display: block;
  }
  .cross-mobile {
    display: block;
  }
}
@media all and (max-width: 30rem) {
  .burger-mobile svg {
    width: 2.3rem;
  }
  .cross-mobile svg {
    width: 2rem;
  }
}
@media all and (max-width: 25rem) {
  .menu nav {
    font-size: 1.3rem;
  }
}

/* Home */

.main--home {
  height: 100vh;
  height: 100dvh;
  padding: var(--padding-global) var(--padding-global) var(--padding-global) 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-home img {
  max-width: 100%;
  max-height: calc(100vh - (var(--padding-global) * 2));
  max-height: calc(100dvh - (var(--padding-global) * 2));
}

@media all and (max-width: 50rem) {
  .main--home {
    padding: var(--padding-global);
  }
  .content-home img {
    padding: 4.5rem 0;
  }
}
@media all and (max-width: 30rem) {
  .content-home img {
    padding: 3rem 0;
  }
}

/* Content */

.content {
  width: 100%;
  max-width: 60rem;
}

.content--default h1 {
  padding-bottom: 1rem;
}

.content-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
  row-gap: 3rem;
}

.content-block--large {
  grid-column: 1 / -1;
}

.content-block--text h2 {
  font-size: clamp(1.5rem, 6vw, 2rem);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-bottom: 1rem;
}

.content-block--text p {
  max-width: 45rem;
}

.content-block--text p a {
  text-decoration: underline;
}

.content-block--image figure {
  display: inline-block;
  padding-bottom: 1rem;
}

.content-block--image img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - (2 * var(--padding-global)));
  padding-bottom: 0.5rem;
}

.content-block--image figcaption {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 1rem;
}

.content-block--image span.caption {
  font-size: 0.9rem;
}

.content-block--image span.copyright {
  font-size: 0.6rem;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-bottom: 5rem;
}

.image-gallery__image {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 0.1rem solid white;
  background-color: #efefef;
  cursor: zoom-in;
}

.image-gallery__image:hover {
  border-color: black;
}

.image-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.image-gallery__image--video img {
  object-fit: cover;
}

.image-gallery__image--video .video-play {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-gallery__image--video .video-play svg {
  width: 20%;
  fill: white;
}

.image-gallery__zoom {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: grayscale(100%);
  -webkit-backdrop-filter: grayscale(100%);
  cursor: zoom-out;
  padding: var(--padding-global);
  z-index: 200;
}

.image-gallery__zoom.is-active {
  display: flex;
}

.image-gallery__zoom img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  min-height: 0;
}

.image-gallery__zoom iframe {
  display: block;
  width: 100%;
  max-width: 60rem;
  height: auto;
  aspect-ratio: 16 / 9;
}

.image-gallery__caption {
  padding-top: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

@media all and (max-width: 64rem) {
  .content-blocks {
    grid-template-columns: 1fr;
  }
  .image-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 37rem) {
  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Artists */

.artists-grid {
  
}

.artists-grid--sigrid {
  
}

.artists-group {
  padding-bottom: 2rem;
}

.artists-group--sigrid {
  padding-bottom: 2.5rem;
}

.artists-letter {
  text-transform: uppercase;
  padding-bottom: 1rem;
}

.artists-item {
  padding-bottom: 0.5rem;
}

.artists-item__activity {
  display: none;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

.artists-item a:hover + .artists-item__activity {
  display: inline;
}

/* Artist - Exhibition */

.content--artist h1,
.content--exhibition h1 {
  padding-bottom: 0rem;
}

.content--artist h2,
.content--artist h3,
.content--exhibition .subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  padding-bottom: 0.3rem;
}

.content--exhibition .subtitle {
  text-transform: none;
  line-height: 1.3;
}

.artist-presentation,
.exhibition-presentation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.artist-presentation--landscape,
.exhibition-presentation--landscape {
  grid-template-columns: repeat(1, 1fr);
  max-width: 40rem;
}

.artist-presentation img,
.exhibition-presentation img {
  max-width: 100%;
  max-height: calc(100vh - (2 * var(--padding-global)));
}

.artist-presentation__text,
.exhibition-presentation__text {
  line-height: 1.45;
}

.artist-presentation__text .text,
.exhibition-presentation__text .text {
  padding-bottom: 1rem;
}

.exhibition-presentation__text .artists {
  padding-bottom: 1.5rem;
}

.exhibition-presentation__text .artists li {
  padding-bottom: 0.4rem;
}

.exhibition-presentation__text .artists li a:hover {
  text-decoration: underline;
}

.artist-presentation__links {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
  text-transform: uppercase;
  padding-bottom: 2rem;
}

.artist-presentation__links a:hover {
  text-decoration: underline;
}

.artist-exhibitions .title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding-bottom: 1rem;
}

.artist-exhibitions__exhibitions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.artist-exhibitions__exhibition img {
  width: 100%;
  display: block;
  margin-bottom: 0.5rem;
}

.artist-exhibitions__exhibition .image:hover + .name,
.artist-exhibitions__exhibition .name:hover {
  text-decoration: underline;
}

@media all and (max-width: 64rem) {
  .artist-presentation,
  .exhibition-presentation {
    grid-template-columns: 1fr;
  }
  .artist-exhibitions__exhibitions {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 37rem) {
  .artist-exhibitions__exhibitions {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Exhibitions */

.content--exhibitions h1 {
  padding-bottom: 1rem;
}

.intro-exhibitions {
  max-width: 45rem;
  padding-bottom: 3rem;
}

.featured-exhibitions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.5rem;
  row-gap: 2rem;
  padding-bottom: 4rem;
}

.featured-exhibitions__exhibition {
  max-width: ;
}

.featured-exhibitions__exhibition .image:hover + .title--list,
.featured-exhibitions__exhibition .title--list:hover {
  text-decoration: underline;
}

.featured-exhibitions__exhibition img {
  max-width: 100%;
  max-height: calc(100vh - (2 * var(--padding-global)));
  display: block;
  margin-bottom: 0.8rem;
}

.featured-exhibitions__exhibition span {
  font-weight: 700;
  line-height: 1;
}

.text-exhibitions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3rem;
  row-gap: 1rem;
  padding-bottom: 4rem;
}

.text-exhibitions h2 {
  font-size: clamp(1.5rem, 6vw, 2rem);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 1rem 0 1rem 0;
}

.exhibitions-group {
  padding-bottom: 1.5rem;
}

.exhibitions-year {
  padding-bottom: 1rem;
}

.exhibitions-item {
  padding-bottom: 0.5rem;
}

.exhibitions-item__city {
  display: none;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

.exhibitions-item a:hover + .exhibitions-item__city {
  display: inline;
}

@media all and (max-width: 64rem) {
  .featured-exhibitions {
    grid-template-columns: repeat(2, 1fr);
  }
  .text-exhibitions {
    grid-template-columns: 1fr;
  }
}
@media all and (max-width: 30rem) {
  .featured-exhibitions {
    
  }
}

/* Open call */

.content--open-call .text {
  padding-bottom: 3rem;
}

.content--open-call .text p {
  max-width: 45rem;
}

.uniform__potty {
  position: absolute;
  left: -9999px;
}

.form-open-call {
  scroll-margin-top: var(--padding-global);
}

.form-open-call h2 {
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding-bottom: 1rem;
}

.form-open-call .message {
  padding-bottom: 2rem;
}

.form-open-call .message--success {
  color: green;
}

.form-open-call .message--error {
  color: red;
}

.form-open-call form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 1.5rem;
  max-width: 50rem;
}

.form-open-call input {
  display: block;
  border: 1px solid var(--color-sigrid);
  border-radius: 0;
  background-color: white;
  padding: 0.5rem 0.8rem;
  width: 100%;
  color: var(--color-sigrid);
  font-family: 'Neue Haas Unica', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.form-open-call input::placeholder {
  color: color-mix(in srgb, var(--color-sigrid) 40%, transparent);
}

.form-open-call .form-file {
  grid-column: 1 / -1;
}

.form-open-call .form-file input {
  border: 0;
  padding: 0;
  font-family: 'Neue Haas Unica', sans-serif;
  font-size: 0.9rem;
}

.form-open-call .form-file input::file-selector-button {
  border: 1px solid var(--color-sigrid);
  border-radius: 0;
  background-color: white;
  color: var(--color-sigrid);
  padding: 0.3rem 0.5rem;
  margin-right: 1rem;
  cursor: pointer;
}

.form-open-call .form-file input::file-selector-button:hover {
  background-color: var(--color-sigrid);
  color: white;
}

.form-open-call .form-info {
  font-size: 0.7rem;
  padding: 0.5rem 0 0 0;
}

.form-open-call .submit-btn {
  max-width: 7rem;
  margin-top: 0.8rem;
  cursor: pointer;
  color: white;
  background-color: var(--color-sigrid);
}

.form-open-call .submit-btn:hover {
  color: var(--color-sigrid);
  background-color: white;
}

@media all and (max-width: 37rem) {
  .form-open-call form {
    grid-template-columns: 1fr;
  }
}

/* Jury */

.jury-member {
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
}

.jury-member .image {
  width: 100%;
  max-width: 10rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.jury-member .image img {
  width: 100%;
  display: block;
  filter: grayscale(100%) contrast(120%);
}

.jury-member .image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-sigrid);
  mix-blend-mode: screen;
  pointer-events: none;
}

.jury-member .image img::after {
  background: var(--color-sigrid);
  mix-blend-mode: screen;
}

.jury-member figcaption {
  font-size: 0.6rem;
  padding-top: 0.2rem;
}

.jury-member__name {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.jury-member p {
  max-width: 40rem;
}

.jury-member__links {
  font-size: 1.rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 1em;
}

.jury-member__links a:hover {
  text-decoration: underline;
}

@media all and (max-width: 37rem) {
  .jury-member {
    display: block;
  }
}

/* Contact */

.content--contact .text {
  max-width: 45rem;
}

.content--contact .text a {
  text-decoration: underline;
}

/* Press */

.press-list li {
  padding-bottom: 0.5rem;
}

.press-list li a:hover .press-list__text {
  text-decoration: underline;
}

.press-list__date  {
  padding-right: 1rem;
}

.press-list__text {
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Legal */

.legal-item {
  padding-bottom: 1.5rem;
  max-width: 45rem;
}

.legal-item h2 {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
}

.legal-item a {
  text-decoration: underline;
}
