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

html {
    scroll-behavior: smooth;
}

body {
    background: #090708;
    color: #eee8df;
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

.grain {
    position: fixed;
    inset: -50%;
    z-index: 100;
    pointer-events: none;
    opacity: .055;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    transform: rotate(4deg);
}

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

button {
    font: inherit;
}

/* =========================================
   PRELOADER
========================================= */

.preloader {
    position: fixed;
    inset: 0;
    background: #090708;
    z-index: 1000;
    display: grid;
    place-items: center;
    transition: opacity .7s, visibility .7s;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-inner span,
.preloader-inner b,
.preloader-inner small {
    display: block;
}

.preloader-inner span {
    font-size: 10px;
    letter-spacing: 4px;
    color: #b9aaa3;
}

.preloader-inner b {
    font: italic 14px "Cormorant Garamond";
    margin-top: 12px;
    color: #8d7e79;
}

.preloader-inner strong {
    display: block;
    font: clamp(60px, 11vw, 145px) / .8 "Cormorant Garamond";
    margin: 28px 0;
}

.preloader-inner strong em {
    font-style: normal;
    color: #b32931;
}

.preloader-inner small {
    font-size: 7px;
    letter-spacing: 2px;
    color: #a1262d;
}

/* =========================================
   NAVIGATION
========================================= */

.nav {
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 0 5vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: rgba(9, 7, 8, 0.88) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    transition: none;
}

.logo {
    font: 29px "Cormorant Garamond";
    font-weight: 600;
}

.logo b {
    font: 11px "DM Sans";
    color: #b32931;
    margin-left: 5px;
}

.nav nav {
    display: flex;
    gap: 27px;
}

.nav nav a {
    font-size: 8px;
    letter-spacing: 2px;
    color: #b7aaa4;
}

.pass {
    border: 1px solid #a8242b;
    padding: 12px 16px;
    font-size: 8px;
    letter-spacing: 1.5px;
}

.menu {
    display: none;
    background: none;
    border: 0;
}

.menu i {
    display: block;
    width: 24px;
    height: 1px;
    background: #eee;
    margin: 6px;
}

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

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(
        ellipse at 50% 85%,
        #7e2228 0,
        #260a0d 28%,
        #090708 70%
    );
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #050607aa,
        transparent 45%,
        #050607aa
    );
}

.curtain {
    position: absolute;
    top: 0;
    height: 100%;
    width: 18vw;
    background: repeating-linear-gradient(
        90deg,
        #18070a 0 12px,
        #450e14 14px 26px,
        #18070a 29px 42px
    );
    opacity: .82;
    transition: transform 1.5s cubic-bezier(.77, 0, .18, 1);
}

.curtain.left {
    left: -2vw;
    transform: skewX(-2deg);
    width: 52vw;
    z-index: 4;
}

.curtain.right {
    right: -2vw;
    transform: skewX(2deg);
    width: 52vw;
    z-index: 4;
}

.hero.opened .curtain.left {
    transform: translateX(-102%) skewX(-2deg);
}

.hero.opened .curtain.right {
    transform: translateX(102%) skewX(2deg);
}

/* =========================================
   THEATRE STAGE LIGHTS
========================================= */

.stage-lights {
    position: absolute;
    inset: 0;

    z-index: 3;
    pointer-events: none;
    overflow: hidden;

    mix-blend-mode: screen;
}


/* =========================================
   BASE LIGHT
========================================= */

.stage-light {
    position: absolute;

    top: -5%;
    width: 50%;
    height: 85%;

    pointer-events: none;

    background: linear-gradient(
        to bottom,
        rgba(255, 250, 225, 0.95) 0%,
        rgba(255, 239, 195, 0.72) 20%,
        rgba(255, 224, 160, 0.35) 55%,
        rgba(255, 210, 140, 0.12) 80%,
        transparent 100%
    );

    filter: blur(9px);

    transform-origin: top center;
}


/* =========================================
   OUTER LEFT
========================================= */

.light-1 {
    left: -8%;

    clip-path: polygon(
        0% 0%,
        9% 0%,
        100% 100%,
        55% 100%
    );

    opacity: 0.75;
}


/* =========================================
   INNER LEFT
========================================= */

.light-2 {
    left: 13%;

    clip-path: polygon(
        0% 0%,
        9% 0%,
        100% 100%,
        70% 100%
    );

    opacity: 0.5;
}


/* =========================================
   INNER RIGHT
========================================= */

.light-3 {
    right: 13%;

    clip-path: polygon(
        91% 0%,
        100% 0%,
        30% 100%,
        0% 100%
    );

    opacity: 0.5;
}


/* =========================================
   OUTER RIGHT
========================================= */

.light-4 {
    right: -8%;

    clip-path: polygon(
        91% 0%,
        100% 0%,
        45% 100%,
        0% 100%
    );

    opacity: 0.75;
}


/* =========================================
   LIGHT SOURCE GLOW
========================================= */

.stage-lights::before,
.stage-lights::after {
    content: "";

    position: absolute;

    top: 18px;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: #fff8dc;

    box-shadow:
        0 0 10px #fff8dc,
        0 0 25px rgba(255, 220, 150, 0.9),
        0 0 55px rgba(255, 190, 100, 0.55);

    filter: blur(2px);

    mix-blend-mode: screen;
}

.stage-lights::before {
    left: 25px;
}

.stage-lights::after {
    right: 25px;
}


/* =========================================
   LAYERING
========================================= */

.hero-center {
    position: relative;
    z-index: 5;
}

.hero-bottom {
    position: relative;
    z-index: 5;
}

.curtain {
    z-index: 10 !important;
}

.hero-center {
    position: relative;
    z-index: 5;
    max-width: 1000px;
}

.mini {
    font-size: 13px;
    letter-spacing: 5px;
    color: #d1c4bd;
}

.present {
    font: italic 12px "Cormorant Garamond";
    letter-spacing: 3px;
    margin-top: 16px;
    color: #a99891;
}

.hero h1 {
    font: clamp(80px, 13vw, 180px) / .78 "Cormorant Garamond";
    font-weight: 600;
    letter-spacing: -5px;
    margin: 26px 0 8px;
}

.hero h1 sup {
    font: 28px "DM Sans";
    color: #c62b32;
    vertical-align: top;
    top: 15px;
    position: relative;
}

.rule {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
}

.rule span {
    width: 80px;
    height: 1px;
    background: #a8242b;
}

.rule em {
    font: italic 13px "Cormorant Garamond";
    color: #c9b8af;
}

.dates {
    font-size: 14px;
    letter-spacing: 4px;
    margin-top: 28px;
}

.place {
    font-size: 8px;
    letter-spacing: 2px;
    color: #968983;
    margin-top: 10px;
}

.hero-ticket {
    display: inline-block;
    margin-top: 32px;
    background: #a8242b;
    padding: 15px 22px;
    font-size: 8px;
    letter-spacing: 2px;
    transition: .25s;
}

.hero-ticket:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px #a8242b55;
}

.hero-bottom {
    position: absolute;
    bottom: 25px;
    left: 7vw;
    right: 7vw;
    display: flex;
    justify-content: space-between;
    font-size: 7px;
    letter-spacing: 2px;
    color: #786d69;
}


/* =========================================
   FILM REEL / MARQUEE
========================================= */

.film-reel-bar {
    height: 46px;
    background: #a8242b;
    overflow: hidden;
    color: #160709;
    font-size: 25px;
    display: flex;
    align-items: center;
}

.reel-track {
    white-space: nowrap;
    animation: reel 18s linear infinite;
}

.marquee {
    padding: 24px 5vw;
    background: #efe7dd;
    color: #180d0f;
    text-align: center;
}

.bulbs {
    font-size: 8px;
    color: #ad2c31;
    letter-spacing: 8px;
}

.marquee-title {
    font: 28px "Cormorant Garamond";
    font-weight: 600;
    letter-spacing: 6px;
    margin: 10px;
}

.scene-tag {
    font-size: 8px;
    letter-spacing: 2.5px;
    color: #a1262d;
    margin-bottom: 45px;
}
.editorial {
    position: relative;
    background: #efe7dd;
    color: #1a1011;
    padding: 110px 8vw;
    overflow: hidden;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9vw;
    align-items: center;
}

.newspaper {
    background: #e2d9cd;
    padding: 32px;
    max-width: 560px;
    box-shadow: 10px 15px 30px #2b19191a;
    transform: rotate(-1deg);
}

.paper-top {
    display: flex;
    justify-content: space-between;
    font-size: 7px;
    letter-spacing: 1px;
}

.paper-top b {
    font: 24px "Cormorant Garamond";
}

.paper-rule {
    height: 1px;
    background: #231618;
    margin: 10px 0 22px;
}

.newspaper h2 {
    font: 72px / .72 "Cormorant Garamond";
    font-weight: 600;
}

.newspaper h2 i {
    color: #a8242b;
}

.newspaper .lead {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin: 18px 0;
}

.newspaper > p:not(.lead) {
    font: 12px / 1.7 "Libre Baskerville";
    color: #544948;
}

.paper-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    border-top: 1px solid #231618;
    margin-top: 25px;
    padding-top: 12px;
}

.paper-columns button {
    border: 0;
    background: none;
    text-align: left;
    font-size: 7px;
    line-height: 1.5;
    cursor: pointer;
    color: #211516;
}

.paper-columns button:hover {
    color: #a8242b;
}

.paper-columns b {
    font-size: 8px;
}

.barcode {
    margin-top: 22px;
    font-size: 19px;
    letter-spacing: -2px;
}

/* =========================================
   EDITORIAL HEADINGS / COPY
========================================= */

.editorial-copy h2,
.scene-copy h2,
.desk-copy h2,
.lineup h2,
.register h2,
.cast-head h2,
.archive h2 {
    font: clamp(60px, 7vw, 105px) / .82 "Cormorant Garamond";
    font-weight: 600;
}

.editorial-copy h2 i,
.scene-copy h2 i,
.desk-copy h2 i,
.lineup h2 i,
.register h2 i,
.cast-head h2 i,
.archive h2 i {
    color: #a8242b;
    font-style: italic;
}

.red-label {
    font-size: 8px;
    letter-spacing: 2px;
    color: #a8242b;
}

.editorial-copy p {
    font: 15px / 1.8 "Libre Baskerville";
    color: #5b504e;
    max-width: 500px;
    margin-top: 30px;
}

.editorial-copy .italic {
    font-style: italic;
    font-size: 13px;
}

.serif-link {
    display: inline-block;
    margin-top: 30px;
    border-bottom: 1px solid #211516;
    padding-bottom: 7px;
    font: 11px "Cormorant Garamond";
    letter-spacing: 1.5px;
}

/* =========================================
   SCHEDULE DRAWER
========================================= */

.schedule-drawer {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(440px, 90vw);
    z-index: 80;
    background: #efe7dd;
    color: #1b1012;
    padding: 100px 45px;
    transform: translateX(100%);
    transition: .6s cubic-bezier(.77, 0, .18, 1);
    box-shadow: -20px 0 60px #0008;
}

.schedule-drawer.open {
    transform: translateX(0);
}

.schedule-drawer > span {
    font-size: 8px;
    letter-spacing: 2px;
    color: #a8242b;
}

.schedule-drawer h3 {
    font: 65px / .8 "Cormorant Garamond";
    margin: 25px 0;
}

.schedule-drawer p {
    font: 13px / 1.7 "Libre Baskerville";
    color: #655956;
    margin-bottom: 35px;
}

.schedule-drawer div {
    border-top: 1px solid #23161822;
    padding: 16px 0;
    font-size: 8px;
    letter-spacing: 1px;
}

.schedule-drawer i {
    font-style: normal;
    color: #a8242b;
    margin-right: 20px;
}

.close-schedule {
    position: absolute;
    top: 30px;
    right: 35px;
    border: 0;
    background: none;
    font-size: 30px;
    color: #a8242b;
    cursor: pointer;
}

/* =========================================
   CINEMA / SCENE SECTION
========================================= */

.table-scene {
    min-height: 780px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    background: #08090b;
}

.scene-photo {
    position: relative;
    min-height: 780px;
    background: linear-gradient(180deg, #111b20, #070708);
    overflow: hidden;
}

.scene-photo:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 40%,
        #d7d2b625,
        transparent 35%
    );
}

.screen {
    position: absolute;
    left: 14%;
    right: 14%;
    top: 17%;
    bottom: 20%;
    background: linear-gradient(135deg, #a9a39a, #555450);
    box-shadow: 0 20px 60px #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #191719;
}

.screen:before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid #ffffff55;
}

.screen span {
    font-size: 11px;
    letter-spacing: 3px;
}

.screen b {
    font: 70px / .72 "Cormorant Garamond";
    margin: 25px;
}

.screen small {
    font: 9px / 1.5 "Libre Baskerville";
}

.chairs {
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
    text-align: center;
    color: #020202;
    font-size: 90px;
    letter-spacing: -30px;
}

.camera-note {
    position: absolute;
    left: 35px;
    bottom: 25px;
    font-size: 7px;
    letter-spacing: 2px;
    color: #827674;
}

.scene-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
}

.scene-copy p {
    font: 15px / 1.8 "Libre Baskerville";
    color: #968b86;
    max-width: 460px;
    margin-top: 35px;
}
/* =========================================
   CAST SECTION
========================================= */

.cast-section {
    background: #efe7dd;
    color: #1a1011;
    padding: 110px 8vw;
}

.cast-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.cast-head p {
    font-size: 8px;
    letter-spacing: 2px;
    color: #8b7e79;
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cast-grid article h3 {
    font: 31px "Cormorant Garamond";
    margin-top: 18px;
}

.cast-grid article p {
    font-size: 7px;
    letter-spacing: 2px;
    color: #a1262d;
    margin-top: 5px;
}

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

.portrait {
    height: 370px;
    background: linear-gradient(135deg, #5f111a, #1b0a0e);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #eee7de;
}

.portrait:before {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid #ffffff25;
    background: radial-gradient(
        circle at 50% 35%,
        #d5b8aa22,
        transparent 28%
    );
}

.portrait.alt {
    background: linear-gradient(135deg, #29313a, #090b0e);
}

.portrait.dark {
    background: linear-gradient(135deg, #111, #302326);
}

.portrait.wine {
    background: linear-gradient(135deg, #651f2b, #19090d);
}

.portrait span {
    font-size: 7px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.portrait b {
    position: absolute;
    right: 18px;
    top: 15px;
    font: 45px "Cormorant Garamond";
    color: #ffffff40;
}

/* =========================================
   DESK / BOX OFFICE
========================================= */

.desk-section {
    padding: 120px 8vw;
    background: #181014;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 10vw;
    align-items: center;
}

.desk-copy h2 {
    color: #f0e8df;
}

.desk-copy > p {
    font: 14px / 1.8 "Libre Baskerville";
    color: #9c8d8c;
    max-width: 480px;
    margin-top: 28px;
}

/* =========================================
   TICKET CARD
========================================= */

.ticket-card {
    display: flex;
    margin-top: 35px;
    max-width: 500px;
    background: #eee5da;
    color: #201315;
    transform: rotate(-1deg);
    box-shadow: 15px 15px #0005;
    transition: .5s;
}

.ticket-card.flipped {
    transform: rotateY(180deg) rotate(-1deg);
}

.ticket-card > div {
    padding: 25px;
    flex: 1;
}

.ticket-card small {
    display: block;
    font-size: 7px;
    letter-spacing: 2px;
    color: #a8242b;
}

.ticket-card strong {
    display: block;
    font: 38px "Cormorant Garamond";
    margin: 15px 0;
}

.ticket-card span {
    font-size: 7px;
    letter-spacing: 1.5px;
}

/* =========================================
   TICKET TBA SECTION
========================================= */

.ticket-stack .ticket-stubs {
    position: relative;

    display: flex;
    flex-direction: row;
    align-items: stretch;

    height: 100%;

    margin: 0;
    padding: 0;

    gap: 0;

    /* Keep the whole section attached to ticket */
    transform: none;
}


/* =========================================
   EACH TBA AREA
========================================= */

.ticket-stack .stub-content {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    min-width: 75px;

    /* MORE SPACE AROUND EACH TBA */
    padding: 60px 32px;

    box-sizing: border-box;

    transform: translateY(-18px);
}


/* =========================================
   DIVIDER LINES
========================================= */

.ticket-stack .stub-content + .stub-content {
    border-left: 2px solid currentColor;
}


/* =========================================
   TBA TEXT
========================================= */

.ticket-stack .stub-content b {
    display: block;

    position: relative;

    margin: 0;
}


/* =========================================
   IST
========================================= */

.ticket-stack .stub-content small {
    display: block;

    position: relative;

    margin-top: 2px;
}

.flip-ticket {
    margin-top: 18px;
    border: 0;
    background: none;
    color: #c4b6b0;
    font-size: 7px;
    letter-spacing: 2px;
    cursor: pointer;
}

/* =========================================
   DESK VISUAL
========================================= */

.desk {
    height: 500px;
    position: relative;
    background: radial-gradient(
        circle at 50% 40%,
        #56202a,
        #1a0c12 60%,
        #090609
    );
    border: 1px solid #ffffff10;
    overflow: hidden;
}

.newspaper-card {
    position: absolute;
    width: 55%;
    left: 12%;
    top: 15%;
    background: #e8ded2;
    color: #211416;
    padding: 35px 20px;
    transform: rotate(-7deg);
    font: 25px "Cormorant Garamond";
    box-shadow: 0 20px 30px #0008;
}

.newspaper-card i {
    font-size: 55px;
    color: #a8242b;
}

.newspaper-card small {
    display: block;
    margin-top: 50px;
    font: 10px "DM Sans";
    letter-spacing: 2px;
}

.film-reel {
    position: absolute;
    right: 8%;
    bottom: 15%;
    font-size: 180px;
    color: #0b090a;
    text-shadow: 0 0 0 1px #8b7675;
    transform: rotate(12deg);
}

.popcorn {
    position: absolute;
    right: 14%;
    top: 8%;
    font-size: 45px;
    line-height: .6;
    color: #c5a486;
    transform: rotate(8deg);
}

/* =========================================
   THE LINE-UP
========================================= */

.lineup {
    padding: 120px 8vw;
    background: #efe7de;
    color: #1b1012;
}

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

.lineup-heading p {
    font-size: 8px;
    letter-spacing: 2px;
    color: #8b7e79;
}

/* =========================================
   COMMITTEE CARDS
========================================= */

.cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #20141633;
}

.cards article {
    min-height: 260px;
    padding: 30px;
    border-bottom: 1px solid #20141633;
    position: relative;
    transition: .35s;
}

.cards article:nth-child(odd) {
    border-right: 1px solid #20141633;
}

.cards article:hover {
    background: #e2d8cb;
}

.cards article span {
    font-size: 7px;
    letter-spacing: 2px;
    color: #a8242b;
}

.cards h3 {
    font: 45px / .8 "Cormorant Garamond";
    font-weight: 600;
    margin-top: 60px;
}

.cards small {
    position: absolute;
    bottom: 25px;
    font-size: 7px;
    letter-spacing: 1.5px;
    color: #81736f;
}

.cards i {
    position: absolute;
    right: 28px;
    bottom: 20px;
    color: #a8242b;
    font-style: normal;
}

/* =========================================
   ARCHIVE
========================================= */

.archive {
    padding: 120px 8vw;
    background: #0c090a;
    color: #eee7de;
}

.archive h2 {
    margin-bottom: 55px;
}

.archive-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr;
    gap: 20px;
}

.archive-card {
    height: 390px;
    position: relative;
    padding: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px #0006;
}

.archive-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 35%,
        #050202dd
    );
}

.archive-card span,
.archive-card b,
.archive-card small {
    position: relative;
    z-index: 2;
    display: block;
}

.archive-card span {
    font-size: 7px;
    letter-spacing: 2px;
}

.archive-card b {
    position: absolute;
    bottom: 55px;
    font: 43px / .8 "Cormorant Garamond";
}

.archive-card small {
    position: absolute;
    bottom: 25px;
    font-size: 7px;
    letter-spacing: 1.5px;
}

.archive-card.poster {
    background: radial-gradient(
        circle at 50% 25%,
        #d75b54,
        #3a1015 50%,
        #0d0809
    );
}

.archive-card.poster b {
    font-style: italic;
}

.archive-card.screen-card {
    background: linear-gradient(
        145deg,
        #34434a,
        #090b0c
    );
}

.archive-card.table-card {
    background: linear-gradient(
        145deg,
        #5b2029,
        #160a0e
    );
}

.archive-note {
    text-align: center;
    margin-top: 35px;
    font-size: 7px;
    letter-spacing: 3px;
    color: #6f625f;
}

/* =========================================
   REGISTER / BOX OFFICE
========================================= */

.register {
    min-height: 650px;
    background: radial-gradient(
        circle at 55% 60%,
        #7d222a,
        #25090e 42%,
        #080607 72%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10vw;
    padding: 100px 8vw;
    position: relative;
    overflow: hidden;
}

.red-curtain {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        #24070b00 0 30px,
        #8d17201a 34px 62px
    );
}

.register-copy,
.ticket-stub {
    position: relative;
    z-index: 2;
}

.register-copy > span {
    font-size: 8px;
    letter-spacing: 3px;
    color: #d38b88;
}

.register-copy h2 {
    margin: 25px 0;
}

.register-copy p {
    font-size: 9px;
    letter-spacing: 2px;
    color: #9b8c89;
    margin-bottom: 30px;
}

.register-copy > a {
    display: inline-block;
    background: #a8242b;
    padding: 17px 20px;
    font-size: 8px;
    letter-spacing: 2px;
}

.register-copy > a b {
    margin-left: 25px;
}

/* =========================================
   TICKET STUB
========================================= */

.ticket-stub {
    width: 260px;
    min-height: 350px;
    background: #eee4d7;
    color: #211315;
    padding: 30px;
    transform: rotate(3deg);
    box-shadow: 15px 20px #0008;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ticket-stub:before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid #b2a39a;
}

.ticket-stub small,
.ticket-stub span {
    font-size: 7px;
    letter-spacing: 2px;
}

.ticket-stub strong {
    font: 65px / .72 "Cormorant Garamond";
    font-weight: 600;
}

.ticket-stub strong i {
    color: #a8242b;
}

.ticket-stub > b {
    font-size: 12px;
    color: #a8242b;
}

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

footer {
    padding: 70px 8vw 25px;
    background: #070607;
}

.footer-head {
    font-size: 10px;
    letter-spacing: 3px;
    color: #a8242b;
    margin-bottom: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 65px;
}

.footer-grid strong {
    font: 55px "Cormorant Garamond";
}

.footer-grid strong em {
    color: #a8242b;
    font-style: normal;
}

.footer-grid p,
.footer-grid a {
    font-size: 9px;
    line-height: 1.8;
    color: #8e817d;
}

.footer-grid > div > span {
    font-size: 7px;
    letter-spacing: 2px;
    color: #a8242b;
}

.footer-grid a {
    display: block;
    margin-top: 8px;
}

.footer-grid strong + p {
    color: #a8242b;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

footer > small {
    display: block;
    border-top: 1px solid #ffffff12;
    padding-top: 18px;
    font-size: 6px;
    letter-spacing: 1.5px;
    color: #625856;
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes reel {
    to {
        transform: translateX(-50%);
    }
}

@keyframes project {
    to {
        transform: translateY(15px);
        opacity: .8;
    }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 800px) {

    .nav nav,
    .pass {
        display: none;
    }

    .menu {
        display: block;
    }

    .hero {
        padding: 130px 7vw 80px;
    }

    .hero h1 {
        font-size: 24vw;
    }

    .curtain {
        width: 12vw;
        z-index: 6;
    }

    .hero-bottom {
        left: 7vw;
        right: 7vw;
        z-index: 5;
    }

    .hero-bottom span:nth-child(2) {
        display: none;
    }

    .editorial-grid,
    .desk-section,
    .table-scene {
        grid-template-columns: 1fr;
    }

    .editorial,
    .desk-section,
    .lineup,
    .cast-section,
    .archive {
        padding: 85px 7vw;
    }

    .newspaper {
        margin: auto;
    }

    .table-scene {
        min-height: auto;
    }

    .scene-photo {
        min-height: 520px;
    }

    .screen {
        top: 15%;
        bottom: 18%;
    }

    .scene-copy {
        padding: 75px 7vw;
    }

    .desk {
        height: 420px;
        margin-top: 40px;
    }

    .lineup-heading,
    .cast-head {
        display: block;
    }

    .lineup-heading p,
    .cast-head p {
        margin-top: 20px;
    }

    .cards,
    .cast-grid,
    .archive-grid {
        grid-template-columns: 1fr;
    }

    .cards article:nth-child(odd) {
        border-right: 0;
    }

    .register {
        display: block;
        padding: 90px 7vw;
    }

    .ticket-stub {
        margin: 55px auto 0;
    }

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

    .nav nav.open {
        display: flex;
        position: fixed;
        inset: 0;
        background: #090708;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 15;
        gap: 28px;
    }

    .nav nav.open a {
        font-size: 18px;
    }
}
/* =========================================
   COUNTDOWN
========================================= */

.countdown-section {
    background: #0a0809;
    padding: 120px 8vw;
    text-align: center;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.countdown-copy > span {
    font-size: 8px;
    letter-spacing: 4px;
    color: #b32931;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 30px 0 8px;
}

.countdown b {
    font: clamp(65px, 9vw, 125px) / .8 "Cormorant Garamond";
    font-weight: 500;
    min-width: 110px;
}

.countdown i {
    font: 50px "Cormorant Garamond";
    color: #a8242b;
}

.countdown-copy > small {
    font-size: 7px;
    letter-spacing: 3px;
    color: #736865;
}

.countdown-copy > p {
    font: italic 15px "Cormorant Garamond";
    color: #b9aaa5;
    margin-top: 28px;
}

/* =========================================
   TRAILER
========================================= */

.trailer-section {
    padding: 120px 8vw;
    background: #efe7dd;
    color: #181012;
}

.trailer-screen {
    height: min(65vw, 620px);
    min-height: 390px;
    display: grid;
    place-items: center;
    background: radial-gradient(
        circle at 50% 35%,
        #9b353b,
        #260c10 38%,
        #070607 75%
    );
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px #1a080c33;
}

.trailer-screen:before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid #ffffff25;
}

.trailer-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.trailer-content > span {
    font-size: 8px;
    letter-spacing: 4px;
    color: #d4c6bd;
}

.trailer-content strong {
    display: block;
    font: clamp(75px, 11vw, 150px) / .72 "Cormorant Garamond";
    margin: 30px;
}

.trailer-content strong i {
    color: #d05254;
}

.trailer-content button {
    border: 1px solid #d5c8c0;
    background: #130a0cdd;
    color: #eee7de;
    padding: 15px 22px;
    font-size: 8px;
    letter-spacing: 2px;
    cursor: pointer;
}

.trailer-content small {
    display: block;
    font-size: 7px;
    letter-spacing: 2px;
    color: #897976;
    margin-top: 18px;
}

/* =========================================
   BEHIND THE SCENES
========================================= */

.bts-section {
    padding: 120px 8vw;
    background: #151014;
}

.bts-head,
.social-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.bts-head h2,
.social-head h2 {
    font: clamp(65px, 8vw, 110px) / .8 "Cormorant Garamond";
    font-weight: 600;
}

.bts-head i,
.social-head i {
    color: #a8242b;
}

.bts-head p,
.social-head p {
    font-size: 8px;
    letter-spacing: 2px;
    color: #8d7e7b;
}

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

.bts-img {
    height: 390px;
    position: relative;
    background: linear-gradient(
        145deg,
        #64202a,
        #160a0e
    );
}

.bts-img span {
    position: absolute;
    left: 18px;
    top: 18px;
    font-size: 7px;
    letter-spacing: 2px;
}

.b2 {
    background: linear-gradient(
        145deg,
        #39434a,
        #0b0d0f
    );
}

.b3 {
    background: linear-gradient(
        145deg,
        #8d3938,
        #1d0c10
    );
}

.bts-grid h3 {
    font: 28px "Cormorant Garamond";
    margin-top: 18px;
}

.bts-grid small {
    font-size: 7px;
    letter-spacing: 2px;
    color: #a8242b;
}

/* =========================================
   SOCIAL / CONTACT SHEET
========================================= */

.social-section {
    padding: 120px 8vw;
    background: #efe7dd;
    color: #191113;
}

.contact-sheet {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.social-card {
    height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    font: 30px "Cormorant Garamond";
    font-weight: 600;
    box-shadow: 0 12px 25px #2b19191a;
    transition: .3s;
}

.social-card:hover {
    transform: translateY(-6px) rotate(-1deg);
}

.s1 {
    background: linear-gradient(
        135deg,
        #ded0c4,
        #7e2029
    );
}

.s2 {
    background: linear-gradient(
        135deg,
        #65727a,
        #17191b
    );
}

.s3 {
    background: linear-gradient(
        135deg,
        #9a4b4c,
        #260c10
    );
}

.s4 {
    background: linear-gradient(
        135deg,
        #28272a,
        #8d6d62
    );
}

.s5 {
    background: linear-gradient(
        135deg,
        #d1c2b6,
        #5d2029
    );
}

.s6 {
    background: linear-gradient(
        135deg,
        #741f29,
        #110709
    );
}

.instagram-link {
    display: inline-block;
    margin-top: 35px;
    border-bottom: 1px solid #191113;
    padding-bottom: 7px;
    font: 12px "Cormorant Garamond";
    letter-spacing: 2px;
}

/* =========================================
   CUT TO BLACK
========================================= */

.cut-to-black {
    height: 420px;
    background: #000;
    display: grid;
    place-items: center;
    text-align: center;
    color: #6f6562;
    font-size: 8px;
    letter-spacing: 3px;
}

.cut-word {
    font: clamp(65px, 11vw, 150px) "Cormorant Garamond";
    color: #eee7de;
    letter-spacing: -3px;
}

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

@media (max-width: 800px) {

    .countdown {
        gap: 6px;
    }

    .countdown b {
        min-width: 55px;
    }

    .countdown i {
        font-size: 28px;
    }

    .bts-grid,
    .contact-sheet {
        grid-template-columns: 1fr;
    }

    .bts-head,
    .social-head {
        display: block;
    }

    .bts-head p,
    .social-head p {
        margin-top: 20px;
    }
}

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

@media (max-width: 768px) {

    /* -----------------------------------------
       GLOBAL
    ----------------------------------------- */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* -----------------------------------------
       NAVIGATION
    ----------------------------------------- */

    .nav {
        padding: 18px 20px;
    }

    .nav nav {
        display: none;
    }

    .nav .pass {
        display: none;
    }

    .nav .logo {
        font-size: 18px;
    }

.menu {
    position: relative;

    display: none;

    width: 44px;
    height: 44px;

    padding: 0;
    margin: 0;

    border: 0;
    background: transparent;

    cursor: pointer;

    z-index: 100;

    align-items: center;
    justify-content: center;

    flex-direction: column;
    gap: 6px;
}

.menu i {
    display: block;

    width: 25px;
    height: 2px;

    background: currentColor;

    transition:
        transform 0.35s ease,
        opacity 0.25s ease;
}


/* =========================================
   HAMBURGER → X
========================================= */

.menu.active i:first-child {
    transform: translateY(4px) rotate(45deg);
}

.menu.active i:last-child {
    transform: translateY(-4px) rotate(-45deg);
}


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

@media (max-width: 768px) {

    /* Keep navbar fixed */
    .nav {
        position: fixed !important;

        top: 0;
        left: 0;
        right: 0;

        width: 100%;
        z-index: 1000 !important;
    }


    /* Hamburger stays above menu */
    .menu {
        position: relative !important;

        display: flex !important;

        z-index: 1100 !important;

        flex-shrink: 0;
    }


    /* Full-screen menu */

    .nav nav {
        position: fixed !important;

        top: 0 !important;
        left: 0 !important;

        width: 100vw !important;
        height: 100dvh !important;

        box-sizing: border-box;

        margin: 0;
        padding: 110px 30px 40px;

        display: flex;

        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 28px;

        background: rgba(10, 10, 10, 0.97);

        transform: translateY(-100%);

        transition:
            transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);

        z-index: 1050;

        overflow-y: auto;
    }


    /* Open */

    .nav nav.active {
        transform: translateY(0);
    }


    /* Menu links */

    .nav nav a {
        display: block;

        font-size: 15px;
        letter-spacing: 0.15em;

        opacity: 0;

        transform: translateY(-15px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease;
    }


    /* Animate links in */

    .nav nav.active a {
        opacity: 1;
        transform: translateY(0);
    }


    /* Stagger */

    .nav nav.active a:nth-child(1) {
        transition-delay: 0.08s;
    }

    .nav nav.active a:nth-child(2) {
        transition-delay: 0.13s;
    }

    .nav nav.active a:nth-child(3) {
        transition-delay: 0.18s;
    }

    .nav nav.active a:nth-child(4) {
        transition-delay: 0.23s;
    }

    .nav nav.active a:nth-child(5) {
        transition-delay: 0.28s;
    }
}
}


    /* -----------------------------------------
       HERO
    ----------------------------------------- */

    .hero {
        min-height: 100svh;
        height: auto;

        overflow: hidden;
    }

    .hero-center {
        width: 100%;
        padding: 0 24px;

        text-align: center;
    }


    /* -----------------------------------------
       HERO TITLE
    ----------------------------------------- */

    .hero-center h1 {
        font-size: clamp(52px, 15vw, 100px);
        line-height: 0.9;

        white-space: nowrap;

        margin: 12px 0 18px;
    }

    .hero-center h1 sup {
        font-size: 0.35em;
        top: -1.2em;
    }


    /* -----------------------------------------
       HERO SMALL TEXT
    ----------------------------------------- */

    .hero-center .mini {
        font-size: 9px;
        letter-spacing: 0.2em;
    }

    .hero-center .present {
        font-size: 10px;
        letter-spacing: 0.18em;
    }


    /* -----------------------------------------
       SLOGAN
    ----------------------------------------- */

    .rule {
        gap: 10px;
        width: 100%;
    }

    .rule span {
        flex: 1;
    }

    .rule em {
        font-size: 10px;
        white-space: nowrap;
    }


    /* -----------------------------------------
       DATE
    ----------------------------------------- */

    .dates {
        font-size: 10px;
        letter-spacing: 0.12em;
        margin-top: 18px;
    }


    /* -----------------------------------------
       HERO BUTTON
    ----------------------------------------- */

    .hero-ticket {
        display: inline-flex;

        align-items: center;
        justify-content: center;

        padding: 13px 20px;

        font-size: 10px;

        margin-top: 16px;
    }


    /* -----------------------------------------
       HERO BOTTOM
    ----------------------------------------- */

    .hero-bottom {
        display: flex;

        justify-content: center;
        align-items: center;

        gap: 8px;

        padding: 0 18px 20px;

        font-size: 7px;

        white-space: nowrap;
    }

    .hero-bottom span {
        flex: 1;
        text-align: center;
    }


    /* -----------------------------------------
       CURTAINS
    ----------------------------------------- */

    .curtain {
        max-width: 42vw;
        height: 100%;

        object-fit: cover;
    }


    /* -----------------------------------------
       STAGE LIGHTS
    ----------------------------------------- */

    .stage-light {
        width: 55vw;
        height: 85%;

        filter: blur(7px);
    }

    .light-1 {
        left: -15%;
    }

    .light-2 {
        left: 8%;
    }

    .light-3 {
        right: 8%;
    }

    .light-4 {
        right: -15%;
    }


    /* -----------------------------------------
       FILM REEL
    ----------------------------------------- */

    .film-reel-bar {
        width: 100%;
        overflow: hidden;
    }

    .reel-track {
        white-space: nowrap;
        font-size: 16px;
    }


    /* -----------------------------------------
       COUNTDOWN
    ----------------------------------------- */

    .countdown-section {
        min-height: 70svh;

        padding: 80px 20px;
    }

    .countdown-copy {
        width: 100%;
    }

    .countdown {
        display: flex;

        justify-content: center;
        align-items: center;

        gap: 5px;

        width: 100%;

        margin: 20px 0 10px;
    }

    .countdown b {
        font-size: clamp(34px, 10vw, 60px);
    }

    .countdown i {
        font-size: clamp(24px, 7vw, 40px);
    }

    .countdown-copy small {
        font-size: 8px;
        letter-spacing: 0.12em;
    }

    .countdown-copy p {
        font-size: 9px;
        letter-spacing: 0.1em;
    }


    /* -----------------------------------------
       FOOTER
    ----------------------------------------- */

    footer {
        padding: 50px 24px 30px;
    }

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

        gap: 35px;
    }

    .footer-grid > div {
        width: 100%;
    }

    footer > small {
        display: block;

        line-height: 1.6;

        font-size: 7px;
    }
    @media (max-width: 768px) {

        /* Hamburger icon */

        .menu {
            display: flex !important;

            position: relative !important;
            z-index: 1100 !important;

            align-items: center;
            justify-content: center;
            flex-direction: column;

            gap: 6px;

            width: 44px;
            height: 44px;

            padding: 0;
            margin: 0;

            border: none;
            background: transparent !important;

            color: #f4eee2 !important;
        }

        .menu i {
            display: block;

            width: 25px;
            height: 2px;

            background: #f4eee2 !important;

            opacity: 1;

            /* NO ICON ANIMATION */
            transform: none !important;
            transition: none !important;
        }


        /* =========================================
        FULL SCREEN MENU
        ========================================= */

        .nav nav {
            position: fixed !important;

            top: 0 !important;
            left: 0 !important;

            width: 100vw !important;
            height: 100dvh !important;

            box-sizing: border-box;

            margin: 0;
            padding: 100px 30px 40px;

            display: flex;

            flex-direction: column;
            align-items: center;
            justify-content: center;

            gap: 28px;

            background: rgba(10, 10, 10, 0.97);

            z-index: 1050 !important;

            /* NO MOVEMENT */
            transform: none !important;

            /* FADE ONLY */
            opacity: 0;
            visibility: hidden;

            transition:
                opacity 0.4s ease,
                visibility 0.4s ease;

            overflow-y: auto;
        }


        /* =========================================
        OPEN MENU
        ========================================= */

        .nav nav.active {
            transform: none !important;

            opacity: 1;
            visibility: visible;
        }


        /* =========================================
        MENU LINKS
        ========================================= */

        .nav nav a {
            opacity: 0;

            /* NO SLIDE */
            transform: none !important;

            transition: opacity 0.25s ease;
        }

        .nav nav.active a {
            opacity: 1;

            transform: none !important;
        }


        /* =========================================
        REMOVE STAGGER MOVEMENT
        ========================================= */

        .nav nav.active a:nth-child(1),
        .nav nav.active a:nth-child(2),
        .nav nav.active a:nth-child(3),
        .nav nav.active a:nth-child(4),
        .nav nav.active a:nth-child(5) {
            transition-delay: 0s;
        }
    }
    /* =========================================
   STACKED TICKETS
   TEXT FULLY VISIBLE
========================================= */

.ticket-stack {
    position: relative;

    width: 100%;
    max-width: 620px;

    height: 570px;

    margin: 50px auto 0;
}


/* =========================================
   TICKET
========================================= */

.ticket-stack .ticket-card {
    position: absolute;

    left: 50%;

    width: 1250px !important;
    height: 190px;

    box-sizing: border-box;

    transform-origin: left center;

    /* Keeps the ticket content above the next card */
    overflow: visible;

    transition: transform 0.35s ease;
}

.desk-copy .ticket-card,
.ticket-stack .ticket-card {
    position: absolute !important;

    width: 700px !important;
    max-width: none !important;
    min-width: 650px !important;

    height: 190px !important;

    box-sizing: border-box !important;
}

.ticket-stack .ticket-card {
    border: 3px solid rgb(196, 182, 176);

    padding: 18px 22px;

    box-sizing: border-box;
}

/* =========================================
   STACK
========================================= */

/* DELEGATE */

.ticket-delegate {
    top: 0;

    transform:
        translateX(-50%)
        rotate(-5deg);

    z-index: 1;
}


/* DELEGATION */

.ticket-delegation {
    top: 95px;

    transform:
        translateX(-50%)
        rotate(-2.5deg);

    z-index: 2;
}


/* CHAIRBOARD */

.ticket-chairboard {
    top: 190px;

    transform:
        translateX(-50%)
        rotate(0deg);

    z-index: 3;
}


/* PRESS */

.ticket-press {
    top: 285px;

    transform:
        translateX(-50%)
        rotate(2.5deg);

    z-index: 4;
}


/* ADMIN */

.ticket-admin {
    top: 380px;

    transform:
        translateX(-50%)
        rotate(5deg);

    z-index: 5;
}
.ticket-stack .ticket-card > div {
    position: relative;
    top: -18px;
}

.desk-section > .ticket-stack {
    position: relative;

    width: 100%;
    height: 650px;

    margin: 0;

    max-width: none;

    overflow: visible;

    top: 0;
}

/* =========================================
   VENUE GOOGLE MAP
========================================= */

.venue-map {
    position: relative;
    overflow: hidden;
    z-index: 9999;

}

.venue-map iframe {
    display: block;

    width: 100%;
    height: 100%;
    z-index: 9999;
    border: 0;
}

.table-scene .scene-photo {
    position: relative;
}

.table-scene .scene-photo .venue-map {
    position: absolute;

    width: 700px;
    height: 500px;

    left: 50%;
    top: 50%;

    margin: 0;

    transform: translate(-50%, -50%);

    overflow: hidden;

    z-index: 9;
}

.table-scene .scene-photo .venue-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}

@media (max-width: 768px) {

    /* =====================================================
       GLOBAL
    ===================================================== */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        -webkit-text-size-adjust: 100%;
    }

    main {
        width: 100%;
        overflow: hidden;
    }


    /* =====================================================
       NAVIGATION
    ===================================================== */

    .nav {
        height: 90px;
        padding: 0 20px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav .logo {
        font-size: 17px;
    }

    .nav nav,
    .nav .pass {
        display: none;
    }

    .nav .menu {
        display: flex;

        width: 42px;
        height: 42px;

        padding: 0;
        margin: 0;

        align-items: center;
        justify-content: center;

        flex-direction: column;
        gap: 7px;

        background: transparent;
        border: none;
    }

    .nav .menu i {
        display: block;

        width: 24px;
        height: 2px;

        background: rgba(255, 255, 255, 0.9);
    }


    /* =====================================================
       SCENE 01
       THE CONFERENCE
    ===================================================== */

    .editorial {
        width: 100%;
        box-sizing: border-box;

        padding: 115px 20px 70px !important;
    }

    .editorial-grid {
        display: flex;
        flex-direction: column;

        gap: 55px;
    }

    .newspaper {
        width: 100%;
        max-width: 100%;

        box-sizing: border-box;
    }

    .paper-top {
        font-size: 8px;
    }

    .newspaper h2 {
        font-size: 55px;
        line-height: 0.85;
    }

    .newspaper .lead {
        font-size: 10px;
        line-height: 1.4;
    }

    .newspaper > p:not(.lead) {
        font-size: 13px;
        line-height: 1.7;
    }

    .paper-columns {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .paper-columns button {
        min-height: 55px;
    }

    .editorial-copy {
        width: 100%;
        max-width: 100%;
    }

    .editorial-copy h2 {
        font-size: 55px;
        line-height: 0.88;
    }

    .editorial-copy p {
        font-size: 14px;
        line-height: 1.7;
    }


    /* =====================================================
       SCENE 02
       CONFERENCE FEES
    ===================================================== */

    .desk-section {
        width: 100%;
        box-sizing: border-box;

        display: flex;
        flex-direction: column;

        padding: 70px 20px;

        gap: 45px;

        overflow: visible;
    }

    .desk-copy {
        width: 100%;
        max-width: 100%;
    }

    .desk-copy h2 {
        font-size: 58px;
        line-height: 0.85;

        margin: 20px 0;
    }

    .desk-copy p {
        max-width: 330px;

        font-size: 14px;
        line-height: 1.7;
    }


    /* =====================================================
       TICKET STACK
    ===================================================== */

    .desk-section > .ticket-stack {

        position: relative !important;

        display: block !important;

        width: 100% !important;
        height: 500px !important;

        margin: 0 auto !important;
        padding: 0 !important;

        overflow: visible !important;
    }


    /* =====================================================
       INDIVIDUAL TICKETS
    ===================================================== */

    .desk-section > .ticket-stack .ticket-card {

        position: absolute !important;

        left: 50% !important;

        width: 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;

        height: 100px !important;
        min-height: 100px !important;
        max-height: 100px !important;

        margin: 0 !important;
        padding: 0 !important;

        box-sizing: border-box !important;

        overflow: hidden !important;

        transform-origin: center center !important;
    }


    /* =====================================================
       TICKET FAN
    ===================================================== */

    .desk-section > .ticket-stack .ticket-delegate {

        top: 0 !important;

        transform:
            translateX(-50%)
            rotate(-4deg) !important;

        z-index: 1 !important;
    }

    .desk-section > .ticket-stack .ticket-delegation {

        top: 65px !important;

        transform:
            translateX(-50%)
            rotate(-2deg) !important;

        z-index: 2 !important;
    }

    .desk-section > .ticket-stack .ticket-chairboard {

        top: 130px !important;

        transform:
            translateX(-50%)
            rotate(0deg) !important;

        z-index: 3 !important;
    }

    .desk-section > .ticket-stack .ticket-press {

        top: 195px !important;

        transform:
            translateX(-50%)
            rotate(2deg) !important;

        z-index: 4 !important;
    }

    .desk-section > .ticket-stack .ticket-admin {

        top: 260px !important;

        transform:
            translateX(-50%)
            rotate(4deg) !important;

        z-index: 5 !important;
    }


    /* =====================================================
       MAIN TICKET INFORMATION
    ===================================================== */

    .desk-section > .ticket-stack .ticket-card > div:first-child {

        position: absolute !important;

        left: 14px !important;
        top: 50% !important;

        width: 42% !important;
        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        transform: translateY(-50%) !important;

        z-index: 10 !important;
    }

    .desk-section > .ticket-stack .ticket-card > div:first-child small {

        display: block !important;

        margin: 0 0 4px 0 !important;

        font-size: 7px !important;
        line-height: 1 !important;
    }

    .desk-section > .ticket-stack .ticket-card > div:first-child strong {

        display: block !important;

        margin: 0 !important;

        font-size: 18px !important;
        line-height: 1 !important;

        white-space: nowrap !important;
    }

    .desk-section > .ticket-stack .ticket-card > div:first-child span {

        display: block !important;

        margin: 6px 0 0 0 !important;

        font-size: 7px !important;
        line-height: 1 !important;

        white-space: nowrap !important;
    }


    /* =====================================================
       PRICE STUBS
    ===================================================== */

    .desk-section > .ticket-stack .ticket-stubs {

        position: absolute !important;

        top: 0 !important;
        right: 0 !important;

        width: 55% !important;
        height: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;
        flex-direction: row !important;

        box-sizing: border-box !important;

        z-index: 4 !important;
    }

    .desk-section > .ticket-stack .stub-content {

        position: relative !important;

        flex: 1 1 0 !important;

        width: auto !important;
        min-width: 0 !important;

        height: 100% !important;

        margin: 0 !important;
        padding: 0 4px !important;

        box-sizing: border-box !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;
        justify-content: center !important;

        text-align: center !important;

        transform: none !important;
    }


    /* =====================================================
       PRICE DIVIDER LINES
    ===================================================== */

    .desk-section > .ticket-stack .stub-content + .stub-content {

        border-left: 1px solid rgba(80, 60, 55, 0.4) !important;
    }


    /* =====================================================
       PRICE TEXT
    ===================================================== */

    .desk-section > .ticket-stack .stub-content b {

        display: block !important;

        margin: 0 !important;

        font-size: 8px !important;

        line-height: 1 !important;

        white-space: nowrap !important;
    }

    .desk-section > .ticket-stack .stub-content small {

        display: block !important;

        margin: 5px 0 0 0 !important;

        font-size: 6px !important;

        line-height: 1 !important;

        white-space: nowrap !important;
    }


    /* =====================================================
       SCENE 03
       VENUE
    ===================================================== */

    .table-scene {

        width: 100%;
        box-sizing: border-box;

        display: flex;
        flex-direction: column;

        padding: 70px 20px;

        gap: 50px;

        overflow: visible;
    }


    /* =====================================================
       VENUE LEFT AREA
    ===================================================== */

    .table-scene .scene-photo {

        position: relative;

        width: 100%;
        height: 350px;
        min-height: 350px;

        box-sizing: border-box;

        overflow: visible;
    }


    /* =====================================================
       FIXED MAP
    ===================================================== */

    .table-scene .scene-photo .venue-map {

        position: absolute !important;

        left: 50% !important;
        top: 45% !important;

        width: 330px !important;
        height: 210px !important;

        margin: 0 !important;

        transform: translate(-50%, -50%) !important;

        overflow: hidden !important;

        z-index: 3 !important;
    }

    .table-scene .scene-photo .venue-map iframe {

        display: block;

        width: 100%;
        height: 100%;

        border: none;
    }


    /* =====================================================
       VENUE CHAIRS
    ===================================================== */

    .table-scene .chairs {

        position: absolute;

        left: 0;
        bottom: 35px;

        width: 100%;

        text-align: center;

        font-size: 13px;
    }


    /* =====================================================
       CAMERA NOTE
    ===================================================== */

    .table-scene .camera-note {

        position: absolute;

        left: 0;
        bottom: 8px;

        width: 100%;

        text-align: center;

        font-size: 8px;
    }


    /* =====================================================
       VENUE TEXT
    ===================================================== */

    .scene-copy {

        width: 100%;
        max-width: 100%;
    }

    .scene-copy h2 {

        font-size: 55px;
        line-height: 0.88;

        margin: 20px 0;
    }

    .scene-copy p {

        max-width: 340px;

        font-size: 14px;
        line-height: 1.7;
    }


    /* =====================================================
       SCHEDULE
    ===================================================== */

    .countdown-section {

        width: 100%;
        box-sizing: border-box;

        padding: 70px 20px;
    }

    .countdown-copy {

        width: 100%;
    }

    .countdown-copy h2 {

        font-size: 55px !important;
        line-height: 0.9 !important;
    }

    .countdown-copy p {

        font-size: 14px;
        line-height: 1.7;
    }


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

    footer {

        width: 100%;
        box-sizing: border-box;

        padding: 60px 20px 30px;
    }

    .footer-grid {

        display: flex;
        flex-direction: column;

        gap: 35px;
    }

    .footer-grid > div {

        width: 100%;
    }

    footer > small {

        display: block;

        font-size: 8px;
        line-height: 1.6;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 430px) {

    /* -----------------------------------------
       GENERAL
    ----------------------------------------- */

    .editorial {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .desk-section,
    .table-scene,
    .countdown-section {
        padding-left: 15px;
        padding-right: 15px;
    }


    /* -----------------------------------------
       HEADINGS
    ----------------------------------------- */

    .newspaper h2,
    .editorial-copy h2,
    .desk-copy h2,
    .scene-copy h2,
    .countdown-copy h2 {
        font-size: 48px !important;
    }


    /* -----------------------------------------
       TICKETS
    ----------------------------------------- */

    .desk-section > .ticket-stack {
        height: 470px !important;
    }

    .desk-section > .ticket-stack .ticket-card {
        width: 270px !important;
        min-width: 270px !important;
        max-width: 270px !important;

        height: 95px !important;
        min-height: 95px !important;
        max-height: 95px !important;
    }

    .desk-section > .ticket-stack .ticket-delegation {
        top: 62px !important;
    }

    .desk-section > .ticket-stack .ticket-chairboard {
        top: 124px !important;
    }

    .desk-section > .ticket-stack .ticket-press {
        top: 186px !important;
    }

    .desk-section > .ticket-stack .ticket-admin {
        top: 248px !important;
    }


    /* -----------------------------------------
       MAP
    ----------------------------------------- */

    .table-scene .scene-photo .venue-map {

        width: 300px !important;
        height: 195px !important;
    }
}

/* =========================================================
   COMING SOON PAGE
========================================================= */

.coming-page {
    width: 100%;
    overflow: hidden;
}


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

.coming-hero {
    min-height: 100vh;

    box-sizing: border-box;

    padding: 150px 7vw 100px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coming-tag {
    font-family: 'DM Sans', sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .18em;

    opacity: .55;

    margin-bottom: 45px;
}


/* =========================================================
   MAIN GRID
========================================================= */

.coming-layout {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8vw;

    align-items: center;

    max-width: 1250px;

    width: 100%;

    margin: 0 auto;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.coming-main {
    max-width: 600px;
}

.coming-main .red-label {
    display: inline-block;

    font-family: 'DM Sans', sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .18em;

    color: #a8242b;

    margin-bottom: 20px;
}

.coming-main h1 {
    margin: 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(80px, 10vw, 145px);

    font-weight: 500;

    line-height: .72;

    letter-spacing: -.045em;
}

.coming-main h1 i {
    color: #a8242b;

    font-weight: 500;
}

.coming-rule {
    width: 100%;

    height: 1px;

    background: currentColor;

    opacity: .25;

    margin: 55px 0 28px;
}

.coming-lead {
    max-width: 480px;

    font-family: 'DM Sans', sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .08em;

    line-height: 1.6;

    margin-bottom: 18px;
}

.coming-description {
    max-width: 470px;

    font-family: 'Libre Baskerville', serif;

    font-size: 14px;

    line-height: 1.9;

    opacity: .7;
}

.back-link {
    display: inline-block;

    margin-top: 35px;

    font-family: 'DM Sans', sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .14em;

    color: inherit;

    text-decoration: none;

    border-bottom: 1px solid currentColor;

    padding-bottom: 7px;

    transition: opacity .25s ease;
}

.back-link:hover {
    opacity: .55;
}


/* =========================================================
   PRODUCTION SIDE
========================================================= */

.coming-production {
    position: relative;

    width: 100%;

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   FILM FRAME
========================================================= */

.film-frame {
    position: relative;

    width: min(430px, 100%);

    aspect-ratio: 4 / 5;

    border: 1px solid rgba(255,255,255,.35);

    padding: 18px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    transform: rotate(3deg);
}

.frame-top,
.frame-bottom {
    display: flex;

    justify-content: space-between;

    font-family: 'DM Sans', sans-serif;

    font-size: 7px;

    letter-spacing: .12em;

    opacity: .6;
}

.frame-center {
    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;
}

.frame-center .reel {
    font-family: serif;

    font-size: 90px;

    line-height: 1;

    opacity: .15;

    margin-bottom: 10px;
}

.frame-center strong {
    font-family: 'Cormorant Garamond', serif;

    font-size: 52px;

    font-weight: 500;

    line-height: .8;
}

.frame-center strong i {
    color: #a8242b;

    font-weight: 500;
}

.frame-center small {
    margin-top: 20px;

    font-family: 'DM Sans', sans-serif;

    font-size: 7px;

    letter-spacing: .2em;

    opacity: .5;
}


/* =========================================================
   CLAPPER
========================================================= */

.clapper {
    position: absolute;

    right: -35px;
    bottom: 45px;

    width: 180px;

    transform: rotate(-7deg);

    z-index: 4;
}

.clapper-top {
    height: 24px;

    background: #171717;

    border: 1px solid rgba(255,255,255,.3);

    display: flex;
}

.clapper-top span {
    flex: 1;

    transform: skewX(-25deg);

    border-right: 1px solid rgba(255,255,255,.2);
}

.clapper-body {
    height: 65px;

    background: #111;

    border: 1px solid rgba(255,255,255,.25);

    border-top: none;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 0 15px;
}

.clapper-body b {
    font-family: 'DM Sans', sans-serif;

    font-size: 10px;

    letter-spacing: .1em;
}

.clapper-body small {
    margin-top: 5px;

    font-family: 'DM Sans', sans-serif;

    font-size: 7px;

    letter-spacing: .15em;

    opacity: .5;
}


/* =========================================================
   DIRECTOR'S NOTE
========================================================= */

.coming-note {
    padding: 100px 7vw;

    border-top: 1px solid rgba(255,255,255,.12);
}

.note-grid {
    max-width: 1100px;

    margin: 50px auto 0;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10vw;
}

.note-number {
    font-family: 'DM Sans', sans-serif;

    font-size: 9px;

    letter-spacing: .15em;

    opacity: .45;
}

.note-grid h2 {
    margin: 20px 0 0;

    font-family: 'Cormorant Garamond', serif;

    font-size: 80px;

    line-height: .75;

    font-weight: 500;
}

.note-grid h2 i {
    color: #a8242b;
}

.note-grid p {
    max-width: 400px;

    font-family: 'Libre Baskerville', serif;

    font-size: 15px;

    line-height: 1.9;

    opacity: .7;
}


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

@media (max-width: 768px) {

    .coming-hero {
        min-height: auto;

        padding: 125px 20px 80px;
    }

    .coming-tag {
        margin-bottom: 35px;
    }

    .coming-layout {
        display: flex;

        flex-direction: column;

        gap: 80px;
    }

    .coming-main {
        width: 100%;
    }

    .coming-main h1 {
        font-size: 78px;

        line-height: .75;
    }

    .coming-rule {
        margin: 40px 0 25px;
    }

    .coming-description {
        font-size: 13px;

        line-height: 1.8;
    }

    .coming-production {
        min-height: 400px;

        width: 100%;
    }

    .film-frame {
        width: 300px;

        transform: rotate(2deg);
    }

    .frame-center strong {
        font-size: 40px;
    }

    .frame-center .reel {
        font-size: 65px;
    }

    .clapper {
        width: 145px;

        right: 0;
        bottom: 25px;
    }

    .clapper-body {
        height: 55px;
    }

    .coming-note {
        padding: 70px 20px;
    }

    .note-grid {
        display: flex;

        flex-direction: column;

        gap: 40px;

        margin-top: 35px;
    }

    .note-grid h2 {
        font-size: 65px;
    }
}

/* =========================================================
   COMMITTEE POPUP
========================================================= */

.committee-popup {
    position: fixed;
    inset: 0;

    z-index: 99999;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 4vh 4vw;

    box-sizing: border-box;

    background: rgba(0, 0, 0, 0.72);

    backdrop-filter: blur(6px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* OPEN */

.committee-popup.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================================================
   POPUP BOX
========================================================= */

.committee-popup-box {
    position: relative;

    width: 90vw;

    /*
       IMPORTANT:
       The popup no longer has a fixed 90vh height.
       It grows according to its content.
    */

    height: auto;

    max-height: 90vh;

    max-width: 1300px;

    box-sizing: border-box;

    padding: 35px 50px;

    overflow-y: auto;

    background: #0b0a0a;

    border: 1px solid rgba(255, 255, 255, 0.16);

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.8);

    transform: scale(0.96);

    transition:
        transform 0.3s ease;
}


.committee-popup.open .committee-popup-box {
    transform: scale(1);
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.committee-popup-close {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 10;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 0;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.25);

    color: white;

    font-size: 24px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.committee-popup-close:hover {
    background: #a8242b;

    border-color: #a8242b;
}


/* =========================================================
   TOP BAR
========================================================= */

.committee-popup-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding-bottom: 16px;

    padding-right: 55px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.12);
}


.committee-popup-top span {
    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.2em;

    color: #a8242b;
}


.committee-popup-top small {
    font-family: "DM Sans", sans-serif;

    font-size: 7px;

    letter-spacing: 0.15em;

    opacity: 0.35;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.committee-popup-content {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(280px, 0.9fr);

    gap: 50px;

    padding: 30px 0;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.committee-popup-left {
    min-width: 0;
}


.popup-label {
    display: block;

    margin-bottom: 12px;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.2em;

    color: #a8242b;
}


.committee-popup-left h2 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(60px, 7vw, 105px);

    font-weight: 500;

    line-height: 0.8;

    letter-spacing: -0.045em;
}


/* =========================================================
   IMAGE
========================================================= */

.committee-popup-image {
    width: 100%;

    height: 210px;

    margin-top: 25px;

    overflow: hidden;

    background: #111;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    box-sizing: border-box;
}


.committee-popup-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.committee-popup-right {
    display: flex;

    flex-direction: column;

    gap: 18px;
}


.popup-info {
    padding-bottom: 15px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.12);
}


.popup-info > span {
    display: block;

    margin-bottom: 7px;

    font-family: "DM Sans", sans-serif;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 0.18em;

    opacity: 0.4;
}


.popup-info h3 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 28px;

    font-weight: 500;

    line-height: 1.05;
}


.popup-info p {
    margin: 0;

    font-family:
        "Libre Baskerville",
        serif;

    font-size: 11px;

    line-height: 1.65;

    opacity: 0.65;
}


/* =========================================================
   BOTTOM
========================================================= */

.committee-popup-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding-top: 16px;

    border-top:
        1px solid rgba(255, 255, 255, 0.12);
}


.committee-popup-bottom > span {
    font-family: "DM Sans", sans-serif;

    font-size: 7px;

    letter-spacing: 0.15em;

    opacity: 0.35;
}


/* =========================================================
   BUTTONS
========================================================= */

.popup-buttons {
    display: flex;

    gap: 10px;
}


.popup-buttons a {
    display: flex;

    align-items: center;

    gap: 12px;

    min-width: 160px;

    padding: 12px 14px;

    box-sizing: border-box;

    border:
        1px solid rgba(255, 255, 255, 0.2);

    color: white;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 0.1em;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.popup-buttons a b {
    margin-left: auto;

    font-size: 13px;
}


.popup-buttons a:hover {
    background: #a8242b;

    border-color: #a8242b;
}


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

@media (max-width: 768px) {

    .committee-popup {
        padding: 4vh 4vw;
    }


    .committee-popup-box {
        width: 92vw;

        height: auto;

        max-height: 92vh;

        padding: 25px 22px;
    }


    /* TOP */

    .committee-popup-top {
        padding-right: 45px;
    }


    .committee-popup-top small {
        display: none;
    }


    /* CONTENT */

    .committee-popup-content {
        display: flex;

        flex-direction: column;

        gap: 25px;

        padding: 25px 0;
    }


    /* TITLE */

    .committee-popup-left h2 {
        font-size: 60px;
    }


    /* IMAGE */

    .committee-popup-image {
        height: 160px;

        margin-top: 20px;
    }


    /* INFO */

    .committee-popup-right {
        gap: 18px;
    }


    .popup-info {
        padding-bottom: 14px;
    }


    /* BOTTOM */

    .committee-popup-bottom {
        flex-direction: column;

        align-items: stretch;

        gap: 15px;

        padding-top: 16px;
    }


    /* BUTTONS */

    .popup-buttons {
        flex-direction: column;

        width: 100%;
    }


    .popup-buttons a {
        width: 100%;

        min-width: 0;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 450px) {

    .committee-popup {
        padding: 3vh 3vw;
    }


    .committee-popup-box {
        width: 94vw;

        max-height: 94vh;

        padding: 22px 18px;
    }


    .committee-popup-close {
        top: 12px;
        right: 12px;

        width: 36px;
        height: 36px;

        font-size: 22px;
    }


    .committee-popup-content {
        gap: 22px;

        padding: 22px 0;
    }


    .committee-popup-left h2 {
        font-size: 52px;
    }


    .committee-popup-image {
        width: fit-content;
        max-width: 100%;
        margin: 25px auto 0;

        overflow: hidden;

        border: 1px solid rgba(255, 255, 255, 0.16);
        box-sizing: border-box;

        line-height: 0;
    }

    .committee-popup-image img {
        display: block;

        width: auto;
        height: auto;

        max-width: 100%;
        max-height: 260px;

        object-fit: contain;
    }

.committee-popup-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;
}


    .popup-info h3 {
        font-size: 25px;
    }


    .popup-info p {
        font-size: 10px;

        line-height: 1.6;
    }

}


/* =========================================================
   APPLICATION PAGE
========================================================= */

.application-status {
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    margin-bottom: 18px;

    opacity: 0.7;
}


/* APPLICATION GRID */

.cast-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 32px;

    margin-top: 55px;
}


/* FIRST THREE */

.application-card:nth-child(1),
.application-card:nth-child(2),
.application-card:nth-child(3) {
    grid-column: span 2;
}


/* PRESS + ADMIN */

.application-card:nth-child(4),
.application-card:nth-child(5) {
    grid-column: span 2;
}


/* CENTER THE SECOND ROW */

.application-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.application-card:nth-child(5) {
    grid-column: 4 / span 2;
}


/* CLICKABLE CARD */

.application-card {
    display: block;

    text-decoration: none;
    color: inherit;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.application-card:hover {
    transform: translateY(-6px);
}

.application-card:hover .portrait {
    border-color: rgba(255,255,255,0.5);
}


/* IMAGE / PORTRAIT */

.application-card .portrait {
    position: relative;

    width: 100%;
    aspect-ratio: 3 / 4;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.18);

    background: #111;

    transition:
        border-color 0.3s ease;
}


/* IMAGE */

.application-card .portrait img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.72;

    transition:
        transform 0.5s ease,
        opacity 0.3s ease;
}


/* IMAGE HOVER */

.application-card:hover .portrait img {
    transform: scale(1.04);
    opacity: 0.9;
}


/* TEXT OVER IMAGE */

.application-card .portrait span {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 2;

    font-family: "DM Sans", sans-serif;

    font-size: 0.65rem;
    font-weight: 700;

    letter-spacing: 0.15em;

    color: white;
}


.application-card .portrait b {
    position: absolute;

    right: 18px;
    bottom: 15px;

    z-index: 2;

    font-family: "Cormorant Garamond", serif;

    font-size: 2rem;
    font-weight: 500;

    color: white;
}


/* DARK OVERLAY */

.application-card .portrait::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.25),
            rgba(0,0,0,0.55)
        );

    pointer-events: none;
}


/* CARD TEXT */

.application-card h3 {
    margin-top: 20px;
    margin-bottom: 5px;

    font-family: "Cormorant Garamond", serif;

    font-size: 1.7rem;
    font-weight: 600;

    letter-spacing: 0.02em;
}


.application-card p {
    margin: 0;

    font-family: "DM Sans", sans-serif;

    font-size: 0.7rem;
    font-weight: 600;

    letter-spacing: 0.12em;

    opacity: 0.55;
}

@media (max-width: 768px) {

    .application-status {
        font-size: 0.62rem;
        line-height: 1.5;
    }

    .cast-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px 14px;
        margin-top: 40px;
    }

    .application-card:nth-child(1),
    .application-card:nth-child(2),
    .application-card:nth-child(3),
    .application-card:nth-child(4),
    .application-card:nth-child(5) {

        grid-column: span 1;
    }

    /*
       Press + Admin remain on the
       second/third rows naturally.
    */

    .application-card .portrait {
        aspect-ratio: 3 / 4;
    }

    .application-card h3 {
        font-size: 1.25rem;
        margin-top: 12px;
    }

    .application-card p {
        font-size: 0.58rem;
        line-height: 1.4;
    }

    .application-card .portrait span {
        top: 12px;
        left: 12px;
        font-size: 0.52rem;
    }

    .application-card .portrait b {
        right: 12px;
        bottom: 10px;
        font-size: 1.4rem;
    }

}

/* =========================================================
   EARLY APPLICATIONS
========================================================= */

.early-applications {
    padding: 145px 7vw 90px;
}

.early-applications-content {
    margin-top: 45px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    border-bottom: 1px solid rgba(255,255,255,0.16);

    padding-bottom: 55px;
}

.early-label {
    display: block;

    margin-bottom: 15px;

    font-family: "DM Sans", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    opacity: 0.55;
}

.early-applications h1 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 500;
    line-height: 0.82;
    letter-spacing: -0.04em;
}

.early-applications h1 i {
    display: block;

    font-weight: 500;
}

.early-applications-content p {
    max-width: 280px;

    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.12em;

    opacity: 0.55;
}

@media (max-width: 768px) {

    .cast-grid {
        display: flex;
        flex-direction: column;
        gap: 35px;

        margin-top: 40px;
    }

    .application-card {
        width: 100%;
        display: block;
    }

    .application-card .portrait {
        width: 100%;
        aspect-ratio: 1 / 1;
        height: auto;

        overflow: hidden;
    }

    .application-card .portrait img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .application-card .portrait span {
        top: 14px;
        left: 14px;
        font-size: 0.55rem;
    }

    .application-card .portrait b {
        right: 14px;
        bottom: 10px;
        font-size: 1.5rem;
    }

    .application-card h3 {
        margin-top: 13px;
        margin-bottom: 5px;

        font-size: 1.3rem;
        line-height: 1;
    }

    .application-card p {
        font-size: 0.55rem;
        line-height: 1.4;
    }

    .application-card:active {
        transform: scale(0.98);
    }
}