:root {
    --bg: #080808;
    --bg-soft: #101010;
    --panel: #141414;
    --white: #f5f2ea;
    --muted: #9d9b96;
    --line: rgba(255,255,255,.13);
    --gold: #c7a56b;
    --gold-bright: #dfbd80;
    --header-height: 92px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--white);
    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

::selection {
    background: var(--gold);
    color: #000;
}

.skip-link {
    position: fixed;
    left: 20px;
    top: -80px;
    z-index: 9999;
    background: white;
    color: black;
    padding: 12px 18px;
}

.skip-link:focus {
    top: 20px;
}

.page-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 990;
    opacity: .035;
    background-image:
        repeating-radial-gradient(
            circle at 0 0,
            transparent 0,
            #fff 1px,
            transparent 2px,
            transparent 4px
        );
    background-size: 8px 8px;
}


/* HEADER */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 5vw, 80px);
    border-bottom: 1px solid transparent;
    transition:
        background .35s ease,
        border .35s ease,
        height .35s ease;
}

.site-header.scrolled {
    height: 74px;
    background: rgba(8,8,8,.86);
    backdrop-filter: blur(18px);
    border-bottom-color: var(--line);
}

.brand {
    width: clamp(132px, 13vw, 190px);
    position: relative;
    z-index: 2;
}

.brand img {
    width: 100%;
    height: auto;
}

.desktop-nav {
    display: flex;
    gap: clamp(20px, 2.3vw, 40px);
    align-items: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.desktop-nav a {
    color: rgba(255,255,255,.78);
    transition: color .25s ease;
}

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

.desktop-nav .nav-cta {
    border: 1px solid rgba(255,255,255,.42);
    padding: 13px 19px;
}

.desktop-nav .nav-cta:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    width: 42px;
    height: 42px;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1200;
}

.menu-toggle span {
    position: absolute;
    width: 26px;
    height: 1px;
    background: #fff;
    left: 8px;
    transition: .3s ease;
}

.menu-toggle span:first-child {
    top: 16px;
}

.menu-toggle span:last-child {
    top: 25px;
}

.menu-toggle.active span:first-child {
    transform: translateY(4.5px) rotate(45deg);
}

.menu-toggle.active span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 950;
    background: #080808;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 18px;
}

.mobile-menu a {
    font-size: clamp(30px, 9vw, 58px);
    line-height: 1;
    letter-spacing: -.04em;
}


/* COMMON */

.section-wrap {
    width: min(1440px, calc(100% - 10vw));
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 24px;
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 11px;
    font-weight: 700;
}

.display-heading,
.section-heading h2,
.selected-title h2,
.showreel-content h2,
.awards-heading h2,
.contact-main h2 {
    font-size: clamp(48px, 6.2vw, 98px);
    letter-spacing: -.055em;
    line-height: .98;
    font-weight: 500;
    margin: 0;
}

em {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    color: var(--gold);
}

.reveal {
    opacity: 0;
    transform: translateY(42px);
    transition:
        opacity .9s cubic-bezier(.2,.7,.2,1),
        transform .9s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}


/* HERO */

.hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-media,
.hero-frame,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-frame {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.09);
    transition:
        opacity 1.4s ease,
        transform 8s ease;
}

.hero-frame.active {
    opacity: 1;
    transform: scale(1.01);
}

.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.52) 48%,
            rgba(0,0,0,.18) 78%,
            rgba(0,0,0,.25) 100%
        ),
        linear-gradient(
            0deg,
            rgba(8,8,8,.9) 0%,
            transparent 45%
        );
}

.hero-content {
    position: relative;
    z-index: 4;
    width: min(1440px, calc(100% - 10vw));
    margin: 0 auto;
    padding: 180px 0 150px;
}

.hero-eyebrow {
    animation: heroUp .8s .15s both;
}

.hero h1 {
    margin: 0;
    max-width: 1000px;
    font-weight: 500;
    font-size: clamp(64px, 9.6vw, 152px);
    letter-spacing: -.068em;
    line-height: .82;
    animation: heroUp 1s .25s both;
}

.hero h1 span {
    display: block;
    color: var(--gold-bright);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.hero-copy {
    max-width: 610px;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
    font-size: clamp(16px, 1.35vw, 20px);
    margin: 35px 0 40px;
    animation: heroUp 1s .4s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: heroUp 1s .55s both;
}

.button {
    min-height: 54px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    font-size: 11px;
    transition: .3s ease;
}

.button-gold {
    background: var(--gold);
    color: #080808;
}

.button-gold:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
}

.button-ghost {
    border: 1px solid rgba(255,255,255,.34);
}

.button-ghost:hover {
    border-color: white;
    background: rgba(255,255,255,.08);
}

.play-icon {
    font-size: 9px;
}

.hero-footer {
    position: absolute;
    z-index: 5;
    left: 5vw;
    right: 5vw;
    bottom: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    border: 0;
    width: 35px;
    height: 2px;
    padding: 0;
    cursor: pointer;
    background: rgba(255,255,255,.3);
    transition: .3s;
}

.hero-dot.active {
    width: 70px;
    background: var(--gold-bright);
}

.scroll-cue {
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 9px;
    color: rgba(255,255,255,.55);
}

.scroll-cue i {
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,.4);
}


/* INTRO */

.intro-section {
    padding: clamp(110px, 12vw, 190px) 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(60px, 10vw, 180px);
    align-items: end;
}

.intro-copy {
    max-width: 570px;
    color: var(--muted);
    line-height: 1.85;
    font-size: 16px;
}

.intro-copy .lead {
    color: var(--white);
    font-size: clamp(19px, 1.7vw, 25px);
    line-height: 1.55;
}

.text-link {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 9px;
}

.text-link span {
    color: var(--gold);
}


/* PRODUCTION */

.productions-section {
    padding: 30px 0 clamp(100px, 12vw, 180px);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: clamp(50px, 7vw, 100px);
    gap: 40px;
}

.section-heading > p {
    color: var(--muted);
    max-width: 360px;
    line-height: 1.7;
}

.production-grid {
    display: grid;
    grid-template-columns: 1.45fr .75fr;
    gap: 18px;
}

.production-card {
    min-height: 690px;
    position: relative;
    overflow: hidden;
    background: #111;
}

.production-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.2,.7,.2,1);
}

.production-card-large img {
    object-position: center;
}

.production-card:hover img {
    transform: scale(1.045);
}

.production-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.9),
            rgba(0,0,0,.05) 65%
        );
}

.production-content {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(26px, 4vw, 58px);
}

.project-meta {
    color: var(--gold-bright);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 10px;
}

.production-content h3 {
    font-size: clamp(42px, 5vw, 78px);
    line-height: 1;
    letter-spacing: -.05em;
    margin: 10px 0 18px;
    font-weight: 500;
}

.production-content p:not(.project-meta) {
    color: rgba(255,255,255,.72);
    max-width: 510px;
    line-height: 1.65;
}

.project-arrow {
    position: absolute;
    right: clamp(26px, 4vw, 58px);
    bottom: clamp(26px, 4vw, 58px);
    font-size: 34px;
    color: var(--gold);
}


/* SELECTED WORK */

.selected-section {
    background: #f0ede5;
    color: #101010;
    padding: clamp(100px, 12vw, 180px) 0;
}

.selected-section .eyebrow {
    color: #826536;
}

.selected-title {
    margin-bottom: 70px;
}

.selected-title em {
    color: #826536;
}

.work-list {
    border-top: 1px solid rgba(0,0,0,.18);
}

.work-row {
    min-height: 128px;
    padding: 25px 5vw;
    display: grid;
    grid-template-columns: 80px 1fr 300px 40px;
    align-items: center;
    gap: 25px;
    border-bottom: 1px solid rgba(0,0,0,.18);
    transition:
        background .3s ease,
        padding .3s ease;
}

.work-row:hover {
    background: #e5dfd2;
    padding-left: 6vw;
    padding-right: 6vw;
}

.work-number,
.work-role {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(0,0,0,.48);
}

.work-row h3 {
    margin: 0;
    font-size: clamp(28px, 3vw, 48px);
    letter-spacing: -.04em;
    font-weight: 500;
}

.work-arrow {
    font-size: 28px;
}

.visual-work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 90px;
}

.visual-work img {
    width: 100%;
    aspect-ratio: .76;
    object-fit: cover;
    filter: saturate(.85);
    transition: .6s ease;
}

.visual-work:hover img {
    transform: scale(.985);
    filter: saturate(1);
}

.visual-work > div {
    margin-top: 18px;
}

.visual-work span {
    color: #826536;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 9px;
}

.visual-work h3 {
    margin: 8px 0 4px;
    font-size: 22px;
}

.visual-work p {
    margin: 0;
    font-size: 12px;
    color: rgba(0,0,0,.52);
}


/* SERVICES */

.services-section {
    padding: clamp(110px, 13vw, 190px) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}

.service-card {
    min-height: 420px;
    padding: 42px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.service-card:last-child {
    border-right: 0;
}

.service-number {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: .15em;
}

.service-card h3 {
    margin: auto 0 25px;
    max-width: 320px;
    font-size: clamp(30px, 3vw, 45px);
    line-height: 1.05;
    letter-spacing: -.045em;
    font-weight: 500;
}

.service-card p {
    color: var(--muted);
    line-height: 1.7;
    max-width: 340px;
}


/* SHOWREEL */

.showreel-section {
    min-height: 90vh;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.showreel-background,
.showreel-overlay {
    position: absolute;
    inset: 0;
}

.showreel-background {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.showreel-overlay {
    background: rgba(0,0,0,.58);
}

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

.showreel-content em {
    color: var(--gold-bright);
}

.showreel-play {
    margin: 55px auto 0;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.55);
    transition: .35s;
}

.showreel-play:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #080808;
    transform: scale(1.07);
}

.showreel-play span {
    transform: translateX(3px);
}


/* TEAM */

.team-section {
    padding: clamp(110px, 13vw, 190px) 0;
}

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

.team-photo {
    overflow: hidden;
    background: #151515;
    margin-bottom: 26px;
}

.team-photo img {
    width: 100%;
    aspect-ratio: .82;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(100%);
    transition:
        filter .6s ease,
        transform .8s ease;
}

.team-card:hover .team-photo img {
    filter: grayscale(0);
    transform: scale(1.025);
}

.team-role {
    color: var(--gold);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .17em;
}

.team-card h3 {
    margin: 8px 0 16px;
    font-size: clamp(27px, 2.4vw, 38px);
    font-weight: 500;
    letter-spacing: -.04em;
}

.team-bio {
    max-width: 400px;
    color: var(--muted);
    line-height: 1.7;
}


/* AWARDS */

.awards-section {
    background: var(--gold);
    color: #111;
    padding: clamp(100px, 12vw, 170px) 0;
}

.awards-section .eyebrow,
.awards-section em {
    color: #4c3820;
}

.awards-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 10vw;
}

.awards-heading > p:last-child {
    margin-top: 35px;
    max-width: 470px;
    line-height: 1.75;
    color: rgba(0,0,0,.62);
}

.award-list {
    border-top: 1px solid rgba(0,0,0,.25);
}

.award-row {
    display: grid;
    grid-template-columns: 85px 1fr;
    gap: 30px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(0,0,0,.25);
}

.award-year {
    font-size: 11px;
    letter-spacing: .12em;
    color: rgba(0,0,0,.58);
    padding-top: 5px;
}

.award-row h3 {
    margin: 0 0 8px;
    font-size: clamp(22px, 2vw, 32px);
    font-weight: 500;
    letter-spacing: -.03em;
}

.award-row p {
    margin: 0;
    color: rgba(0,0,0,.6);
}


/* CONTACT */

.contact-section {
    padding: clamp(110px, 14vw, 210px) 0 90px;
}

.contact-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding-bottom: 100px;
    border-bottom: 1px solid var(--line);
}

.contact-circle {
    width: clamp(105px, 11vw, 170px);
    height: clamp(105px, 11vw, 170px);
    border-radius: 50%;
    flex: 0 0 auto;
    border: 1px solid rgba(255,255,255,.35);
    display: grid;
    place-items: center;
    font-size: 40px;
    transition: .35s;
}

.contact-circle:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #080808;
    transform: rotate(8deg);
}

.contact-details {
    padding-top: 55px;
    display: grid;
    grid-template-columns: 1.3fr .8fr 1fr;
    gap: 60px;
}

.contact-details span {
    display: block;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: 9px;
    margin-bottom: 15px;
}

.contact-details p {
    line-height: 1.7;
    margin: 0;
}

.contact-details a:hover {
    color: var(--gold-bright);
}


/* FOOTER */

.site-footer {
    border-top: 1px solid var(--line);
    padding: 32px 0;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.footer-logo {
    width: 105px;
}

.footer-inner p {
    margin: 0;
    text-align: center;
}

.footer-inner > a {
    text-align: right;
}


/* ANIMATIONS */

@keyframes heroUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* TABLET */

@media (max-width: 1050px) {

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .intro-grid,
    .awards-layout {
        grid-template-columns: 1fr;
    }

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

    .production-card {
        min-height: 580px;
    }

    .visual-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-row {
        grid-template-columns: 60px 1fr 220px 30px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-card:last-child {
        grid-column: span 2;
        max-width: calc(50% - 11px);
    }

}


/* MOBILE */

@media (max-width: 720px) {

    :root {
        --header-height: 74px;
    }

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

    .site-header {
        padding: 0 20px;
    }

    .brand {
        width: 130px;
    }

    .hero-content {
        width: calc(100% - 40px);
        padding-bottom: 135px;
    }

    .hero h1 {
        font-size: clamp(58px, 18vw, 88px);
    }

    .hero-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(0,0,0,.92) 0%,
                rgba(0,0,0,.45) 70%,
                rgba(0,0,0,.25)
            );
    }

    .hero-footer {
        left: 20px;
        right: 20px;
    }

    .scroll-cue {
        display: none;
    }

    .hero-dot {
        width: 24px;
    }

    .hero-dot.active {
        width: 48px;
    }

    .intro-grid {
        gap: 60px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 30px;
    }

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

    .production-card {
        min-height: 620px;
    }

    .work-row {
        min-height: 105px;
        padding: 20px;
        grid-template-columns: 38px 1fr 25px;
    }

    .work-role {
        display: none;
    }

    .work-row h3 {
        font-size: 29px;
    }

    .visual-work-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 60px;
    }

    .visual-work h3 {
        font-size: 17px;
    }

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

    .service-card {
        min-height: 330px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 30px 0;
    }

    .showreel-section {
        min-height: 70vh;
    }

    .showreel-background {
        background-attachment: scroll;
    }

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

    .team-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .awards-layout {
        gap: 70px;
    }

    .contact-main {
        display: block;
        padding-bottom: 70px;
    }

    .contact-circle {
        margin-top: 45px;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: auto;
    }

    .footer-inner > a {
        text-align: center;
    }

}

/* DEGZY MULTI-PAGE V1 */


/* ACTIVE NAV */

.desktop-nav a.active {
    color: var(--gold-bright);
}


/* DROPDOWN */

.nav-dropdown {
    position: relative;
    height: 74px;
    display: flex;
    align-items: center;
}

.nav-dropdown-menu {
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 150px;
    background: #0c0c0c;
    border: 1px solid var(--line);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 13px;
    font-size: 10px;
}

.nav-dropdown-menu a:hover {
    background: rgba(255,255,255,.06);
}


/* INNER HEADER */

.inner-site-header {
    background: rgba(8,8,8,.94);
}


/* PAGE HERO */

.page-hero {
    min-height: 78vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-hero-short {
    min-height: 68vh;
}

.page-hero-bg,
.page-hero-overlay {
    position: absolute;
    inset: 0;
}

.page-hero-bg {
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.page-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88),
            rgba(0,0,0,.42) 65%,
            rgba(0,0,0,.3)
        ),
        linear-gradient(
            0deg,
            rgba(8,8,8,.95),
            rgba(8,8,8,.1) 58%
        );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(80px, 9vw, 140px);
}

.page-hero h1,
.simple-page-heading h1,
.contact-page-hero h1 {
    margin: 0;
    max-width: 1050px;
    font-size: clamp(65px, 9vw, 140px);
    letter-spacing: -.065em;
    line-height: .87;
    font-weight: 500;
}

.page-hero h1 em,
.simple-page-heading h1 em,
.contact-page-hero h1 em {
    color: var(--gold-bright);
}

.page-hero-content > p:last-child {
    max-width: 590px;
    margin: 32px 0 0;
    color: rgba(255,255,255,.7);
    font-size: clamp(16px, 1.4vw, 21px);
    line-height: 1.7;
}


/* GENERAL INNER CONTENT */

.inner-content-section {
    padding: clamp(100px, 12vw, 190px) 0;
}

.inner-two-column {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: clamp(60px, 10vw, 160px);
}

.inner-two-column h2,
.inner-cta h2 {
    margin: 0;
    font-size: clamp(48px, 6vw, 90px);
    line-height: .96;
    letter-spacing: -.055em;
    font-weight: 500;
}

.inner-prose {
    font-size: 16px;
    line-height: 1.85;
    color: var(--muted);
}

.inner-prose .lead {
    color: var(--white);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.55;
}

.inner-team {
    padding-top: 30px;
}


/* LARGE SERVICES */

.large-service-list {
    border-top: 1px solid var(--line);
}

.large-service {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 50px;
    padding: clamp(45px, 6vw, 85px) 0;
    border-bottom: 1px solid var(--line);
}

.large-service > span {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: .16em;
    padding-top: 12px;
}

.large-service h2 {
    max-width: 800px;
    margin: 0 0 22px;
    font-size: clamp(38px, 5vw, 74px);
    line-height: 1;
    letter-spacing: -.05em;
    font-weight: 500;
}

.large-service p {
    max-width: 650px;
    color: var(--muted);
    line-height: 1.75;
}


/* INNER PRODUCTIONS */

.inner-production-grid {
    display: grid;
    gap: 130px;
}

.inner-production {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(50px, 8vw, 130px);
    align-items: center;
}

.inner-production:nth-child(even) {
    grid-template-columns: .85fr 1.15fr;
}

.inner-production:nth-child(even)
.inner-production-image {
    order: 2;
}

.inner-production-image {
    overflow: hidden;
    background: #111;
}

.inner-production-image img {
    width: 100%;
    aspect-ratio: 1.25;
    object-fit: cover;
}

.inner-production-image.poster img {
    aspect-ratio: .82;
    object-fit: cover;
    max-height: 760px;
}

.inner-production h2 {
    margin: 0 0 25px;
    font-size: clamp(50px, 6vw, 90px);
    letter-spacing: -.055em;
    line-height: 1;
    font-weight: 500;
}

.inner-production p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.8;
    max-width: 500px;
}


/* PROJECTS */

.portfolio-page-section {
    background: #f0ede5;
    color: #101010;
    padding: clamp(100px, 12vw, 170px) 0;
}

.portfolio-page-section .eyebrow {
    color: #826536;
}

.project-lines {
    border-top: 1px solid rgba(0,0,0,.18);
}

.project-line {
    min-height: 120px;
    display: grid;
    grid-template-columns: 70px 1fr 300px;
    align-items: center;
    gap: 35px;
    border-bottom: 1px solid rgba(0,0,0,.18);
}

.project-line > span,
.project-line > p {
    color: rgba(0,0,0,.48);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .13em;
}

.project-line h2 {
    margin: 0;
    font-size: clamp(28px, 3.8vw, 58px);
    letter-spacing: -.045em;
    font-weight: 500;
}

.portfolio-category-title {
    margin-top: 130px;
}


/* GALLERY HUB */

.gallery-hub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-hub-card {
    position: relative;
    overflow: hidden;
    min-height: 650px;
}

.gallery-hub-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.gallery-hub-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.88),
            rgba(0,0,0,.05) 65%
        );
}

.gallery-hub-card:hover img {
    transform: scale(1.04);
}

.gallery-hub-card > div {
    position: absolute;
    z-index: 2;
    bottom: 45px;
    left: 45px;
    right: 45px;
}

.gallery-hub-card span {
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--gold-bright);
    font-size: 10px;
}

.gallery-hub-card h2 {
    margin: 8px 0 0;
    font-size: clamp(50px, 6vw, 90px);
    letter-spacing: -.055em;
    font-weight: 500;
}

.gallery-hub-card b {
    position: absolute;
    right: 0;
    bottom: 10px;
    color: var(--gold);
    font-size: 34px;
}


/* SIMPLE PAGE HEADING */

.simple-page-heading {
    padding:
        clamp(180px, 17vw, 260px)
        0
        clamp(70px, 9vw, 130px);
}


/* VIDEO GALLERY */

.video-gallery-section {
    padding-bottom: clamp(100px, 12vw, 180px);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 24px;
}

.video-embed {
    aspect-ratio: 16 / 9;
    background: #111;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* PHOTOS */

.photo-gallery-section {
    padding-bottom: clamp(100px, 12vw, 180px);
}

.masonry-gallery {
    columns: 3;
    column-gap: 16px;
}

.gallery-photo {
    margin: 0 0 16px;
    break-inside: avoid;
    overflow: hidden;
}

.gallery-photo img {
    width: 100%;
    transition: transform .8s ease;
}

.gallery-photo:hover img {
    transform: scale(1.025);
}


/* INNER AWARDS */

.inner-awards-section {
    background: var(--gold);
    color: #101010;
    padding: clamp(110px, 13vw, 190px) 0;
}

.inner-awards-section .eyebrow,
.inner-awards-section em {
    color: #4c3820;
}


/* CTA */

.inner-cta {
    padding: clamp(100px, 13vw, 190px) 0;
    border-top: 1px solid var(--line);
}

.inner-cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}


/* CONTACT PAGE */

.contact-page-hero {
    padding:
        clamp(190px, 19vw, 300px)
        0
        clamp(90px, 10vw, 150px);
}

.contact-page-details {
    border-top: 1px solid var(--line);
    padding-bottom: clamp(90px, 11vw, 170px);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact-block {
    min-height: 340px;
    padding: 50px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contact-block:nth-child(even) {
    border-right: 0;
}

.contact-block > span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 10px;
}

.contact-block h2 {
    margin: 75px 0 25px;
    font-size: clamp(34px, 4vw, 60px);
    letter-spacing: -.05em;
    font-weight: 500;
}

.contact-block p {
    color: var(--muted);
    line-height: 1.8;
}

.contact-block a:hover {
    color: var(--gold-bright);
}


/* TABLET */

@media (max-width: 1050px) {

    .inner-two-column {
        grid-template-columns: 1fr;
    }

    .inner-production,
    .inner-production:nth-child(even) {
        grid-template-columns: 1fr 1fr;
    }

    .project-line {
        grid-template-columns: 55px 1fr 220px;
    }

    .masonry-gallery {
        columns: 2;
    }

}


/* MOBILE */

@media (max-width: 720px) {

    .page-hero,
    .page-hero-short {
        min-height: 75svh;
    }

    .page-hero h1,
    .simple-page-heading h1,
    .contact-page-hero h1 {
        font-size: clamp(58px, 17vw, 86px);
    }

    .inner-production,
    .inner-production:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .inner-production:nth-child(even)
    .inner-production-image {
        order: 0;
    }

    .large-service {
        grid-template-columns: 42px 1fr;
        gap: 12px;
    }

    .gallery-hub {
        grid-template-columns: 1fr;
    }

    .gallery-hub-card {
        min-height: 520px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .masonry-gallery {
        columns: 1;
    }

    .project-line {
        grid-template-columns: 40px 1fr;
        min-height: 105px;
    }

    .project-line > p {
        display: none;
    }

    .inner-cta-row {
        display: block;
    }

    .inner-cta .contact-circle {
        margin-top: 45px;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-block {
        min-height: 290px;
        padding: 40px 0;
        border-right: 0;
    }

}


/* DEGZY TYPOGRAPHY V2 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&family=Manrope:wght@400;500;600;700&display=swap');


body {
    font-family:
        "Manrope",
        "Helvetica Neue",
        Arial,
        sans-serif;
}


/*
|--------------------------------------------------------------------------
| Main cinematic display typography
|--------------------------------------------------------------------------
*/

.hero h1,
.page-hero h1,
.simple-page-heading h1,
.contact-page-hero h1,
.display-heading,
.section-heading h2,
.selected-title h2,
.showreel-content h2,
.awards-heading h2,
.contact-main h2,
.inner-two-column h2,
.inner-production h2,
.inner-cta h2,
.large-service h2,
.gallery-hub-card h2,
.contact-block h2 {
    font-family:
        "Manrope",
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-weight: 500;
}


/*
|--------------------------------------------------------------------------
| Cinematic serif accent
|--------------------------------------------------------------------------
*/

.hero h1 span,
.hero h1 em,
.page-hero h1 em,
.simple-page-heading h1 em,
.contact-page-hero h1 em,
.display-heading em,
.section-heading h2 em,
.selected-title h2 em,
.showreel-content h2 em,
.awards-heading h2 em,
.contact-main h2 em,
.inner-two-column h2 em,
.inner-production h2 em,
.inner-cta h2 em,
.large-service h2 em,
.gallery-hub-card h2 em {
    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-weight: 500;
    font-style: italic;
    letter-spacing: -.035em;
}


/*
|--------------------------------------------------------------------------
| Section/card headings
|--------------------------------------------------------------------------
*/

.production-content h3,
.work-row h3,
.project-line h2,
.team-card h3,
.award-row h3,
.visual-work h3,
.service-card h3 {
    font-family:
        "Manrope",
        "Helvetica Neue",
        Arial,
        sans-serif;
}



/* ============================================================
   DEGZY FULL WORDPRESS CONTENT MIGRATION
   ============================================================ */


.legacy-page-section {
    padding:
        clamp(90px, 11vw, 170px)
        0;
}


.legacy-page-section + .legacy-page-section {
    border-top: 1px solid var(--line);
}


/*
|--------------------------------------------------------------------------
| Full migrated WordPress copy
|--------------------------------------------------------------------------
*/

.legacy-content {
    width: 100%;
}


.legacy-content > h1:first-of-type {
    display: none;
}


.legacy-content h1,
.legacy-content h2 {
    font-family:
        "Manrope",
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-weight: 500;
    letter-spacing: -.05em;
    line-height: 1;

    margin:
        clamp(70px, 9vw, 130px)
        0
        35px;

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


.legacy-content h1:first-child,
.legacy-content h2:first-child {
    margin-top: 0;
}


.legacy-content h3 {
    font-family:
        "Manrope",
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-size:
        clamp(28px, 3vw, 43px);

    font-weight: 500;

    letter-spacing: -.04em;

    margin:
        60px
        0
        18px;
}


.legacy-content h4,
.legacy-content h5,
.legacy-content h6 {
    font-family:
        "Manrope",
        "Helvetica Neue",
        Arial,
        sans-serif;

    margin:
        34px
        0
        12px;

    font-size:
        clamp(20px, 2vw, 28px);

    font-weight: 600;
}


.legacy-content p {
    max-width: 900px;

    margin:
        0
        0
        20px;

    color: var(--muted);

    font-size:
        clamp(15px, 1.2vw, 18px);

    line-height: 1.85;
}


.legacy-content > p:first-of-type {
    color: var(--white);

    font-size:
        clamp(20px, 2vw, 29px);

    line-height: 1.6;

    max-width: 980px;
}


.legacy-content ul,
.legacy-content ol {
    max-width: 980px;

    margin:
        25px
        0
        55px;

    padding-left: 25px;
}


.legacy-content li {
    margin-bottom: 14px;

    color: #c8c5be;

    line-height: 1.7;
}


.legacy-content strong,
.legacy-content b {
    color: var(--white);
}


.legacy-content a {
    color: var(--gold-bright);

    text-decoration: underline;

    text-decoration-thickness: 1px;

    text-underline-offset: 4px;
}


.legacy-content blockquote {
    margin:
        55px
        0;

    max-width: 900px;

    border-left:
        2px solid
        var(--gold);

    padding:
        10px
        0
        10px
        30px;

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

    font-size:
        clamp(26px, 3vw, 42px);

    color: var(--white);
}


/*
|--------------------------------------------------------------------------
| Migrated images
|--------------------------------------------------------------------------
*/

.legacy-image {
    margin:
        clamp(35px, 5vw, 70px)
        0;

    overflow: hidden;

    max-width: 1100px;
}


.legacy-image img {
    width: 100%;
    height: auto;

    max-height: 850px;

    object-fit: cover;
}


/*
|--------------------------------------------------------------------------
| Migrated videos
|--------------------------------------------------------------------------
*/

.legacy-video {
    max-width: 1100px;

    margin:
        50px
        0;

    aspect-ratio: 16 / 9;
}


.legacy-video iframe {
    width: 100%;
    height: 100%;

    border: 0;
}


/*
|--------------------------------------------------------------------------
| Projects page
|--------------------------------------------------------------------------
*/

.legacy-light {
    background: #f0ede5;
    color: #111;
}


.legacy-light .legacy-content p,
.legacy-light .legacy-content li {
    color: rgba(0,0,0,.62);
}


.legacy-light .legacy-content h1,
.legacy-light .legacy-content h2,
.legacy-light .legacy-content h3,
.legacy-light .legacy-content h4,
.legacy-light .legacy-content h5,
.legacy-light .legacy-content h6,
.legacy-light .legacy-content strong,
.legacy-light .legacy-content b {
    color: #111;
}


.legacy-light .legacy-content > p:first-of-type {
    color: #111;
}


.legacy-light .legacy-content a {
    color: #765927;
}


/*
|--------------------------------------------------------------------------
| Commercial Success
|--------------------------------------------------------------------------
*/

.commercial-success {
    padding:
        clamp(100px, 12vw, 180px)
        0;
}


.commercial-heading {
    margin-bottom:
        clamp(50px, 7vw, 95px);
}


.commercial-heading h2,
.gallery-section-heading h2 {
    margin: 0;

    font-family:
        "Manrope",
        "Helvetica Neue",
        Arial,
        sans-serif;

    font-weight: 500;

    font-size:
        clamp(50px, 6vw, 95px);

    line-height: .95;

    letter-spacing: -.055em;
}


.commercial-heading h2 em,
.gallery-section-heading h2 em {
    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    color: var(--gold);

    font-weight: 500;
}


.commercial-grid {
    display: grid;

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

    gap: 18px;
}


.commercial-grid figure {
    margin: 0;

    overflow: hidden;

    background: #111;
}


.commercial-grid img {
    width: 100%;

    aspect-ratio: .82;

    object-fit: cover;

    transition:
        transform .8s ease;
}


.commercial-grid figure:hover img {
    transform: scale(1.035);
}


/*
|--------------------------------------------------------------------------
| Awards
|--------------------------------------------------------------------------
*/

.awards-full {
    background: var(--gold);

    color: #111;
}


.awards-full .legacy-content h1,
.awards-full .legacy-content h2,
.awards-full .legacy-content h3,
.awards-full .legacy-content h4,
.awards-full .legacy-content p,
.awards-full .legacy-content li,
.awards-full .legacy-content strong {
    color: #111;
}


.awards-full .legacy-content a {
    color: #4d3518;
}


/*
|--------------------------------------------------------------------------
| Photo gallery
|--------------------------------------------------------------------------
*/

.photo-legacy .legacy-content,
.griot-gallery .legacy-content {
    columns: 3;

    column-gap: 16px;
}


.photo-legacy .legacy-content h1,
.photo-legacy .legacy-content h2,
.photo-legacy .legacy-content h3,
.photo-legacy .legacy-content h4,
.photo-legacy .legacy-content p,
.griot-gallery .legacy-content h1,
.griot-gallery .legacy-content h2,
.griot-gallery .legacy-content h3,
.griot-gallery .legacy-content h4,
.griot-gallery .legacy-content p {
    column-span: all;
}


.photo-legacy .legacy-image,
.griot-gallery .legacy-image {
    break-inside: avoid;

    margin:
        0
        0
        16px;
}


.photo-legacy .legacy-image img,
.griot-gallery .legacy-image img {
    width: 100%;

    max-height: none;

    object-fit: cover;
}


.griot-gallery {
    background: #111;
}


.gallery-section-heading {
    margin-bottom:
        clamp(60px, 8vw, 110px);
}


/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 900px) {

    .photo-legacy .legacy-content,
    .griot-gallery .legacy-content {
        columns: 2;
    }

}


@media (max-width: 720px) {

    .legacy-content h2 {
        font-size: 43px;
    }


    .legacy-content h3 {
        font-size: 29px;
    }


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


    .commercial-grid img {
        aspect-ratio: auto;
    }


    .photo-legacy .legacy-content,
    .griot-gallery .legacy-content {
        columns: 1;
    }

}


/* ============================================================
   DEGZY FILMS — TYPOGRAPHY / DIVI CLEANUP V3
   ============================================================ */


/*
|--------------------------------------------------------------------------
| Typography
|--------------------------------------------------------------------------
*/

body {
    font-family:
        "Manrope",
        Arial,
        sans-serif;
}


.hero h1,
.page-hero h1,
.simple-page-heading h1,
.contact-page-hero h1,
.display-heading,
.section-heading h2,
.selected-title h2,
.showreel-content h2,
.awards-heading h2,
.contact-main h2,
.inner-two-column h2,
.inner-production h2,
.inner-cta h2,
.large-service h2,
.gallery-hub-card h2,
.commercial-heading h2,
.gallery-section-heading h2 {
    font-family:
        "Syne",
        "Manrope",
        Arial,
        sans-serif;

    font-weight: 600;
}


.hero h1 span,
.hero h1 em,
.page-hero h1 em,
.simple-page-heading h1 em,
.contact-page-hero h1 em,
.display-heading em,
.section-heading h2 em,
.selected-title h2 em,
.showreel-content h2 em,
.awards-heading h2 em,
.contact-main h2 em,
.inner-two-column h2 em,
.inner-production h2 em,
.inner-cta h2 em,
.large-service h2 em,
.gallery-hub-card h2 em,
.commercial-heading h2 em,
.gallery-section-heading h2 em {
    font-family:
        "Cormorant Garamond",
        Georgia,
        serif;

    font-weight: 500;
    font-style: italic;
}


/*
|--------------------------------------------------------------------------
| Fix inner-page hero underneath fixed header
|--------------------------------------------------------------------------
*/

.inner-page main {
    padding-top: 0;
}


.inner-page .page-hero {
    min-height: clamp(
        620px,
        78vh,
        900px
    );

    padding-top:
        var(--header-height);

    display: flex;

    align-items: flex-end;
}


.inner-page .page-hero-short {
    min-height: clamp(
        560px,
        68vh,
        780px
    );
}


.inner-page .page-hero-content {
    padding-top:
        clamp(
            150px,
            16vh,
            230px
        );

    padding-bottom:
        clamp(
            80px,
            10vh,
            140px
        );
}


.inner-page .page-hero-content h1 {
    max-width: 1050px;
}


/*
|--------------------------------------------------------------------------
| Clean imported content
|--------------------------------------------------------------------------
*/

.legacy-content {
    max-width: 1280px;
}


.legacy-content > h1:first-child,
.legacy-content > h2:first-child {
    margin-top: 0;
}


.legacy-content h1,
.legacy-content h2 {
    font-family:
        "Syne",
        "Manrope",
        Arial,
        sans-serif;

    font-weight: 600;

    letter-spacing: -.045em;

    line-height: 1;

    font-size:
        clamp(
            42px,
            5vw,
            74px
        );
}


.legacy-content h3 {
    font-family:
        "Syne",
        "Manrope",
        Arial,
        sans-serif;

    font-weight: 600;

    letter-spacing: -.035em;
}


.legacy-content p {
    max-width: 950px;

    line-height: 1.85;
}


/*
|--------------------------------------------------------------------------
| Profile sections
|--------------------------------------------------------------------------
*/

.legacy-profile {
    border-top:
        1px solid
        var(--line);

    padding:
        clamp(
            65px,
            8vw,
            120px
        )
        0;
}


.legacy-profile-head {
    display: grid;

    grid-template-columns:
        minmax(240px, 420px)
        1fr;

    align-items: end;

    gap:
        clamp(
            40px,
            7vw,
            110px
        );

    margin-bottom:
        clamp(
            45px,
            6vw,
            85px
        );
}


.legacy-profile-head
.legacy-image {
    margin: 0;

    max-width: none;
}


.legacy-profile-head
.legacy-image img {
    width: 100%;

    aspect-ratio: 4 / 5;

    max-height: none;

    object-fit: cover;

    object-position: top center;

    filter: grayscale(100%);

    transition:
        filter .6s ease;
}


.legacy-profile:hover
.legacy-profile-head
.legacy-image img {
    filter: grayscale(0%);
}


.legacy-profile-title h3 {
    margin: 10px 0 0;

    font-family:
        "Syne",
        "Manrope",
        sans-serif;

    font-size:
        clamp(
            46px,
            6vw,
            88px
        );

    line-height: .95;

    letter-spacing: -.055em;
}


.legacy-kicker {
    margin: 0 !important;

    color:
        var(--gold-bright)
        !important;

    font-size:
        11px
        !important;

    line-height: 1.4 !important;

    letter-spacing: .17em;

    text-transform: uppercase;
}


.legacy-profile-body {
    max-width: 1000px;

    margin-left:
        min(
            34vw,
            530px
        );
}


.legacy-profile-body ul {
    margin-top: 30px;
}


/*
|--------------------------------------------------------------------------
| Project / service cards
|--------------------------------------------------------------------------
*/

.legacy-card {
    display: grid;

    grid-template-columns:
        minmax(180px, 300px)
        1fr;

    gap:
        clamp(
            30px,
            6vw,
            90px
        );

    align-items: start;

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

    padding:
        clamp(
            38px,
            5vw,
            70px
        )
        0;
}


.legacy-card:not(:has(.legacy-image)) {
    grid-template-columns: 1fr;
}


.legacy-card
.legacy-image {
    margin: 0;

    max-width: none;
}


.legacy-card
.legacy-image img {
    width: 100%;

    max-height: none;

    aspect-ratio: 4 / 5;

    object-fit: cover;
}


.legacy-card-body h3 {
    margin-top: 0;

    font-size:
        clamp(
            31px,
            4vw,
            55px
        );
}


.legacy-card-body p {
    max-width: 740px;
}


/*
|--------------------------------------------------------------------------
| Award blocks
|--------------------------------------------------------------------------
*/

.legacy-award {
    border-top:
        1px solid
        currentColor;

    padding:
        42px 0;
}


.legacy-award-body h3 {
    margin-top: 0;

    font-size:
        clamp(
            29px,
            3.5vw,
            50px
        );
}


/*
|--------------------------------------------------------------------------
| Projects light section
|--------------------------------------------------------------------------
*/

.legacy-light .legacy-card {
    border-top-color:
        rgba(
            0,
            0,
            0,
            .18
        );
}


/*
|--------------------------------------------------------------------------
| Content images
|--------------------------------------------------------------------------
*/

.legacy-content
.legacy-image {
    background: #111;
}


.legacy-content
.legacy-image img {
    display: block;
}


/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 760px) {

    .inner-page .page-hero,
    .inner-page .page-hero-short {
        min-height: 650px;
    }


    .inner-page
    .page-hero-content {
        padding-top: 130px;
        padding-bottom: 80px;
    }


    .legacy-profile-head {
        grid-template-columns:
            1fr;

        gap: 30px;
    }


    .legacy-profile-body {
        margin-left: 0;
    }


    .legacy-card {
        grid-template-columns:
            1fr;

        gap: 28px;
    }


    .legacy-card
    .legacy-image {
        max-width: 340px;
    }

}


/* ============================================================
   DEGZY FILMS HOMEPAGE V2
   ============================================================ */


.home-v2-body {

    margin: 0;

    background: #090909;

    color: #f5f1e8;

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

}


.home-v2-body *,
.home-v2-body *::before,
.home-v2-body *::after {

    box-sizing: border-box;

}


.home-v2-body img {

    max-width: 100%;

    display: block;

}


.home-v2-body a {

    text-decoration: none;

    color: inherit;

}


.home-v2-shell {

    width:
        min(
            1420px,
            calc(100% - 10vw)
        );

    margin:
        0 auto;

}


.home-v2-kicker {

    margin:
        0
        0
        24px;

    color: #d4b171;

    text-transform: uppercase;

    letter-spacing: .22em;

    font-size: 10px;

    font-weight: 700;

}


.home-v2-body h1,
.home-v2-body h2,
.home-v2-body h3 {

    font-family:
        "Syne",
        "Manrope",
        sans-serif;

}


.home-v2-body h1 em,
.home-v2-body h2 em {

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

    font-style: italic;

    font-weight: 500;

    color: #d6b475;

}


.home-v2-reveal {

    opacity: 0;

    transform:
        translateY(40px);

    transition:
        opacity .85s ease,
        transform .85s ease;

}


.home-v2-reveal.visible {

    opacity: 1;

    transform: none;

}



/* HEADER */


.home-v2-header {

    position: fixed;

    z-index: 1000;

    top: 0;

    left: 0;

    right: 0;

    height: 92px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0
        5vw;

    transition:
        .3s ease;

}


.home-v2-header.is-scrolled {

    height: 74px;

    background:
        rgba(
            8,
            8,
            8,
            .92
        );

    backdrop-filter:
        blur(16px);

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

}


.home-v2-logo {

    width:
        clamp(
            135px,
            13vw,
            190px
        );

}


.home-v2-logo img {

    width: 100%;

}


.home-v2-nav {

    display: flex;

    align-items: center;

    gap:
        clamp(
            18px,
            2.1vw,
            35px
        );

}


.home-v2-nav > a {

    text-transform:
        uppercase;

    letter-spacing:
        .13em;

    font-size:
        10px;

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

    transition:
        color .25s ease;

}


.home-v2-nav > a:hover {

    color: #d6b475;

}


.home-v2-nav
.home-v2-nav-button {

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

    padding:
        13px
        18px;

    color:
        #fff;

}


.home-v2-menu-button {

    display: none;

}



/* HERO */


.home-v2-hero {

    min-height:
        100svh;

    position: relative;

    overflow: hidden;

    background: #050505;

}


.home-v2-hero-grid {

    position: absolute;

    inset: 0;

    display: grid;

    grid-template-columns:
        1.55fr
        .85fr;

    gap: 2px;

}


.home-v2-griot,
.home-v2-distraction {

    overflow: hidden;

}


.home-v2-griot img,
.home-v2-distraction img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.home-v2-griot img {

    object-position:
        center;

}


.home-v2-distraction img {

    object-position:
        center top;

}


.home-v2-hero-gradient {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,.88),
            rgba(0,0,0,.42) 58%,
            rgba(0,0,0,.16)
        ),

        linear-gradient(
            0deg,
            rgba(5,5,5,.94),
            rgba(5,5,5,.05) 58%
        );

}


.home-v2-hero-copy {

    position: absolute;

    z-index: 3;

    left: 5vw;

    bottom:
        clamp(
            100px,
            14vh,
            170px
        );

    max-width: 800px;

}


.home-v2-hero-copy h1 {

    margin: 0;

    font-size:
        clamp(
            70px,
            10vw,
            150px
        );

    line-height:
        .78;

    letter-spacing:
        -.07em;

    font-weight: 600;

}


.home-v2-hero-copy h1 em {

    display: block;

    font-size: 1.04em;

}


.home-v2-hero-text {

    max-width: 590px;

    margin:
        32px
        0
        38px;

    color:
        rgba(
            255,
            255,
            255,
            .72
        );

    line-height: 1.75;

    font-size:
        clamp(
            15px,
            1.25vw,
            19px
        );

}


.home-v2-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.home-v2-button {

    min-height: 54px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        0
        24px;

    text-transform:
        uppercase;

    letter-spacing:
        .14em;

    font-size:
        10px;

    font-weight: 700;

    transition:
        .3s ease;

}


.home-v2-button-gold {

    background: #d0aa68;

    color: #080808 !important;

}


.home-v2-button-gold:hover {

    background: #e1c083;

    transform:
        translateY(-2px);

}


.home-v2-button-outline {

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

}


.home-v2-button-outline:hover {

    border-color: #fff;

    background:
        rgba(
            255,
            255,
            255,
            .08
        );

}


.home-v2-hero-project-names {

    position: absolute;

    z-index: 4;

    bottom: 32px;

    left: 5vw;

    right: 5vw;

    display: flex;

    justify-content: space-between;

    text-transform:
        uppercase;

    letter-spacing:
        .2em;

    font-size: 8px;

    color:
        rgba(
            255,
            255,
            255,
            .48
        );

}



/* SINCE */


.home-v2-since {

    padding:
        clamp(
            110px,
            13vw,
            200px
        )
        0;

}


.home-v2-since-grid {

    display: grid;

    grid-template-columns:
        1fr
        .8fr;

    gap:
        clamp(
            70px,
            10vw,
            170px
        );

    align-items: center;

}


.home-v2-since-copy h2 {

    margin:
        0
        0
        40px;

    max-width: 760px;

    font-size:
        clamp(
            54px,
            6.2vw,
            96px
        );

    line-height:
        .96;

    letter-spacing:
        -.055em;

}


.home-v2-since-copy h2 em {

    display: block;

}


.home-v2-since-copy p {

    max-width: 650px;

    color: #99958d;

    line-height: 1.8;

}


.home-v2-since-copy
.home-v2-lead {

    color: #f3efe6;

    font-size:
        clamp(
            19px,
            1.8vw,
            26px
        );

    line-height: 1.55;

}


.home-v2-text-link {

    display: inline-flex;

    align-items: center;

    gap: 20px;

    margin-top: 22px;

    padding-bottom: 8px;

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

    font-size: 13px;

}


.home-v2-text-link span {

    color: #d6b475;

}


.home-v2-founder-image {

    position: relative;

}


.home-v2-founder-image > img {

    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    object-position:
        top center;

    filter:
        grayscale(100%);

}


.home-v2-founder-caption {

    position: absolute;

    left: 22px;

    right: 22px;

    bottom: 22px;

    background:
        rgba(
            7,
            7,
            7,
            .83
        );

    backdrop-filter:
        blur(10px);

    padding:
        20px;

}


.home-v2-founder-caption span {

    display: block;

    color: #c8a566;

    text-transform:
        uppercase;

    letter-spacing:
        .15em;

    font-size: 8px;

    margin-bottom: 6px;

}


.home-v2-founder-caption strong {

    font-size: 17px;

}



/* PILLARS */


.home-v2-pillars {

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

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

}


.home-v2-pillar-grid {

    display: grid;

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

}


.home-v2-pillar {

    min-height: 370px;

    position: relative;

    padding:
        45px;

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

    transition:
        background .35s ease;

}


.home-v2-pillar:last-child {

    border-right: 0;

}


.home-v2-pillar:hover {

    background: #111;

}


.home-v2-pillar-number {

    color: #cba866;

    font-size: 10px;

    letter-spacing:
        .15em;

}


.home-v2-pillar h3 {

    margin:
        120px
        0
        15px;

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

    letter-spacing:
        -.045em;

}


.home-v2-pillar p {

    max-width: 310px;

    color: #8e8b85;

    line-height: 1.65;

    font-size: 14px;

}


.home-v2-pillar b {

    position: absolute;

    right: 35px;

    bottom: 35px;

    color: #d3af6d;

    font-size: 28px;

}



/* AWARDS */


.home-v2-awards {

    background: #eee9df;

    color: #0d0d0d;

    padding:
        clamp(
            105px,
            12vw,
            180px
        )
        0;

}


.home-v2-awards-grid {

    display: grid;

    grid-template-columns:
        1.15fr
        .85fr;

    gap:
        clamp(
            65px,
            9vw,
            140px
        );

    align-items: center;

}


.home-v2-awards-art {

    display: grid;

    grid-template-columns:
        1.15fr
        .8fr;

    grid-template-rows:
        1fr
        1fr;

    gap: 12px;

}


.home-v2-awards-poster {

    overflow: hidden;

}


.home-v2-awards-poster-large {

    grid-row:
        span 2;

}


.home-v2-awards-poster img {

    width: 100%;

    height: 100%;

    min-height: 260px;

    object-fit: cover;

}


.home-v2-awards-copy h2 {

    margin:
        0
        0
        35px;

    font-size:
        clamp(
            53px,
            6vw,
            92px
        );

    line-height: .95;

    letter-spacing:
        -.055em;

}


.home-v2-awards-copy h2 em {

    display: block;

    color: #785c2d;

}


.home-v2-awards-copy p {

    color:
        rgba(
            0,
            0,
            0,
            .6
        );

    line-height: 1.8;

    max-width: 580px;

}


.home-v2-awards-copy strong {

    color: #0b0b0b;

}


.home-v2-button-dark {

    margin-top: 25px;

    background: #101010;

    color: #fff !important;

}



/* PROJECTS */


.home-v2-projects {

    padding:
        clamp(
            110px,
            13vw,
            190px
        )
        0;

}


.home-v2-section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom:
        clamp(
            55px,
            7vw,
            100px
        );

}


.home-v2-section-heading h2 {

    margin: 0;

    font-size:
        clamp(
            54px,
            6.2vw,
            96px
        );

    line-height: .95;

    letter-spacing:
        -.055em;

}


.home-v2-section-heading h2 em {

    display: block;

}


.home-v2-project-grid {

    display: grid;

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

    gap: 14px;

}


.home-v2-project-card {

    overflow: hidden;

}


.home-v2-project-card img {

    width: 100%;

    aspect-ratio:
        .67;

    object-fit: cover;

    transition:
        transform .65s ease;

}


.home-v2-project-card:hover img {

    transform:
        scale(1.03);

}


.home-v2-project-card > div {

    padding:
        18px
        0;

}


.home-v2-project-card span {

    color: #c7a364;

    text-transform:
        uppercase;

    letter-spacing:
        .15em;

    font-size: 8px;

}


.home-v2-project-card h3 {

    margin:
        7px
        0
        0;

    font-size:
        clamp(
            17px,
            1.5vw,
            23px
        );

    line-height: 1.1;

}



/* SUCCESS */


.home-v2-success {

    padding:
        clamp(
            100px,
            12vw,
            180px
        )
        0;

    background: #f1eee7;

    color: #0b0b0b;

}


.home-v2-success-heading {

    max-width: 850px;

    margin-bottom:
        clamp(
            55px,
            7vw,
            90px
        );

}


.home-v2-success-heading h2 {

    margin: 0;

    font-size:
        clamp(
            56px,
            7vw,
            104px
        );

    line-height:
        .92;

    letter-spacing:
        -.06em;

}


.home-v2-success-heading h2 em {

    display: block;

    color: #765a2d;

}


.home-v2-success-heading > p:last-child {

    max-width: 600px;

    margin-top: 32px;

    color:
        rgba(
            0,
            0,
            0,
            .58
        );

    line-height: 1.75;

}


.home-v2-success-grid {

    display: grid;

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

    gap:
        clamp(
            16px,
            2vw,
            28px
        );

    max-width: 1050px;

    margin:
        0 auto;

}


.home-v2-success-card {

    background: #000;

    overflow: hidden;

}


.home-v2-success-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



/* CONTACT */


.home-v2-contact {

    min-height: 780px;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

}


.home-v2-contact-background,
.home-v2-contact-overlay {

    position: absolute;

    inset: 0;

}


.home-v2-contact-background {

    background-size: cover;

    background-position:
        center;

}


.home-v2-contact-overlay {

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,.94),
            rgba(0,0,0,.72)
        );

}


.home-v2-contact-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr
        .7fr;

    gap:
        clamp(
            70px,
            10vw,
            160px
        );

    padding:
        100px
        0;

}


.home-v2-contact-intro h2 {

    margin: 0;

    max-width: 780px;

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

    line-height:
        .93;

    letter-spacing:
        -.06em;

}


.home-v2-contact-intro h2 em {

    display: block;

}


.home-v2-contact-intro > p:last-of-type {

    max-width: 500px;

    color:
        rgba(
            255,
            255,
            255,
            .62
        );

    line-height: 1.75;

    margin:
        30px
        0;

}


.home-v2-contact-information {

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

}


.home-v2-contact-information > div {

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

    padding:
        24px
        0;

}


.home-v2-contact-information span {

    display: block;

    color: #cba767;

    text-transform:
        uppercase;

    letter-spacing:
        .17em;

    font-size: 8px;

    margin-bottom: 9px;

}


.home-v2-contact-information p {

    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            .75
        );

    line-height: 1.7;

}



/* FOOTER */


.home-v2-footer {

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

    padding:
        32px
        0;

}


.home-v2-footer-grid {

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 30px;

}


.home-v2-footer-grid img {

    width: 105px;

}


.home-v2-footer-grid p {

    margin: 0;

    text-align: center;

    color: #73716d;

    text-transform:
        uppercase;

    letter-spacing:
        .12em;

    font-size: 8px;

}


.home-v2-footer-grid > a {

    text-align: right;

    color: #b9b5ad;

    font-size: 11px;

}



/* MOBILE MENU */


.home-v2-mobile-menu {

    position: fixed;

    z-index: 900;

    inset: 0;

    background: #080808;

    display: grid;

    place-items: center;

    opacity: 0;

    visibility: hidden;

    transition:
        .3s ease;

}


.home-v2-mobile-menu.open {

    opacity: 1;

    visibility: visible;

}


.home-v2-mobile-menu nav {

    display: flex;

    flex-direction: column;

    text-align: center;

    gap: 18px;

}


.home-v2-mobile-menu a {

    font-family:
        "Syne",
        sans-serif;

    font-size:
        clamp(
            30px,
            8vw,
            55px
        );

    line-height: 1;

}


.home-v2-menu-open {

    overflow: hidden;

}



/* TABLET */


@media (max-width: 1050px) {


    .home-v2-nav {

        display: none;

    }


    .home-v2-menu-button {

        display: block;

        position: relative;

        z-index: 1100;

        width: 42px;

        height: 42px;

        background: none;

        border: 0;

        cursor: pointer;

    }


    .home-v2-menu-button span {

        position: absolute;

        left: 8px;

        width: 26px;

        height: 1px;

        background: #fff;

        transition:
            .3s ease;

    }


    .home-v2-menu-button span:first-child {

        top: 16px;

    }


    .home-v2-menu-button span:last-child {

        top: 25px;

    }


    .home-v2-menu-button.active
    span:first-child {

        transform:
            translateY(4px)
            rotate(45deg);

    }


    .home-v2-menu-button.active
    span:last-child {

        transform:
            translateY(-5px)
            rotate(-45deg);

    }


    .home-v2-since-grid,
    .home-v2-awards-grid,
    .home-v2-contact-grid {

        grid-template-columns:
            1fr;

    }


    .home-v2-founder-image {

        max-width: 600px;

    }


    .home-v2-project-grid {

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

    }


}



/* MOBILE */


@media (max-width: 700px) {


    .home-v2-shell {

        width:
            calc(
                100% - 40px
            );

    }


    .home-v2-header {

        height: 76px;

        padding:
            0
            20px;

    }


    .home-v2-logo {

        width: 130px;

    }


    .home-v2-hero {

        min-height: 820px;

    }


    .home-v2-hero-grid {

        grid-template-columns:
            1fr;

    }


    .home-v2-distraction {

        display: none;

    }


    .home-v2-hero-copy {

        left: 20px;

        right: 20px;

        bottom: 105px;

    }


    .home-v2-hero-copy h1 {

        font-size:
            clamp(
                62px,
                18vw,
                88px
            );

    }


    .home-v2-hero-project-names {

        left: 20px;

        right: 20px;

    }


    .home-v2-since {

        padding:
            100px
            0;

    }


    .home-v2-since-grid {

        gap: 60px;

    }


    .home-v2-pillar-grid {

        grid-template-columns:
            1fr;

    }


    .home-v2-pillar {

        min-height: 300px;

        border-right: 0;

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

    }


    .home-v2-pillar h3 {

        margin-top: 80px;

    }


    .home-v2-awards-art {

        grid-template-columns:
            1fr
            1fr;

    }


    .home-v2-awards-poster-large {

        grid-column:
            span 2;

        grid-row:
            auto;

    }


    .home-v2-section-heading {

        display: block;

    }


    .home-v2-section-heading
    .home-v2-text-link {

        margin-top: 30px;

    }


    .home-v2-project-grid {

        grid-template-columns:
            1fr
            1fr;

        gap: 12px;

    }


    .home-v2-success-grid {

        grid-template-columns:
            1fr;

        max-width: 420px;

    }


    .home-v2-contact {

        min-height: auto;

    }


    .home-v2-footer-grid {

        grid-template-columns:
            1fr;

        text-align: center;

    }


    .home-v2-footer-grid img {

        margin: auto;

    }


    .home-v2-footer-grid > a {

        text-align: center;

    }


}


/* ============================================================
   DEGZY FILMS — WHO WE ARE V2
   ============================================================ */

.about-v2 {
    background: #080808;
    color: #fff;
    font-family: 'Manrope', sans-serif;
}

.about-v2 * {
    box-sizing: border-box;
}

.about-v2 h1,
.about-v2 h2,
.about-v2 h3 {
    font-family: 'Syne', sans-serif;
}

.about-v2 em {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}


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

.about-v2-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #050505;
}

.about-v2-hero-image,
.about-v2-hero-overlay {
    position: absolute;
    inset: 0;
}

.about-v2-hero-image {
    background-size: cover;
    background-position: center;
    transform: scale(1.015);
}

.about-v2-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.48) 48%,
            rgba(0,0,0,.14) 78%
        ),
        linear-gradient(
            0deg,
            rgba(5,5,5,.86) 0%,
            rgba(5,5,5,.05) 55%
        );
}

.about-v2-hero-content {
    position: relative;
    z-index: 3;
    padding-bottom: clamp(90px, 10vw, 145px);
}

.about-v2-kicker {
    margin: 0 0 22px;

    color: #d4ad62;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;

    text-transform: uppercase;
}

.about-v2-kicker.dark {
    color: #765723;
}

.about-v2-hero h1 {
    margin: 0;

    max-width: 1080px;

    font-size: clamp(70px, 10vw, 150px);
    font-weight: 600;
    letter-spacing: -.065em;

    line-height: .84;
}

.about-v2-hero h1 em {
    display: block;

    color: #d7b36c;

    font-size: 1.04em;
    letter-spacing: -.035em;
}

.about-v2-hero-copy {
    max-width: 560px;

    margin: 34px 0 0;

    color: rgba(255,255,255,.72);

    font-size: clamp(16px, 1.35vw, 21px);
    line-height: 1.7;
}

.about-v2-scroll {
    position: absolute;

    left: 50%;
    bottom: 30px;

    z-index: 4;

    width: 42px;
    height: 42px;

    transform: translateX(-50%);

    cursor: pointer;
}

.about-v2-scroll span {
    position: absolute;

    left: 12px;
    top: 8px;

    width: 17px;
    height: 17px;

    border-right: 2px solid #d7b36c;
    border-bottom: 2px solid #d7b36c;

    transform: rotate(45deg);

    animation: aboutArrow 1.4s ease-in-out infinite;
}

@keyframes aboutArrow {

    0%,
    100% {
        transform: rotate(45deg) translate(0,0);
        opacity: .55;
    }

    50% {
        transform: rotate(45deg) translate(6px,6px);
        opacity: 1;
    }
}


/* ============================================================
   STORY
   ============================================================ */

.about-v2-story {
    padding: clamp(100px, 11vw, 175px) 0;

    background: #eee8db;

    color: #111;
}

.about-v2-story-heading {
    display: grid;

    grid-template-columns:
        1.05fr
        .75fr;

    gap:
        clamp(60px, 9vw, 140px);

    align-items: end;

    margin-bottom:
        clamp(70px, 8vw, 120px);
}

.about-v2-story h2,
.about-v2-team-heading h2 {
    margin: 0;

    max-width: 850px;

    font-size: clamp(48px, 6vw, 92px);
    font-weight: 600;

    letter-spacing: -.06em;
    line-height: .95;
}

.about-v2-story h2 em,
.about-v2-team-heading h2 em {
    color: #936e2e;
}

.about-v2-story-copy .lead {
    margin: 0 0 24px;

    color: #151515;

    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.55;
}

.about-v2-story-copy > p:not(.lead) {
    margin: 0;

    color: rgba(17,17,17,.62);

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


/* Story image */

.about-v2-story-visual {
    position: relative;

    overflow: hidden;

    background: #111;
}

.about-v2-story-visual img {
    display: block;

    width: 100%;
    height: clamp(480px, 58vw, 760px);

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

.about-v2-story-caption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    display: flex;

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

    gap: 20px;

    padding: 22px 28px;

    background:
        rgba(6,6,6,.78);

    backdrop-filter: blur(10px);

    color: #fff;
}

.about-v2-story-caption span {
    color: #d7b36c;

    font-size: 9px;
    letter-spacing: .18em;

    text-transform: uppercase;
}

.about-v2-story-caption strong {
    font-size: 11px;
    font-weight: 600;
}


/* Capabilities */

.about-v2-capabilities {
    display: grid;

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

    margin-top: 1px;
}

.about-v2-capabilities article {
    min-height: 230px;

    padding: 35px;

    border-right:
        1px solid rgba(0,0,0,.15);

    border-bottom:
        1px solid rgba(0,0,0,.15);
}

.about-v2-capabilities article:first-child {
    border-left:
        1px solid rgba(0,0,0,.15);
}

.about-v2-capabilities span {
    color: #936e2e;

    font-size: 9px;
    letter-spacing: .16em;
}

.about-v2-capabilities h3 {
    margin:
        48px 0 12px;

    font-size:
        clamp(25px, 2.3vw, 37px);

    font-weight: 600;

    letter-spacing: -.04em;
}

.about-v2-capabilities p {
    margin: 0;

    max-width: 320px;

    color:
        rgba(17,17,17,.58);

    font-size: 13px;
    line-height: 1.65;
}


/* ============================================================
   LEADERSHIP
   ============================================================ */

.about-v2-leadership {
    padding:
        clamp(100px, 12vw, 185px)
        0;

    background:
        #080808;
}

.about-v2-section-heading {
    margin-bottom:
        clamp(65px, 8vw, 120px);
}

.about-v2-section-heading h2 {
    max-width: 920px;

    margin: 0;

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

    font-weight: 600;

    letter-spacing: -.065em;

    line-height: .91;
}

.about-v2-section-heading h2 em {
    display: block;

    color: #d7b36c;
}


/* Founder */

.about-v2-founder {
    display: grid;

    grid-template-columns:
        .82fr
        1fr;

    gap:
        clamp(55px, 9vw, 145px);

    align-items: start;
}

.about-v2-founder-photo {
    position: sticky;
    top: 110px;

    overflow: hidden;

    background: #111;
}

.about-v2-founder-photo img {
    display: block;

    width: 100%;

    aspect-ratio: .82;

    object-fit: cover;
    object-position: top center;

    filter: none;
}

.about-v2-role {
    margin: 0 0 10px;

    color: #d4ad62;

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

    letter-spacing: .18em;

    text-transform: uppercase;
}

.about-v2-founder-content h3,
.about-v2-team-content h3 {
    margin: 0 0 28px;

    font-size:
        clamp(42px, 5vw, 74px);

    font-weight: 600;

    letter-spacing: -.055em;
}

.about-v2-founder-intro {
    color: #fff !important;

    font-size:
        clamp(19px, 1.8vw, 26px) !important;

    line-height:
        1.55 !important;
}

.about-v2-founder-content > p {
    margin: 0 0 22px;

    color:
        rgba(255,255,255,.6);

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


/* Highlights */

.about-v2-highlights {
    margin-top: 45px;

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

.about-v2-highlight-label {
    display: block;

    padding: 20px 0;

    color: #d4ad62;

    font-size: 9px;

    letter-spacing: .18em;

    text-transform: uppercase;
}

.about-v2-highlights ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.about-v2-highlights li {
    position: relative;

    padding:
        18px 0
        18px 24px;

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

    color:
        rgba(255,255,255,.78);

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

.about-v2-highlights li::before {
    content: "—";

    position: absolute;
    left: 0;

    color: #d4ad62;
}

.about-v2-text-link {
    display: inline-flex;

    gap: 12px;

    margin-top: 35px;

    padding-bottom: 8px;

    border-bottom:
        1px solid rgba(215,179,108,.55);

    color: #d7b36c;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;

    text-decoration: none;
}


/* ============================================================
   TEAM
   ============================================================ */

.about-v2-team {
    padding:
        clamp(100px, 11vw, 170px)
        0;

    background:
        #eee8db;

    color: #111;
}

.about-v2-team-heading {
    max-width: 850px;

    margin-bottom:
        clamp(65px, 8vw, 110px);
}

.about-v2-team-grid {
    display: grid;

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

    gap:
        clamp(30px, 4vw, 65px);
}

.about-v2-team-card {
    border-top:
        1px solid rgba(0,0,0,.18);
}

.about-v2-team-photo {
    overflow: hidden;

    background: #111;
}

.about-v2-team-photo img {
    display: block;

    width: 100%;

    aspect-ratio: .9;

    object-fit: cover;

    object-position: top center;

    filter: none;

    transition:
        transform .7s ease;
}

.about-v2-team-card:hover
.about-v2-team-photo img {
    transform: scale(1.025);
}

.about-v2-team-content {
    padding:
        32px 0 0;
}

.about-v2-team-content
.about-v2-role {
    color: #87652c;
}

.about-v2-team-content h3 {
    margin-bottom: 20px;

    font-size:
        clamp(34px, 3.5vw, 54px);
}

.about-v2-team-lead {
    color: #151515 !important;

    font-size:
        18px !important;

    line-height:
        1.55 !important;
}

.about-v2-team-content > p {
    margin:
        0 0 18px;

    color:
        rgba(17,17,17,.62);

    font-size:
        13px;

    line-height:
        1.75;
}

.about-v2-team-content ul {
    margin:
        30px 0 0;

    padding:
        0;

    list-style:
        none;

    border-top:
        1px solid rgba(0,0,0,.15);
}

.about-v2-team-content li {
    padding:
        15px 0;

    border-bottom:
        1px solid rgba(0,0,0,.11);

    color:
        rgba(17,17,17,.66);

    font-size:
        12px;

    line-height:
        1.65;
}


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

.about-v2-cta {
    padding:
        clamp(85px, 9vw, 135px)
        0;

    background:
        #cda75d;

    color:
        #090909;
}

.about-v2-cta-grid {
    display: grid;

    grid-template-columns:
        1fr
        auto;

    gap: 60px;

    align-items: end;
}

.about-v2-cta .about-v2-kicker {
    color: #493517;
}

.about-v2-cta h2 {
    max-width: 900px;

    margin: 0;

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

    font-weight: 600;

    letter-spacing: -.065em;

    line-height: .9;
}

.about-v2-cta h2 em {
    display: block;

    color: #fff1cf;
}

.about-v2-cta-button {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    min-width: 185px;

    padding:
        20px 22px;

    background:
        #090909;

    border:
        1px solid #090909;

    color:
        #fff;

    font-size:
        10px;

    font-weight: 700;

    letter-spacing:
        .13em;

    text-transform:
        uppercase;

    text-decoration:
        none;

    transition:
        background .25s ease,
        color .25s ease;
}

.about-v2-cta-button:hover {
    background:
        transparent;

    color:
        #090909;
}


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

@media (max-width: 960px) {

    .about-v2-story-heading,
    .about-v2-founder {
        grid-template-columns:
            1fr;
    }

    .about-v2-founder-photo {
        position:
            relative;

        top:
            auto;

        max-width:
            650px;
    }

    .about-v2-capabilities {
        grid-template-columns:
            1fr;
    }

    .about-v2-capabilities article {
        border-left:
            1px solid rgba(0,0,0,.15);
    }

    .about-v2-team-grid {
        grid-template-columns:
            1fr;
    }

}


@media (max-width: 700px) {

    .about-v2-hero {
        min-height:
            78vh;
    }

    .about-v2-hero h1 {
        font-size:
            clamp(54px, 17vw, 82px);
    }

    .about-v2-story-heading {
        gap:
            40px;
    }

    .about-v2-story-caption {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

    .about-v2-capabilities article {
        min-height:
            190px;

        padding:
            27px;
    }

    .about-v2-capabilities h3 {
        margin-top:
            32px;
    }

    .about-v2-founder-content h3 {
        font-size:
            45px;
    }

    .about-v2-cta-grid {
        grid-template-columns:
            1fr;

        align-items:
            start;
    }

    .about-v2-cta-button {
        width:
            100%;
    }

}



/* ============================================================
   WHO WE ARE — CINEMATIC CTA V2
   ============================================================ */

.about-v2-cta-cinematic {
    padding: 0 !important;

    background:
        #080808 !important;

    color:
        #ffffff !important;

    overflow:
        hidden;
}


.about-v2-cta-layout {
    display:
        grid;

    grid-template-columns:
        1.08fr
        .92fr;

    min-height:
        690px;
}


/* ============================================================
   LEFT PANEL
   ============================================================ */

.about-v2-cta-copy {
    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    padding:
        clamp(55px, 6vw, 95px)
        clamp(55px, 7vw, 115px);

    background:
        #090909;

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


/* top */

.about-v2-cta-topline {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    padding-bottom:
        22px;

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


.about-v2-cta-topline span,
.about-v2-cta-topline p {
    margin:
        0;

    color:
        rgba(255,255,255,.45);

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        .18em;

    text-transform:
        uppercase;
}


.about-v2-cta-topline span {
    color:
        #d2aa5d;
}


/* heading */

.about-v2-cta-heading {
    padding:
        clamp(55px, 7vw, 105px)
        0;
}


.about-v2-cta-cinematic
.about-v2-kicker {
    margin-bottom:
        24px;

    color:
        #d2aa5d !important;
}


.about-v2-cta-cinematic h2 {
    max-width:
        800px;

    margin:
        0;

    color:
        #ffffff;

    font-size:
        clamp(58px, 7vw, 112px);

    font-weight:
        600;

    letter-spacing:
        -.065em;

    line-height:
        .88;
}


.about-v2-cta-cinematic h2 em {
    display:
        block;

    margin-top:
        6px;

    color:
        #d5ad62;

    font-family:
        'Cormorant Garamond',
        serif;

    font-weight:
        500;

    letter-spacing:
        -.03em;
}


/* bottom */

.about-v2-cta-bottom {
    display:
        grid;

    grid-template-columns:
        1fr
        auto;

    gap:
        40px;

    align-items:
        end;

    padding-top:
        30px;

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


.about-v2-cta-bottom > p {
    max-width:
        430px;

    margin:
        0;

    color:
        rgba(255,255,255,.52);

    font-size:
        13px;

    line-height:
        1.75;
}


/* button */

.about-v2-cta-action {
    min-width:
        205px;

    min-height:
        58px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        25px;

    padding:
        0 22px;

    background:
        #d2aa5d;

    border:
        1px solid
        #d2aa5d;

    color:
        #080808;

    text-decoration:
        none;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}


.about-v2-cta-action span {
    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        .13em;

    text-transform:
        uppercase;
}


.about-v2-cta-action b {
    font-size:
        18px;

    font-weight:
        400;

    transition:
        transform .25s ease;
}


.about-v2-cta-action:hover {
    background:
        transparent;

    color:
        #ffffff;

    border-color:
        rgba(255,255,255,.40);
}


.about-v2-cta-action:hover b {
    transform:
        translate(4px,-4px);
}


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

.about-v2-cta-visual {
    position:
        relative;

    min-height:
        690px;

    overflow:
        hidden;

    background:
        #111;
}


.about-v2-cta-visual img {
    position:
        absolute;

    inset:
        0;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    object-position:
        center;

    display:
        block;

    transition:
        transform 1.1s ease;
}


.about-v2-cta-cinematic:hover
.about-v2-cta-visual img {
    transform:
        scale(1.025);
}


.about-v2-cta-visual-overlay {
    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.05) 0%,
            rgba(0,0,0,.10) 55%,
            rgba(0,0,0,.72) 100%
        );
}


.about-v2-cta-visual-caption {
    position:
        absolute;

    left:
        36px;

    right:
        36px;

    bottom:
        34px;

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        20px;

    padding-top:
        18px;

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


.about-v2-cta-visual-caption span {
    color:
        #d6b46b;

    font-size:
        9px;

    letter-spacing:
        .17em;

    text-transform:
        uppercase;
}


.about-v2-cta-visual-caption strong {
    color:
        #ffffff;

    font-size:
        10px;

    font-weight:
        500;
}


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

@media (max-width: 1000px) {

    .about-v2-cta-layout {
        grid-template-columns:
            1fr;
    }


    .about-v2-cta-copy {
        min-height:
            620px;
    }


    .about-v2-cta-visual {
        min-height:
            520px;
    }

}


@media (max-width: 700px) {

    .about-v2-cta-copy {
        padding:
            50px 24px;

        min-height:
            auto;
    }


    .about-v2-cta-heading {
        padding:
            60px 0;
    }


    .about-v2-cta-cinematic h2 {
        font-size:
            clamp(52px, 16vw, 78px);
    }


    .about-v2-cta-bottom {
        grid-template-columns:
            1fr;

        align-items:
            start;
    }


    .about-v2-cta-action {
        width:
            100%;
    }


    .about-v2-cta-visual {
        min-height:
            420px;
    }


    .about-v2-cta-visual-caption {
        left:
            22px;

        right:
            22px;

        bottom:
            22px;

        flex-direction:
            column;

        align-items:
            flex-start;
    }

}



/* ============================================================
   DEGZY FILMS — WHAT WE DO V2
   ============================================================ */

.services-v2 {
    background: #080808;
    color: #fff;
    font-family: 'Manrope', sans-serif;
}

.services-v2 * {
    box-sizing: border-box;
}

.services-v2 h1,
.services-v2 h2,
.services-v2 h3 {
    font-family: 'Syne', sans-serif;
}

.services-v2 em {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}


/* ============================================================
   SHARED
   ============================================================ */

.services-v2-kicker {
    margin: 0 0 22px;

    color: #d4ad62;

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

    letter-spacing: .21em;

    text-transform: uppercase;
}

.services-v2-kicker.dark {
    color: #775822;
}


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

.services-v2-hero {
    position: relative;

    min-height: 88vh;

    display: flex;

    align-items: flex-end;

    overflow: hidden;
}

.services-v2-hero-image,
.services-v2-hero-overlay {
    position: absolute;
    inset: 0;
}

.services-v2-hero-image {
    background-size: cover;

    background-position: center;

    transform: scale(1.02);
}

.services-v2-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.80) 0%,
            rgba(0,0,0,.48) 47%,
            rgba(0,0,0,.12) 80%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.77) 0%,
            rgba(0,0,0,0) 55%
        );
}

.services-v2-hero-content {
    position: relative;

    z-index: 3;

    padding-bottom:
        clamp(90px,10vw,145px);
}

.services-v2-hero h1 {
    max-width: 1080px;

    margin: 0;

    font-size:
        clamp(68px,9vw,140px);

    font-weight: 600;

    letter-spacing: -.065em;

    line-height: .87;
}

.services-v2-hero h1 em {
    display: block;

    color: #d7b36c;
}

.services-v2-hero-content > p:last-child {
    max-width: 590px;

    margin: 35px 0 0;

    color:
        rgba(255,255,255,.72);

    font-size:
        clamp(16px,1.35vw,21px);

    line-height: 1.7;
}


/* scroll */

.services-v2-scroll {
    position: absolute;

    left: 50%;
    bottom: 30px;

    z-index: 4;

    width: 45px;
    height: 45px;

    transform: translateX(-50%);

    border: 0;

    background: transparent;

    cursor: pointer;
}

.services-v2-scroll span {
    position: absolute;

    width: 17px;
    height: 17px;

    left: 13px;
    top: 8px;

    border-right:
        2px solid #d7b36c;

    border-bottom:
        2px solid #d7b36c;

    transform: rotate(45deg);

    animation:
        servicesArrow 1.4s ease infinite;
}

@keyframes servicesArrow {

    0%,100% {
        transform:
            rotate(45deg)
            translate(0,0);

        opacity: .55;
    }

    50% {
        transform:
            rotate(45deg)
            translate(6px,6px);

        opacity: 1;
    }

}


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

.services-v2-intro {
    padding:
        clamp(100px,11vw,175px)
        0;

    background:
        #eee8db;

    color: #111;
}

.services-v2-intro-grid {
    display: grid;

    grid-template-columns:
        1fr
        .8fr;

    gap:
        clamp(60px,9vw,145px);

    align-items: start;
}

.services-v2-intro h2 {
    margin: 0;

    font-size:
        clamp(48px,6vw,92px);

    font-weight: 600;

    letter-spacing: -.06em;

    line-height: .95;
}

.services-v2-intro h2 em {
    display: block;

    color: #936e2e;
}

.services-v2-intro-copy .lead {
    margin: 0 0 28px;

    font-size:
        clamp(20px,2vw,28px);

    line-height: 1.55;
}

.services-v2-intro-copy p:not(.lead) {
    margin: 0 0 18px;

    color:
        rgba(17,17,17,.62);

    font-size: 14px;

    line-height: 1.8;
}


/* team strip */

.services-v2-team-strip {
    display: grid;

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

    margin-top:
        clamp(70px,8vw,115px);

    border-top:
        1px solid rgba(0,0,0,.16);

    border-left:
        1px solid rgba(0,0,0,.16);
}

.services-v2-team-strip div {
    min-height: 150px;

    display: flex;

    flex-direction: column;

    justify-content:
        space-between;

    padding: 25px;

    border-right:
        1px solid rgba(0,0,0,.16);

    border-bottom:
        1px solid rgba(0,0,0,.16);
}

.services-v2-team-strip span {
    color: #916b2c;

    font-size: 9px;
}

.services-v2-team-strip strong {
    font-family:
        'Syne',
        sans-serif;

    font-size:
        clamp(17px,1.5vw,23px);

    font-weight: 600;
}


/* ============================================================
   SERVICE SECTIONS
   ============================================================ */

.services-v2-service-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    min-height: 720px;
}

.services-v2-service-grid.reverse
.services-v2-service-image {
    order: 2;
}

.services-v2-service-grid.reverse
.services-v2-service-content {
    order: 1;
}


/* image */

.services-v2-service-image {
    min-height: 720px;

    overflow: hidden;

    background: #111;
}

.services-v2-service-image img {
    width: 100%;
    height: 100%;

    min-height: 720px;

    display: block;

    object-fit: cover;

    transition:
        transform .9s ease;
}

.services-v2-service:hover
.services-v2-service-image img {
    transform:
        scale(1.025);
}


/* content */

.services-v2-service-content {
    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        clamp(55px,7vw,110px);
}

.services-v2-service-number {
    position: absolute;

    top: 35px;
    right: 40px;

    color:
        rgba(255,255,255,.26);

    font-size: 10px;

    letter-spacing: .18em;
}

.services-v2-service-content h2 {
    margin: 0 0 30px;

    font-size:
        clamp(46px,5.5vw,84px);

    font-weight: 600;

    letter-spacing: -.06em;

    line-height: .92;
}

.services-v2-service-content h2 em {
    display: block;

    color: #d5ad62;
}

.services-v2-service-lead {
    max-width: 620px;

    margin: 0 0 25px;

    font-size:
        clamp(18px,1.7vw,25px);

    line-height: 1.55;
}

.services-v2-service-content > p:not(.services-v2-kicker):not(.services-v2-service-lead) {
    max-width: 580px;

    margin: 0;

    color:
        rgba(255,255,255,.57);

    font-size: 13px;

    line-height: 1.8;
}


/* list */

.services-v2-service-list {
    display: grid;

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

    gap: 0;

    margin:
        42px 0 0;

    padding: 0;

    list-style: none;

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

.services-v2-service-list li {
    padding:
        17px 0;

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

    color:
        rgba(255,255,255,.75);

    font-size: 12px;
}


/* link */

.services-v2-link {
    display: inline-flex;

    width: fit-content;

    gap: 13px;

    margin-top: 35px;

    padding-bottom: 7px;

    border-bottom:
        1px solid rgba(215,179,108,.55);

    color: #d7b36c;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;

    text-decoration: none;
}


/* dark */

.services-v2-service-dark {
    background: #080808;

    color: #fff;
}


/* light */

.services-v2-service-light {
    background: #eee8db;

    color: #111;
}

.services-v2-service-light
.services-v2-service-number {
    color:
        rgba(0,0,0,.25);
}

.services-v2-service-light
.services-v2-service-content h2 em {
    color: #936e2e;
}

.services-v2-service-light
.services-v2-service-content
> p:not(.services-v2-kicker):not(.services-v2-service-lead) {
    color:
        rgba(17,17,17,.58);
}

.services-v2-service-light
.services-v2-service-list {
    border-top:
        1px solid rgba(0,0,0,.14);
}

.services-v2-service-light
.services-v2-service-list li {
    border-bottom:
        1px solid rgba(0,0,0,.12);

    color:
        rgba(17,17,17,.65);
}

.services-v2-service-light
.services-v2-link {
    color: #806029;

    border-color:
        rgba(128,96,41,.55);
}


/* gold */

.services-v2-service-gold {
    background: #cda75d;

    color: #090909;
}

.services-v2-service-gold
.services-v2-service-number {
    color:
        rgba(0,0,0,.25);
}

.services-v2-service-gold
.services-v2-service-content h2 em {
    color:
        #fff0ce;
}

.services-v2-service-gold
.services-v2-service-content
> p:not(.services-v2-kicker):not(.services-v2-service-lead) {
    color:
        rgba(0,0,0,.58);
}

.services-v2-service-gold
.services-v2-service-list {
    border-top:
        1px solid rgba(0,0,0,.16);
}

.services-v2-service-gold
.services-v2-service-list li {
    border-bottom:
        1px solid rgba(0,0,0,.14);

    color:
        rgba(0,0,0,.65);
}

.services-v2-service-gold
.services-v2-link {
    color: #090909;

    border-color:
        rgba(0,0,0,.45);
}


/* ============================================================
   PHILOSOPHY
   ============================================================ */

.services-v2-philosophy {
    padding:
        clamp(110px,12vw,190px)
        0;

    background: #080808;
}

.services-v2-philosophy-grid {
    display: grid;

    grid-template-columns:
        .35fr
        1.25fr
        .6fr;

    gap:
        clamp(40px,6vw,90px);

    align-items: start;
}

.services-v2-philosophy blockquote {
    margin: 0;

    font-family:
        'Syne',
        sans-serif;

    font-size:
        clamp(42px,5.4vw,82px);

    font-weight: 600;

    letter-spacing: -.055em;

    line-height: .95;
}

.services-v2-philosophy blockquote em {
    display: block;

    color: #d7b36c;
}

.services-v2-philosophy-copy p {
    margin:
        0 0 22px;

    color:
        rgba(255,255,255,.56);

    font-size: 13px;

    line-height: 1.8;
}


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

.services-v2-cta-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    min-height: 650px;
}

.services-v2-cta-image {
    position: relative;

    overflow: hidden;
}

.services-v2-cta-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.services-v2-cta-image div {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.08),
            rgba(0,0,0,.36)
        );
}

.services-v2-cta-copy {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        clamp(55px,7vw,110px);

    background:
        #090909;

    color: #fff;
}

.services-v2-cta-copy h2 {
    margin:
        0 0 30px;

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

    font-weight: 600;

    letter-spacing: -.065em;

    line-height: .88;
}

.services-v2-cta-copy h2 em {
    display: block;

    color: #d7b36c;
}

.services-v2-cta-copy > p:not(.services-v2-kicker) {
    max-width: 480px;

    margin:
        0 0 35px;

    color:
        rgba(255,255,255,.58);

    font-size: 14px;

    line-height: 1.8;
}

.services-v2-cta-copy > a {
    width: fit-content;

    min-width: 200px;

    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 30px;

    padding:
        0 22px;

    background: #d2aa5d;

    color: #090909;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

    text-decoration: none;
}


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

@media (max-width: 960px) {

    .services-v2-intro-grid,
    .services-v2-philosophy-grid {
        grid-template-columns:
            1fr;
    }

    .services-v2-team-strip {
        grid-template-columns:
            repeat(2,1fr);
    }

    .services-v2-service-grid,
    .services-v2-cta-grid {
        grid-template-columns:
            1fr;
    }

    .services-v2-service-grid.reverse
    .services-v2-service-image,
    .services-v2-service-grid.reverse
    .services-v2-service-content {
        order: initial;
    }

    .services-v2-service-image {
        min-height: 500px;
    }

    .services-v2-service-image img {
        min-height: 500px;
    }

    .services-v2-cta-image {
        min-height: 500px;
    }

}


@media (max-width: 700px) {

    .services-v2-hero {
        min-height: 78vh;
    }

    .services-v2-hero h1 {
        font-size:
            clamp(55px,16vw,82px);
    }

    .services-v2-team-strip {
        grid-template-columns:
            1fr;
    }

    .services-v2-service-content {
        padding:
            70px 25px;
    }

    .services-v2-service-list {
        grid-template-columns:
            1fr;
    }

    .services-v2-cta-copy {
        padding:
            70px 25px;
    }

    .services-v2-cta-copy > a {
        width: 100%;
    }

}



/* ============================================================
   WHAT WE DO — SECTION COLOUR SEPARATION
   ============================================================ */


/* ------------------------------------------------------------
   HOW WE WORK
   Cream editorial section
------------------------------------------------------------ */

.services-v2-philosophy {
    background:
        #eee8db !important;

    color:
        #111111 !important;
}


/* kicker */

.services-v2-philosophy
.services-v2-kicker {
    color:
        #846229 !important;
}


/* main quote */

.services-v2-philosophy
blockquote {
    color:
        #111111 !important;
}


/* italic emphasis */

.services-v2-philosophy
blockquote em {
    color:
        #936e2e !important;
}


/* supporting copy */

.services-v2-philosophy-copy p {
    color:
        rgba(17,17,17,.60) !important;
}


/* ------------------------------------------------------------
   WHAT'S YOUR STORY CTA
   Keep cinematic black
------------------------------------------------------------ */

.services-v2-cta {
    background:
        #080808 !important;
}


.services-v2-cta-copy {
    background:
        #080808 !important;

    color:
        #ffffff !important;
}


/* stronger divider between sections */

.services-v2-cta {
    border-top:
        1px solid
        rgba(0,0,0,.15);
}



/* ============================================================
   DEGZY FILMS — PRODUCTIONS V2
   ============================================================ */

.productions-v2 {
    background: #080808;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
}

.productions-v2 * {
    box-sizing: border-box;
}

.productions-v2 h1,
.productions-v2 h2 {
    font-family: 'Syne', sans-serif;
}

.productions-v2 em {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}


/* ============================================================
   KICKER
   ============================================================ */

.productions-v2-kicker {
    margin: 0 0 22px;

    color: #d4ad62;

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

    letter-spacing: .21em;

    text-transform: uppercase;
}

.productions-v2-kicker.dark {
    color: #805f27;
}


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

.productions-v2-hero {
    position: relative;

    min-height: 88vh;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    background: #080808;
}

.productions-v2-hero-image,
.productions-v2-hero-overlay {
    position: absolute;
    inset: 0;
}

.productions-v2-hero-image {
    background-size: cover;

    background-position:
        center 30%;

    transform: scale(1.02);
}

.productions-v2-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.85) 0%,
            rgba(0,0,0,.56) 42%,
            rgba(0,0,0,.18) 75%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.02) 58%
        );
}

.productions-v2-hero-content {
    position: relative;

    z-index: 3;

    padding-bottom:
        clamp(90px,10vw,145px);
}

.productions-v2-hero h1 {
    max-width: 1070px;

    margin: 0;

    font-size:
        clamp(68px,9vw,140px);

    font-weight: 600;

    letter-spacing: -.065em;

    line-height: .86;
}

.productions-v2-hero h1 em {
    display: block;

    color: #d5ad62;
}

.productions-v2-hero-copy {
    max-width: 580px;

    margin: 34px 0 0;

    color:
        rgba(255,255,255,.70);

    font-size:
        clamp(16px,1.35vw,21px);

    line-height: 1.7;
}


/* scroll */

.productions-v2-scroll {
    position: absolute;

    left: 50%;
    bottom: 30px;

    z-index: 4;

    width: 45px;
    height: 45px;

    transform:
        translateX(-50%);

    border: 0;

    background:
        transparent;

    cursor: pointer;
}

.productions-v2-scroll span {
    position: absolute;

    left: 13px;
    top: 8px;

    width: 17px;
    height: 17px;

    border-right:
        2px solid #d7b36c;

    border-bottom:
        2px solid #d7b36c;

    transform:
        rotate(45deg);

    animation:
        productionsArrow
        1.4s
        ease-in-out
        infinite;
}

@keyframes productionsArrow {

    0%,
    100% {
        transform:
            rotate(45deg)
            translate(0,0);

        opacity: .55;
    }

    50% {
        transform:
            rotate(45deg)
            translate(6px,6px);

        opacity: 1;
    }

}


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

.productions-v2-intro {
    padding:
        clamp(100px,11vw,175px)
        0;

    background:
        #eee8db;

    color:
        #111111;
}

.productions-v2-intro-grid {
    display: grid;

    grid-template-columns:
        1fr
        .78fr;

    gap:
        clamp(60px,9vw,145px);
}

.productions-v2-intro h2 {
    max-width: 800px;

    margin: 0;

    font-size:
        clamp(48px,6vw,92px);

    font-weight: 600;

    letter-spacing: -.06em;

    line-height: .95;
}

.productions-v2-intro h2 em {
    display: block;

    color: #936e2e;
}

.productions-v2-intro-copy .lead {
    margin: 0 0 27px;

    color: #171717;

    font-size:
        clamp(20px,2vw,27px);

    line-height: 1.55;
}

.productions-v2-intro-copy p:not(.lead) {
    margin: 0 0 18px;

    color:
        rgba(17,17,17,.60);

    font-size: 13px;

    line-height: 1.8;
}

.productions-v2-text-link {
    display: inline-flex;

    gap: 13px;

    margin-top: 18px;

    padding-bottom: 7px;

    border-bottom:
        1px solid
        rgba(128,96,41,.48);

    color: #785922;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .10em;

    text-transform: uppercase;

    text-decoration: none;
}


/* ============================================================
   FEATURES
   ============================================================ */

.productions-v2-feature-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    min-height: 760px;
}

.productions-v2-feature-grid.reverse
.productions-v2-feature-image {
    order: 2;
}

.productions-v2-feature-grid.reverse
.productions-v2-feature-copy {
    order: 1;
}


/* image */

.productions-v2-feature-image {
    position: relative;

    min-height: 760px;

    overflow: hidden;

    background: #111111;
}

.productions-v2-feature-image img {
    width: 100%;
    height: 100%;

    min-height: 760px;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform 1s ease;
}

.productions-v2-feature:hover
.productions-v2-feature-image img {
    transform:
        scale(1.025);
}

.productions-v2-image-number {
    position: absolute;

    left: 28px;
    bottom: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;
    height: 48px;

    background:
        rgba(5,5,5,.72);

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

    color:
        #d7b36c;

    font-size: 9px;

    letter-spacing: .1em;

    backdrop-filter:
        blur(7px);
}


/* copy */

.productions-v2-feature-copy {
    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding:
        clamp(50px,6vw,95px);
}

.productions-v2-feature-top {
    display: flex;

    justify-content: space-between;

    gap: 25px;

    padding-bottom: 20px;

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

.productions-v2-feature-top span {
    font-size: 8px;

    font-weight: 700;

    letter-spacing: .18em;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.42);
}

.productions-v2-feature-top span:first-child {
    color: #d2aa5d;
}

.productions-v2-feature-title {
    margin:
        auto 0;
}

.productions-v2-feature-title h2 {
    margin:
        0 0 32px;

    font-size:
        clamp(62px,7vw,110px);

    font-weight: 600;

    letter-spacing: -.07em;

    line-height: .82;
}

.productions-v2-feature-title h2 em {
    display: block;

    color: #d5ad62;
}

.productions-v2-feature-title > p:last-child {
    max-width: 520px;

    margin: 0;

    color:
        rgba(255,255,255,.56);

    font-size: 14px;

    line-height: 1.8;
}

.productions-v2-feature-bottom {
    padding-top: 20px;

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

.productions-v2-feature-bottom a {
    display: inline-flex;

    gap: 12px;

    color: #d7b36c;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

    text-decoration: none;
}


/* dark */

.productions-v2-feature-dark {
    background: #080808;

    color: #ffffff;
}


/* cream */

.productions-v2-feature-cream {
    background: #eee8db;

    color: #111111;
}

.productions-v2-feature-cream
.productions-v2-feature-top {
    border-color:
        rgba(0,0,0,.14);
}

.productions-v2-feature-cream
.productions-v2-feature-top span {
    color:
        rgba(17,17,17,.42);
}

.productions-v2-feature-cream
.productions-v2-feature-top span:first-child {
    color:
        #866327;
}

.productions-v2-feature-cream
.productions-v2-feature-title h2 em {
    color:
        #936e2e;
}

.productions-v2-feature-cream
.productions-v2-feature-title
> p:last-child {
    color:
        rgba(17,17,17,.60);
}

.productions-v2-feature-cream
.productions-v2-feature-bottom {
    border-color:
        rgba(0,0,0,.14);
}

.productions-v2-feature-cream
.productions-v2-feature-bottom a {
    color:
        #7b5c26;
}


/* ============================================================
   COLLABORATION BRIDGE
   ============================================================ */

.productions-v2-collab {
    padding:
        clamp(110px,12vw,190px)
        0;

    background: #cda75d;

    color: #080808;
}

.productions-v2-collab-grid {
    display: grid;

    grid-template-columns:
        .32fr
        1.2fr
        .58fr;

    gap:
        clamp(40px,6vw,90px);

    align-items: start;
}

.productions-v2-collab
.productions-v2-kicker {
    color:
        #493517;
}

.productions-v2-collab h2 {
    margin: 0;

    font-size:
        clamp(50px,6vw,92px);

    font-weight: 600;

    letter-spacing: -.06em;

    line-height: .92;
}

.productions-v2-collab h2 em {
    display: block;

    color: #fff0cc;
}

.productions-v2-collab-copy p {
    margin:
        0 0 28px;

    color:
        rgba(0,0,0,.62);

    font-size: 13px;

    line-height: 1.8;
}

.productions-v2-collab-copy a {
    display: inline-flex;

    gap: 12px;

    padding-bottom: 7px;

    border-bottom:
        1px solid rgba(0,0,0,.40);

    color: #090909;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .11em;

    text-transform: uppercase;

    text-decoration: none;
}


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

.productions-v2-cta-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    min-height: 650px;
}

.productions-v2-cta-image {
    position: relative;

    min-height: 650px;

    overflow: hidden;
}

.productions-v2-cta-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.productions-v2-cta-image div {
    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,.20);
}

.productions-v2-cta-copy {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        clamp(55px,7vw,110px);

    background:
        #080808;

    color:
        #ffffff;
}

.productions-v2-cta-copy h2 {
    margin:
        0 0 30px;

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

    font-weight: 600;

    letter-spacing: -.065em;

    line-height: .88;
}

.productions-v2-cta-copy h2 em {
    display: block;

    color:
        #d5ad62;
}

.productions-v2-cta-copy > p:not(.productions-v2-kicker) {
    max-width: 470px;

    margin:
        0 0 35px;

    color:
        rgba(255,255,255,.56);

    font-size: 13px;

    line-height: 1.8;
}

.productions-v2-cta-copy > a {
    width: fit-content;

    min-width: 205px;

    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        0 22px;

    background:
        #d2aa5d;

    color:
        #090909;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

    text-decoration: none;
}


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

@media (max-width: 960px) {

    .productions-v2-intro-grid,
    .productions-v2-collab-grid {
        grid-template-columns:
            1fr;
    }

    .productions-v2-feature-grid,
    .productions-v2-cta-grid {
        grid-template-columns:
            1fr;
    }

    .productions-v2-feature-grid.reverse
    .productions-v2-feature-image,
    .productions-v2-feature-grid.reverse
    .productions-v2-feature-copy {
        order: initial;
    }

    .productions-v2-feature-image,
    .productions-v2-feature-image img {
        min-height: 560px;
    }

    .productions-v2-cta-image {
        min-height: 500px;
    }

}


@media (max-width: 700px) {

    .productions-v2-hero {
        min-height: 78vh;
    }

    .productions-v2-hero h1 {
        font-size:
            clamp(54px,16vw,82px);
    }

    .productions-v2-feature-copy {
        padding:
            65px 25px;
    }

    .productions-v2-feature-title h2 {
        font-size:
            clamp(58px,17vw,80px);
    }

    .productions-v2-feature-top {
        flex-direction:
            column;
    }

    .productions-v2-cta-copy {
        padding:
            70px 25px;
    }

    .productions-v2-cta-copy > a {
        width: 100%;
    }

}



/* ============================================================
   PRODUCTIONS — DISTRACTION TITLE
   ============================================================ */

.productions-v2-distraction-title {
    white-space: nowrap !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

@media (max-width: 700px) {

    .productions-v2-distraction-title {
        font-size:
            clamp(46px, 14vw, 72px) !important;
    }

}



/* ============================================================
   PRODUCTIONS — PROJECTS & COLLABORATIONS BRIDGE V2
   ============================================================ */

.productions-v2-collab-redesign {
    padding: 0 !important;

    background:
        #eee8db !important;

    color:
        #111111 !important;

    overflow:
        hidden;
}


.productions-v2-collab-new-grid {
    display:
        grid;

    grid-template-columns:
        .92fr
        1.08fr;

    min-height:
        720px;
}


/* ============================================================
   LEFT COPY PANEL
   ============================================================ */

.productions-v2-collab-new-copy {
    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    padding:
        clamp(55px, 6.5vw, 105px);

    background:
        #eee8db;

    border-right:
        1px solid
        rgba(0,0,0,.13);
}


/* top index */

.productions-v2-collab-index {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    padding-bottom:
        20px;

    border-bottom:
        1px solid
        rgba(0,0,0,.14);
}


.productions-v2-collab-index span {
    color:
        rgba(17,17,17,.42);

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        .18em;

    text-transform:
        uppercase;
}


.productions-v2-collab-index span:first-child {
    color:
        #8a6729;
}


/* main heading */

.productions-v2-collab-heading {
    margin:
        auto 0;

    padding:
        clamp(50px, 6vw, 95px)
        0;
}


.productions-v2-collab-heading h2 {
    max-width:
        760px;

    margin:
        0 0 35px;

    color:
        #111111;

    font-size:
        clamp(52px, 6.3vw, 96px);

    font-weight:
        600;

    letter-spacing:
        -.065em;

    line-height:
        .90;
}


.productions-v2-collab-heading h2 em {
    display:
        block;

    margin-top:
        5px;

    color:
        #936e2e;

    font-family:
        'Cormorant Garamond',
        serif;

    font-weight:
        500;

    letter-spacing:
        -.03em;
}


.productions-v2-collab-heading > p:not(.productions-v2-kicker) {
    max-width:
        535px;

    margin:
        0;

    color:
        rgba(17,17,17,.60);

    font-size:
        13px;

    line-height:
        1.8;
}


/* button */

.productions-v2-collab-button {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

    width:
        fit-content;

    min-width:
        210px;

    min-height:
        58px;

    margin-top:
        35px;

    padding:
        0 22px;

    background:
        #090909;

    border:
        1px solid
        #090909;

    color:
        #ffffff;

    text-decoration:
        none;

    transition:
        background .25s ease,
        color .25s ease;
}


.productions-v2-collab-button span {
    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        .13em;

    text-transform:
        uppercase;
}


.productions-v2-collab-button b {
    color:
        #d5ad62;

    font-size:
        18px;

    font-weight:
        400;

    transition:
        transform .25s ease;
}


.productions-v2-collab-button:hover {
    background:
        #cda75d;

    border-color:
        #cda75d;

    color:
        #090909;
}


.productions-v2-collab-button:hover b {
    color:
        #090909;

    transform:
        translate(4px,-4px);
}


/* bottom metadata */

.productions-v2-collab-meta {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        10px 26px;

    padding-top:
        20px;

    border-top:
        1px solid
        rgba(0,0,0,.14);
}


.productions-v2-collab-meta span {
    color:
        rgba(17,17,17,.44);

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        .15em;

    text-transform:
        uppercase;
}


/* ============================================================
   RIGHT VISUAL PANEL
   ============================================================ */

.productions-v2-collab-visual {
    position:
        relative;

    min-height:
        720px;

    overflow:
        hidden;

    background:
        #090909;
}


/* cards */

.productions-v2-collab-card {
    position:
        absolute;

    overflow:
        hidden;

    background:
        #151515;

    box-shadow:
        0 28px 55px
        rgba(0,0,0,.30);

    transition:
        transform .45s ease,
        z-index .01s;
}


.productions-v2-collab-card img {
    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;

    transition:
        transform .7s ease;
}


.productions-v2-collab-card > div {
    position:
        absolute;

    left:
        0;

    right:
        0;

    bottom:
        0;

    padding:
        45px 20px
        18px;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.88),
            rgba(0,0,0,0)
        );
}


.productions-v2-collab-card span {
    display:
        block;

    margin-bottom:
        4px;

    color:
        #d5ad62;

    font-size:
        7px;

    font-weight:
        700;

    letter-spacing:
        .16em;

    text-transform:
        uppercase;
}


.productions-v2-collab-card strong {
    color:
        #ffffff;

    font-family:
        'Syne',
        sans-serif;

    font-size:
        15px;

    font-weight:
        600;
}


/* positions */

.productions-v2-collab-card.card-one {
    width:
        39%;

    height:
        67%;

    left:
        7%;

    top:
        12%;

    z-index:
        3;

    transform:
        rotate(-4deg);
}


.productions-v2-collab-card.card-two {
    width:
        36%;

    height:
        61%;

    left:
        34%;

    top:
        20%;

    z-index:
        2;

    transform:
        rotate(3deg);
}


.productions-v2-collab-card.card-three {
    width:
        36%;

    height:
        58%;

    right:
        5%;

    top:
        10%;

    z-index:
        1;

    transform:
        rotate(7deg);
}


/* hover */

.productions-v2-collab-card:hover {
    z-index:
        9;

    transform:
        rotate(0deg)
        translateY(-8px)
        scale(1.025);
}


.productions-v2-collab-card:hover img {
    transform:
        scale(1.035);
}


/* small detail */

.productions-v2-collab-count {
    position:
        absolute;

    right:
        6%;

    bottom:
        7%;

    z-index:
        10;

    min-width:
        155px;

    padding:
        17px 20px;

    border:
        1px solid
        rgba(213,173,98,.65);

    background:
        rgba(5,5,5,.70);

    backdrop-filter:
        blur(8px);
}


.productions-v2-collab-count span {
    display:
        block;

    margin-bottom:
        4px;

    color:
        #d5ad62;

    font-size:
        7px;

    letter-spacing:
        .17em;

    text-transform:
        uppercase;
}


.productions-v2-collab-count strong {
    color:
        #ffffff;

    font-family:
        'Syne',
        sans-serif;

    font-size:
        17px;

    font-weight:
        600;
}


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

@media (max-width: 1000px) {

    .productions-v2-collab-new-grid {
        grid-template-columns:
            1fr;
    }


    .productions-v2-collab-new-copy {
        min-height:
            620px;
    }


    .productions-v2-collab-visual {
        min-height:
            650px;
    }

}


@media (max-width: 700px) {

    .productions-v2-collab-new-copy {
        min-height:
            auto;

        padding:
            55px 25px;
    }


    .productions-v2-collab-heading {
        padding:
            60px 0;
    }


    .productions-v2-collab-heading h2 {
        font-size:
            clamp(48px, 15vw, 74px);
    }


    .productions-v2-collab-button {
        width:
            100%;
    }


    .productions-v2-collab-meta {
        gap:
            12px 18px;
    }


    .productions-v2-collab-visual {
        min-height:
            540px;
    }


    .productions-v2-collab-card.card-one {
        width:
            48%;

        height:
            64%;

        left:
            4%;

        top:
            12%;
    }


    .productions-v2-collab-card.card-two {
        width:
            44%;

        height:
            57%;

        left:
            31%;

        top:
            22%;
    }


    .productions-v2-collab-card.card-three {
        width:
            43%;

        height:
            55%;

        right:
            2%;

        top:
            10%;
    }


    .productions-v2-collab-count {
        right:
            18px;

        bottom:
            18px;
    }

}



/* ============================================================
   PRODUCTIONS — COLLABORATION SECTION SEPARATION
   ============================================================ */


/*
|--------------------------------------------------------------------------
| Gold outer frame
|--------------------------------------------------------------------------
*/

.productions-v2-collab-redesign {
    position: relative !important;

    padding:
        clamp(34px, 3.5vw, 56px)
        0 !important;

    background:
        #cda75d !important;

    overflow:
        hidden !important;

    clear:
        both !important;

    isolation:
        isolate !important;
}


/*
|--------------------------------------------------------------------------
| Inset actual content from page edges
|--------------------------------------------------------------------------
*/

.productions-v2-collab-new-grid {
    width:
        min(1420px, calc(100% - 8vw)) !important;

    margin:
        0 auto !important;

    min-height:
        700px !important;

    overflow:
        hidden !important;

    box-shadow:
        0 20px 60px
        rgba(0,0,0,.16);
}


/*
|--------------------------------------------------------------------------
| Cream side
|--------------------------------------------------------------------------
*/

.productions-v2-collab-new-copy {
    position:
        relative;

    z-index:
        2;

    background:
        #eee8db !important;
}


/*
|--------------------------------------------------------------------------
| Black visual side
|--------------------------------------------------------------------------
*/

.productions-v2-collab-visual {
    position:
        relative;

    z-index:
        1;

    min-height:
        700px !important;

    background:
        #080808 !important;

    overflow:
        hidden !important;
}


/*
|--------------------------------------------------------------------------
| Prevent poster cards escaping their section
|--------------------------------------------------------------------------
*/

.productions-v2-collab-card {
    max-height:
        calc(100% - 70px) !important;
}


/*
|--------------------------------------------------------------------------
| Thin interior accent lines
|--------------------------------------------------------------------------
*/

.productions-v2-collab-new-copy::before {
    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        0;

    right:
        0;

    height:
        3px;

    background:
        #cda75d;
}


.productions-v2-collab-visual::before {
    content:
        "";

    position:
        absolute;

    top:
        0;

    left:
        0;

    right:
        0;

    height:
        3px;

    z-index:
        20;

    background:
        #cda75d;
}


/*
|--------------------------------------------------------------------------
| Additional breathing room before next CTA
|--------------------------------------------------------------------------
*/

.productions-v2-cta {
    position:
        relative;

    clear:
        both;

    border-top:
        0 !important;
}


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

@media (max-width: 1000px) {

    .productions-v2-collab-redesign {
        padding:
            32px 0 !important;
    }


    .productions-v2-collab-new-grid {
        width:
            calc(100% - 48px) !important;
    }

}


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

@media (max-width: 700px) {

    .productions-v2-collab-redesign {
        padding:
            22px 0 !important;
    }


    .productions-v2-collab-new-grid {
        width:
            calc(100% - 28px) !important;

        min-height:
            auto !important;
    }


    .productions-v2-collab-visual {
        min-height:
            540px !important;
    }

}



/* ============================================================
   DEGZY FILMS — PROJECTS & COLLABORATIONS V2
   ============================================================ */

.projects-v2 {
    background: #080808;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
}

.projects-v2 * {
    box-sizing: border-box;
}

.projects-v2 h1,
.projects-v2 h2,
.projects-v2 h3 {
    font-family: 'Syne', sans-serif;
}

.projects-v2 em {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}


/* ============================================================
   KICKER
   ============================================================ */

.projects-v2-kicker {
    margin: 0 0 22px;

    color: #d4ad62;

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

    letter-spacing: .21em;

    text-transform: uppercase;
}

.projects-v2-kicker.dark {
    color: #805f27;
}


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

.projects-v2-hero {
    position: relative;

    min-height: 88vh;

    display: flex;

    align-items: flex-end;

    overflow: hidden;
}

.projects-v2-hero-bg,
.projects-v2-hero-overlay {
    position: absolute;
    inset: 0;
}

.projects-v2-hero-bg {
    background-size: cover;

    background-position: center;

    transform: scale(1.02);
}

.projects-v2-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.84) 0%,
            rgba(0,0,0,.52) 45%,
            rgba(0,0,0,.12) 78%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.78),
            rgba(0,0,0,0) 55%
        );
}

.projects-v2-hero-content {
    position: relative;

    z-index: 3;

    padding-bottom:
        clamp(90px,10vw,145px);
}

.projects-v2-hero h1 {
    max-width: 1100px;

    margin: 0;

    font-size:
        clamp(68px,9vw,140px);

    font-weight: 600;

    letter-spacing: -.065em;

    line-height: .86;
}

.projects-v2-hero h1 em {
    display: block;

    color: #d5ad62;
}

.projects-v2-hero-copy {
    max-width: 620px;

    margin: 35px 0 0;

    color:
        rgba(255,255,255,.70);

    font-size:
        clamp(16px,1.35vw,21px);

    line-height: 1.7;
}


/* scroll */

.projects-v2-scroll {
    position: absolute;

    left: 50%;
    bottom: 30px;

    z-index: 5;

    width: 44px;
    height: 44px;

    transform: translateX(-50%);

    border: 0;

    background: transparent;

    cursor: pointer;
}

.projects-v2-scroll span {
    position: absolute;

    left: 13px;
    top: 8px;

    width: 17px;
    height: 17px;

    border-right:
        2px solid #d7b36c;

    border-bottom:
        2px solid #d7b36c;

    transform: rotate(45deg);

    animation:
        projectsArrow
        1.4s ease-in-out infinite;
}

@keyframes projectsArrow {

    0%,
    100% {
        transform:
            rotate(45deg)
            translate(0,0);

        opacity: .55;
    }

    50% {
        transform:
            rotate(45deg)
            translate(6px,6px);

        opacity: 1;
    }

}


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

.projects-v2-intro {
    padding:
        clamp(100px,11vw,175px)
        0;

    background:
        #eee8db;

    color:
        #111111;
}

.projects-v2-intro-grid {
    display: grid;

    grid-template-columns:
        1fr
        .78fr;

    gap:
        clamp(60px,9vw,145px);
}

.projects-v2-intro h2 {
    margin: 0;

    max-width: 800px;

    font-size:
        clamp(48px,6vw,92px);

    font-weight: 600;

    letter-spacing: -.06em;

    line-height: .95;
}

.projects-v2-intro h2 em {
    display: block;

    color: #936e2e;
}

.projects-v2-intro-copy .lead {
    margin: 0 0 26px;

    font-size:
        clamp(20px,2vw,27px);

    line-height: 1.55;
}

.projects-v2-intro-copy p:not(.lead) {
    margin: 0;

    color:
        rgba(17,17,17,.60);

    font-size: 13px;

    line-height: 1.8;
}


/* disciplines */

.projects-v2-disciplines {
    display: grid;

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

    margin-top:
        clamp(70px,8vw,115px);

    border-top:
        1px solid rgba(0,0,0,.15);

    border-left:
        1px solid rgba(0,0,0,.15);
}

.projects-v2-disciplines div {
    min-height: 145px;

    display: flex;

    flex-direction: column;

    justify-content:
        space-between;

    padding: 25px;

    border-right:
        1px solid rgba(0,0,0,.15);

    border-bottom:
        1px solid rgba(0,0,0,.15);
}

.projects-v2-disciplines span {
    color: #8a6729;

    font-size: 9px;
}

.projects-v2-disciplines strong {
    font-family:
        'Syne',
        sans-serif;

    font-size:
        clamp(17px,1.5vw,23px);

    font-weight: 600;
}


/* ============================================================
   FEATURE
   ============================================================ */

.projects-v2-feature {
    background:
        #080808;
}

.projects-v2-feature-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    min-height: 790px;
}

.projects-v2-feature-art {
    position: relative;

    min-height: 790px;

    overflow: hidden;

    background: #111;
}

.projects-v2-feature-art img {
    width: 100%;
    height: 100%;

    min-height: 790px;

    display: block;

    object-fit: cover;

    object-position: center;

    transition:
        transform .9s ease;
}

.projects-v2-feature:hover
.projects-v2-feature-art img {
    transform: scale(1.025);
}

.projects-v2-feature-index {
    position: absolute;

    left: 28px;
    bottom: 28px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(5,5,5,.75);

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

    color:
        #d5ad62;

    font-size: 9px;

    backdrop-filter: blur(8px);
}


/* feature copy */

.projects-v2-feature-copy {
    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding:
        clamp(50px,6vw,95px);
}

.projects-v2-feature-meta {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-bottom: 20px;

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

.projects-v2-feature-meta span {
    color:
        rgba(255,255,255,.42);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .17em;

    text-transform: uppercase;
}

.projects-v2-feature-meta span:first-child {
    color: #d5ad62;
}

.projects-v2-feature-content {
    margin: auto 0;
}

.projects-v2-feature-content h2 {
    margin:
        0 0 45px;

    max-width: 720px;

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

    font-weight: 600;

    letter-spacing: -.07em;

    line-height: .84;
}

.projects-v2-feature-content h2 em {
    display: block;

    color: #d5ad62;
}


/* credits */

.projects-v2-credit {
    display: grid;

    grid-template-columns:
        130px
        1fr;

    gap: 25px;

    padding:
        17px 0;

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

.projects-v2-credit span {
    color:
        rgba(255,255,255,.38);

    font-size: 8px;

    letter-spacing: .16em;

    text-transform: uppercase;
}

.projects-v2-credit strong {
    color:
        rgba(255,255,255,.80);

    font-size: 13px;

    font-weight: 500;
}

.projects-v2-feature-bottom {
    padding-top: 20px;

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

    color:
        rgba(255,255,255,.32);

    font-size: 8px;

    letter-spacing: .15em;

    text-transform: uppercase;
}


/* ============================================================
   SELECTED PROJECTS
   ============================================================ */

.projects-v2-selected {
    padding:
        clamp(100px,11vw,175px)
        0;

    background:
        #eee8db;

    color:
        #111;
}

.projects-v2-section-heading {
    display: grid;

    grid-template-columns:
        1fr
        .5fr;

    gap:
        60px;

    align-items: end;

    margin-bottom:
        clamp(65px,8vw,110px);
}

.projects-v2-section-heading h2 {
    margin: 0;

    font-size:
        clamp(48px,6vw,88px);

    font-weight: 600;

    letter-spacing: -.06em;

    line-height: .94;
}

.projects-v2-section-heading h2 em {
    display: block;

    color:
        #936e2e;
}

.projects-v2-section-heading > p {
    margin: 0;

    color:
        rgba(17,17,17,.55);

    font-size: 13px;

    line-height: 1.8;
}


/* grid */

.projects-v2-grid {
    display: grid;

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

    gap:
        clamp(45px,6vw,90px)
        clamp(30px,4vw,65px);
}

.projects-v2-card {
    border-top:
        1px solid rgba(0,0,0,.16);
}

.projects-v2-card-image {
    position: relative;

    overflow: hidden;

    background: #111;
}

.projects-v2-card-image img {
    width: 100%;

    aspect-ratio:
        1076 / 1322;

    display: block;

    object-fit: cover;

    transition:
        transform .8s ease;
}

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

.projects-v2-card-image span {
    position: absolute;

    right: 17px;
    bottom: 17px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(5,5,5,.72);

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

    color:
        #d5ad62;

    font-size: 8px;
}

.projects-v2-card-copy {
    padding:
        25px 0 0;
}

.projects-v2-card-copy p {
    margin:
        0 0 10px;

    color:
        #856329;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: .17em;

    text-transform: uppercase;
}

.projects-v2-card-copy h3 {
    margin:
        0 0 9px;

    font-size:
        clamp(28px,3vw,45px);

    font-weight: 600;

    letter-spacing: -.05em;
}

.projects-v2-card-copy small {
    color:
        rgba(17,17,17,.48);

    font-size: 12px;
}


/* ============================================================
   RANGE OF WORK
   ============================================================ */

.projects-v2-range {
    padding:
        clamp(100px,11vw,175px)
        0;

    background:
        #080808;
}

.projects-v2-range-heading {
    margin-bottom:
        clamp(60px,7vw,100px);
}

.projects-v2-range-heading h2 {
    margin: 0;

    max-width: 850px;

    font-size:
        clamp(50px,6.5vw,95px);

    font-weight: 600;

    letter-spacing: -.06em;

    line-height: .9;
}

.projects-v2-range-heading h2 em {
    display: block;

    color: #d5ad62;
}

.projects-v2-range-grid {
    border-top:
        1px solid rgba(255,255,255,.11);
}

.projects-v2-range-grid article {
    display: grid;

    grid-template-columns:
        100px
        1fr;

    gap: 40px;

    padding:
        35px 0;

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

.projects-v2-range-grid article > span {
    color: #d5ad62;

    font-size: 9px;

    letter-spacing: .15em;
}

.projects-v2-range-grid h3 {
    margin:
        0 0 10px;

    font-size:
        clamp(27px,3vw,44px);

    font-weight: 600;

    letter-spacing: -.04em;
}

.projects-v2-range-grid p {
    max-width: 580px;

    margin: 0;

    color:
        rgba(255,255,255,.50);

    font-size: 13px;

    line-height: 1.75;
}


/* ============================================================
   COMMERCIAL SUCCESS
   ============================================================ */

.projects-v2-commercial {
    background:
        #cda75d;

    color:
        #090909;
}

.projects-v2-commercial-grid {
    display: grid;

    grid-template-columns:
        .78fr
        1.22fr;

    min-height: 680px;
}

.projects-v2-commercial-copy {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        clamp(55px,7vw,110px);
}

.projects-v2-commercial
.projects-v2-kicker {
    color:
        #493517;
}

.projects-v2-commercial h2 {
    margin:
        0 0 30px;

    font-size:
        clamp(50px,6vw,90px);

    font-weight: 600;

    letter-spacing: -.06em;

    line-height: .90;
}

.projects-v2-commercial h2 em {
    display: block;

    color:
        #fff0cc;
}

.projects-v2-commercial-copy > p:not(.projects-v2-kicker) {
    max-width: 470px;

    margin:
        0 0 34px;

    color:
        rgba(0,0,0,.60);

    font-size: 13px;

    line-height: 1.8;
}

.projects-v2-commercial-copy > a {
    display: inline-flex;

    width: fit-content;

    gap: 13px;

    padding-bottom: 7px;

    border-bottom:
        1px solid rgba(0,0,0,.40);

    color:
        #090909;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .11em;

    text-transform: uppercase;

    text-decoration: none;
}


/* commercial mosaic */

.projects-v2-commercial-images {
    display: grid;

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

    gap: 1px;

    background:
        rgba(0,0,0,.15);
}

.projects-v2-commercial-images figure {
    margin: 0;

    overflow: hidden;

    background: #111;
}

.projects-v2-commercial-images img {
    width: 100%;
    height: 100%;

    min-height: 680px;

    display: block;

    object-fit: cover;

    transition:
        transform .8s ease;
}

.projects-v2-commercial-images figure:hover img {
    transform:
        scale(1.025);
}


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

.projects-v2-cta {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    min-height: 650px;

    background:
        #080808;
}

.projects-v2-cta-image {
    position: relative;

    min-height: 650px;

    overflow: hidden;
}

.projects-v2-cta-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.projects-v2-cta-image > div {
    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,.18);
}

.projects-v2-cta-copy {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        clamp(55px,7vw,110px);
}

.projects-v2-cta-copy h2 {
    margin:
        0 0 30px;

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

    font-weight: 600;

    letter-spacing: -.065em;

    line-height: .88;
}

.projects-v2-cta-copy h2 em {
    display: block;

    color: #d5ad62;
}

.projects-v2-cta-copy > p:not(.projects-v2-kicker) {
    max-width: 480px;

    margin:
        0 0 35px;

    color:
        rgba(255,255,255,.55);

    font-size: 13px;

    line-height: 1.8;
}

.projects-v2-cta-copy > a {
    width: fit-content;

    min-width: 205px;

    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        0 22px;

    background:
        #d2aa5d;

    color:
        #090909;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;

    text-decoration: none;
}


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

@media (max-width: 960px) {

    .projects-v2-intro-grid,
    .projects-v2-section-heading {
        grid-template-columns:
            1fr;
    }

    .projects-v2-disciplines {
        grid-template-columns:
            repeat(2,1fr);
    }

    .projects-v2-feature-grid,
    .projects-v2-commercial-grid,
    .projects-v2-cta {
        grid-template-columns:
            1fr;
    }

    .projects-v2-feature-art,
    .projects-v2-feature-art img {
        min-height:
            650px;
    }

    .projects-v2-commercial-images img {
        min-height:
            520px;
    }

    .projects-v2-cta-image {
        min-height:
            500px;
    }

}


@media (max-width: 700px) {

    .projects-v2-hero {
        min-height: 78vh;
    }

    .projects-v2-hero h1 {
        font-size:
            clamp(52px,15vw,80px);
    }

    .projects-v2-disciplines,
    .projects-v2-grid,
    .projects-v2-commercial-images {
        grid-template-columns:
            1fr;
    }

    .projects-v2-feature-copy {
        padding:
            65px 25px;
    }

    .projects-v2-feature-content h2 {
        font-size:
            clamp(55px,16vw,80px);
    }

    .projects-v2-credit {
        grid-template-columns:
            90px
            1fr;
    }

    .projects-v2-range-grid article {
        grid-template-columns:
            55px
            1fr;

        gap: 20px;
    }

    .projects-v2-commercial-copy,
    .projects-v2-cta-copy {
        padding:
            70px 25px;
    }

    .projects-v2-commercial-images img {
        min-height:
            auto;
    }

    .projects-v2-cta-copy > a {
        width:
            100%;
    }

}



/* ============================================================
   DEGZY FILMS — COMPLETE PROJECT PORTFOLIO V3
   ============================================================ */

.portfolio-v3 {
    background: #080808;
    font-family: 'Manrope', sans-serif;
}

.portfolio-v3 * {
    box-sizing: border-box;
}

.portfolio-v3 h1,
.portfolio-v3 h2,
.portfolio-v3 h3 {
    font-family: 'Syne', sans-serif;
}

.portfolio-v3 em {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.portfolio-v3-kicker {
    margin: 0 0 20px;
    color: #d3aa5c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .20em;
    text-transform: uppercase;
}

.portfolio-v3-kicker.dark {
    color: #805f27;
}


/* HERO */

.portfolio-v3-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
}

.portfolio-v3-hero-bg,
.portfolio-v3-hero-overlay {
    position: absolute;
    inset: 0;
}

.portfolio-v3-hero-bg {
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.portfolio-v3-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.85),
            rgba(0,0,0,.50) 52%,
            rgba(0,0,0,.15)
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.80),
            transparent 58%
        );
}

.portfolio-v3-hero-content {
    position: relative;
    z-index: 3;
    padding-bottom: clamp(95px,10vw,150px);
}

.portfolio-v3-hero h1 {
    max-width: 1100px;
    margin: 0;
    font-size: clamp(65px,9vw,140px);
    line-height: .86;
    letter-spacing: -.065em;
}

.portfolio-v3-hero h1 em {
    display: block;
    color: #d5ad62;
}

.portfolio-v3-hero-content > p:last-child {
    max-width: 610px;
    margin: 34px 0 0;
    color: rgba(255,255,255,.68);
    font-size: 18px;
    line-height: 1.7;
}

.portfolio-v3-scroll {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 28px;
    width: 42px;
    height: 42px;
    transform: translateX(-50%);
}

.portfolio-v3-scroll span {
    position: absolute;
    left: 12px;
    top: 7px;
    width: 17px;
    height: 17px;
    border-right: 2px solid #d5ad62;
    border-bottom: 2px solid #d5ad62;
    transform: rotate(45deg);
}


/* INTRO */

.portfolio-v3-intro {
    padding: clamp(100px,11vw,170px) 0 0;
    background: #eee8db;
    color: #111;
}

.portfolio-v3-intro-grid {
    display: grid;
    grid-template-columns: 1fr .78fr;
    gap: clamp(60px,9vw,145px);
}

.portfolio-v3-intro h2 {
    margin: 0;
    font-size: clamp(48px,6vw,92px);
    line-height: .94;
    letter-spacing: -.06em;
}

.portfolio-v3-intro h2 em {
    display: block;
    color: #936e2e;
}

.portfolio-v3-intro .lead {
    margin: 0 0 24px;
    font-size: 24px;
    line-height: 1.55;
}

.portfolio-v3-intro-grid > div:last-child > p:last-child {
    color: rgba(17,17,17,.58);
    font-size: 13px;
    line-height: 1.8;
}

.portfolio-v3-category-nav {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-top: 95px;
}

.portfolio-v3-category-nav a {
    min-height: 110px;
    display: flex;
    align-items: center;
    padding: 25px;
    border: 1px solid rgba(0,0,0,.14);
    border-right: 0;
    color: #111;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s,color .25s;
}

.portfolio-v3-category-nav a:last-child {
    border-right: 1px solid rgba(0,0,0,.14);
}

.portfolio-v3-category-nav a:hover {
    background: #090909;
    color: #d5ad62;
}


/* SHARED HEADING */

.portfolio-v3-section {
    padding: clamp(100px,11vw,170px) 0;
}

.portfolio-v3-heading {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-end;
    margin-bottom: 75px;
}

.portfolio-v3-heading h2 {
    margin: 0;
    font-size: clamp(50px,6vw,90px);
    line-height: .9;
    letter-spacing: -.06em;
}

.portfolio-v3-heading h2 em {
    display: block;
    color: #936e2e;
}

.portfolio-v3-heading > span {
    color: rgba(17,17,17,.40);
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.portfolio-v3-heading-dark h2 {
    color: #fff;
}

.portfolio-v3-heading-dark h2 em {
    color: #d5ad62;
}

.portfolio-v3-heading-dark > span {
    color: rgba(255,255,255,.36);
}


/* FILMS */

.portfolio-v3-films {
    background: #eee8db;
    color: #111;
}

.portfolio-v3-film-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 70px 28px;
}

.portfolio-v3-poster {
    position: relative;
    overflow: hidden;
    background: #111;
}

.portfolio-v3-poster img {
    display: block;
    width: 100%;
    aspect-ratio: .76;
    object-fit: cover;
    transition: transform .7s ease;
}

.portfolio-v3-film-card:hover img {
    transform: scale(1.03);
}

.portfolio-v3-number {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    background: rgba(0,0,0,.72);
    border: 1px solid rgba(255,255,255,.2);
    color: #d5ad62;
    font-size: 8px;
}

.portfolio-v3-card-copy {
    padding-top: 20px;
}

.portfolio-v3-card-copy p {
    margin: 0 0 9px;
    color: #876428;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.portfolio-v3-card-copy h3 {
    margin: 0 0 7px;
    font-size: clamp(20px,2vw,30px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.portfolio-v3-card-copy > span {
    display: block;
    margin-top: 9px;
    color: rgba(17,17,17,.48);
    font-size: 11px;
}

.portfolio-v3-subtitle {
    color: rgba(17,17,17,.55);
}


/* COMMERCIALS */

.portfolio-v3-commercials {
    background: #cda75d;
    color: #090909;
}

.portfolio-v3-commercials .portfolio-v3-heading-dark h2 {
    color: #090909;
}

.portfolio-v3-commercials .portfolio-v3-heading-dark h2 em {
    color: #fff0cb;
}

.portfolio-v3-commercial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: rgba(0,0,0,.16);
}

.portfolio-v3-commercial-card {
    background: #cda75d;
}

.portfolio-v3-commercial-image {
    height: 390px;
    overflow: hidden;
    background: #111;
}

.portfolio-v3-commercial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-v3-commercial-card > div:last-child {
    min-height: 230px;
    padding: 28px;
    border: 1px solid rgba(0,0,0,.15);
}

.portfolio-v3-commercial-card span {
    font-size: 8px;
    color: rgba(0,0,0,.45);
}

.portfolio-v3-commercial-card h3 {
    margin: 30px 0 5px;
    font-size: 27px;
}

.portfolio-v3-commercial-card small {
    display: block;
    margin-bottom: 20px;
}

.portfolio-v3-commercial-card p {
    margin: 0 0 5px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.portfolio-v3-commercial-card strong {
    font-size: 11px;
    font-weight: 500;
    color: rgba(0,0,0,.58);
}


/* REALITY */

.portfolio-v3-reality {
    background: #0a315e;
    color: #fff;
}

.portfolio-v3-reality-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 35px;
}

.portfolio-v3-reality-image {
    height: 390px;
    overflow: hidden;
    background: #050505;
}

.portfolio-v3-reality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-v3-reality-index {
    display: block;
    margin: 22px 0 14px;
    color: #d5ad62;
    font-size: 8px;
}

.portfolio-v3-reality h3 {
    margin: 0 0 7px;
    font-size: 24px;
}

.portfolio-v3-reality small {
    display: block;
    margin-bottom: 15px;
    color: rgba(255,255,255,.60);
}

.portfolio-v3-reality article > p {
    margin: 0 0 7px;
    color: #d5ad62;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.portfolio-v3-reality article > strong {
    color: rgba(255,255,255,.58);
    font-size: 11px;
    font-weight: 500;
}


/* MUSIC */

.portfolio-v3-music {
    background: #060606;
    color: #fff;
}

.portfolio-v3-music-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 65px 45px;
}

.portfolio-v3-music-image {
    position: relative;
    height: 430px;
    overflow: hidden;
    border: 1px solid rgba(213,173,98,.45);
}

.portfolio-v3-music-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-v3-music-image > span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    color: #d5ad62;
    font-size: 8px;
}

.portfolio-v3-music-copy {
    padding-top: 22px;
}

.portfolio-v3-music-copy p {
    margin: 0 0 10px;
    color: #d5ad62;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.portfolio-v3-music-copy h3 {
    margin: 0;
    font-size: 28px;
}

.portfolio-v3-music-copy small {
    display: block;
    margin: 5px 0 12px;
    color: rgba(255,255,255,.62);
}

.portfolio-v3-music-copy strong {
    color: rgba(255,255,255,.43);
    font-size: 11px;
    font-weight: 500;
}


/* SUCCESS */

.portfolio-v3-success {
    background: #eee8db;
    color: #111;
}

.portfolio-v3-success-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    min-height: 650px;
}

.portfolio-v3-success-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(55px,7vw,110px);
}

.portfolio-v3-success h2 {
    margin: 0 0 30px;
    font-size: clamp(52px,6vw,92px);
    line-height: .9;
    letter-spacing: -.06em;
}

.portfolio-v3-success h2 em {
    display: block;
    color: #936e2e;
}

.portfolio-v3-success-copy > p:last-child {
    max-width: 450px;
    color: rgba(17,17,17,.56);
    font-size: 13px;
    line-height: 1.8;
}

.portfolio-v3-success-images {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: #111;
}

.portfolio-v3-success-images img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}


/* CTA */

.portfolio-v3-cta {
    padding: clamp(90px,10vw,145px) 0;
    background: #cda75d;
    color: #090909;
}

.portfolio-v3-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
}

.portfolio-v3-cta h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(55px,7vw,105px);
    line-height: .88;
    letter-spacing: -.065em;
}

.portfolio-v3-cta h2 em {
    display: block;
    color: #fff0cb;
}

.portfolio-v3-cta a {
    min-width: 210px;
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 0 22px;
    background: #090909;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-decoration: none;
}


/* TABLET */

@media (max-width: 1050px) {

    .portfolio-v3-film-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .portfolio-v3-commercial-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .portfolio-v3-reality-grid {
        grid-template-columns: repeat(2,1fr);
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .portfolio-v3-intro-grid,
    .portfolio-v3-success-grid,
    .portfolio-v3-cta-inner {
        grid-template-columns: 1fr;
    }

    .portfolio-v3-category-nav {
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-v3-film-grid,
    .portfolio-v3-commercial-grid,
    .portfolio-v3-reality-grid,
    .portfolio-v3-music-grid,
    .portfolio-v3-success-images {
        grid-template-columns: 1fr;
    }

    .portfolio-v3-film-grid {
        gap: 55px;
    }

    .portfolio-v3-success-images img {
        height: auto;
    }

    .portfolio-v3-cta a {
        width: 100%;
    }

}



/* ============================================================
   DEGZY FILMS — GALLERY V2
   ============================================================ */

.gallery-v2 {
    background:
        #080808;

    color:
        #ffffff;

    font-family:
        'Manrope',
        sans-serif;
}


.gallery-v2 * {
    box-sizing:
        border-box;
}


.gallery-v2 h1,
.gallery-v2 h2 {
    font-family:
        'Syne',
        sans-serif;
}


.gallery-v2 em {
    font-family:
        'Cormorant Garamond',
        serif;

    font-weight:
        500;
}


.gallery-v2-kicker {
    margin:
        0 0 21px;

    color:
        #d5ad62;

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        .20em;

    text-transform:
        uppercase;
}


.gallery-v2-kicker.dark {
    color:
        #805f27;
}


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

.gallery-v2-hero {
    position:
        relative;

    min-height:
        88vh;

    display:
        flex;

    align-items:
        flex-end;

    overflow:
        hidden;
}


.gallery-v2-hero-image,
.gallery-v2-hero-overlay {
    position:
        absolute;

    inset:
        0;
}


.gallery-v2-hero-image {
    background-size:
        cover;

    background-position:
        center;

    transform:
        scale(1.02);
}


.gallery-v2-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.85) 0%,
            rgba(0,0,0,.48) 50%,
            rgba(0,0,0,.12) 80%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.80),
            rgba(0,0,0,0) 58%
        );
}


.gallery-v2-hero-content {
    position:
        relative;

    z-index:
        3;

    padding-bottom:
        clamp(95px,10vw,150px);
}


.gallery-v2-hero h1 {
    max-width:
        1080px;

    margin:
        0;

    font-size:
        clamp(68px,9vw,140px);

    font-weight:
        600;

    letter-spacing:
        -.065em;

    line-height:
        .86;
}


.gallery-v2-hero h1 em {
    display:
        block;

    color:
        #d5ad62;
}


.gallery-v2-hero-content
> p:last-child {
    max-width:
        600px;

    margin:
        34px 0 0;

    color:
        rgba(255,255,255,.68);

    font-size:
        clamp(16px,1.35vw,20px);

    line-height:
        1.7;
}


/* arrow */

.gallery-v2-scroll {
    position:
        absolute;

    left:
        50%;

    bottom:
        28px;

    z-index:
        5;

    width:
        42px;

    height:
        42px;

    transform:
        translateX(-50%);
}


.gallery-v2-scroll span {
    position:
        absolute;

    left:
        12px;

    top:
        7px;

    width:
        17px;

    height:
        17px;

    border-right:
        2px solid #d5ad62;

    border-bottom:
        2px solid #d5ad62;

    transform:
        rotate(45deg);
}


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

.gallery-v2-intro {
    padding:
        clamp(100px,11vw,175px)
        0;

    background:
        #eee8db;

    color:
        #111111;
}


.gallery-v2-intro-grid {
    display:
        grid;

    grid-template-columns:
        1fr
        .75fr;

    gap:
        clamp(60px,9vw,145px);

    align-items:
        end;
}


.gallery-v2-intro h2 {
    max-width:
        820px;

    margin:
        0;

    font-size:
        clamp(48px,6vw,92px);

    font-weight:
        600;

    letter-spacing:
        -.06em;

    line-height:
        .94;
}


.gallery-v2-intro h2 em {
    display:
        block;

    color:
        #936e2e;
}


.gallery-v2-intro-copy
.lead {
    margin:
        0 0 26px;

    font-size:
        clamp(20px,2vw,27px);

    line-height:
        1.55;
}


.gallery-v2-intro-copy
p:not(.lead) {
    margin:
        0;

    color:
        rgba(17,17,17,.58);

    font-size:
        13px;

    line-height:
        1.8;
}


/* ============================================================
   MOSAIC
   ============================================================ */

.gallery-v2-mosaic {
    padding:
        clamp(38px,4vw,60px);

    background:
        #cda75d;
}


.gallery-v2-mosaic-grid {
    position:
        relative;

    display:
        grid;

    grid-template-columns:
        1.2fr
        .8fr
        1fr;

    grid-template-rows:
        360px
        330px;

    gap:
        8px;

    max-width:
        1600px;

    margin:
        0 auto;

    overflow:
        hidden;

    background:
        #080808;
}


.gallery-v2-photo {
    margin:
        0;

    overflow:
        hidden;

    background:
        #111;
}


.gallery-v2-photo img {
    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;

    transition:
        transform .8s ease;
}


.gallery-v2-photo:hover img {
    transform:
        scale(1.025);
}


.gallery-v2-photo-a {
    grid-row:
        1 / 3;
}


.gallery-v2-photo-b {
    grid-column:
        2;

    grid-row:
        1;
}


.gallery-v2-photo-c {
    grid-column:
        3;

    grid-row:
        1 / 3;
}


.gallery-v2-photo-d {
    grid-column:
        2;

    grid-row:
        2;
}


.gallery-v2-mosaic-title {
    position:
        absolute;

    left:
        28px;

    bottom:
        28px;

    z-index:
        8;

    padding:
        17px 20px;

    background:
        rgba(5,5,5,.78);

    border:
        1px solid
        rgba(213,173,98,.55);

    backdrop-filter:
        blur(8px);
}


.gallery-v2-mosaic-title span {
    display:
        block;

    margin-bottom:
        5px;

    color:
        #d5ad62;

    font-size:
        7px;

    letter-spacing:
        .16em;

    text-transform:
        uppercase;
}


.gallery-v2-mosaic-title strong {
    font-family:
        'Syne',
        sans-serif;

    font-size:
        18px;

    font-weight:
        600;
}


/* ============================================================
   CATEGORY SECTIONS
   ============================================================ */

.gallery-v2-category-grid {
    display:
        grid;

    grid-template-columns:
        .85fr
        1.15fr;

    min-height:
        700px;
}


.gallery-v2-category-reverse
.gallery-v2-category-copy {
    order:
        2;
}


.gallery-v2-category-reverse
.gallery-v2-category-visual {
    order:
        1;
}


.gallery-v2-category-copy {
    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    padding:
        clamp(55px,6.5vw,105px);
}


.gallery-v2-videos
.gallery-v2-category-copy {
    background:
        #080808;

    color:
        #ffffff;
}


.gallery-v2-photos
.gallery-v2-category-copy {
    background:
        #eee8db;

    color:
        #111111;
}


/* index */

.gallery-v2-index {
    display:
        flex;

    justify-content:
        space-between;

    gap:
        25px;

    padding-bottom:
        20px;

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


.gallery-v2-photos
.gallery-v2-index {
    border-color:
        rgba(0,0,0,.14);
}


.gallery-v2-index span {
    color:
        rgba(255,255,255,.38);

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        .17em;

    text-transform:
        uppercase;
}


.gallery-v2-index
span:first-child {
    color:
        #d5ad62;
}


.gallery-v2-photos
.gallery-v2-index span {
    color:
        rgba(17,17,17,.40);
}


.gallery-v2-photos
.gallery-v2-index span:first-child {
    color:
        #866327;
}


/* category heading */

.gallery-v2-category-copy h2 {
    margin:
        0 0 30px;

    font-size:
        clamp(55px,6.5vw,100px);

    font-weight:
        600;

    letter-spacing:
        -.065em;

    line-height:
        .88;
}


.gallery-v2-category-copy h2 em {
    display:
        block;

    color:
        #d5ad62;
}


.gallery-v2-photos
.gallery-v2-category-copy h2 em {
    color:
        #936e2e;
}


.gallery-v2-category-copy
> div:nth-child(2)
> p:not(.gallery-v2-kicker) {
    max-width:
        500px;

    margin:
        0;

    color:
        rgba(255,255,255,.54);

    font-size:
        13px;

    line-height:
        1.8;
}


.gallery-v2-photos
.gallery-v2-category-copy
> div:nth-child(2)
> p:not(.gallery-v2-kicker) {
    color:
        rgba(17,17,17,.58);
}


/* buttons */

.gallery-v2-button {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        25px;

    width:
        fit-content;

    min-width:
        205px;

    min-height:
        58px;

    margin-top:
        34px;

    padding:
        0 21px;

    background:
        #d2aa5d;

    border:
        1px solid
        #d2aa5d;

    color:
        #090909;

    text-decoration:
        none;
}


.gallery-v2-button.light {
    background:
        #090909;

    border-color:
        #090909;

    color:
        #ffffff;
}


.gallery-v2-button span {
    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;
}


.gallery-v2-button b {
    font-size:
        18px;

    font-weight:
        400;
}


/* metadata */

.gallery-v2-category-meta {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        10px 24px;

    padding-top:
        20px;

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


.gallery-v2-category-meta.light {
    border-color:
        rgba(0,0,0,.14);
}


.gallery-v2-category-meta span {
    color:
        rgba(255,255,255,.35);

    font-size:
        7px;

    letter-spacing:
        .15em;

    text-transform:
        uppercase;
}


.gallery-v2-category-meta.light span {
    color:
        rgba(17,17,17,.40);
}


/* visual */

.gallery-v2-category-visual {
    position:
        relative;

    min-height:
        700px;

    overflow:
        hidden;

    background:
        #111;
}


.gallery-v2-category-visual img {
    position:
        absolute;

    inset:
        0;

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform .9s ease;
}


.gallery-v2-category:hover
.gallery-v2-category-visual img {
    transform:
        scale(1.025);
}


.gallery-v2-category-shade {
    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.10),
            rgba(0,0,0,.65)
        );
}


.gallery-v2-category-shade.soft {
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.02),
            rgba(0,0,0,.45)
        );
}


/* play */

.gallery-v2-play {
    position:
        absolute;

    left:
        50%;

    top:
        50%;

    z-index:
        5;

    width:
        92px;

    height:
        92px;

    display:
        grid;

    place-items:
        center;

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

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

    border-radius:
        50%;

    color:
        #ffffff;

    text-decoration:
        none;

    backdrop-filter:
        blur(5px);

    transition:
        background .25s ease,
        transform .25s ease;
}


.gallery-v2-play:hover {
    background:
        #d2aa5d;

    color:
        #090909;

    transform:
        translate(-50%,-50%)
        scale(1.06);
}


/* caption */

.gallery-v2-visual-caption {
    position:
        absolute;

    left:
        28px;

    right:
        28px;

    bottom:
        28px;

    z-index:
        5;

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        20px;

    padding-top:
        17px;

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


.gallery-v2-visual-caption span {
    color:
        #d5ad62;

    font-size:
        8px;

    letter-spacing:
        .17em;

    text-transform:
        uppercase;
}


.gallery-v2-visual-caption strong {
    font-size:
        10px;

    font-weight:
        500;
}


/* ============================================================
   FINAL FEATURE
   ============================================================ */

.gallery-v2-feature {
    position:
        relative;

    min-height:
        760px;

    display:
        flex;

    align-items:
        flex-end;

    overflow:
        hidden;

    background:
        #080808;
}


.gallery-v2-feature > img,
.gallery-v2-feature-overlay {
    position:
        absolute;

    inset:
        0;
}


.gallery-v2-feature > img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;
}


.gallery-v2-feature-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82),
            rgba(0,0,0,.30) 68%,
            rgba(0,0,0,.10)
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.70),
            transparent 60%
        );
}


.gallery-v2-feature-copy {
    position:
        relative;

    z-index:
        3;

    padding-bottom:
        clamp(75px,8vw,120px);
}


.gallery-v2-feature h2 {
    max-width:
        1000px;

    margin:
        0 0 35px;

    font-size:
        clamp(55px,7vw,108px);

    font-weight:
        600;

    letter-spacing:
        -.065em;

    line-height:
        .88;
}


.gallery-v2-feature h2 em {
    display:
        block;

    color:
        #d5ad62;
}


.gallery-v2-feature a {
    display:
        inline-flex;

    gap:
        13px;

    padding-bottom:
        7px;

    border-bottom:
        1px solid
        rgba(213,173,98,.55);

    color:
        #d5ad62;

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;

    text-decoration:
        none;
}


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

.gallery-v2-cta {
    padding:
        clamp(90px,10vw,145px)
        0;

    background:
        #cda75d;

    color:
        #090909;
}


.gallery-v2-cta-grid {
    display:
        grid;

    grid-template-columns:
        1fr
        auto;

    gap:
        60px;

    align-items:
        end;
}


.gallery-v2-cta
.gallery-v2-kicker {
    color:
        #493517;
}


.gallery-v2-cta h2 {
    max-width:
        900px;

    margin:
        0;

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

    font-weight:
        600;

    letter-spacing:
        -.065em;

    line-height:
        .88;
}


.gallery-v2-cta h2 em {
    display:
        block;

    color:
        #fff0cb;
}


.gallery-v2-cta > div > a {
    min-width:
        210px;

    min-height:
        58px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

    padding:
        0 22px;

    background:
        #090909;

    color:
        #ffffff;

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;

    text-decoration:
        none;
}


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

@media (max-width: 960px) {

    .gallery-v2-intro-grid {
        grid-template-columns:
            1fr;
    }


    .gallery-v2-mosaic-grid {
        grid-template-columns:
            1fr 1fr;

        grid-template-rows:
            400px
            350px;
    }


    .gallery-v2-photo-a {
        grid-row:
            1;
    }


    .gallery-v2-photo-b {
        grid-column:
            2;

        grid-row:
            1;
    }


    .gallery-v2-photo-c {
        grid-column:
            1;

        grid-row:
            2;
    }


    .gallery-v2-photo-d {
        grid-column:
            2;

        grid-row:
            2;
    }


    .gallery-v2-category-grid {
        grid-template-columns:
            1fr;
    }


    .gallery-v2-category-reverse
    .gallery-v2-category-copy,
    .gallery-v2-category-reverse
    .gallery-v2-category-visual {
        order:
            initial;
    }


    .gallery-v2-category-copy {
        min-height:
            600px;
    }


    .gallery-v2-category-visual {
        min-height:
            580px;
    }

}


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

@media (max-width: 700px) {

    .gallery-v2-hero {
        min-height:
            78vh;
    }


    .gallery-v2-hero h1 {
        font-size:
            clamp(53px,16vw,82px);
    }


    .gallery-v2-mosaic {
        padding:
            18px;
    }


    .gallery-v2-mosaic-grid {
        display:
            grid;

        grid-template-columns:
            1fr;

        grid-template-rows:
            repeat(4,380px);
    }


    .gallery-v2-photo-a,
    .gallery-v2-photo-b,
    .gallery-v2-photo-c,
    .gallery-v2-photo-d {
        grid-column:
            1;

        grid-row:
            auto;
    }


    .gallery-v2-category-copy {
        min-height:
            auto;

        padding:
            60px 25px;
    }


    .gallery-v2-category-visual {
        min-height:
            450px;
    }


    .gallery-v2-category-copy h2 {
        font-size:
            clamp(52px,15vw,76px);
    }


    .gallery-v2-button {
        width:
            100%;
    }


    .gallery-v2-feature {
        min-height:
            620px;
    }


    .gallery-v2-cta-grid {
        grid-template-columns:
            1fr;
    }


    .gallery-v2-cta > div > a {
        width:
            100%;
    }

}



/* ============================================================
   DEGZY GALLERY — COMPLETE PHOTO WALL
   ============================================================ */

.gallery-v2-all-photos {
    padding:
        clamp(70px, 8vw, 120px)
        0;

    background:
        #cda75d;

    color:
        #090909;
}


.gallery-v2-all-heading {
    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        40px;

    margin-bottom:
        clamp(45px, 6vw, 80px);
}


.gallery-v2-all-heading
.gallery-v2-kicker {
    color:
        #493517;
}


.gallery-v2-all-heading h2 {
    margin:
        0;

    font-size:
        clamp(52px, 6.5vw, 95px);

    font-weight:
        600;

    letter-spacing:
        -.06em;

    line-height:
        .90;
}


.gallery-v2-all-heading h2 em {
    display:
        block;

    color:
        #fff0cc;
}


.gallery-v2-photo-count {
    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-end;
}


.gallery-v2-photo-count strong {
    font-family:
        'Syne',
        sans-serif;

    font-size:
        clamp(36px, 4vw, 65px);

    font-weight:
        500;

    line-height:
        1;
}


.gallery-v2-photo-count span {
    margin-top:
        7px;

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        .15em;

    text-transform:
        uppercase;
}


/*
|--------------------------------------------------------------------------
| Masonry-style wall
|--------------------------------------------------------------------------
*/

.gallery-v2-photo-wall {
    column-count:
        4;

    column-gap:
        8px;
}


.gallery-v2-wall-item {
    position:
        relative;

    width:
        100%;

    display:
        block;

    margin:
        0 0 8px;

    padding:
        0;

    break-inside:
        avoid;

    overflow:
        hidden;

    border:
        0;

    background:
        #080808;

    cursor:
        zoom-in;
}


.gallery-v2-wall-item img {
    width:
        100%;

    height:
        auto;

    display:
        block;

    transition:
        transform .7s ease,
        opacity .3s ease;
}


.gallery-v2-wall-item:hover img {
    transform:
        scale(1.025);

    opacity:
        .90;
}


.gallery-v2-wall-item > span {
    position:
        absolute;

    right:
        13px;

    bottom:
        13px;

    width:
        34px;

    height:
        34px;

    display:
        grid;

    place-items:
        center;

    background:
        rgba(5,5,5,.72);

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

    color:
        #d5ad62;

    font-size:
        7px;

    backdrop-filter:
        blur(5px);
}


/* ============================================================
   SEPARATE PHOTOS / NEXT IMAGE SECTION
   ============================================================ */

.gallery-v2-photos {
    border-bottom:
        4px solid
        #cda75d !important;
}


.gallery-v2-feature {
    border-top:
        1px solid
        rgba(255,255,255,.15);
}


/* ============================================================
   SHARED LIGHTBOX
   ============================================================ */

body.degzy-lightbox-open {
    overflow:
        hidden;
}


.degzy-lightbox {
    position:
        fixed;

    inset:
        0;

    z-index:
        99999;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        55px 100px;

    background:
        rgba(0,0,0,.94);

    opacity:
        0;

    visibility:
        hidden;

    pointer-events:
        none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}


.degzy-lightbox.is-open {
    opacity:
        1;

    visibility:
        visible;

    pointer-events:
        auto;
}


.degzy-lightbox-stage {
    position:
        relative;

    width:
        100%;

    height:
        100%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;
}


.degzy-lightbox-stage img {
    max-width:
        100%;

    max-height:
        88vh;

    width:
        auto;

    height:
        auto;

    object-fit:
        contain;

    box-shadow:
        0 30px 90px
        rgba(0,0,0,.50);
}


.degzy-lightbox-close {
    position:
        absolute;

    top:
        24px;

    right:
        30px;

    z-index:
        5;

    width:
        48px;

    height:
        48px;

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

    background:
        transparent;

    color:
        #ffffff;

    font-size:
        32px;

    font-weight:
        200;

    line-height:
        1;

    cursor:
        pointer;
}


.degzy-lightbox-nav {
    position:
        absolute;

    top:
        50%;

    z-index:
        5;

    width:
        55px;

    height:
        70px;

    transform:
        translateY(-50%);

    border:
        1px solid
        rgba(213,173,98,.45);

    background:
        rgba(0,0,0,.20);

    color:
        #d5ad62;

    font-size:
        45px;

    font-weight:
        200;

    line-height:
        1;

    cursor:
        pointer;

    backdrop-filter:
        blur(5px);
}


.degzy-lightbox-prev {
    left:
        25px;
}


.degzy-lightbox-next {
    right:
        25px;
}


.degzy-lightbox-counter {
    position:
        absolute;

    left:
        50%;

    bottom:
        5px;

    transform:
        translateX(-50%);

    color:
        rgba(255,255,255,.65);

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        .18em;
}


/* ============================================================
   PHOTOS PAGE V2
   ============================================================ */

.photos-v2 {
    background:
        #080808;

    color:
        #ffffff;

    font-family:
        'Manrope',
        sans-serif;
}


.photos-v2 * {
    box-sizing:
        border-box;
}


.photos-v2 h1,
.photos-v2 h2 {
    font-family:
        'Syne',
        sans-serif;
}


.photos-v2 em {
    font-family:
        'Cormorant Garamond',
        serif;

    font-weight:
        500;
}


.photos-v2-kicker {
    margin:
        0 0 22px;

    color:
        #d5ad62;

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        .20em;

    text-transform:
        uppercase;
}


.photos-v2-kicker.dark {
    color:
        #805f27;
}


/* hero */

.photos-v2-hero {
    position:
        relative;

    min-height:
        88vh;

    display:
        flex;

    align-items:
        center;

    background:
        #050505;
}


.photos-v2-hero h1 {
    margin:
        0;

    font-size:
        clamp(75px, 10vw, 155px);

    font-weight:
        500;

    line-height:
        .82;

    letter-spacing:
        -.07em;
}


.photos-v2-hero h1 em {
    display:
        block;

    color:
        #d5ad62;
}


.photos-v2-hero-copy {
    max-width:
        520px;

    margin:
        35px 0 0;

    color:
        rgba(255,255,255,.50);

    font-size:
        14px;

    line-height:
        1.8;
}


.photos-v2-scroll {
    position:
        absolute;

    left:
        50%;

    bottom:
        30px;

    width:
        45px;

    height:
        45px;

    transform:
        translateX(-50%);
}


.photos-v2-scroll span {
    position:
        absolute;

    left:
        13px;

    top:
        8px;

    width:
        17px;

    height:
        17px;

    border-right:
        2px solid #d5ad62;

    border-bottom:
        2px solid #d5ad62;

    transform:
        rotate(45deg);
}


/* intro */

.photos-v2-intro {
    padding:
        clamp(100px, 11vw, 170px)
        0;

    background:
        #eee8db;

    color:
        #111111;
}


.photos-v2-intro-grid {
    display:
        grid;

    grid-template-columns:
        1fr
        .72fr;

    gap:
        clamp(60px, 9vw, 140px);

    align-items:
        end;
}


.photos-v2-intro h2 {
    margin:
        0;

    font-size:
        clamp(50px, 6vw, 92px);

    font-weight:
        600;

    letter-spacing:
        -.06em;

    line-height:
        .92;
}


.photos-v2-intro h2 em {
    display:
        block;

    color:
        #936e2e;
}


.photos-v2-intro .lead {
    margin:
        0 0 25px;

    font-size:
        clamp(20px, 2vw, 27px);

    line-height:
        1.55;
}


.photos-v2-intro
div > div:last-child
p:last-child {
    color:
        rgba(17,17,17,.58);

    font-size:
        13px;

    line-height:
        1.8;
}


/* complete wall */

.photos-v2-wall-section {
    padding:
        clamp(70px, 8vw, 120px)
        0;

    background:
        #cda75d;
}


.photos-v2-wall-heading {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

    margin-bottom:
        32px;

    padding-bottom:
        18px;

    border-bottom:
        1px solid
        rgba(0,0,0,.25);
}


.photos-v2-wall-heading span {
    color:
        rgba(0,0,0,.60);

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        .16em;

    text-transform:
        uppercase;
}


.photos-v2-wall {
    column-count:
        4;

    column-gap:
        8px;
}


.photos-v2-item {
    position:
        relative;

    width:
        100%;

    display:
        block;

    margin:
        0 0 8px;

    padding:
        0;

    break-inside:
        avoid;

    overflow:
        hidden;

    border:
        0;

    background:
        #080808;

    cursor:
        zoom-in;
}


.photos-v2-item img {
    display:
        block;

    width:
        100%;

    height:
        auto;

    transition:
        transform .7s ease;
}


.photos-v2-item:hover img {
    transform:
        scale(1.025);
}


.photos-v2-item > span {
    position:
        absolute;

    right:
        13px;

    bottom:
        13px;

    width:
        35px;

    height:
        35px;

    display:
        grid;

    place-items:
        center;

    background:
        rgba(5,5,5,.72);

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

    color:
        #d5ad62;

    font-size:
        7px;
}


/* Griot */

.photos-v2-griot {
    display:
        grid;

    grid-template-columns:
        1.1fr
        .9fr;

    min-height:
        680px;

    border-top:
        4px solid
        #cda75d;

    background:
        #080808;
}


.photos-v2-griot-image {
    min-height:
        680px;
}


.photos-v2-griot-image img {
    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;
}


.photos-v2-griot-copy {
    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    padding:
        clamp(55px, 7vw, 110px);
}


.photos-v2-griot h2 {
    margin:
        0 0 30px;

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

    line-height:
        .87;

    letter-spacing:
        -.065em;
}


.photos-v2-griot h2 em {
    display:
        block;

    color:
        #d5ad62;
}


.photos-v2-griot-copy > p:not(.photos-v2-kicker) {
    max-width:
        470px;

    margin:
        0 0 35px;

    color:
        rgba(255,255,255,.52);

    font-size:
        13px;

    line-height:
        1.8;
}


.photos-v2-griot-copy a {
    width:
        fit-content;

    display:
        inline-flex;

    gap:
        13px;

    padding-bottom:
        7px;

    border-bottom:
        1px solid
        rgba(213,173,98,.50);

    color:
        #d5ad62;

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;

    text-decoration:
        none;
}


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

@media (max-width: 1050px) {

    .gallery-v2-photo-wall,
    .photos-v2-wall {
        column-count:
            3;
    }

}


@media (max-width: 800px) {

    .gallery-v2-photo-wall,
    .photos-v2-wall {
        column-count:
            2;
    }


    .photos-v2-intro-grid,
    .photos-v2-griot {
        grid-template-columns:
            1fr;
    }


    .photos-v2-griot-image {
        min-height:
            520px;
    }

}


@media (max-width: 600px) {

    .gallery-v2-all-heading {
        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .gallery-v2-photo-count {
        align-items:
            flex-start;
    }


    .gallery-v2-photo-wall,
    .photos-v2-wall {
        column-count:
            1;
    }


    .degzy-lightbox {
        padding:
            70px 15px
            55px;
    }


    .degzy-lightbox-nav {
        top:
            auto;

        bottom:
            18px;

        width:
            48px;

        height:
            48px;

        transform:
            none;
    }


    .degzy-lightbox-prev {
        left:
            18px;
    }


    .degzy-lightbox-next {
        right:
            18px;
    }


    .degzy-lightbox-counter {
        bottom:
            31px;
    }


    .photos-v2-hero h1 {
        font-size:
            clamp(65px, 20vw, 95px);
    }

}



/* ============================================================
   DEGZY GALLERY — PAGINATION
   ============================================================ */

.gallery-v2-pagination {
    display:
        grid;

    grid-template-columns:
        150px
        1fr
        150px;

    gap:
        30px;

    align-items:
        center;

    margin-top:
        clamp(45px, 6vw, 80px);

    padding-top:
        28px;

    border-top:
        1px solid
        rgba(0,0,0,.25);
}


.gallery-v2-page-numbers {
    display:
        flex;

    flex-wrap:
        wrap;

    justify-content:
        center;

    gap:
        8px;
}


.gallery-v2-page-numbers a {
    width:
        43px;

    height:
        43px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid
        rgba(0,0,0,.28);

    color:
        #090909;

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        .08em;

    text-decoration:
        none;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}


.gallery-v2-page-numbers a:hover,
.gallery-v2-page-numbers a.active {
    background:
        #090909;

    border-color:
        #090909;

    color:
        #d5ad62;
}


.gallery-v2-page-arrow {
    color:
        #090909;

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;

    text-decoration:
        none;
}


.gallery-v2-page-arrow:last-child {
    text-align:
        right;
}


.gallery-v2-page-arrow.disabled {
    opacity:
        .30;

    cursor:
        default;
}


.gallery-v2-pagination-summary {
    margin-top:
        22px;

    text-align:
        center;

    color:
        rgba(0,0,0,.52);

    font-size:
        8px;

    font-weight:
        600;

    letter-spacing:
        .10em;

    text-transform:
        uppercase;
}


.gallery-v2-pagination-summary strong {
    color:
        #090909;

    font-weight:
        800;
}


/* ============================================================
   GALLERY — STRONGER SECTION SEPARATION
   ============================================================ */

.gallery-v2-photos {
    border-bottom:
        10px solid
        #cda75d !important;
}


.gallery-v2-feature {
    border-top:
        1px solid
        rgba(255,255,255,.22) !important;
}


/* Mobile pagination */

@media (max-width: 700px) {

    .gallery-v2-pagination {
        grid-template-columns:
            1fr
            1fr;

        gap:
            25px 15px;
    }


    .gallery-v2-page-numbers {
        grid-column:
            1 / -1;

        grid-row:
            1;
    }


    .gallery-v2-page-arrow {
        grid-row:
            2;
    }


    .gallery-v2-page-arrow:last-child {
        text-align:
            right;
    }

}



/* ============================================================
   DEGZY FILMS — AWARDS & NOMINATIONS V2
   ============================================================ */

.awards-v2 {
    background: #070707;
    color: #fff;
    font-family: 'Manrope', sans-serif;
}

.awards-v2 * {
    box-sizing: border-box;
}

.awards-v2 h1,
.awards-v2 h2,
.awards-v2 h3 {
    font-family: 'Syne', sans-serif;
}

.awards-v2 em {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.awards-v2-kicker {
    margin: 0 0 20px;
    color: #d5ad62;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .20em;
    text-transform: uppercase;
}

.awards-v2-kicker.dark {
    color: #805f27;
}


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

.awards-v2-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 150px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(205,167,93,.11),
            transparent 35%
        ),
        #050505;
}

.awards-v2-hero-grid {
    display: grid;
    grid-template-columns: 1fr .80fr;
    gap: clamp(60px,8vw,130px);
    align-items: center;
}

.awards-v2-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(68px,8.5vw,135px);
    line-height: .84;
    letter-spacing: -.07em;
    font-weight: 600;
}

.awards-v2-hero h1 em {
    display: block;
    color: #d5ad62;
}

.awards-v2-hero-copy > p:not(.awards-v2-kicker) {
    max-width: 540px;
    margin: 35px 0 0;
    color: rgba(255,255,255,.52);
    font-size: 16px;
    line-height: 1.8;
}

.awards-v2-hero-link {
    width: fit-content;
    display: inline-flex;
    gap: 22px;
    margin-top: 35px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(213,173,98,.55);
    color: #d5ad62;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-decoration: none;
}


/* Hero artwork */

.awards-v2-hero-art {
    position: relative;
    min-height: 650px;
}

.awards-v2-hero-image {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(213,173,98,.30);
}

.awards-v2-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.awards-v2-hero-image-main {
    right: 0;
    top: 0;
    width: 68%;
    height: 76%;
}

.awards-v2-hero-image-small {
    left: 0;
    bottom: 0;
    width: 52%;
    height: 48%;
}

.awards-v2-hero-stamp {
    position: absolute;
    right: 8%;
    bottom: 5%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #d5ad62;
    border-radius: 50%;
    background: rgba(5,5,5,.84);
    color: #d5ad62;
    text-align: center;
    backdrop-filter: blur(8px);
}

.awards-v2-hero-stamp strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-style: italic;
    font-weight: 500;
}

.awards-v2-hero-stamp span {
    max-width: 85px;
    font-size: 7px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .14em;
    text-transform: uppercase;
}


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

.awards-v2-intro {
    padding: clamp(100px,11vw,175px) 0;
    background: #eee8db;
    color: #111;
}

.awards-v2-intro-grid {
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: clamp(60px,9vw,140px);
    align-items: end;
}

.awards-v2-intro h2 {
    margin: 0;
    font-size: clamp(50px,6vw,92px);
    line-height: .93;
    letter-spacing: -.06em;
}

.awards-v2-intro h2 em {
    display: block;
    color: #936e2e;
}

.awards-v2-intro-copy .lead {
    margin: 0 0 25px;
    font-size: clamp(20px,2vw,27px);
    line-height: 1.55;
}

.awards-v2-intro-copy p:last-child {
    margin: 0;
    color: rgba(17,17,17,.56);
    font-size: 13px;
    line-height: 1.8;
}


/* ============================================================
   THE GRIOT
   ============================================================ */

.awards-v2-griot {
    background: #070707;
}

.awards-v2-griot-grid {
    display: grid;
    grid-template-columns: .90fr 1.10fr;
    min-height: 900px;
}

.awards-v2-griot-visual {
    position: relative;
    min-height: 900px;
    overflow: hidden;
}

.awards-v2-griot-visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awards-v2-griot-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(0,0,0,.72)
        );
}

.awards-v2-griot-caption {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 35px;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.30);
}

.awards-v2-griot-caption span {
    color: #d5ad62;
    font-size: 8px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.awards-v2-griot-caption strong {
    font-family: 'Syne', sans-serif;
    font-size: 20px;
}

.awards-v2-griot-copy {
    padding: clamp(55px,6vw,95px);
}

.awards-v2-section-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.awards-v2-section-top span {
    color: rgba(255,255,255,.38);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.awards-v2-section-top span:first-child {
    color: #d5ad62;
}

.awards-v2-section-top.dark {
    border-color: rgba(0,0,0,.16);
}

.awards-v2-section-top.dark span {
    color: rgba(0,0,0,.45);
}

.awards-v2-section-top.dark span:first-child {
    color: #72511f;
}

.awards-v2-griot-heading {
    padding: clamp(70px,8vw,110px) 0 55px;
}

.awards-v2-griot-heading h2 {
    margin: 0 0 30px;
    font-size: clamp(65px,7.5vw,115px);
    line-height: .82;
    letter-spacing: -.07em;
}

.awards-v2-griot-heading h2 em {
    display: block;
    color: #d5ad62;
}

.awards-v2-griot-heading > p:last-child {
    max-width: 500px;
    margin: 0;
    color: rgba(255,255,255,.50);
    font-size: 13px;
    line-height: 1.8;
}


/* Awards list */

.awards-v2-award-list {
    border-top: 1px solid rgba(255,255,255,.12);
}

.awards-v2-award-list article {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 30px;
    padding: 27px 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.awards-v2-award-list article > span {
    color: #d5ad62;
    font-size: 8px;
}

.awards-v2-award-list small {
    display: block;
    margin-bottom: 7px;
    color: #d5ad62;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.awards-v2-award-list h3 {
    margin: 0 0 7px;
    font-size: clamp(20px,2vw,29px);
    font-weight: 500;
    letter-spacing: -.035em;
}

.awards-v2-award-list p {
    margin: 0;
    color: rgba(255,255,255,.40);
    font-size: 11px;
}


/* ============================================================
   AWARD MOMENTS
   ============================================================ */

.awards-v2-moments {
    padding: clamp(100px,11vw,170px) 0;
    background: #eee8db;
    color: #111;
}

.awards-v2-moments-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 65px;
}

.awards-v2-moments-heading h2 {
    margin: 0;
    font-size: clamp(50px,6vw,88px);
    line-height: .91;
    letter-spacing: -.06em;
}

.awards-v2-moments-heading h2 em {
    display: block;
    color: #936e2e;
}

.awards-v2-moments-heading > span {
    color: rgba(17,17,17,.40);
    font-size: 8px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.awards-v2-moments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.awards-v2-moments-grid figure {
    margin: 0;
}

.awards-v2-moments-grid img {
    width: 100%;
    aspect-ratio: 1.2;
    display: block;
    object-fit: cover;
}

.awards-v2-moments-grid figcaption {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,.17);
}

.awards-v2-moments-grid figcaption span {
    color: #805f27;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.awards-v2-moments-grid figcaption strong {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
}


/* ============================================================
   DISTRACTION
   ============================================================ */

.awards-v2-distraction {
    padding: clamp(90px,10vw,150px) 0;
    background: #cda75d;
    color: #080808;
}

.awards-v2-distraction-grid {
    display: grid;
    grid-template-columns: 1fr .64fr;
    gap: clamp(55px,8vw,125px);
}

.awards-v2-distraction-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.awards-v2-distraction-copy h2 {
    margin: 0 0 30px;
    font-size: clamp(65px,8vw,125px);
    line-height: .84;
    letter-spacing: -.07em;
}

.awards-v2-distraction-lead {
    max-width: 580px;
    margin: 0 0 20px;
    font-size: clamp(21px,2vw,28px);
    line-height: 1.5;
}

.awards-v2-distraction-text {
    max-width: 550px;
    margin: 0;
    color: rgba(0,0,0,.58);
    font-size: 13px;
    line-height: 1.8;
}

.awards-v2-distraction-poster {
    overflow: hidden;
    background: #111;
}

.awards-v2-distraction-poster img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    display: block;
    object-fit: cover;
}

.awards-v2-distraction-wins {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-top: 90px;
    border-top: 1px solid rgba(0,0,0,.24);
    border-left: 1px solid rgba(0,0,0,.24);
}

.awards-v2-distraction-wins article {
    min-height: 250px;
    padding: 28px;
    border-right: 1px solid rgba(0,0,0,.24);
    border-bottom: 1px solid rgba(0,0,0,.24);
}

.awards-v2-distraction-wins article > span {
    display: block;
    margin-bottom: 60px;
    color: rgba(0,0,0,.45);
    font-size: 8px;
}

.awards-v2-distraction-wins small {
    display: block;
    margin-bottom: 9px;
    color: #4e3713;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.awards-v2-distraction-wins h3 {
    max-width: 320px;
    margin: 0;
    font-size: clamp(25px,2.7vw,39px);
    line-height: 1;
    letter-spacing: -.045em;
}


/* ============================================================
   STATEMENT
   ============================================================ */

.awards-v2-statement {
    padding: clamp(100px,11vw,170px) 0;
    background: #070707;
}

.awards-v2-statement-grid {
    display: grid;
    grid-template-columns: 1fr .55fr;
    gap: clamp(60px,9vw,145px);
    align-items: end;
}

.awards-v2-statement h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(55px,7vw,105px);
    line-height: .87;
    letter-spacing: -.065em;
}

.awards-v2-statement h2 em {
    display: block;
    color: #d5ad62;
}

.awards-v2-statement-grid > div:last-child p {
    margin: 0 0 35px;
    color: rgba(255,255,255,.48);
    font-size: 13px;
    line-height: 1.8;
}

.awards-v2-statement-grid a {
    display: inline-flex;
    gap: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(213,173,98,.55);
    color: #d5ad62;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
}


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

.awards-v2-cta {
    padding: clamp(90px,10vw,145px) 0;
    background: #eee8db;
    color: #111;
    border-top: 8px solid #cda75d;
}

.awards-v2-cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
}

.awards-v2-cta h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(55px,7vw,105px);
    line-height: .87;
    letter-spacing: -.065em;
}

.awards-v2-cta h2 em {
    display: block;
    color: #936e2e;
}

.awards-v2-cta a {
    min-width: 210px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 22px;
    background: #090909;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
}


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

@media (max-width: 960px) {

    .awards-v2-hero-grid,
    .awards-v2-intro-grid,
    .awards-v2-griot-grid,
    .awards-v2-distraction-grid,
    .awards-v2-statement-grid {
        grid-template-columns: 1fr;
    }

    .awards-v2-hero-art {
        min-height: 600px;
    }

    .awards-v2-griot-visual {
        min-height: 760px;
    }

    .awards-v2-moments-grid {
        grid-template-columns: 1fr;
    }

    .awards-v2-distraction-poster img {
        min-height: auto;
    }

}


@media (max-width: 700px) {

    .awards-v2-hero {
        padding-top: 130px;
    }

    .awards-v2-hero h1 {
        font-size: clamp(57px,17vw,86px);
    }

    .awards-v2-hero-art {
        min-height: 480px;
    }

    .awards-v2-hero-stamp {
        width: 115px;
        height: 115px;
    }

    .awards-v2-griot-copy {
        padding: 65px 25px;
    }

    .awards-v2-award-list article {
        grid-template-columns: 42px 1fr;
        gap: 18px;
    }

    .awards-v2-distraction-wins {
        grid-template-columns: 1fr;
    }

    .awards-v2-distraction-wins article {
        min-height: auto;
    }

    .awards-v2-distraction-wins article > span {
        margin-bottom: 35px;
    }

    .awards-v2-cta-grid {
        grid-template-columns: 1fr;
    }

    .awards-v2-cta a {
        width: 100%;
    }

}



/* ============================================================
   DEGZY FILMS — CONTACT V2
   ============================================================ */

.contact-v2 {
    background: #070707;
    color: #fff;
    font-family: 'Manrope', sans-serif;
}

.contact-v2 * {
    box-sizing: border-box;
}

.contact-v2 h1,
.contact-v2 h2,
.contact-v2 h3 {
    font-family: 'Syne', sans-serif;
}

.contact-v2 em {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.contact-v2-kicker {
    margin: 0 0 20px;
    color: #d5ad62;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .20em;
    text-transform: uppercase;
}

.contact-v2-kicker.dark {
    color: #805f27;
}


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

.contact-v2-hero {
    min-height: 92vh;
    background: #050505;
}

.contact-v2-hero-grid {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr .88fr;
}

.contact-v2-hero-copy {
    display: flex;
    align-items: center;
}

.contact-v2-hero-inner {
    width: min(780px, calc(100% - 10vw));
    margin-left: max(5vw, calc((100vw - 1500px) / 2));
    padding: 150px 0 80px;
}

.contact-v2-hero h1 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(68px,8vw,128px);
    font-weight: 600;
    line-height: .84;
    letter-spacing: -.07em;
}

.contact-v2-hero h1 em {
    display: block;
    color: #d5ad62;
}

.contact-v2-hero-text {
    max-width: 520px;
    margin: 34px 0 0;
    color: rgba(255,255,255,.52);
    font-size: 15px;
    line-height: 1.8;
}

.contact-v2-hero-link {
    width: fit-content;
    display: inline-flex;
    gap: 25px;
    margin-top: 35px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(213,173,98,.5);
    color: #d5ad62;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-decoration: none;
}


/* Hero image */

.contact-v2-hero-visual {
    position: relative;
    min-height: 92vh;
    overflow: hidden;
}

.contact-v2-hero-visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.contact-v2-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,.30),
            transparent 30%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.70),
            transparent 45%
        );
}

.contact-v2-image-caption {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.30);
}

.contact-v2-image-caption span {
    color: #d5ad62;
    font-size: 8px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.contact-v2-image-caption strong {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
}


/* ============================================================
   DETAILS
   ============================================================ */

.contact-v2-details {
    padding: clamp(100px,11vw,170px) 0;
    background: #eee8db;
    color: #111;
}

.contact-v2-details-heading {
    display: grid;
    grid-template-columns: 1fr .55fr;
    gap: clamp(55px,8vw,125px);
    align-items: end;
    margin-bottom: clamp(65px,8vw,105px);
}

.contact-v2-details-heading h2 {
    margin: 0;
    font-size: clamp(52px,6.5vw,96px);
    line-height: .90;
    letter-spacing: -.06em;
}

.contact-v2-details-heading h2 em {
    display: block;
    color: #936e2e;
}

.contact-v2-details-heading > p {
    max-width: 450px;
    margin: 0;
    color: rgba(17,17,17,.55);
    font-size: 13px;
    line-height: 1.8;
}


/* info cards */

.contact-v2-info-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    border-top: 1px solid rgba(0,0,0,.16);
    border-left: 1px solid rgba(0,0,0,.16);
}

.contact-v2-info-grid article {
    position: relative;
    min-height: 310px;
    padding: clamp(30px,4vw,55px);
    border-right: 1px solid rgba(0,0,0,.16);
    border-bottom: 1px solid rgba(0,0,0,.16);
}

.contact-v2-info-number {
    position: absolute;
    right: 28px;
    top: 28px;
    color: rgba(0,0,0,.28);
    font-size: 8px;
}

.contact-v2-info-grid small {
    display: block;
    margin-bottom: 45px;
    color: #805f27;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contact-v2-info-grid h3 {
    max-width: 520px;
    margin: 0 0 20px;
    font-size: clamp(30px,3.5vw,55px);
    font-weight: 600;
    line-height: .96;
    letter-spacing: -.05em;
}

.contact-v2-info-grid p,
.contact-v2-info-grid a {
    color: rgba(17,17,17,.58);
    font-size: 13px;
    line-height: 1.75;
}

.contact-v2-info-grid a {
    text-decoration: none;
}

.contact-v2-info-grid a:hover {
    color: #805f27;
}


/* ============================================================
   PROJECT FORM
   ============================================================ */

.contact-v2-project {
    padding: clamp(100px,11vw,170px) 0;
    background: #080808;
}

.contact-v2-project-grid {
    display: grid;
    grid-template-columns: .70fr 1.30fr;
    gap: clamp(60px,8vw,130px);
}

.contact-v2-project-intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-v2-project-intro h2 {
    margin: 0 0 30px;
    font-size: clamp(55px,6.5vw,100px);
    line-height: .87;
    letter-spacing: -.065em;
}

.contact-v2-project-intro h2 em {
    display: block;
    color: #d5ad62;
}

.contact-v2-project-intro > div:first-child > p:last-child {
    max-width: 450px;
    margin: 0;
    color: rgba(255,255,255,.47);
    font-size: 13px;
    line-height: 1.8;
}

.contact-v2-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 60px;
}

.contact-v2-project-meta span {
    padding: 10px 13px;
    border: 1px solid rgba(213,173,98,.28);
    color: rgba(255,255,255,.44);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}


/* form */

.contact-v2-form-wrap {
    padding: clamp(35px,5vw,70px);
    border: 1px solid rgba(255,255,255,.11);
    background: #0d0d0d;
}

.contact-v2-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-v2-field {
    margin-bottom: 28px;
}

.contact-v2-field label {
    display: block;
    margin-bottom: 11px;
    color: rgba(255,255,255,.55);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.contact-v2-field label span {
    color: #d5ad62;
}

.contact-v2-field input,
.contact-v2-field select,
.contact-v2-field textarea {
    width: 100%;
    display: block;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.20);
    border-radius: 0;
    outline: none;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 14px;
    transition:
        border-color .2s ease,
        background .2s ease;
}

.contact-v2-field input,
.contact-v2-field select {
    height: 55px;
}

.contact-v2-field textarea {
    min-height: 150px;
    padding: 14px 0;
    resize: vertical;
}

.contact-v2-field input:focus,
.contact-v2-field select:focus,
.contact-v2-field textarea:focus {
    border-color: #d5ad62;
}

.contact-v2-field input::placeholder,
.contact-v2-field textarea::placeholder {
    color: rgba(255,255,255,.28);
}

.contact-v2-field select {
    appearance: none;
    cursor: pointer;
}

.contact-v2-field select option {
    background: #111;
    color: #fff;
}

.contact-v2-field-message {
    margin-top: 5px;
}


/* form response */

.contact-v2-success {
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
    padding: 20px;
    border: 1px solid rgba(213,173,98,.45);
    background: rgba(213,173,98,.08);
}

.contact-v2-success > span {
    color: #d5ad62;
    font-size: 20px;
}

.contact-v2-success strong {
    display: block;
    margin-bottom: 5px;
    color: #d5ad62;
    font-size: 12px;
}

.contact-v2-success p {
    margin: 0;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    line-height: 1.6;
}

.contact-v2-errors {
    margin-bottom: 30px;
    padding: 18px 20px;
    border: 1px solid rgba(220,100,100,.38);
}

.contact-v2-errors strong {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
}

.contact-v2-errors p {
    margin: 0;
    color: rgba(255,255,255,.48);
    font-size: 11px;
}

.contact-v2-error {
    display: block;
    margin-top: 7px;
    color: #d5ad62;
    font-size: 10px;
}


/* submit */

.contact-v2-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 35px;
    margin-top: 25px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.10);
}

.contact-v2-submit-row p {
    max-width: 390px;
    margin: 0;
    color: rgba(255,255,255,.32);
    font-size: 9px;
    line-height: 1.7;
}

.contact-v2-submit-row button {
    min-width: 205px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 21px;
    border: 1px solid #d2aa5d;
    background: #d2aa5d;
    color: #090909;
    cursor: pointer;
}

.contact-v2-submit-row button span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-v2-submit-row button b {
    font-size: 18px;
    font-weight: 400;
}

.contact-v2-submit-row button:hover {
    background: #e1bf79;
}


/* honeypot */

.contact-v2-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}


/* ============================================================
   CLOSING
   ============================================================ */

.contact-v2-closing {
    min-height: 680px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    border-top: 6px solid #cda75d;
    background: #eee8db;
    color: #111;
}

.contact-v2-closing-image {
    position: relative;
    min-height: 680px;
    overflow: hidden;
}

.contact-v2-closing-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-v2-closing-image > div {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.10);
}

.contact-v2-closing-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(55px,7vw,110px);
}

.contact-v2-closing .contact-v2-kicker {
    color: #805f27;
}

.contact-v2-closing h2 {
    margin: 0 0 30px;
    font-size: clamp(55px,7vw,105px);
    line-height: .87;
    letter-spacing: -.065em;
}

.contact-v2-closing h2 em {
    display: block;
    color: #936e2e;
}

.contact-v2-closing-copy > p:not(.contact-v2-kicker) {
    max-width: 470px;
    margin: 0 0 35px;
    color: rgba(17,17,17,.55);
    font-size: 13px;
    line-height: 1.8;
}

.contact-v2-closing-copy a {
    width: fit-content;
    display: inline-flex;
    gap: 14px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(128,95,39,.50);
    color: #805f27;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
}


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

@media (max-width: 960px) {

    .contact-v2-hero-grid,
    .contact-v2-project-grid,
    .contact-v2-closing {
        grid-template-columns: 1fr;
    }

    .contact-v2-hero-inner {
        width: min(90%, 760px);
        margin: 0 auto;
    }

    .contact-v2-hero-visual {
        min-height: 650px;
    }

    .contact-v2-details-heading {
        grid-template-columns: 1fr;
    }

    .contact-v2-project-intro {
        min-height: 500px;
    }

}


@media (max-width: 700px) {

    .contact-v2-hero,
    .contact-v2-hero-grid {
        min-height: auto;
    }

    .contact-v2-hero-inner {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .contact-v2-hero h1 {
        font-size: clamp(58px,17vw,88px);
    }

    .contact-v2-hero-visual {
        min-height: 520px;
    }

    .contact-v2-info-grid,
    .contact-v2-form-row {
        grid-template-columns: 1fr;
    }

    .contact-v2-info-grid article {
        min-height: 260px;
    }

    .contact-v2-project-intro {
        min-height: auto;
        margin-bottom: 10px;
    }

    .contact-v2-form-wrap {
        padding: 35px 22px;
    }

    .contact-v2-submit-row {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-v2-submit-row button {
        width: 100%;
    }

    .contact-v2-closing-image {
        min-height: 500px;
    }

}



/* ============================================================
   DEGZY FILMS — VIDEOS V2
   ============================================================ */

.videos-v2 {
    background: #070707;
    color: #fff;
    font-family: 'Manrope', sans-serif;
}

.videos-v2 * {
    box-sizing: border-box;
}

.videos-v2 h1,
.videos-v2 h2,
.videos-v2 h3 {
    font-family: 'Syne', sans-serif;
}

.videos-v2 em {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.videos-v2-kicker {
    margin: 0 0 20px;
    color: #d5ad62;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .20em;
    text-transform: uppercase;
}

.videos-v2-kicker.dark {
    color: #805f27;
}


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

.videos-v2-hero {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: end;
    overflow: hidden;
    background: #050505;
}

.videos-v2-hero-bg {
    position: absolute;
    inset: 0;
}

.videos-v2-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.videos-v2-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.90) 0%,
            rgba(0,0,0,.65) 43%,
            rgba(0,0,0,.18) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.18) 50%,
            rgba(0,0,0,.32) 100%
        );
}

.videos-v2-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    padding-top: 180px;
    padding-bottom: clamp(65px,8vw,105px);
}

.videos-v2-hero h1 {
    max-width: 950px;
    margin: 0;
    font-size: clamp(70px,9vw,145px);
    line-height: .82;
    letter-spacing: -.075em;
    font-weight: 600;
}

.videos-v2-hero h1 em {
    display: block;
    color: #d5ad62;
}

.videos-v2-hero-copy {
    max-width: 530px;
    margin: 35px 0 0;
    color: rgba(255,255,255,.57);
    font-size: 14px;
    line-height: 1.85;
}

.videos-v2-scroll {
    width: fit-content;
    display: inline-flex;
    gap: 24px;
    margin-top: 35px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(213,173,98,.55);
    color: #d5ad62;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
}

.videos-v2-hero-meta {
    min-width: 170px;
    padding-left: 20px;
    border-left: 1px solid rgba(213,173,98,.38);
}

.videos-v2-hero-meta span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255,255,255,.38);
    font-size: 7px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.videos-v2-hero-meta strong {
    display: block;
    color: #d5ad62;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    line-height: 1.4;
}


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

.videos-v2-intro {
    padding: clamp(100px,11vw,170px) 0;
    background: #eee8db;
    color: #111;
}

.videos-v2-intro-grid {
    display: grid;
    grid-template-columns: 1fr .62fr;
    gap: clamp(60px,9vw,150px);
    align-items: end;
}

.videos-v2-intro h2 {
    margin: 0;
    font-size: clamp(54px,6.5vw,100px);
    line-height: .89;
    letter-spacing: -.065em;
}

.videos-v2-intro h2 em {
    display: block;
    color: #936e2e;
}

.videos-v2-intro-lead {
    margin: 0 0 20px;
    font-size: clamp(20px,2vw,28px);
    line-height: 1.5;
}

.videos-v2-intro-grid > div:last-child p:last-child {
    margin: 0;
    color: rgba(17,17,17,.55);
    font-size: 13px;
    line-height: 1.8;
}


/* ============================================================
   FEATURED
   ============================================================ */

.videos-v2-featured {
    padding: clamp(100px,10vw,155px) 0;
    background: #070707;
}

.videos-v2-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 45px;
}

.videos-v2-section-head h2 {
    margin: 0;
    font-size: clamp(52px,6vw,90px);
    line-height: .9;
    letter-spacing: -.06em;
}

.videos-v2-section-head > span {
    color: rgba(255,255,255,.35);
    font-size: 8px;
    letter-spacing: .15em;
    text-transform: uppercase;
}


/* Featured Player */

.videos-v2-feature-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8.1;
    min-height: 420px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}

.videos-v2-feature-player > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.videos-v2-player-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.42),
            transparent 60%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.70),
            transparent 55%
        );
}

.videos-v2-play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transform: translate(-50%,-50%);
}

.videos-v2-play-icon {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 50%;
    background: rgba(0,0,0,.28);
    font-size: 18px;
    backdrop-filter: blur(5px);
    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.videos-v2-play:hover .videos-v2-play-icon {
    background: #cda75d;
    border-color: #cda75d;
    color: #090909;
    transform: scale(1.05);
}

.videos-v2-play-copy small {
    display: block;
    margin-bottom: 4px;
    color: #d5ad62;
    font-size: 7px;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.videos-v2-play-copy strong {
    display: block;
    text-align: left;
    font-family: 'Syne', sans-serif;
    font-size: 18px;
}

.videos-v2-player-caption {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 27px;
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: end;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.30);
}

.videos-v2-player-caption > span {
    color: #d5ad62;
    font-size: 8px;
}

.videos-v2-player-caption small {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,.46);
    font-size: 7px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.videos-v2-player-caption strong {
    font-family: 'Syne', sans-serif;
    font-size: 17px;
}

.degzy-video-player iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}


/* ============================================================
   COLLECTION
   ============================================================ */

.videos-v2-collection {
    padding: clamp(100px,11vw,175px) 0;
    background: #eee8db;
    color: #111;
}

.videos-v2-collection-heading {
    display: grid;
    grid-template-columns: 1fr .45fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 70px;
}

.videos-v2-collection-heading h2 {
    margin: 0;
    font-size: clamp(54px,6vw,95px);
    line-height: .89;
    letter-spacing: -.065em;
}

.videos-v2-collection-heading h2 em {
    display: block;
    color: #936e2e;
}

.videos-v2-collection-heading > p {
    max-width: 420px;
    margin: 0;
    color: rgba(17,17,17,.53);
    font-size: 12px;
    line-height: 1.8;
}


/* Grid */

.videos-v2-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 70px 18px;
}

.videos-v2-card {
    min-width: 0;
}

.videos-v2-card-player {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #080808;
}

.videos-v2-card-player > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.videos-v2-card:hover
.videos-v2-card-player > img {
    transform: scale(1.035);
}

.videos-v2-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.60),
            transparent 55%
        );
}

.videos-v2-card-play {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 3px;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 50%;
    background: rgba(0,0,0,.28);
    color: #fff;
    cursor: pointer;
    transform: translate(-50%,-50%);
    backdrop-filter: blur(5px);
    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.videos-v2-card-play:hover {
    border-color: #cda75d;
    background: #cda75d;
    color: #080808;
}

.videos-v2-watch-label {
    position: absolute;
    left: 18px;
    bottom: 16px;
    color: rgba(255,255,255,.60);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.videos-v2-card-info {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0,0,0,.18);
}

.videos-v2-card-number {
    color: #936e2e;
    font-size: 8px;
}

.videos-v2-card-info small {
    display: block;
    margin-bottom: 7px;
    color: #805f27;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.videos-v2-card-info h3 {
    margin: 0;
    font-size: clamp(22px,2.5vw,34px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.045em;
}

.videos-v2-card-info p {
    margin: 8px 0 0;
    color: rgba(17,17,17,.49);
    font-size: 11px;
}


/* ============================================================
   STATEMENT
   ============================================================ */

.videos-v2-statement {
    padding: clamp(100px,11vw,170px) 0;
    background: #080808;
}

.videos-v2-statement-grid {
    display: grid;
    grid-template-columns: 1fr .55fr;
    gap: clamp(60px,9vw,145px);
    align-items: end;
}

.videos-v2-statement h2 {
    margin: 0;
    max-width: 930px;
    font-size: clamp(57px,7vw,108px);
    line-height: .87;
    letter-spacing: -.067em;
}

.videos-v2-statement h2 em {
    display: block;
    color: #d5ad62;
}

.videos-v2-statement-grid > div:last-child p {
    margin: 0 0 35px;
    color: rgba(255,255,255,.48);
    font-size: 13px;
    line-height: 1.8;
}

.videos-v2-statement a {
    display: inline-flex;
    gap: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(213,173,98,.55);
    color: #d5ad62;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
}


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

.videos-v2-cta {
    padding: clamp(90px,10vw,145px) 0;
    border-top: 7px solid #cda75d;
    background: #eee8db;
    color: #111;
}

.videos-v2-cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
}

.videos-v2-cta h2 {
    margin: 0;
    font-size: clamp(55px,7vw,105px);
    line-height: .87;
    letter-spacing: -.065em;
}

.videos-v2-cta h2 em {
    display: block;
    color: #936e2e;
}

.videos-v2-cta > .section-wrap > a,
.videos-v2-cta-grid > a {
    min-width: 210px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 22px;
    background: #090909;
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-decoration: none;
}


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

@media (max-width: 960px) {

    .videos-v2-intro-grid,
    .videos-v2-collection-heading,
    .videos-v2-statement-grid {
        grid-template-columns: 1fr;
    }

    .videos-v2-hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .videos-v2-hero-meta {
        padding-left: 0;
        padding-top: 18px;
        border-left: 0;
        border-top: 1px solid rgba(213,173,98,.38);
    }

}


@media (max-width: 700px) {

    .videos-v2-hero {
        min-height: 820px;
    }

    .videos-v2-hero h1 {
        font-size: clamp(63px,19vw,92px);
    }

    .videos-v2-grid {
        grid-template-columns: 1fr;
        row-gap: 55px;
    }

    .videos-v2-feature-player {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .videos-v2-play-copy {
        display: none;
    }

    .videos-v2-play-icon {
        width: 68px;
        height: 68px;
    }

    .videos-v2-player-caption {
        left: 18px;
        right: 18px;
        bottom: 17px;
    }

    .videos-v2-card-info {
        grid-template-columns: 40px 1fr;
    }

    .videos-v2-cta-grid {
        grid-template-columns: 1fr;
    }

    .videos-v2-cta-grid > a {
        width: 100%;
    }

}



/* ============================================================
   VIDEOS V2 — HERO ALIGNMENT FIX
   Match positioning used across the premium inner pages
   ============================================================ */

.videos-v2-hero-content {
    width: min(78%, 1600px);
    margin-left: auto;
    margin-right: auto;

    padding-top: 165px;
    padding-bottom: clamp(115px, 10vw, 155px);
}


.videos-v2-hero-content > div:first-child {
    max-width: 920px;
}


.videos-v2-hero h1 {
    max-width: 820px;
    font-size: clamp(68px, 7.5vw, 125px);
}


.videos-v2-hero-copy {
    max-width: 520px;
}


/* Keep archive counter at the lower-right area */

.videos-v2-hero-meta {
    align-self: flex-end;
}


/* Tablet */

@media (max-width: 1100px) {

    .videos-v2-hero-content {
        width: min(86%, 1100px);
    }

}


/* Mobile */

@media (max-width: 700px) {

    .videos-v2-hero-content {
        width: 88%;
        padding-top: 145px;
        padding-bottom: 85px;
    }

    .videos-v2-hero h1 {
        font-size: clamp(58px, 17vw, 88px);
    }

}



/* ============================================================
   DEGZY FILMS — MOBILE POLISH
   Gallery / Awards / Contact
   ============================================================ */

@media (max-width: 700px) {

    .gallery-v2,
    .awards-v2,
    .contact-v2 {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }


    .gallery-v2 img,
    .awards-v2 img,
    .contact-v2 img {
        max-width: 100%;
    }


    /* ========================================================
       GALLERY — MOBILE
       ======================================================== */

    .gallery-v2 .section-wrap {
        width: 88%;
        max-width: none;
    }


    .gallery-v2-hero {
        min-height: 78svh;
    }


    .gallery-v2-hero .section-wrap {
        padding-top: 130px;
        padding-bottom: 65px;
    }


    .gallery-v2-hero h1 {
        max-width: 100%;

        font-size:
            clamp(50px,15vw,74px);

        line-height: .90;

        letter-spacing:
            -.055em;

        overflow-wrap:
            anywhere;
    }


    .gallery-v2-intro {
        padding-top: 80px;
        padding-bottom: 80px;
    }


    .gallery-v2-intro-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;

        gap: 35px;
    }


    .gallery-v2-intro h2,
    .gallery-v2-all-heading h2,
    .gallery-v2-category h2,
    .gallery-v2-feature h2,
    .gallery-v2-cta h2 {
        font-size:
            clamp(42px,12vw,58px);

        line-height: .92;

        letter-spacing:
            -.05em;
    }


    .gallery-v2-all-photos {
        padding-top: 80px;
        padding-bottom: 80px;
    }


    .gallery-v2-all-heading {
        display: grid !important;

        grid-template-columns:
            1fr !important;

        gap: 25px;
    }


    .gallery-v2-photo-count {
        margin-top: 5px;
    }


    /*
     * Turn the desktop mosaic into a clean
     * one-column photography feed on phones.
     */

    .gallery-v2-photo-wall {
        display: grid !important;

        grid-template-columns:
            1fr !important;

        gap: 12px !important;
    }


    .gallery-v2-wall-item {
        width: 100% !important;

        grid-column:
            auto !important;

        grid-row:
            auto !important;

        aspect-ratio:
            4 / 3 !important;

        min-height:
            0 !important;
    }


    .gallery-v2-wall-item img {
        width: 100%;
        height: 100%;

        display: block;

        object-fit:
            cover;
    }


    .gallery-v2-pagination {
        margin-top: 45px;
    }


    .gallery-v2-page-numbers {
        display: flex;

        flex-wrap: wrap;

        justify-content:
            center;

        gap: 8px;
    }


    .gallery-v2-category-grid {
        display: grid !important;

        grid-template-columns:
            1fr !important;

        min-height:
            auto !important;
    }


    .gallery-v2-category-copy {
        padding:
            60px 6vw !important;
    }


    .gallery-v2-category-visual {
        min-height:
            390px !important;
    }


    .gallery-v2-category-reverse
    .gallery-v2-category-copy {
        order: 1;
    }


    .gallery-v2-category-reverse
    .gallery-v2-category-visual {
        order: 2;
    }


    .gallery-v2-category-meta {
        margin-top: 45px;
    }


    .gallery-v2-feature {
        min-height:
            600px;
    }


    .gallery-v2-feature .section-wrap {
        padding-top:
            80px;

        padding-bottom:
            70px;
    }


    .gallery-v2-cta {
        padding-top:
            75px;

        padding-bottom:
            75px;
    }


    /* ========================================================
       AWARDS — MOBILE
       ======================================================== */

    .awards-v2 .section-wrap {
        width: 88%;
        max-width: none;
    }


    .awards-v2-hero {
        min-height: auto;

        padding:
            125px 0 65px;
    }


    .awards-v2-hero-grid {
        gap: 45px;
    }


    .awards-v2-hero h1 {
        font-size:
            clamp(48px,14vw,66px);

        line-height:
            .90;

        letter-spacing:
            -.055em;
    }


    .awards-v2-hero-copy
    > p:not(.awards-v2-kicker) {
        margin-top: 25px;

        font-size: 14px;
    }


    /*
     * Remove desktop overlapping collage
     * on a narrow phone display.
     */

    .awards-v2-hero-art {
        min-height: 0 !important;

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 8px;
    }


    .awards-v2-hero-image-main,
    .awards-v2-hero-image-small {
        position: relative;

        top: auto;
        right: auto;
        bottom: auto;
        left: auto;

        width: 100%;
        height: auto;

        aspect-ratio:
            1 / 1;
    }


    .awards-v2-hero-stamp {
        display: none;
    }


    .awards-v2-intro {
        padding:
            80px 0;
    }


    .awards-v2-intro-grid {
        gap: 35px;
    }


    .awards-v2-intro h2,
    .awards-v2-griot-heading h2,
    .awards-v2-moments-heading h2,
    .awards-v2-distraction-copy h2,
    .awards-v2-statement h2,
    .awards-v2-cta h2 {
        font-size:
            clamp(43px,12vw,58px);

        line-height:
            .91;

        letter-spacing:
            -.05em;
    }


    .awards-v2-griot-grid {
        min-height: auto;
    }


    .awards-v2-griot-visual {
        min-height:
            520px !important;
    }


    .awards-v2-griot-copy {
        padding:
            60px 6vw !important;
    }


    .awards-v2-griot-heading {
        padding:
            55px 0 40px;
    }


    .awards-v2-award-list article {
        grid-template-columns:
            34px 1fr !important;

        gap:
            14px !important;

        padding:
            24px 0;
    }


    .awards-v2-award-list h3 {
        font-size:
            clamp(20px,6vw,27px);

        overflow-wrap:
            anywhere;
    }


    .awards-v2-moments {
        padding:
            80px 0;
    }


    .awards-v2-moments-heading {
        display: flex;

        flex-direction: column;

        align-items:
            flex-start;

        gap: 20px;
    }


    .awards-v2-moments-grid {
        grid-template-columns:
            1fr !important;

        gap: 35px;
    }


    .awards-v2-distraction {
        padding:
            80px 0;
    }


    .awards-v2-distraction-grid {
        gap: 45px;
    }


    .awards-v2-distraction-poster img {
        min-height:
            0 !important;

        height:
            auto !important;

        aspect-ratio:
            4 / 5;

        object-fit:
            cover;
    }


    .awards-v2-distraction-wins {
        grid-template-columns:
            1fr !important;

        margin-top:
            55px;
    }


    .awards-v2-distraction-wins article {
        min-height:
            auto !important;

        padding:
            28px 24px;
    }


    .awards-v2-distraction-wins
    article > span {
        margin-bottom:
            30px !important;
    }


    .awards-v2-statement {
        padding:
            80px 0;
    }


    .awards-v2-statement-grid {
        gap: 35px;
    }


    .awards-v2-cta {
        padding:
            75px 0;
    }


    .awards-v2-cta-grid {
        gap: 35px;
    }


    /* ========================================================
       CONTACT — MOBILE
       ======================================================== */

    .contact-v2 .section-wrap {
        width: 88%;
        max-width: none;
    }


    /*
     * On phones, combine the Contact copy and
     * production image into one cinematic hero
     * instead of stacking a second 520px image.
     */

    .contact-v2-hero {
        position: relative;

        min-height:
            720px !important;
    }


    .contact-v2-hero-grid {
        position: relative;

        display:
            block !important;

        min-height:
            720px !important;
    }


    .contact-v2-hero-visual {
        position: absolute;

        inset: 0;

        width: 100%;
        height: 100%;

        min-height:
            0 !important;
    }


    .contact-v2-hero-visual > img {
        object-position:
            center center;
    }


    .contact-v2-image-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.20) 0%,
                rgba(0,0,0,.28) 35%,
                rgba(0,0,0,.92) 100%
            );
    }


    .contact-v2-image-caption {
        display: none;
    }


    .contact-v2-hero-copy {
        position: relative;

        z-index: 3;

        min-height:
            720px;

        display: flex;

        align-items:
            flex-end;

        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.42),
                transparent 80%
            );
    }


    .contact-v2-hero-inner {
        width: 88% !important;

        margin:
            0 auto !important;

        padding:
            130px 0 70px !important;
    }


    .contact-v2-hero h1 {
        max-width:
            100%;

        font-size:
            clamp(49px,14vw,66px) !important;

        line-height:
            .90;

        letter-spacing:
            -.055em;
    }


    .contact-v2-hero-text {
        max-width:
            420px;

        margin-top:
            24px;

        font-size:
            14px;
    }


    .contact-v2-details {
        padding:
            80px 0;
    }


    .contact-v2-details-heading {
        gap:
            30px;
    }


    .contact-v2-details-heading h2,
    .contact-v2-project-intro h2,
    .contact-v2-closing h2 {
        font-size:
            clamp(43px,12vw,58px);

        line-height:
            .91;

        letter-spacing:
            -.05em;
    }


    .contact-v2-info-grid {
        grid-template-columns:
            1fr !important;
    }


    .contact-v2-info-grid article {
        min-height:
            auto !important;

        padding:
            35px 28px;
    }


    .contact-v2-info-grid small {
        margin-bottom:
            30px;
    }


    .contact-v2-info-grid h3 {
        font-size:
            clamp(29px,8vw,38px);
    }


    .contact-v2-info-grid a {
        display: block;

        overflow-wrap:
            anywhere;
    }


    .contact-v2-project {
        padding:
            80px 0;
    }


    .contact-v2-project-grid {
        gap:
            45px;
    }


    .contact-v2-project-meta {
        margin-top:
            35px;
    }


    .contact-v2-form-wrap {
        width: 100%;

        padding:
            32px 20px !important;
    }


    .contact-v2-form-row {
        grid-template-columns:
            1fr !important;

        gap:
            0;
    }


    /*
     * 16px prevents Safari/iPhone zooming
     * automatically when a form field is focused.
     */

    .contact-v2-field input,
    .contact-v2-field select,
    .contact-v2-field textarea {
        max-width: 100%;

        font-size:
            16px;
    }


    .contact-v2-submit-row {
        gap:
            25px;
    }


    .contact-v2-submit-row button {
        width:
            100%;

        min-width:
            0;
    }


    .contact-v2-closing {
        min-height:
            auto;
    }


    .contact-v2-closing-image {
        min-height:
            390px !important;
    }


    .contact-v2-closing-copy {
        padding:
            65px 6vw;
    }

}


/*
 * Extra-small phones.
 */

@media (max-width: 390px) {

    .gallery-v2 .section-wrap,
    .awards-v2 .section-wrap,
    .contact-v2 .section-wrap,
    .contact-v2-hero-inner {
        width:
            90% !important;
    }


    .gallery-v2-hero h1,
    .awards-v2-hero h1,
    .contact-v2-hero h1 {
        font-size:
            46px !important;
    }


    .gallery-v2-category-visual {
        min-height:
            330px !important;
    }


    .awards-v2-griot-visual {
        min-height:
            440px !important;
    }


    .contact-v2-hero,
    .contact-v2-hero-grid,
    .contact-v2-hero-copy {
        min-height:
            680px !important;
    }

}

