:root {
    --black: #050505;
    --white: #f4f0e7;
    --muted: #aaa59d;
    --line: rgba(255, 255, 255, 0.14);
    --accent: #CC5500;
    --header-green: #C8FF20;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    box-sizing: border-box;
}

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

html,
body {
    margin: 0;
    width: 100%;
}

body {
    background: var(--black);
    color: var(--white);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    -webkit-font-smoothing: antialiased;
}

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

button {
    font: inherit;
}

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


/* =========================================================
   GRAIN
   ========================================================= */

body::after {
    content: "";

    position: fixed;
    inset: 0;

    z-index: 9999;

    pointer-events: none;

    opacity: 0.025;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.4'/%3E%3C/svg%3E");
}


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

.hero {
    position: relative;

    width: 100%;
    height: 100vh;

    min-height: 760px;

    overflow: hidden;

    background: #050505;
}


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

fcp-header {
    position: absolute;

    top: 0;
    left: 0;

    z-index: 30;

    width: 100%;

    display: block;
}


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

.hero-image-wrap {
    position: absolute;
    inset: 0;

    z-index: 0;

    overflow: hidden;

    background: #050505;
}

.hero-image {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;

    object-position: 37% 50%;

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

    transform-origin: center center;

    transition:
        opacity 0.35s ease;
}

.hero-image.hypnos-motion {
    transition:
        opacity 0.35s ease,
        transform 1.4s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


/* =========================================================
   HERO IMAGE OVERLAY
   ========================================================= */

.hero-image-wrap::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68) 0%,
            rgba(0, 0, 0, 0.40) 21%,
            rgba(0, 0, 0, 0.08) 55%,
            rgba(0, 0, 0, 0.34) 100%
        ),

        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.02) 48%,
            rgba(0, 0, 0, 0.14) 100%
        );
}


/* =========================================================
   LEFT HERO COPY
   ========================================================= */

.hero-copy {
    position: absolute;

    z-index: 5;

    left:
        clamp(
            28px,
            4vw,
            72px
        );

    top: 50%;

    width:
        min(
            510px,
            38vw
        );

    opacity: 1;

    transform:
        translateY(-42%);

    transition:
        opacity 0.45s ease,
        transform 0.65s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.hero-copy.text-leaving {
    opacity: 0;

    transform:
        translateY(-36%);
}

.hero-copy.text-entering {
    opacity: 0;

    transform:
        translateY(-48%);
}

.hero-kicker {
    margin-bottom: 18px;

    color: var(--accent);

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


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

.hero-copy h1 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(
            82px,
            7.3vw,
            122px
        );

    font-weight: 500;

    line-height: 0.78;

    letter-spacing: -0.05em;

    color: var(--white);
}

.hero-rule {
    width: 74px;
    height: 3px;

    margin:
        28px
        0
        23px;

    background: var(--accent);
}

.hero-synopsis {
    max-width: 420px;

    margin:
        0
        0
        18px;

    color:
        rgba(255, 255, 255, 0.88);

    font-size: 16px;

    line-height: 1.52;
}

.hero-specs {
    color: var(--white);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.17em;

    line-height: 1.4;

    text-transform: uppercase;
}


/* =========================================================
   VIEW PROJECT
   ========================================================= */

.view-project {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 22px;

    color: var(--accent);

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

    letter-spacing: 0.15em;

    text-transform: uppercase;

    transition:
        gap 0.2s ease,
        opacity 0.2s ease;
}

.view-project:hover {
    gap: 13px;

    opacity: 0.8;
}

.view-project.hidden {
    display: none;
}


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

.hero-actions {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 22px;
}

.hero-actions .view-project {
    margin-top: 0;
}

.ticket-button {
    display: inline-flex;

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

    min-height: 38px;

    padding:
        0
        18px;

    border:
        1px solid
        var(--accent);

    color:
        var(--accent);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        opacity 0.2s ease;
}

.ticket-button:hover {
    background:
        var(--accent);

    color:
        var(--white);
}

.ticket-button.hidden {
    display: none;
}


/* =========================================================
   RIGHT HERO METADATA
   ========================================================= */

.hero-metadata {
    position: absolute;

    z-index: 6;

    right: 7.5%;

    width: 355px;

    color: var(--white);

    opacity: 1;

    transform:
        translateY(0);

    transition:
        top 0.65s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),
        opacity 0.45s ease,
        transform 0.65s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.hero.project-victoria .hero-metadata {
    top: 22%;
}

.hero.project-hypnos .hero-metadata {
    top: 33%;
}

.hero.project-chandrakaal .hero-metadata {
    top: 30%;
}

.hero.project-moneyback .hero-metadata {
    top: 33%;
}

.hero-metadata.metadata-leaving {
    opacity: 0;

    transform:
        translateY(16px);
}

.hero-metadata.metadata-entering {
    opacity: 0;

    transform:
        translateY(-16px);
}


/* =========================================================
   LAURELS
   ========================================================= */

.hero-laurels {
    display: flex;
    align-items: center;

    gap: 22px;

    width: 100%;

    min-height: 105px;

    margin-bottom: 30px;
}

.hero-laurels.hidden {
    display: none;
}

.hero-laurel-vqff {
    width: 128px;

    flex:
        0
        0
        auto;
}

.hero-laurel-j4r {
    width: 60px;

    flex:
        0
        0
        auto;
}

.hero-laurel-isaff {
    width: 115px;

    flex:
        0
        0
        auto;
}

.hero-laurels img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   PROJECT TABS
   ========================================================= */

.project-tabs {
    display: flex;
    align-items: center;

    gap: 26px;

    width: 100%;

    padding-bottom: 15px;

    margin-bottom: 26px;

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

.project-tab {
    position: relative;

    padding: 0;

    border: 0;

    background: transparent;

    color:
        rgba(255, 255, 255, 0.58);

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

    letter-spacing: 0.14em;

    text-transform: uppercase;

    cursor: pointer;

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

.project-tab:hover {
    color: var(--white);
}

.project-tab.active {
    color: var(--white);
}

.project-tab.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -16px;

    height: 2px;

    background: var(--accent);

    transform-origin:
        left center;

    animation:
        tabIndicatorIn
        0.4s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

@keyframes tabIndicatorIn {

    from {
        transform:
            scaleX(0);

        opacity: 0;
    }

    to {
        transform:
            scaleX(1);

        opacity: 1;
    }

}


/* =========================================================
   PANEL TRANSITIONS
   ========================================================= */

.metadata-panel {
    opacity: 1;

    transform:
        translateY(0);

    transition:
        opacity 0.42s ease,
        transform 0.58s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.metadata-panel.panel-leaving {
    opacity: 0;

    transform:
        translateY(10px);
}

.metadata-panel.panel-entering {
    opacity: 0;

    transform:
        translateY(-10px);
}


/* =========================================================
   ABOUT PANEL
   ========================================================= */

.about-panel {
    display: block;
}

.about-panel.hidden {
    display: none;
}


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

.trailer-panel {
    display: none;
}

.trailer-panel.active {
    display: block;
}

.trailer-player {
    position: relative;

    width: 100%;

    aspect-ratio:
        16 / 9;

    overflow: hidden;

    background:
        #080808;

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

.trailer-player iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}

.trailer-start {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

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

    gap: 14px;

    padding: 0;

    border: 0;

    background:
        transparent;

    color:
        var(--white);

    cursor: pointer;

    overflow: hidden;
}

.trailer-thumbnail {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;

    transform:
        scale(1);

    transition:
        transform 0.8s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.trailer-start::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.62) 0%,
            rgba(0, 0, 0, 0.12) 55%,
            rgba(0, 0, 0, 0.18) 100%
        ),

        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.18),
            transparent 55%
        );
}

.trailer-start:hover .trailer-thumbnail {
    transform:
        scale(1.025);
}

.trailer-play-icon {
    position: relative;

    z-index: 2;

    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    border:
        2px solid
        var(--accent);

    border-radius: 50%;

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

    backdrop-filter:
        blur(2px);

    transition:
        transform 0.22s ease,
        background 0.22s ease;
}

.trailer-start:hover .trailer-play-icon {
    transform:
        scale(1.06);

    background:
        rgba(204, 85, 0, 0.16);
}

.trailer-play-icon::before {
    content: "";

    display: block;

    margin-left: 4px;

    width: 0;
    height: 0;

    border-top:
        8px solid
        transparent;

    border-bottom:
        8px solid
        transparent;

    border-left:
        13px solid
        var(--accent);
}

.trailer-start-label {
    position: relative;

    z-index: 2;

    color:
        rgba(255, 255, 255, 0.84);

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

    letter-spacing: 0.16em;

    text-transform: uppercase;

    text-shadow:
        0
        2px
        9px
        rgba(0, 0, 0, 0.55);
}

.trailer-coming-soon {
    position: relative;

    width: 100%;

    aspect-ratio:
        16 / 9;

    display: grid;
    place-items: center;

    overflow: hidden;

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

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

    color:
        rgba(255, 255, 255, 0.64);

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

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.trailer-coming-soon::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.26;

    background:
        linear-gradient(
            120deg,
            transparent 20%,
            rgba(204, 85, 0, 0.15) 50%,
            transparent 80%
        );
}

.trailer-project-title {
    margin-top: 15px;

    color:
        rgba(255, 255, 255, 0.68);

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

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


/* =========================================================
   METADATA
   ========================================================= */

.hero-fact {
    margin-bottom: 27px;

    color:
        rgba(255, 255, 255, 0.94);

    font-size: 15px;

    line-height: 1.48;
}

.hero-fact:last-child {
    margin-bottom: 0;
}

.hero-fact-label {
    display: block;

    margin-bottom: 6px;

    color:
        rgba(255, 255, 255, 0.60);

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}

.hero-fact strong {
    color: var(--white);

    font-weight: 600;
}

.screening-entry {
    margin-bottom: 17px;
}

.screening-entry:last-child {
    margin-bottom: 0;
}

.metadata-ticket-link {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin-top: 8px;

    color:
        var(--accent);

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

    letter-spacing: 0.12em;

    text-transform: uppercase;

    transition:
        gap 0.2s ease,
        opacity 0.2s ease;
}

.metadata-ticket-link:hover {
    gap: 10px;

    opacity: 0.75;
}


/* =========================================================
   CAROUSEL
   ========================================================= */

.carousel-next {
    position: absolute;

    z-index: 12;

    right: 32px;
    bottom: 34px;

    width: 112px;
    height: 66px;

    display: flex;

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

    padding: 0;

    border: 0;

    background:
        transparent;

    cursor: pointer;

    transition:
        transform 0.22s ease;
}

.carousel-next:hover {
    transform:
        translateX(7px);
}

.carousel-next svg {
    width: 102px;
    height: 58px;

    overflow: visible;
}

.carousel-next line,
.carousel-next path {
    stroke:
        var(--accent);

    stroke-width: 4;

    fill: none;

    stroke-linecap: square;
    stroke-linejoin: miter;
}

.carousel-count {
    position: absolute;

    z-index: 10;

    right: 37px;
    bottom: 108px;

    color:
        var(--accent);

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

    letter-spacing: 0.15em;
}

.carousel-dots {
    position: absolute;

    z-index: 10;

    left: 50%;
    bottom: 31px;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 10px;
}

.carousel-dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border:
        1px solid
        var(--accent);

    border-radius: 50%;

    background:
        transparent;

    cursor: pointer;
}

.carousel-dot.active {
    width: 28px;

    border-radius: 10px;

    background:
        var(--accent);
}


/* =========================================================
   LOWER SITE
   ========================================================= */

.section {
    width: 100%;

    padding:
        92px
        4vw;

    background:
        var(--black);

    border-top:
        1px solid
        #151515;
}

.section-inner {
    width: 100%;

    max-width: 1450px;

    margin:
        0
        auto;
}


/* =========================================================
   SHARED LOWER-SITE ELEMENTS
   ========================================================= */

.eyebrow {
    color:
        var(--accent);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.small-orange-link {
    color:
        var(--accent);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    transition:
        opacity 0.2s ease;
}

.small-orange-link:hover {
    opacity: 0.7;
}


/* =========================================================
   NEWS
   ========================================================= */

.section-news {
    padding-top: 92px;
    padding-bottom: 100px;
}

.section-title {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 50px;
}

.section-title h2 {
    max-width: 1000px;

    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(
            54px,
            5.8vw,
            88px
        );

    font-weight: 500;

    line-height: 0.92;

    letter-spacing: -0.035em;
}

.section-title .small-orange-link {
    flex:
        0
        0
        auto;

    margin-top: 10px;

    font-size: 15px;
}

.news-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    column-gap: 32px;
    row-gap: 40px;
}

.news-card {
    display: block;

    width: 100%;

    min-width: 0;

    padding:
        0
        0
        34px;

    border-top:
        1px solid
        var(--line);

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

.news-card-image {
    position: relative;

    width: 100%;

    aspect-ratio:
        2.1 / 1;

    margin-bottom: 25px;

    overflow: hidden;

    background:
        #111;
}

.news-card-image img {
    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;

    transform:
        scale(1);

    transition:
        transform 0.7s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.news-card:hover
.news-card-image img {
    transform:
        scale(1.025);
}

.news-card-copy {
    width: 100%;
}

.news-card .eyebrow {
    font-size: 13px;
}

.news-card h3 {
    width: 100%;

    max-width: 680px;

    margin:
        18px
        0
        15px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(
            32px,
            3vw,
            46px
        );

    font-weight: 500;

    line-height: 0.97;

    letter-spacing: -0.02em;
}

.news-card p {
    width: 100%;

    max-width: 650px;

    margin: 0;

    color:
        var(--muted);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 15px;

    line-height: 1.65;
}


/* =========================================================
   MAGAZINE
   ========================================================= */

.section-magazine {
    padding-top: 96px;
    padding-bottom: 105px;
}

.magazine {
    display: grid;

    grid-template-columns:
        minmax(
            280px,
            0.72fr
        )
        minmax(
            0,
            1.28fr
        );

    gap: 64px;

    align-items: center;
}

.magazine-text {
    max-width: 430px;
}

.magazine h2 {
    margin:
        18px
        0
        24px;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(
            54px,
            5vw,
            76px
        );

    font-weight: 500;

    line-height: 0.88;

    letter-spacing: -0.03em;
}

.magazine-copy {
    max-width: 410px;

    margin:
        0
        0
        26px;

    color:
        var(--muted);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 15px;

    line-height: 1.7;
}

.magazine-covers {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap: 26px;
}

.magazine-cover {
    aspect-ratio: 0.72;

    overflow: hidden;

    border-radius: 18px;

    background:
        #181818;
}

.magazine-cover img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   LOWER SITE — TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .section {
        padding-left: 32px;
        padding-right: 32px;
    }

    .news-grid {
        column-gap: 24px;
    }

    .magazine {
        gap: 42px;
    }

}


/* =========================================================
   LOWER SITE — MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .section {
        padding:
            68px
            20px;
    }

    .section-title {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        margin-bottom: 38px;
    }

    .section-title h2 {
        font-size:
            clamp(
                46px,
                14vw,
                64px
            );
    }

    .section-title .small-orange-link {
        margin-top: 0;

        font-size: 12px;
    }

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

        gap: 44px;
    }

    .news-card {
        padding-bottom: 28px;
    }

    .news-card-image {
        aspect-ratio:
            16 / 9;

        margin-bottom: 21px;
    }

    .news-card .eyebrow {
        font-size: 11px;
    }

    .news-card h3 {
        max-width: none;

        font-size: 34px;
    }

    .news-card p {
        max-width: none;

        font-size: 14px;
    }

}

/* =========================================================
   FILMMAKERS — EXPANDING PANELS
   ========================================================= */

.section-makers {
    padding-top: 18px;
    padding-bottom: 52px;

    overflow: hidden;
}


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

.fcp-makers-intro {
    display: grid;

    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr);

    gap: 80px;

    align-items: end;

    margin-bottom: 62px;
}


.fcp-makers-heading .eyebrow {
    margin-bottom: 20px;
}


.fcp-makers-heading h2 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(
            76px,
            8vw,
            126px
        );

    font-weight: 500;

    line-height: 0.72;

    letter-spacing: -0.055em;

    color:
        var(--white);
}


.fcp-makers-statement {
    max-width: 650px;

    padding-bottom: 0;

    align-self: end;
}


.fcp-makers-big-copy {
    margin: 0;

    color:
        var(--white);

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(
            23px,
            2vw,
            32px
        );

    font-weight: 500;

    line-height: 1.25;

    letter-spacing: -0.025em;
}


/* =========================================================
   EXPANDING PANELS
   ========================================================= */

.fcp-makers-panels {
    display: flex;

    width: 100%;

    height:
        clamp(
            520px,
            63vw,
            760px
        );

    gap: 14px;

    overflow: hidden;
}


/* =========================================================
   INDIVIDUAL PANEL
   ========================================================= */

.fcp-maker-panel {
    position: relative;

    flex:
        1
        1
        0;

    min-width: 0;

    overflow: hidden;

    background:
        #111;

    cursor: pointer;

    outline: none;

    transition:
        flex 0.65s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


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

.fcp-maker-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;

    transform:
        scale(1.01);

    transition:
        transform 0.8s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),
        object-position 0.65s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),
        filter 0.5s ease;
}


/* =========================================================
   DEFAULT IMAGE FRAMING
   ========================================================= */

.fcp-maker-panel[data-maker="ayilya"]
.fcp-maker-image {
    object-position:
        30% 24%;
}


.fcp-maker-panel[data-maker="mikel"]
.fcp-maker-image {
    object-position:
        50% 28%;
}


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

.fcp-maker-shade {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03) 8%,
            rgba(0, 0, 0, 0.08) 37%,
            rgba(0, 0, 0, 0.88) 100%
        ),

        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.18),
            transparent 62%
        );

    transition:
        background 0.5s ease;
}


/* =========================================================
   MAKER CONTENT
   ========================================================= */

.fcp-maker-content {
    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding:
        clamp(
            28px,
            3vw,
            46px
        );

    color:
        var(--white);
}


/* =========================================================
   REMOVE 01 / 02
   ========================================================= */

.fcp-maker-number {
    display: none;
}


/* =========================================================
   MAKER NAME
   ========================================================= */

.fcp-maker-name-block {
    max-width: 560px;

    transition:
        transform 0.6s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.fcp-maker-name-block h3 {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-size:
        clamp(
            48px,
            5vw,
            78px
        );

    font-weight: 500;

    line-height: 0.78;

    letter-spacing: -0.045em;
}


/* =========================================================
   MAKER ROLE
   ========================================================= */

.fcp-maker-role {
    margin-top: 16px;

    color:
        var(--accent);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


/* =========================================================
   EXPANDED BIO
   ========================================================= */

.fcp-maker-expanded {
    width: 100%;

    max-width: 560px;

    max-height: 0;

    margin-top: 0;

    overflow: hidden;

    opacity: 0;

    transform:
        translateY(18px);

    transition:
        opacity 0.3s ease,

        transform 0.55s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),

        max-height 0.55s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),

        margin-top 0.55s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.fcp-maker-line {
    width: 100%;

    height: 1px;

    margin-bottom: 20px;

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


.fcp-maker-expanded p {
    margin:
        0
        0
        15px;

    color:
        rgba(255, 255, 255, 0.86);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 15px;

    line-height: 1.65;
}


/* =========================================================
   INSTAGRAM LINK
   ========================================================= */

.fcp-maker-link {
    display: inline-block;

    margin-top: 10px;

    color:
        var(--accent);

    font-family:
        "Inter",
        Arial,
        sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    transition:
        opacity 0.2s ease;
}


.fcp-maker-link:hover {
    opacity: 0.65;
}


/* =========================================================
   DESKTOP HOVER INTERACTION
   ========================================================= */

@media (hover: hover) and (pointer: fine) {

    .fcp-makers-panels:hover
.fcp-maker-panel {
    flex:
        0.75
        1
        0;
}


.fcp-makers-panels
.fcp-maker-panel:hover {
    flex:
        1.4
        1
        0;
}


    .fcp-maker-panel:hover
    .fcp-maker-shade {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.01) 0%,
                rgba(0, 0, 0, 0.05) 30%,
                rgba(0, 0, 0, 0.91) 100%
            ),

            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.28),
                rgba(0, 0, 0, 0.06) 46%,
                transparent 72%
            );
    }


    .fcp-maker-panel:hover
    .fcp-maker-expanded {
        max-height: 470px;

        margin-top: 26px;

        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   AYILYA — EXPANDED FRAMING
   ========================================================= */

/*
   Keep the image almost at its original scale.
   Only shift the focal point slightly so the face has more
   breathing room beside the copy.
*/

.fcp-maker-panel[data-maker="ayilya"]:hover
.fcp-maker-image,
.fcp-maker-panel[data-maker="ayilya"].is-active
.fcp-maker-image {
    object-position:
        18% 16%;

    transform:
        scale(1.00);
}


/* =========================================================
   AYILYA — EXPANDED SHADE
   ========================================================= */

.fcp-maker-panel[data-maker="ayilya"]:hover
.fcp-maker-shade,
.fcp-maker-panel[data-maker="ayilya"].is-active
.fcp-maker-shade {
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.00) 0%,
            rgba(0, 0, 0, 0.02) 36%,
            rgba(0, 0, 0, 0.22) 55%,
            rgba(0, 0, 0, 0.88) 100%
        ),

        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.28) 0%,
            rgba(0, 0, 0, 0.07) 48%,
            transparent 72%
        );
}


/* =========================================================
   MIKEL — EXPANDED FRAMING
   ========================================================= */

.fcp-maker-panel[data-maker="mikel"]:hover
.fcp-maker-image,
.fcp-maker-panel[data-maker="mikel"].is-active
.fcp-maker-image {
    object-position:
        50% 16%;

    transform:
        scale(1.035);
}


/* =========================================================
   CLICK / TOUCH ACTIVE STATE
   ========================================================= */

.fcp-makers-panels.has-active
.fcp-maker-panel {
    flex:
        0.75
        1
        0;
}


.fcp-makers-panels.has-active
.fcp-maker-panel.is-active {
    flex:
        1.4
        1
        0;
}


.fcp-maker-panel.is-active
.fcp-maker-expanded {
    max-height: 470px;

    margin-top: 26px;

    opacity: 1;

    transform:
        translateY(0);
}


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

.fcp-maker-panel:focus-visible {
    outline:
        2px solid
        var(--accent);

    outline-offset:
        -2px;
}


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

@media (max-width: 1050px) {

    .fcp-makers-intro {
        gap: 48px;
    }


    .fcp-maker-name-block h3 {
        font-size:
            clamp(
                45px,
                6vw,
                68px
            );
    }


    .fcp-makers-panels {
        height: 620px;
    }


    .fcp-maker-expanded p {
        font-size: 15px;
    }

}

/* =========================================================
   FILMMAKERS — MOBILE
   Static cards: name + role on image, bio underneath
   ========================================================= */

@media (max-width: 700px) {

    .section-makers {
        padding-top: 66px;
        padding-bottom: 70px;

        overflow: visible;
    }


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

    .fcp-makers-intro {
        grid-template-columns: 1fr;

        gap: 34px;

        margin-bottom: 42px;
    }


    .fcp-makers-heading h2 {
        font-size:
            clamp(
                64px,
                20vw,
                90px
            );
    }


    .fcp-makers-big-copy {
        max-width: none;

        font-size: 30px;

        line-height: 1.08;
    }


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

    .fcp-makers-panels {
        display: flex;

        flex-direction: column;

        width: 100%;
        height: auto;

        gap: 48px;

        overflow: visible;
    }


    .fcp-maker-panel,
    .fcp-makers-panels:hover .fcp-maker-panel,
    .fcp-makers-panels .fcp-maker-panel:hover,
    .fcp-makers-panels.has-active .fcp-maker-panel,
    .fcp-makers-panels.has-active .fcp-maker-panel.is-active {
        position: relative;

        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows:
            420px
            auto;

        flex: none !important;

        width: 100%;
        height: auto !important;

        min-width: 0;

        overflow: visible;

        background: transparent;

        cursor: default;

        transform: none !important;

        transition: none !important;
    }


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

    .fcp-maker-image,
    .fcp-maker-panel:hover .fcp-maker-image,
    .fcp-maker-panel.is-active .fcp-maker-image {
        position: relative;

        inset: auto;

        grid-column: 1;
        grid-row: 1;

        width: 100%;
        height: 420px;

        max-width: none;

        object-fit: cover;

        transform: none !important;

        transition: none !important;
    }


    /* Keep Ayilya framing */

    .fcp-maker-panel[data-maker="ayilya"]
    .fcp-maker-image,
    .fcp-maker-panel[data-maker="ayilya"]:hover
    .fcp-maker-image,
    .fcp-maker-panel[data-maker="ayilya"].is-active
    .fcp-maker-image {
        object-position: 30% 20%;

        transform: none !important;
    }


    /* Keep Mikel framing */

    .fcp-maker-panel[data-maker="mikel"]
    .fcp-maker-image,
    .fcp-maker-panel[data-maker="mikel"]:hover
    .fcp-maker-image,
    .fcp-maker-panel[data-maker="mikel"].is-active
    .fcp-maker-image {
        object-position: 50% 28%;

        transform: none !important;
    }


    /* =====================================================
       DARK GRADIENT OVER IMAGE
       ===================================================== */

    .fcp-maker-shade,
    .fcp-maker-panel:hover .fcp-maker-shade,
    .fcp-maker-panel.is-active .fcp-maker-shade,
    .fcp-maker-panel[data-maker="ayilya"]:hover
    .fcp-maker-shade,
    .fcp-maker-panel[data-maker="ayilya"].is-active
    .fcp-maker-shade {
        position: relative;

        inset: auto;

        grid-column: 1;
        grid-row: 1;

        z-index: 1;

        width: 100%;
        height: 420px;

        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0) 42%,
                rgba(0, 0, 0, 0.10) 64%,
                rgba(0, 0, 0, 0.82) 100%
            );

        pointer-events: none;

        transition: none !important;
    }


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

    .fcp-maker-content {
        display: contents;
    }


    /* =====================================================
       NAME + ROLE STAY ON IMAGE
       ===================================================== */

    .fcp-maker-name-block {
        position: relative;

        grid-column: 1;
        grid-row: 1;

        align-self: end;

        z-index: 2;

        width: auto;
        max-width: none;

        margin:
            0
            24px
            26px;

        transform: none !important;
    }


    .fcp-maker-name-block h3 {
        margin: 0;

        font-size: 52px;

        line-height: 0.82;

        color: var(--white);
    }


    .fcp-maker-role {
        margin-top: 10px;

        color: var(--accent);

        font-size: 11px;

        line-height: 1.35;

        letter-spacing: 0.12em;
    }


    /* =====================================================
       BIO BELOW IMAGE
       ===================================================== */

    .fcp-maker-expanded,
    .fcp-maker-panel:hover .fcp-maker-expanded,
    .fcp-maker-panel:focus .fcp-maker-expanded,
    .fcp-maker-panel:active .fcp-maker-expanded,
    .fcp-maker-panel.is-active .fcp-maker-expanded {
        position: relative;

        grid-column: 1;
        grid-row: 2;

        display: block;

        width: 100%;
        max-width: none;
        max-height: none !important;

        margin: 0;

        padding:
            22px
            0
            0;

        overflow: visible;

        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }


    .fcp-maker-line {
        width: 100%;
        height: 1px;

        margin:
            0
            0
            18px;

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


    .fcp-maker-expanded p {
        margin:
            0
            0
            14px;

        color:
            rgba(255, 255, 255, 0.78);

        font-size: 14px;

        line-height: 1.65;
    }


    .fcp-maker-link {
        display: inline-block;

        margin-top: 4px;

        font-size: 11px;
    }


    /* =====================================================
       REMOVE MOBILE INTERACTION COMPLETELY
       ===================================================== */

    .fcp-maker-panel:hover,
    .fcp-maker-panel:focus,
    .fcp-maker-panel:active,
    .fcp-maker-panel.is-active {
        flex: none !important;

        height: auto !important;

        transform: none !important;
    }

}

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

@media (prefers-reduced-motion: reduce) {

    .fcp-maker-panel,
    .fcp-maker-image,
    .fcp-maker-expanded,
    .fcp-maker-name-block {
        transition: none;
    }

}


/* =========================================================
   MAGAZINE — MOBILE
   ========================================================= */

@media (max-width: 700px) {

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

        gap: 44px;
    }

    .magazine-text {
        max-width: 100%;
    }

    .magazine h2 {
        font-size: 58px;
    }

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

    .magazine-covers {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

        gap: 14px;
    }

}


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

.footer {
    display: flex;

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

    gap: 20px;

    padding:
        23px
        4vw;

    border-top:
        1px solid
        var(--line);

    background:
        var(--black);

    color:
        #77736c;

    font-size: 8px;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


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

@media (max-width: 1050px) {

    .hero-copy {
        width: 43vw;
    }

    .hero-copy h1 {
        font-size:
            clamp(
                72px,
                9vw,
                100px
            );
    }

    .hero-synopsis {
        font-size: 14px;
    }

    .hero-metadata {
        right: 3%;

        width: 300px;
    }

    .hero.project-victoria
    .hero-metadata,
    .hero.project-chandrakaal
    .hero-metadata {
        top: 21%;
    }

    .hero.project-hypnos
    .hero-metadata,
    .hero.project-moneyback
    .hero-metadata {
        top: 31%;
    }

    .hero-fact {
        font-size: 13px;

        margin-bottom: 22px;
    }

    .hero-fact-label {
        font-size: 10px;
    }

    .hero-laurels {
        gap: 16px;
    }

    .hero-laurel-vqff {
        width: 108px;
    }

    .hero-laurel-j4r {
        width: 50px;
    }

    .hero-laurel-isaff {
        width: 99px;
    }

}


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

@media (max-width: 700px) {

    .hero {
        width: 100%;

        height: 100svh;

        min-height: 720px;
    }

    .hero-image {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    .hero-image-wrap::after {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.58) 0%,
                rgba(0, 0, 0, 0.20) 45%,
                rgba(0, 0, 0, 0.04) 100%
            ),

            linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.88) 0%,
                rgba(0, 0, 0, 0.19) 42%,
                rgba(0, 0, 0, 0.03) 76%
            );
    }

    .hero-copy {
        left: 20px;
        right: 20px;

        top: auto;
        bottom: 155px;

        width: auto;

        max-width: 315px;

        transform: none;
    }

    .hero-copy.text-leaving {
        opacity: 0;

        transform:
            translateY(12px);
    }

    .hero-copy.text-entering {
        opacity: 0;

        transform:
            translateY(-12px);
    }

    .hero-kicker {
        margin-bottom: 12px;

        font-size: 10px;

        letter-spacing: 0.18em;
    }

    .hero-copy h1 {
        max-width: 310px;

        font-size:
            clamp(
                55px,
                15vw,
                66px
            );

        line-height: 0.82;
    }

    .hero-rule {
        width: 64px;
        height: 3px;

        margin:
            20px
            0
            17px;
    }

    .hero-synopsis {
        max-width: 295px;

        margin-bottom: 15px;

        font-size: 13px;

        line-height: 1.48;
    }

    .hero-specs {
        font-size: 8px;

        letter-spacing: 0.16em;
    }

    .view-project {
        margin-top: 17px;

        font-size: 9px;
    }

    .hero-actions {
        gap: 12px;

        margin-top: 17px;

        flex-wrap: wrap;
    }

    .hero-actions .view-project {
        margin-top: 0;
    }

    .ticket-button {
        min-height: 34px;

        padding:
            0
            13px;

        font-size: 8px;

        letter-spacing: 0.12em;
    }

    .hero-metadata {
        display: none;
    }

    .carousel-next {
        right: 15px;
        bottom: 20px;

        width: 78px;
        height: 45px;
    }

    .carousel-next svg {
        width: 72px;
        height: 42px;
    }

    .carousel-count {
        right: 18px;
        bottom: 73px;
    }

    .carousel-dots {
        left: 17px;
        bottom: 29px;

        transform: none;
    }

    .section {
        padding:
            55px
            20px;
    }

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

    .magazine-covers {
        grid-template-columns:
            1fr;
    }

}


/* =========================================================
   MOBILE NEWS HEADING
   ========================================================= */

@media (max-width: 700px) {

    .section-title {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .section-title
    .small-orange-link {
        margin: 0;

        align-self: flex-start;
    }

}


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

.mobile-hero-laurels {
    display: none;
}

@media (max-width: 700px) {

    .mobile-hero-laurels {
        display: none;
    }

    .project-victoria
    .mobile-hero-laurels {
        display: flex;

        align-items: center;

        gap: 8px;

        width: 100%;

        margin:
            23px
            0
            5px;
    }

    .mobile-laurel-vqff {
        width: 78px;

        height: auto;

        flex:
            0
            0
            auto;
    }

    .mobile-laurel-j4r {
        width: 38px;

        height: auto;

        flex:
            0
            0
            auto;
    }

    .mobile-laurel-isaff {
        width: 78px;

        height: auto;

        flex:
            0
            0
            auto;
    }

}


/* =========================================================
   MOBILE PROJECT-SPECIFIC HERO STYLING
   ========================================================= */

@media (max-width: 700px) {

    .project-victoria
    .hero-image {
        object-fit: cover;

        object-position:
            34% center;
    }

    .project-victoria
    .hero-copy {
        left: 5%;

        width: 48%;

        max-width: 350px;
    }

    .project-victoria
    .hero-copy h1,
    .project-hypnos
    .hero-copy h1 {
        font-size:
            clamp(
                54px,
                15vw,
                78px
            );

        line-height: 0.88;
    }

    .project-victoria
    .hero-synopsis,
    .project-hypnos
    .hero-synopsis {
        width: 100%;

        max-width: 310px;

        font-size: 16px;

        line-height: 1.45;
    }

    .project-hypnos
.ticket-button,
.project-moneyback
.ticket-button {
    display: none !important;
}

    .project-victoria
.ticket-button:not(.hidden),
.project-chandrakaal
.ticket-button:not(.hidden) {
    display: inline-flex !important;
}

}

/* =========================================================
   MOBILE — FILMMAKER BIO ALIGNMENT + MAGAZINE DIVIDER
   ========================================================= */

@media (max-width: 700px) {

    /* -----------------------------------------------------
       ALIGN FILMMAKER BIO WITH FOCAL POINT BODY COPY
       ----------------------------------------------------- */

    .fcp-maker-expanded,
    .fcp-maker-panel:hover .fcp-maker-expanded,
    .fcp-maker-panel:focus .fcp-maker-expanded,
    .fcp-maker-panel:active .fcp-maker-expanded,
    .fcp-maker-panel.is-active .fcp-maker-expanded {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* Keep the divider above each filmmaker bio aligned too */

    .fcp-maker-line {
        width: 100%;
    }


    /* -----------------------------------------------------
       MOVE MAGAZINE SECTION DIVIDER LOWER
       ----------------------------------------------------- */

    .section-magazine {
        position: relative;

        border-top: none;

        padding-top: 88px;
    }


    .section-magazine::before {
        content: "";

        position: absolute;

        top: 34px;
        left: 20px;
        right: 20px;

        height: 1px;

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

}

/* =========================================================
   MOBILE — MATCH FILMMAKER BIO TO FOCAL POINT COPY
   ========================================================= */

@media (max-width: 700px) {

    .fcp-maker-expanded p {
        font-family:
            "Inter",
            Arial,
            sans-serif;

        font-size: 15px;

        line-height: 1.72;

        font-weight: 400;

        color:
            var(--muted);
    }

}

/* =========================================================
   MOBILE — HERO BUTTON LAYOUT
   ========================================================= */

@media (max-width: 700px) {

    .hero-actions {
        display: grid;

        grid-template-columns:
            repeat(
                2,
                max-content
            );

        gap:
            15px
            10px;

        align-items: center;

        justify-content: start;

        margin-top: 18px;
    }


    /* Learn More gets its own row */

    .hero-actions .view-project {
        grid-column:
            1 / -1;

        margin: 5;

        font-size: 10px;
    }


    /* Ticket buttons sit beside each other */

    .hero-actions .ticket-button {
        min-height: 36px;

        padding:
            5
            24px;

        margin: 2;

        font-size: 8px;

        letter-spacing: 0.11em;

        white-space: nowrap;
    }

}



/* =========================================================
   MOBILE — CHANDRAKAAL FOCAL POINT
   ========================================================= */

@media (max-width: 700px) {

    .hero.project-chandrakaal
    .hero-image {
     object-position:
    12% center;
    }

}

@media (max-width: 700px) {

    .hero.project-victoria
    .hero-synopsis {
        width: calc(100vw - 40px);

        max-width: 340px;
    }

}

/* =========================================================
   MOBILE — MATCH CHANDRAKAAL TYPOGRAPHY TO HYPNOS
   ========================================================= */

@media (max-width: 700px) {

    .hero.project-chandrakaal
    .hero-copy h1 {
        font-size:
            clamp(
                54px,
                15vw,
                78px
            );

        line-height: 0.88;
    }


    .hero.project-chandrakaal
    .hero-synopsis {
        width: 100%;

        max-width: 310px;

        font-size: 16px;

        line-height: 1.45;
    }

}

/* =========================================================
   MOBILE — CHANDRAKAAL VQFF LAUREL
   ========================================================= */

@media (max-width: 700px) {

    /* Show the laurels row on Chandrakaal */
    .hero.project-chandrakaal
    .mobile-hero-laurels {
        display: flex;

        align-items: center;

        gap: 8px;

        width: 100%;

        margin:
            20px
            0
            8px;
    }


    /* Hide the non-VQFF laurels on Chandrakaal */
    .hero.project-chandrakaal
    .mobile-laurel-j4r,
    .hero.project-chandrakaal
    .mobile-laurel-isaff {
        display: none;
    }


    /* VQFF laurel size for Chandrakaal */
    .hero.project-chandrakaal
    .mobile-laurel-vqff {
        display: block;

        width: 82px;
        height: auto;

        flex:
            0
            0
            auto;
    }

}

/* =========================================================
   CHANDRAKAAL — VQFF LAUREL ONLY
   DESKTOP + TABLET
   ========================================================= */

.hero.project-chandrakaal
.hero-laurel-j4r,
.hero.project-chandrakaal
.hero-laurel-isaff {
    display: none;
}


.hero.project-chandrakaal
.hero-laurel-vqff {
    display: block;
}


/* Give the single laurel a clean amount of space */

.hero.project-chandrakaal
.hero-laurels {
    gap: 0;

    min-height: auto;

    margin-bottom: 26px;
}


/* Desktop size */

.hero.project-chandrakaal
.hero-laurel-vqff {
    width: 128px;
}


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

@media (max-width: 1050px) {

    .hero.project-chandrakaal
    .hero-laurel-vqff {
        width: 108px;
    }

}


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

@media (max-width: 700px) {

    /*
       Desktop laurels are not used in the mobile layout.
       Keep that container out of the way.
    */

    .hero.project-chandrakaal
    .hero-laurels {
        display: none;
    }


    /*
       Use the existing mobile laurel row.
    */

    .hero.project-chandrakaal
    .mobile-hero-laurels {
        display: flex;

        align-items: center;

        width: 100%;

        margin:
            18px
            0
            7px;
    }


    /*
       VQFF only.
    */

    .hero.project-chandrakaal
    .mobile-laurel-vqff {
        display: block;

        width: 78px;
        height: auto;
    }


    .hero.project-chandrakaal
    .mobile-laurel-j4r,
    .hero.project-chandrakaal
    .mobile-laurel-isaff {
        display: none;
    }

}

/* =========================================================
   CHANDRAKAAL — MATCH VICTORIA METADATA ALIGNMENT
   DESKTOP + TABLET
   ========================================================= */

.hero.project-chandrakaal
.hero-laurels {
    min-height: 105px;

    margin-bottom: 30px;

    align-items: center;
}


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

@media (max-width: 1050px) {

    .hero.project-chandrakaal
    .hero-laurels {
        min-height: 105px;

        margin-bottom: 30px;
    }


    .hero.project-chandrakaal
    .hero-metadata {
        top: 21%;
    }

}

/* =========================================================
   TABLET — CHANDRAKAAL TICKET BUTTONS
   SMALLER + SINGLE LINE
   ========================================================= */

@media (min-width: 701px) and (max-width: 1050px) {

    .hero.project-chandrakaal
    .ticket-button {
        white-space: nowrap;

        width: auto;
        min-width: max-content;

        min-height: 34px;

        padding:
            0
            13px;

        font-size: 9px;

        letter-spacing: 0.10em;
    }

}

/* =========================================================
   TABLET — VICTORIA TICKET BUTTONS
   SMALLER + SINGLE LINE
   ========================================================= */

@media (min-width: 701px) and (max-width: 1050px) {

    .hero.project-victoria
    .ticket-button {
        white-space: nowrap;

        width: auto;
        min-width: max-content;

        min-height: 34px;

        padding:
            0
            13px;

        font-size: 9px;

        letter-spacing: 0.10em;
    }

}

/* =========================================================
   TABLET — KEEP LEARN MORE ON ONE LINE
   ========================================================= */

@media (min-width: 701px) and (max-width: 1050px) {

    .hero.project-victoria
    .view-project {
        white-space: nowrap;

        width: auto;

        min-width: max-content;
    }

}

/* =========================================================
   DESKTOP — FIT ENTIRE FILMMAKERS SECTION IN VIEWPORT
   ========================================================= */

@media (min-width: 1051px) {

    .section-makers {
        min-height: 100vh;

        padding-top: 24px;
        padding-bottom: 24px;
    }


    .fcp-makers-intro {
        margin-bottom: 32px;
    }


    .fcp-makers-panels {
        height:
            min(
                58vh,
                620px
            );
    }


    .fcp-makers-heading h2 {
        font-size:
            clamp(
                68px,
                6.8vw,
                108px
            );
    }


    .fcp-makers-big-copy {
        font-size:
            clamp(
                22px,
                1.7vw,
                29px
            );
    }

}