/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    color: inherit;
    text-decoration-line: underline;
    text-decoration-thickness: 6.25%;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-underline-position: auto;
    text-underline-offset: 0.15em;
}
@media (hover: hover) {
    a:hover {
        color: var(--blue);
    }
}
a.no-hover,
a.no-hover:hover {
    text-decoration: none !important;
}
.no-link {
    cursor: default;
}
a[target="_blank"]:after {
    /*content:' [+]';
    vertical-align: top;*/
}
p, ol, ul {
    margin-bottom: 0.5em;
    max-width: 40em;
}
p:last-of-type, ol:last-of-type, ul:last-of-type {
    margin-bottom: 0;
}
ol, ul {
    padding-left: 1.5em;
}
ol {
    list-style: decimal;
}
ul {
    list-style: disc;
}
ol p, ul p {
    margin-bottom: 0;
}
em {
    font-style: italic;
}
button {
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: var(--linkcolor);
    cursor: pointer;
}




@font-face {
    font-family: 'dr';
    src: url('../fonts/DrWeb-Medium.woff2') format('woff2');
    font-weight:  500;
    font-style:   normal;
    font-stretch: normal;
    font-display: swap;
}
@font-face {
    font-family: 'dr';
    src: url('../fonts/DrWeb-MediumItalic.woff2') format('woff2');
    font-weight:  500;
    font-style:   italic;
    font-stretch: normal;
    font-display: swap;
}

:root {
    --sidemargin: 6vmin;
    --margintop: calc(var(--sidemargin) + var(--type-m) + var(--gap-xs));

    --gap-s: 3vmin;
    --gap-xs: 1.5vmin;

    --sidewidth: calc(var(--type-s) * 6 + var(--sidemargin) * 2);
    
    --lineheight: 0.08em;
    
    --type-xxs: calc(var(--type-xs) * 0.75);
    --type-xs: 2vmin;
    --type-s: 2.5vmin;
    --type-m: 4vmin;
    --type-l: 8vmin;
    --type-xl: 12vmin;
    --type-xxl: calc((100vw - var(--sidemargin) * 2 ) * 0.54);

    --white: #FFFFFF;
    --black: #171717;
    --blue: #0080E0;
}

/** {
    --white: #FFFFFF;
    --black: #171717;
    --blue: #0080E0;
}*/

html {
    overflow: hidden;
	scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    font-family: dr;
    font-size: var(--type-s);
    line-height: 1.2;
    color: var(--white);

    text-rendering: geometricprecision;
    -webkit-font-smoothing: antialiased;
}

/*STYLES*/

.blue {
    color: var(--blue)
}
.black {
    color: var(--black)
}
.scrollv {
    height: 100svh;
    width: 100vw;
    overflow-x: hidden;
    position: relative;
}
.scrollh {
    height: 100svh;
    width: auto;
    overflow-y: hidden;
    position: relative;
}
.flex-h, .flex-v {
    display: flex;
}
.flex-h {
    flex-direction: row;
}
.flex-v {
    flex-direction: column;
}
.flex-start {
    align-items: flex-start;
}
.flex-end {
    align-items: flex-end;
}
.justify {
    justify-content: space-between;
}
.gap {
    gap: var(--gap-s);
}
.gap-xs {
    gap: var(--gap-xs);
}
.gap-xl {
    gap: var(--type-xl);
}
.margins {
    padding: var(--sidemargin);
    /*margin-right: var(--sidewidth);*/
}
.margins-h {
    padding-left: var(--sidemargin);
    padding-right: var(--sidemargin);
}
.margin-top {
    padding-top: var(--margintop);
}

/*NAVIGATION*/

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

#header-logo {
    position: fixed;
    bottom: var(--sidemargin);
}
#header-logo svg {
    width: 6em;
    height: auto;
}

nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: right;
    padding: var(--sidemargin);
}
nav a {
    color: var(--blue);
    text-decoration: none;
}
nav a.active {
    color: var(--white);
    text-decoration: none;
}
@media screen and (hover: hover) {
    nav a:hover {
        color: var(--white);
        text-decoration: none;
    }
}

/*INTRODUCTION*/

#intro-logo {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}
.enter #intro-logo {
    transform: translateX(-100%);
}
#intro-logo svg {
    width: 25%;
    min-width: 200px;
    max-width: 400px;
    height: auto;
}
/*.loading main {
    transform: translateX(100%);
}
.enter main {
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
}*/

/*404*/

#error-title {
    overflow: hidden;
    color: var(--blue);
    font-size: 44vw;
    line-height: 0.9;
    text-transform: lowercase;
}

/*TYPE*/

h1, h2, h3, h4 {
    margin-bottom: 0.25em !important
}
h1, h2, h3, h4, p, ol, ul {
}

.type-xxl {
    font-size: var(--type-xxl);
    line-height: 0.8;
    text-transform: lowercase;
    margin-left: calc(var(--type-xxl) * -0.04);
    margin-right: calc(var(--type-xxl) * -0.04);
    margin-top: calc(var(--type-xxl) * -0.15);
}
.type-xxl p,
.type-xl p,
.type-l p,
.type-m p {
    max-width: none;
}
.type-xl {
    font-size: var(--type-xl);
    line-height: 0.9;
    text-transform: lowercase;
    /*margin-top: -0.1em;*/
    /*max-width: calc(100vw - var(--sidemargin) - 15rem);*/
}
.type-l {
    font-size: var(--type-l);
    line-height: 0.9;
    text-transform: lowercase;
    margin-top: -0.1em;
}
.type-m {
    font-size: var(--type-m);
    line-height: 0.9;
    text-transform: lowercase;
}
.type-s {
    font-size: var(--type-s);
}
.type-xs {
    font-size: var(--type-xs);
}
.type-xxs {
    font-size: var(--type-xxs);
}
.lowercase {
    text-transform: lowercase;
}

/*LINKS*/

.type-xl a {
    text-decoration: none
}
.type-xl a:after {
    content: attr(title);
    font-size: var(--type-xs);
    position: absolute;
    display: inline-block;
    text-transform: lowercase;
    line-height: 0.9;
    text-decoration: none;
    padding: 0.3em 0.75em 0.5em;
    color: inherit;
    border: var(--lineheight) solid;
    border-radius: 1.5em;
    visibility: hidden;
    margin-top: calc(var(--type-xl) * 0.2);
    margin-left: calc(var(--type-xl) * 0.2);
}
a:not([title]):after {
    content: none;
}
@media (hover: hover) {
    .type-xl a:hover:after {
        visibility: visible;
    }
}
@media (hover: hover) {
    .type-xl a:hover {
        color: var(--white);
        text-decoration-line: underline;
        text-decoration-thickness: 1.5%;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-underline-position: auto;
        text-underline-offset: 0.075em;
    }
}

/*BUTTONS*/

.button {
    display: inline-block;
    text-transform: lowercase;
    line-height: 0.9;
    text-decoration: none;
    padding: 0.3em 0.75em 0.6em;
    color: inherit;
    border: var(--lineheight) solid currentColor;
    border-radius: 1.5em;
}
.button svg {
    display: inline;
    height: 0.8em;
    width: auto;
    margin-right: 0.15em;
}
.button svg path {
    fill: currentColor;
}
@media (hover: hover) {
    .button:hover {
        color: var(--black);
        background-color: var(--white);
        border-color: var(--white);
    }
    [data-block="release"] .button:hover {
        color: var(--white);
        background-color: var(--black);
        border-color: var(--black);
    }
    .button:hover svg path {
        fill: var(--black);
    }
}
#burger, #close {
    cursor: pointer;
}
#back {
    position: fixed;
    z-index: 999;
    top: calc(var(--sidemargin) * 0.75);
    left: var(--sidemargin);
    color: var(--white);
    mix-blend-mode: difference;
    text-decoration: none;
}
#back svg {
    height: 0.65em;
    width: auto;
    margin-right: 0.5em;
}
#back:hover {
    mix-blend-mode: normal;
    color: var(--blue);
}
#back:hover svg path {
    stroke: var(--blue);
}

/*MEDIAS*/

img, video {
    display: block;
}
.video-player {
    position: relative;
}
#showreel .video-player {
    width: 100%;
    max-width: 40em;
    height: auto;
}
#showreel .video-player video {
    width: 100%;
    height: auto;
}
.poster {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}
/*.video-player:fullscreen {
    color: var(--white)
}
.video-player:-webkit-full-screen {
    color: var(--white)
}
.video-player:-moz-full-screen {
    color: var(--white)
}
.video-player:fullscreen .poster {
    display: none;
}
.video-player:-webkit-full-screen .poster {
    display: none;
}
.video-player:-moz-full-screen .poster {
    display: none;
}
.video-player:-webkit-full-screen video {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    object-position: center;
}
.video-player:fullscreen video {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    object-position: center;
}
.video-player:-moz-full-screen video {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    object-position: center;
}*/

/*ARTISTS LIST*/

.artists-list {
    padding-bottom: 0.1em;
    margin: 0;
}
.artist-link {
    color: inherit;
    overflow: hidden;
    opacity: 1;
    /*background-color: red;*/
}
.list-hover .section > * {
    opacity: 0.4;
}
.list-hover .artist-link {
    color: var(--blue);
}
.list-hover .artist-link.active {
    color: var(--white);
    opacity: 1;
}
@media (hover: hover) {
    .artist-link.list-hover:hover {
        color: var(--white);
        opacity: 1;
    }
}
.artist-link a {
    color: inherit !important;
}
.artist-link::before {
    content: '';
    display: block;
    height: 0;
    margin-top: -0.15em;
}
.artist-link::after {
    content: '';
    display: block;
    height: 0.15em;
}

/*HOVER IMAGES*/

.hoverimages {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: var(--black);
}
.hoverimages > div {
    /*display: none;*/
    visibility: hidden;
    opacity: 0;
    mix-blend-mode: screen;
    background: var(--blue);
}
.hoverimages > div img {
    mix-blend-mode: multiply;
}
.hoverimages > div.show {
    visibility: visible;
    opacity: 1;
}
.hoverimages .current-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.hoverimages .past-image {
    position: absolute;
    max-width: 50vw;
    max-height: 75svh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    clip-path: inset(1px 1px);
}
.hoverimages img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*HOME SECTIONS*/

#home section, #home .section {
    width: calc(100vw - var(--sidewidth) - var(--sidemargin));
}
#home section.full {
    width: 100%;
}
.team-list {
    list-style: none;
    padding: 0;
}
.people {
    color: inherit;
    padding: 0.4em 0 0.6em;
    border-top: var(--lineheight) solid currentColor;
    display: grid;
    grid-template-columns: 10em auto;
    column-gap: 1em;
    text-transform: lowercase;
}
.people span:nth-child(2):before {
    content: '•';
    position: absolute;
    margin-left: -1em;
}

/*BLOG*/

#blog-title {
    position: sticky;
    top: calc(var(--type-xxl) * -0.5);
    overflow: hidden;
}
#blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--sidemargin);
    align-items: flex-start;
}
.blog-image {
    height: auto;
}
.blog-image[data-orientation="landscape"] {
    width: 95%;
}
.blog-image[data-orientation="square"] {
    width: 85%;
}
.blog-image[data-orientation="portrait"] {
    width: 60%;
}
.blog-image:nth-of-type(2n) {
    justify-self: center;
    margin-top: 10vw;
}
.blog-image:nth-of-type(3n+1) {
    justify-self: left;
}
.blog-image:nth-of-type(3n) {
    grid-column-end: span 2;
    justify-self: center;
    width: 60%;
}
.blog-image:nth-of-type(3n)[data-orientation="portrait"] {
    width: 40%;
}
.blog-image:nth-of-type(3n+2) {
    justify-self: right;
}
.blog-image:nth-of-type(2n) {
    transform: translateX(calc(var(--sidemargin) * 1))
}
.blog-image:nth-of-type(2n+5) {
    transform: translateX(calc(var(--sidemargin) * -1))
}
.blog-image figure {
    background: #FFFFFF;
    will-change: background-color, opacity;
}
.blog-image figcaption {
    position: relative;
    z-index: -1;
    font-size: var(--type-xxs);
    padding: var(--type-xxs);
    transform: translateY(-100%);
    transition: transform 0.2s ease-in-out;
}
.blog-image:hover figcaption {
    transform: translateY(0%);

}
.blog-image img {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    will-change: filter;
}

/*ARTITS BLOCKS*/

[data-block="biography"],
[data-block="text"] {
    align-content: flex-end;
}
[data-block="news"] {
    padding: var(--sidemargin);
    padding-top: var(--margintop);
    background-color: var(--blue);
}
[data-block="release"] {
    padding: var(--sidemargin);
    padding-top: var(--margintop);
    background-color: var(--white);
    color: var(--black);
}
[data-block="biography"] > div,
[data-block="release"] > div,
[data-block="news"] > div {
    height: 100%;
    justify-content: space-between;
}
[data-block="news"] figure,
[data-block="release"] .release-image {
    flex: 1 1 auto;
    overflow: hidden;
}
[data-block="release"] figure {
    height: 100%;
    width: auto;
    position: relative;
    overflow: hidden;
}
[data-block="news"] img,
[data-block="release"] img {
    width: 100%;
    height: 100%;
    max-height: 100svh;
    object-fit: contain;
    object-position: left bottom;
}
[data-block="release"] > div {
    width: calc(100svh - var(--sidemargin) * 2);
}
[data-block="biography"] > div,
[data-block="text"] > div,
[data-block="news"] > div {
    width: calc(90vmin - var(--sidemargin) * 2);
}
[data-block="release"] h2 {
    width: calc(100svh - var(--sidemargin) * 2);
}
[data-block="news"] h2 {
    margin-bottom: 0;
}
[data-block="biography"] p:first-of-type {
    color: var(--blue)
}
[data-block="image"] figure {
    background: var(--blue);
    overflow: hidden;
    /*min-width: 100svh;*/
    width: auto;
    height: 100svh;
}
[data-block="image"] img {
    position: relative;
    left: -10svh;
    height: 100%;
    width: auto;
    margin-right: -20svh;
    min-width: 100svh;
    object-fit: cover;
    object-position: center;
}
[data-block="video"] {
    position: relative;
}
.fullscreen-control {
    display: none;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
/*:fullscreen .fullscreen-control {
    display: block;
}*/
.video-control {
    padding: 0.3em 0.5em 0.55em;
}
.video-control span {
    display: none;
}
.video-control svg {
    margin: 0;
    margin-bottom: -0.1em;
}
.audio-control {
    position: absolute;
    bottom: var(--sidemargin);
    left: var(--sidemargin);
}
#showreel .audio-control {
    bottom: 1em;
    left: 1em;
}
.audio-control .mute-icon {
    display: none;
}
.audio-control.muted .mute-icon {
    display: inline-block;
}
.audio-control.muted .unmute-icon {
    display: none;
}
.play-control {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.pause .play-control {
    display: block;
}

[data-block="video"] iframe {
    height: 100svh;
    aspect-ratio: 16/9;
}

#discography #discography-list {
    width: min-content;
}
#discography .thumbnail figure {
    overflow: hidden;
}
#discography .thumbnail figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#discography .thumbnail h3 {
    margin-bottom: 0;
}

.infos span:nth-child(n+2):before {
    content: ' • ';
}

/*LENIS*/

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: clip;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/*SWUP ANIMATIONS*/

.swup-progress-bar {
    height: 0.2em;
    background-color: var(--white);
    mix-blend-mode: difference;
}

.swup-enabled body {
    display: grid;
    width: 100%;
    height: 100%;
    grid-template-rows: 100% 100%;
}
#swup {
    grid-row: 1;
    grid-column: 1;
    overflow: hidden;
    /*transform: translateZ(0)*/
}
html.is-changing #swup.transition-slide {
    opacity: 1;
    transition: transform 1s cubic-bezier(0.5, 0, 0.15, 1), opacity 1s cubic-bezier(0.5, 0, 0.15, 1);
}
html.to-left #swup.transition-slide.is-next-container {
    transform: translateX(-100%);
}
html.to-left #swup.transition-slide.is-previous-container {
    transform: translateX(100%);
}
html.to-right #swup.transition-slide.is-next-container {
    transform: translateX(100%);
}
html.to-right #swup.transition-slide.is-previous-container {
    transform: translateX(-100%);
}



@media screen and (min-width: 769px) {
    #home {
        --type-m: 4vmin;
        --type-l: 8vmin;
        --type-xl: calc((100vw - var(--sidewidth) - var(--sidemargin)) * 0.09);
    }
    header {
        display: none !important;
    }
    #header-logo {
        right: var(--sidemargin);
    }
    #close {
        display: none;
    }
    #top-logo {
        display: none;
    }
    .blog-image {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }
    #blog-grid:after {
        content: '';
        display: block;
        height: 50svh;
    }
    #discography .thumbnail figure {
        width: 30svh;
        height: auto;
    }
    [data-block="video"] .video-player {
        height: 100svh !important;
        width: auto !important;
    }
    .video-player video {
        width: 100%;
        height: auto;
    }
}
@media screen and (min-width: 769px) and (hover: none) {
    #introduction {
        height: calc(50svh - var(--sidemargin));
        margin-bottom: calc(-35svh + var(--sidemargin));
        justify-content: end;
    }
    #current-artists,
    #past-artists {
        padding-top: calc(50svh - 0.5em);
    }
}

@media screen and (max-width: 768px)/*, (hover: none)*/ {
    #introduction {
        min-height: 50svh;
        justify-content: end;
    }
    #introduction {
        padding-top: 0;
        padding-bottom: 0;
    }
    .artists-list {
    }
    #current-artists {
        padding-top: calc(50svh - 1.5em);
        margin-top: calc(-50svh + 1.5em);
        /*padding-top: calc(50svh - 0.5em);*/
    }
    #current-artists .artist-link:first-child {
        /*padding-top: 1em;*/
    }
    #past-artists {
        padding-top: calc(50svh - 0.5em);
    }
}

@media screen and (max-width: 768px) {
    :root {
        --sidemargin: 4.5vmin;
        --type-xl: 16vmin;
        --type-l: 10vmin;
        --type-m: 7vmin;
        --type-s: 20px;
        --type-xs: 18px;
    }
    nav {
        left: 0;
        background: var(--black);
        font-size: var(--type-l);
        line-height: 0.9;
        transform: translateX(100%);
        transition: transform ease-in-out 0.3s;
    }
    .show-menu nav {
        transform: translateX(0);
    }
    #header-logo {
        left: var(--sidemargin);
    }
    #top-logo {
        display: block;
    }
    #header-logo svg,
    #top-logo svg {
        width: 8rem;
        height: auto;
    }
    .m-scrollv {
        height: 100svh;
        width: 100vw;
        overflow-x: hidden;
        overflow-y: scroll;
        position: relative;
    }
    .m-scrollh {
        /*width: 100vw;*/
        overflow-y: hidden;
        position: relative;
    }
    .m-flex-v {
        flex-direction: column;
    }
    .m-flex-start {
        align-items: flex-start
    }
    .m-type-l {
        font-size: var(--type-l);
        margin: 0;
    }

    #home section, #home .section {
        width: auto;
    }
    #home section:not(#current-artists, #past-artists) {
        padding-top: calc(var(--sidemargin) + 3rem);
        padding-bottom: 0.1em;
    }
    #introduction {
        min-height: calc(100svh - var(--sidemargin) * 2);
        justify-content: space-between;
    }
    .artists-list {
        margin-top: var(--sidemargin);
    }
    #current-artists {
        margin-top: 0;
        padding-top: 0;
    }
    #current-artists .artist-link {
        pointer-events: none;
        position: relative;
        overflow: visible;
        color: var(--white);
        width: 100%;
        height: 100svh;
        /*border: 1px solid blue;*/
    }
    #current-artists .artist-link a {
        pointer-events: none;
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;

    }
    #current-artists .artist-link a .artist-name:before {
        content: 'enter';
        font-size: var(--type-xs);
        position: absolute;
        top: -2em;
        display: inline-block;
        text-transform: lowercase;
        line-height: 0.9;
        text-decoration: none;
        padding: 0.3em 0.75em 0.5em;
        color: inherit;
        border: var(--lineheight) solid;
        border-radius: 1.5em;
    }
    #current-artists .artist-link.active a {
        pointer-events: all;
    }
    #current-artists .artist-link .artist-name {
        position: absolute;
        bottom: var(--sidemargin);
    }
    #current-artists .artist-link,
    .list-hover #introduction > * {
        opacity: 0;
        transition: opacity ease-in-out 0.2s;
    }
    .list-hover #current-artists {
    }
    .list-hover #current-artists .artist-link.active {
        opacity: 1;
    }
    .people {
        grid-template-columns: 1fr;
    }
    .people span:nth-child(2):before {
        content: none;
    }
    #blog-grid {
        grid-template-columns: 100%;
    }
    .blog-image {
        grid-column-end: span 1 !important;
    }
    .blog-image figcaption {
        z-index: 0;
        transform: translate(0);
    }
    [data-block="biography"] > div, 
    [data-block="text"] > div, 
    [data-block="news"],
    [data-block="release"],
    #discography {
        padding-bottom: var(--margintop);
    }
    #discography {
    }
    #discography #innerscroll {
        position: sticky;
        top: 0
    }

    [data-block="biography"] > div, 
    [data-block="text"] > div, 
    [data-block="news"] > div,
    [data-block="release"] > div,
    [data-block="release"] h2 {
        width: auto;
        height: auto;
    }
    [data-block="image"] figure,
    [data-block="image"] img,
    [data-block="release"] figure,
    [data-block="release"] img {
        width: 100%;
        min-width: auto;
        height: auto;
        max-height: none;
        left: 0;
        margin: 0;
    }
    [data-block="release"] figure, [data-block="release"] img {
        width: 75vw;
        height: auto;
    }
    #discography .thumbnail figure {
        width: 60vw;
    }
    [data-block="video"] .video-player {
        width: 100% !important;
        height: auto;
    }
    [data-block="video"] video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .fullscreen-control {
        display: block;
    }

    /*SNAP*/

    #home {
        /*scroll-snap-type: Y proximity;*/
    }
    #home.scroll-snap {
        scroll-snap-type: y mandatory;
    }
    #introduction {
        scroll-snap-align: end;
    }
    #current-artists .artist-link {
        scroll-snap-align: start end;
    }
    #past-artists {
        scroll-snap-align: start;
    }

    /*SWUP ANIMATIONS*/
    
    html.to-left #swup.transition-slide.is-next-container {
        transform: translateY(-100%);
    }
    html.to-left #swup.transition-slide.is-previous-container {
        transform: translateY(100%);
    }
    html.to-right #swup.transition-slide.is-next-container {
        transform: translateY(100%);
    }
    html.to-right #swup.transition-slide.is-previous-container {
        transform: translateY(-100%);
    }
}
