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

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

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

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #080708;
    --black-2: #0d0a0b;
    --black-3: #151011;

    --wine: #3b0e18;
    --wine-2: #571525;
    --wine-3: #762638;

    --white: #f1ece8;
    --white-soft: #d7d0cc;
    --grey: #9b9390;
    --grey-dark: #655e5c;

    --line: rgba(241, 236, 232, .15);

    --container: 1440px;

    --ease: cubic-bezier(.22, 1, .36, 1);
    --ease-soft: cubic-bezier(.16, 1, .3, 1);
}

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

html {
    margin: 0;
    padding: 0;
    background: var(--black);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

::selection {
    background: var(--wine-3);
    color: var(--white);
}

/* =========================================================
   HEADER
========================================================= */

.header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 28px 48px;
}

.header__inner {
    width: min(var(--container), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    width: fit-content;
}

.brand__name {
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.brand__mark {
    position: relative;
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

.brand__mark i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 23px;
    background: var(--white);
    transform-origin: center;
}

.brand__mark i:nth-child(1) {
    transform: translate(-50%, -50%);
}

.brand__mark i:nth-child(2) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.brand__mark i:nth-child(3) {
    transform: translate(-50%, -50%) rotate(90deg);
}

.brand__mark i:nth-child(4) {
    transform: translate(-50%, -50%) rotate(135deg);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__nav a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: rgba(241, 236, 232, .78);
    transition: color .35s var(--ease);
}

.header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s var(--ease);
}

.header__nav a:hover {
    color: var(--white);
}

.header__nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
}

.ticket-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--white-soft);
    transition: color .35s var(--ease);
}

.ticket-link:hover {
    color: var(--white);
}

.ticket-link__arrow {
    font-size: 17px;
    transition: transform .5s var(--ease);
}

.ticket-link:hover .ticket-link__arrow {
    transform: translate(4px, -4px);
}

.menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 24px;
    height: 1px;
    margin-left: auto;
    background: var(--white);
    transition: width .4s var(--ease);
}

.menu-button span:last-child {
    width: 15px;
}

.menu-button:hover span:last-child {
    width: 24px;
}

/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 500;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity .5s var(--ease), visibility .5s;
}

.mobile-menu__background {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(600px, 100%);
    height: 100%;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 75% 25%, rgba(87, 21, 37, .35), transparent 40%),
        var(--black-2);
    transform: translateX(100%);
    transition: transform .8s var(--ease);
}

.mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu__label {
    font-size: 14px;
    letter-spacing: .25em;
    color: var(--grey);
}

.mobile-menu__close {
    position: relative;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1px;
    background: var(--white);
}

.mobile-menu__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__nav {
    margin: auto 0;
}

.mobile-menu__nav a {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(40px, 7vw, 68px);
    line-height: .95;
    letter-spacing: -.06em;
    transition: color .4s var(--ease), padding-left .5s var(--ease);
}

.mobile-menu__nav a:hover {
    padding-left: 12px;
    color: var(--wine-3);
}

.mobile-menu__footer {
    font-size: 14px;
    color: var(--grey);
    letter-spacing: .12em;
}

/* =========================================================
   COMMON
========================================================= */

.eyebrow {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .23em;
    text-transform: uppercase;
    color: var(--grey);
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.arrow-link i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(241, 236, 232, .32);
    border-radius: 50%;
    font-size: 18px;
    font-style: normal;
    transition: transform .6s var(--ease), background .5s var(--ease), color .5s var(--ease);
}

.arrow-link:hover i {
    transform: rotate(45deg);
    background: var(--white);
    color: var(--black);
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero__media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 7, 8, .82), rgba(8, 7, 8, .32) 48%, rgba(8, 7, 8, .7)),
        url("../images/hero.png") center / cover no-repeat,
        radial-gradient(ellipse at center, #321019, #0d0a0b 65%, #080708);
    transform: scale(1.03);
    animation: hero-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-drift {
    from {
        transform: scale(1.03) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.07) translate3d(-1%, -1%, 0);
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 7, 8, .15), transparent 45%, rgba(8, 7, 8, .78));
}

.hero__light {
    position: absolute;
    pointer-events: none;
    filter: blur(35px);
    mix-blend-mode: screen;
}

.hero__light--left {
    top: -20%;
    left: 18%;
    width: 25vw;
    height: 140%;
    background: linear-gradient(90deg, transparent, rgba(181, 108, 118, .12), transparent);
    transform: rotate(15deg);
    animation: light-left 12s ease-in-out infinite alternate;
}

.hero__light--right {
    top: -20%;
    right: 12%;
    width: 18vw;
    height: 140%;
    background: linear-gradient(90deg, transparent, rgba(241, 236, 232, .08), transparent);
    transform: rotate(-12deg);
    animation: light-right 15s ease-in-out infinite alternate;
}

@keyframes light-left {
    from {
        transform: translateX(-3vw) rotate(15deg);
        opacity: .45;
    }

    to {
        transform: translateX(5vw) rotate(8deg);
        opacity: .9;
    }
}

@keyframes light-right {
    from {
        transform: translateX(4vw) rotate(-12deg);
        opacity: .25;
    }

    to {
        transform: translateX(-4vw) rotate(-7deg);
        opacity: .65;
    }
}

.hero__orbit {
    position: absolute;
    border: 1px solid rgba(241, 236, 232, .13);
    border-radius: 50%;
    pointer-events: none;
}

.hero__orbit--one {
    width: 620px;
    height: 620px;
    right: -230px;
    bottom: -310px;
    animation: orbit-one 15s linear infinite;
}

.hero__orbit--two {
    width: 350px;
    height: 350px;
    right: 8%;
    bottom: -170px;
    border-color: rgba(181, 108, 118, .14);
    animation: orbit-two 11s linear infinite reverse;
}

@keyframes orbit-one {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbit-two {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero__content {
    position: relative;
    z-index: 10;
    width: min(var(--container), calc(100% - 120px));
    margin: auto;
    padding-top: 70px;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 42px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--white-soft);
}

.hero__eyebrow::before {
    content: "";
    width: 48px;
    height: 1px;
    background: var(--wine-3);
}

.hero__title {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-size: clamp(82px, 11.7vw, 178px);
    font-weight: 600;
    line-height: .78;
    letter-spacing: -.09em;
    text-transform: uppercase;
}

.hero__title-second {
    margin-left: 7vw;
}

.hero__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    margin-top: 75px;
}

.hero__description {
    width: 390px;
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: var(--white-soft);
}

.hero-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 280px;
    padding: 18px 0;
    border-top: 1px solid rgba(241, 236, 232, .55);
    border-bottom: 1px solid rgba(241, 236, 232, .55);
    font-size: 14px;
    letter-spacing: .15em;
    text-transform: uppercase;
    transition: padding .6s var(--ease);
}

.hero-button:hover {
    padding-left: 12px;
    padding-right: 12px;
}

.hero-button i {
    font-size: 20px;
    font-style: normal;
    transition: transform .5s var(--ease);
}

.hero-button:hover i {
    transform: translate(5px, -5px);
}

.hero__phrase {
    position: absolute;
    right: 48px;
    top: 50%;
    z-index: 10;
    width: 120px;
    font-size: 12px;
    line-height: 1.2;
    opacity: 0.9;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(241, 236, 232, .68);
}

.hero__edge {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--line);
}

/* =========================================================
   INTRO
========================================================= */

.intro {
    position: relative;
    min-height: 900px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(8, 7, 8, .05), rgba(8, 7, 8, .65)),
        url("../images/intro.png") center / cover no-repeat,
        radial-gradient(circle at 60% 30%, #571525, #160b0e 60%, #080708);
}

.intro-glass {
    padding: 150px 6vw;
    background: linear-gradient(135deg, rgb(141 120 120 / 18%), rgb(201 190 190 / 6%));
    backdrop-filter: blur(6px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.intro__inner {
    position: relative;
    width: min(var(--container), 100%);
    min-height: 620px;
    margin: auto;
}

.intro__label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--grey);
}

.intro__title {
    position: absolute;
    top: 95px;
    left: 0;
    display: flex;
    flex-direction: column;
    margin: 0;
    font-size: clamp(76px, 9.5vw, 145px);
    font-weight: 500;
    line-height: .81;
    letter-spacing: -.085em;
    text-transform: uppercase;
}

.intro__title span:nth-child(2) {
    margin-left: 8vw;
}

.intro__title span:nth-child(3) {
    margin-left: 2vw;
}

.intro__text {
    position: absolute;
    top: 190px;
    left: 53%;
    width: 340px;
}

.intro__text p {
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.2;
    color: var(--white-soft);
}

.intro__visual {
    position: absolute;
    top: 20px;
    right: 4%;
    width: min(430px, 35vw);
    height: 600px;
}

.visual-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.visual-image--intro {
    background:
        linear-gradient(180deg, rgba(8, 7, 8, .05), rgba(8, 7, 8, .65)),
        url("../images/intro.png") center / cover no-repeat,
        radial-gradient(circle at 60% 30%, #571525, #160b0e 60%, #080708);
}

.visual-frame {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(241, 236, 232, .12);
    pointer-events: none;
}

.intro__decor-line {
    position: absolute;
    left: 34%;
    bottom: 45px;
    width: 230px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--wine-3), transparent);
    animation: decor-line 6s ease-in-out infinite alternate;
}

@keyframes decor-line {
    from {
        transform: scaleX(.4);
        transform-origin: left;
    }

    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.intro__decor-circle {
    position: absolute;
    right: -80px;
    bottom: -170px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(181, 108, 118, .16);
    border-radius: 50%;
    animation: slow-rotate 18s linear infinite;
}

@keyframes slow-rotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   REPERTOIRE
========================================================= */

.repertoire {
    position: relative;
    padding: 155px 5vw 180px;
    background: var(--black);
}

.repertoire__inner {
    width: min(var(--container), 100%);
    margin: auto;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 90px;
}

.repertoire h2 {
    margin: 28px 0 0;
    font-size: clamp(64px, 8vw, 120px);
    font-weight: 500;
    line-height: .83;
    letter-spacing: -.08em;
    text-transform: uppercase;
}

.shows {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px 22px;
}

.show {
    position: relative;
}

.show--large {
    grid-row: span 2;
}

.show--second {
    margin-top: 80px;
}

.show__visual {
    position: relative;
    aspect-ratio: .84;
    overflow: hidden;
    background: var(--black-3);
}

.show--large .show__visual {
    aspect-ratio: .86;
}

.show__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--black-3);
    transition: transform 1.3s var(--ease);
}

.show__image--empty {
    background: radial-gradient(circle at 60% 40%, #571525, #160b0f 60%, #080708);
}

.show:hover .show__image {
    transform: scale(1.035);
}

.show__light {
    position: absolute;
    top: -20%;
    left: 15%;
    width: 50%;
    height: 140%;
    background: linear-gradient(90deg, transparent, rgba(241, 236, 232, .09), transparent);
    filter: blur(28px);
    transform: rotate(16deg);
    transition: transform 1.4s var(--ease);
}

.show:hover .show__light {
    transform: translateX(35%) rotate(10deg);
}

.show__decor {
    position: absolute;
    right: -50px;
    top: 45%;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(181, 108, 118, .2);
    border-radius: 50%;
    transition: transform 1s var(--ease);
}

.show:hover .show__decor {
    transform: rotate(25deg);
}

.show__mirror {
    position: absolute;
    right: 13%;
    top: 18%;
    width: 32%;
    height: 44%;
    border: 1px solid rgba(241, 236, 232, .16);
    border-radius: 50%;
    transform: rotate(5deg);
    opacity: .7;
}

.show__index {
    position: absolute;
    left: 25px;
    top: 23px;
    font-size: 14px;
    letter-spacing: .2em;
    color: rgba(241, 236, 232, .7);
}

.show__arrow {
    position: absolute;
    right: 25px;
    bottom: 25px;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(241, 236, 232, .4);
    border-radius: 50%;
    font-size: 20px;
    transition: transform .6s var(--ease), background .5s var(--ease), color .5s var(--ease);
}

.show:hover .show__arrow {
    transform: rotate(45deg);
    background: var(--white);
    color: var(--black);
}

.show__info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    padding: 24px 4px 0;
}

.show__type {
    display: block;
    margin-bottom: 13px;
    font-size: 14px;
    letter-spacing: .19em;
    text-transform: uppercase;
    color: var(--grey);
}

.show h3 {
    margin: 0;
    font-size: clamp(28px, 3vw, 43px);
    font-weight: 500;
    line-height: .94;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.show__date {
    flex-shrink: 0;
    padding-top: 3px;
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--grey);
}

/* =========================================================
   SHOW — PERFORMANCES
========================================================= */

.show__performances {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;

    margin-top: 14px;

    font-size: 14px;
    line-height: 1.4;
    color: var(--grey);
}

.show__performances-label {
    display: block;
    width: 100%;

    margin-bottom: 4px;

    font-size: 14px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--grey-dark);
}

.show__performance {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;

    padding: 4px 10px;

    border: 1px solid var(--line);
    border-radius: 100px;
}

.show__performance-date {
    font-size: 14px;
    letter-spacing: .04em;
    color: var(--white-soft);
}

.show__performance-time {
    font-size: 14px;
    color: var(--grey);
}

/* =========================================================
   AUDIENCE
========================================================= */

.audience {
    position: relative;
    min-height: 950px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black-2);
}

.audience__image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 7, 8, .78), rgba(8, 7, 8, .2) 58%, rgba(8, 7, 8, .68)),
        url("../images/audience.png") center / cover no-repeat,
        radial-gradient(ellipse at 55% 45%, #571525, #120a0c 65%, #080708);
    transform: scale(1.04);
    animation: audience-drift 18s ease-in-out infinite alternate;
}

@keyframes audience-drift {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.08) translate3d(-1%, 0, 0);
    }
}

.audience__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, transparent, rgba(8, 7, 8, .65));
}

.audience__beam {
    position: absolute;
    top: -20%;
    left: 42%;
    width: 28vw;
    height: 140%;
    background: linear-gradient(90deg, transparent, rgba(241, 236, 232, .08), transparent);
    filter: blur(30px);
    transform: rotate(13deg);
    animation: beam-move 12s ease-in-out infinite alternate;
}

@keyframes beam-move {
    from {
        transform: translateX(-8vw) rotate(13deg);
    }

    to {
        transform: translateX(8vw) rotate(7deg);
    }
}

.audience__content {
    position: relative;
    z-index: 5;
    width: min(var(--container), calc(100% - 120px));
    margin: auto;
}

.audience__content h2 {
    margin: 30px 0 0;
    font-size: clamp(65px, 9vw, 135px);
    font-weight: 500;
    line-height: .82;
    letter-spacing: -.085em;
    text-transform: uppercase;
}

.audience__line {
    width: 110px;
    height: 1px;
    margin: 55px 0 30px;
    background: var(--wine-3);
}

.audience__content p {
    max-width: 380px;
    margin: 0;
    font-size: 17px;
    line-height: 1.75;
    color: var(--white-soft);
}

.audience__word {
    position: absolute;
    right: -2vw;
    bottom: -7vw;
    font-size: clamp(150px, 22vw, 350px);
    font-weight: 600;
    line-height: .7;
    letter-spacing: -.1em;
    color: rgba(241, 236, 232, .035);
    user-select: none;
}

/* =========================================================
   MANIFESTO
========================================================= */

.manifesto {
    position: relative;
    min-height: 850px;
    display: grid;
    grid-template-columns: .85fr 1fr .85fr;
    align-items: center;
    padding: 120px 5vw;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(8, 7, 8, .1), rgba(8, 7, 8, .68)), url(../images/manifesto.png) center / cover no-repeat, radial-gradient(circle at 50% 40%, #571525, #10090c 70%);
    justify-items: end;
}

.manifesto__ambient {
    position: absolute;
    width: 600px;
    height: 600px;
    left: -300px;
    bottom: -250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(118, 38, 56, .13), transparent 65%);
    filter: blur(20px);
    animation: ambient-drift 13s ease-in-out infinite alternate;
}

@keyframes ambient-drift {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(130px, -60px);
    }
}

.manifesto__left {
    position: relative;
    z-index: 3;
}

.manifesto__left h2 {
    margin: 28px 0 0;
    font-size: clamp(52px, 6vw, 92px);
    font-weight: 500;
    line-height: .87;
    letter-spacing: -.075em;
    text-transform: uppercase;
}

.manifesto__visual {
    position: relative;
    width: 100%;
    height: 570px;
}

.manifesto__image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 7, 8, .1), rgba(8, 7, 8, .68)),
        url("../images/manifesto.png") center / cover no-repeat,
        radial-gradient(circle at 50% 40%, #571525, #10090c 70%);
    border-radius: 50% 50% 0 0;
}

.manifesto__ring {
    position: absolute;
    left: -70px;
    bottom: 50px;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(181, 108, 118, .25);
    border-radius: 50%;
    animation: slow-rotate 17s linear infinite reverse;
}

.manifesto__quote {
    position: relative;
    z-index: 3;
    padding-left: 55px;
}

.manifesto__quote-mark {
    display: block;
    margin-bottom: 15px;
    font-family: Georgia, serif;
    font-size: 80px;
    line-height: .5;
    color: var(--wine-pale);
}

.manifesto__quote blockquote {
    max-width: 390px;
    margin: 0;
    font-size: clamp(23px, 2.5vw, 36px);
    line-height: 1.25;
    letter-spacing: -.035em;
}

.manifesto__author {
    display: block;
    margin-top: 35px;
    font-size: 14px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--grey);
}

.manifesto__line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--line);
}

/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    position: relative;
    min-height: 90svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--black);
}

.final-cta__glow {
    position: absolute;
    width: 70vw;
    height: 70vw;
    max-width: 900px;
    max-height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(87, 21, 37, .27), transparent 62%);
    filter: blur(20px);
    animation: final-glow 9s ease-in-out infinite alternate;
}

@keyframes final-glow {
    from {
        transform: scale(.88);
    }

    to {
        transform: scale(1.08);
    }
}

.final-cta__ring {
    position: absolute;
    border: 1px solid rgba(241, 236, 232, .1);
    border-radius: 50%;
}

.final-cta__ring--one {
    width: 65vw;
    height: 65vw;
    animation: slow-rotate 35s linear infinite;
}

.final-cta__ring--two {
    width: 42vw;
    height: 42vw;
    border-color: rgba(181, 108, 118, .14);
    animation: slow-rotate 24s linear infinite reverse;
}

.final-cta__content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.final-cta h2 {
    margin: 30px 0 55px;
    font-size: clamp(76px, 12vw, 180px);
    font-weight: 500;
    line-height: .77;
    letter-spacing: -.09em;
    text-transform: uppercase;
}

.final-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 275px;
    padding: 17px 18px 17px 28px;
    border: 1px solid rgba(241, 236, 232, .42);
    border-radius: 100px;
    font-size: 14px;
    letter-spacing: .17em;
    text-transform: uppercase;
    transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}

.final-cta__button i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 17px;
    font-style: normal;
    transition: transform .5s var(--ease);
}

.final-cta__button:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}

.final-cta__button:hover i {
    transform: rotate(45deg);
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    position: relative;
    padding: 85px 5vw 35px;
    overflow: hidden;
    border-top: 1px solid var(--line);
    background: #060506;
}

.footer__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    top: -250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(87, 21, 37, .18), transparent 65%);
    filter: blur(25px);
}

.footer__top,
.footer__body,
.footer__bottom {
    width: min(var(--container), 100%);
    margin: auto;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__brand-name {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -.03em;
    text-transform: uppercase;
}

.footer__statement {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--grey);
}

.footer__body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--white-soft);
}

.footer__label {
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--grey-dark);
}

.footer__column a {
    transition: color .35s var(--ease);
}

.footer__column a:hover {
    color: var(--white);
}

.footer-ticket {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.footer-ticket span {
    font-size: 18px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--grey-dark);
}

/* =========================================================
   FOCUS
========================================================= */

:focus-visible {
    outline: 1px solid var(--white);
    outline-offset: 5px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
    .header {
        padding: 25px 30px;
    }

    .header__nav {
        gap: 22px;
    }

    .ticket-link {
        display: none;
    }

    .hero__content {
        width: calc(100% - 60px);
    }

    .hero__phrase {
        display: none;
    }

    .intro {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .intro__text {
        left: 43%;
    }

    .intro__visual {
        right: 0;
        width: 40vw;
    }

    .shows {
        grid-template-columns: 1fr 1fr;
    }

    .show--large {
        grid-column: span 2;
        grid-row: auto;
    }

    .show--large .show__visual {
        aspect-ratio: 1.5;
    }

    .show--second {
        margin-top: 0;
    }

    .manifesto {
        grid-template-columns: .8fr 1fr;
    }

    .manifesto__quote {
        grid-column: span 2;
        justify-self: end;
        margin-top: -80px;
    }

    .footer__body {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
    html {
        scroll-behavior: auto;
    }

    body {
        font-size: 15px;
    }

    .header {
        padding: 20px 20px;
    }

    .header__inner {
        grid-template-columns: 1fr auto;
    }

    .header__nav,
    .ticket-link {
        display: none;
    }

    .brand__name {
        font-size: 14px;
    }

    .hero {
        min-height: 100svh;
    }

    .hero__content {
        width: calc(100% - 40px);
        padding-top: 55px;
    }

    .hero__eyebrow {
        margin-bottom: 38px;
        font-size: 14px;
        letter-spacing: .2em;
    }

    .hero__title {
        font-size: clamp(62px, 18vw, 105px);
        line-height: .82;
    }

    .hero__title-second {
        margin-left: 0;
    }

    .hero__bottom {
        display: block;
        margin-top: 50px;
    }

    .hero__description {
        width: 100%;
        max-width: 350px;
        margin-bottom: 35px;
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-button {
        width: 100%;
        max-width: 290px;
    }

    .hero__orbit--one {
        width: 420px;
        height: 420px;
        right: -260px;
        bottom: -160px;
    }

    .hero__orbit--two {
        display: none;
    }

    .intro {
        min-height: auto;
        padding: 90px 20px 120px;
    }

    .intro__inner {
        min-height: auto;
    }

    .intro__label {
        position: static;
        margin-bottom: 65px;
        font-size: 14px;
    }

    .intro__title {
        position: static;
        font-size: clamp(61px, 17vw, 100px);
    }

    .intro__title span:nth-child(2),
    .intro__title span:nth-child(3) {
        margin-left: 0;
    }

    .intro__text {
        position: static;
        width: 100%;
        margin-top: 55px;
        padding-left: 15vw;
    }

    .intro__text p {
        font-size: 15px;
    }

    .intro__visual {
        position: relative;
        top: auto;
        right: auto;
        width: 80%;
        height: 460px;
        margin: 70px 0 0 auto;
    }

    .intro__decor-line {
        left: 0;
        bottom: 40px;
        width: 160px;
    }

    .intro__decor-circle {
        right: -180px;
        bottom: -120px;
    }

    .repertoire {
        padding: 90px 20px 120px;
    }

    .section-heading {
        display: block;
        margin-bottom: 60px;
    }

    .repertoire h2 {
        margin-top: 25px;
        font-size: clamp(52px, 15vw, 90px);
    }

    .arrow-link--heading {
        margin-top: 35px;
    }

    .shows {
        display: block;
    }

    .show {
        margin-bottom: 70px;
    }

    .show--large .show__visual,
    .show__visual {
        aspect-ratio: .82;
    }

    .show__info {
        display: block;
    }

    .show__date {
        display: block;
        margin-top: 18px;
    }

    .show h3 {
        font-size: 31px;
    }

    .audience {
        min-height: 850px;
    }

    .audience__content {
        width: calc(100% - 40px);
    }

    .audience__content h2 {
        font-size: clamp(54px, 15vw, 90px);
    }

    .audience__content p {
        max-width: 300px;
        font-size: 15px;
    }

    .audience__word {
        font-size: 45vw;
    }

    .manifesto {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding: 100px 20px 120px;
    }

    .manifesto__left {
        width: 100%;
    }

    .manifesto__left h2 {
        font-size: clamp(52px, 14vw, 82px);
    }

    .manifesto__visual {
        width: 80%;
        height: 450px;
        margin: 65px 0 0 auto;
    }

    .manifesto__quote {
        width: 100%;
        padding: 0;
        margin-top: 70px;
    }

    .manifesto__quote blockquote {
        font-size: 25px;
    }

    .final-cta {
        min-height: 75svh;
    }

    .final-cta h2 {
        font-size: clamp(68px, 18vw, 110px);
    }

    .final-cta__ring--one {
        width: 120vw;
        height: 120vw;
    }

    .final-cta__ring--two {
        width: 80vw;
        height: 80vw;
    }

    .footer {
        padding: 70px 20px 30px;
    }

    .footer__top {
        display: block;
    }

    .footer__statement {
        margin-top: 35px;
    }

    .footer__body {
        grid-template-columns: 1fr 1fr;
        margin: 70px 0;
    }

    .footer__column--ticket {
        grid-column: span 2;
    }

    .footer__bottom {
        display: block;
        line-height: 2;
    }

    .footer__bottom span {
        display: block;
    }

    .footer__bottom span + span {
        margin-top: 8px;
    }
}

/* =========================================================
   CAST
========================================================= */

.cast {
    position: relative;
    padding: 155px 5vw 180px;
    overflow: hidden;
    background: var(--black);
}

.cast__inner {
    width: min(var(--container), 100%);
    margin: auto;
}

.cast__heading {
    margin-bottom: 80px;
}

.cast h2 {
    margin: 28px 0 0;
    font-size: clamp(64px, 8vw, 120px);
    font-weight: 500;
    line-height: .83;
    letter-spacing: -.08em;
    text-transform: uppercase;
}

.cast__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 55px 22px;
}

.cast-member {
    position: relative;
    min-width: 0;
}

.cast-member__visual {
    position: relative;
    aspect-ratio: .78;
    overflow: hidden;
    background: var(--black-3);
    border-radius: 8px;
    mask-image: linear-gradient(to bottom, black 0%, black 65%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 65%, transparent 100%);
}

.cast-member__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.72);
    transform: scale(1.015);
    transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.cast-member:hover .cast-member__image {
    transform: scale(1.055);
    filter: saturate(1);
}

.cast-member__placeholder {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 35%, #571525, #160b0f 58%, #080708);
}

.cast-member__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(8, 7, 8, .02), rgba(8, 7, 8, .62));
}

.cast-member__index {
    position: absolute;
    z-index: 2;
    left: 22px;
    top: 20px;
    font-size: 14px;
    letter-spacing: .2em;
    color: rgba(241, 236, 232, .72);
}

.cast-member__info {
    padding: 21px 3px 0;
}

.cast-member__info h3 {
    margin: 0;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.cast-member__role {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--grey);
}

.cast__empty {
    padding: 70px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cast__empty p {
    margin: 0;
    font-size: 16px;
    color: var(--grey);
}

@media (max-width: 1100px) {
    .cast {
        padding: 125px 5vw 145px;
    }

    .cast__heading {
        margin-bottom: 60px;
    }

    .cast__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 45px 18px;
    }
}

@media (max-width: 700px) {
    .cast {
        padding: 95px 5vw 110px;
    }

    .cast__heading {
        margin-bottom: 45px;
    }

    .cast h2 {
        margin-top: 20px;
        font-size: clamp(52px, 16vw, 78px);
    }

    .cast__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 12px;
    }

    .cast-member__visual {
        aspect-ratio: .76;
    }

    .cast-member__index {
        left: 14px;
        top: 14px;
        font-size: 14px;
    }

    .cast-member__info {
        padding-top: 15px;
    }

    .cast-member__info h3 {
        font-size: clamp(18px, 5vw, 24px);
    }

    .cast-member__role {
        margin-top: 8px;
        font-size: 14px;
        letter-spacing: .13em;
    }
}

@media (max-width: 420px) {
    .cast {
        padding-top: 80px;
        padding-bottom: 90px;
    }

    .cast__grid {
        gap: 32px 10px;
    }

    .cast-member__visual {
        aspect-ratio: .72;
    }

    .cast-member__info h3 {
        font-size: 17px;
        line-height: 1.05;
    }

    .cast-member__role {
        font-size: 14px;
        letter-spacing: .11em;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}