/* =========================================================
   GOLDEN HOUR FILMS
   COMPLETE CLEAN STYLESHEET
   ========================================================= */


/* =========================================================
   1. RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #090909;
    color: #f5f1e8;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}


/* =========================================================
   2. NAVIGATION
   ========================================================= */

nav {
    position: absolute;
    top: 0;
    left: 0;

    z-index: 1000;

    width: 100%;
    height: 130px;

    padding: 0 6%;

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

    transition:
        height 0.4s ease,
        background 0.4s ease,
        backdrop-filter 0.4s ease;
}

.logo {
    color: #f5f1e8;

    text-decoration: none;

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

    letter-spacing: 4px;

    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;

    gap: 45px;
}

.nav-links a {
    position: relative;

    color: #f5f1e8;

    text-decoration: none;

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

    letter-spacing: 3px;

    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: #c99a4b;

    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #c99a4b;
}

.nav-links a:hover::after {
    width: 100%;
}


/* NAVIGATION AFTER SCROLL */

nav.scrolled {
    position: fixed;

    height: 85px;

    background: rgba(9, 9, 9, 0.90);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

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


/* =========================================================
   3. HOMEPAGE HERO
   ========================================================= */

.hero {
    position: relative;

    width: 100%;
    height: 100vh;

    min-height: 700px;

    padding: 0 8%;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    z-index: 0;
}

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

    display: block;

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


/* CINEMATIC DARK OVERLAY */

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.80) 0%,
            rgba(0, 0, 0, 0.45) 50%,
            rgba(0, 0, 0, 0.16) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.72),
            transparent 65%
        );

    pointer-events: none;
}

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 1200px;
}

.small-title {
    color: #c99a4b;

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

    letter-spacing: 5px;

    margin-bottom: 27px;
}

.hero h1 {
    color: #f5f1e8;

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

    font-weight: 500;

    line-height: 0.82;

    letter-spacing: -5px;
}

.tagline {
    margin-top: 30px;

    color: #d0d0d0;

    font-size: 16px;

    letter-spacing: 3px;
}

.view-work {
    display: inline-block;

    margin-top: 60px;
    padding-bottom: 9px;

    color: #f5f1e8;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 4px;

    border-bottom: 1px solid #c99a4b;

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

.view-work:hover {
    color: #c99a4b;

    transform: translateX(5px);
}


/* =========================================================
   4. GENERAL SECTIONS
   ========================================================= */

section {
    padding: 120px 8%;
}

.section-number {
    color: #c99a4b;

    font-size: 10px;

    letter-spacing: 4px;

    margin-bottom: 20px;
}

section h2 {
    color: #f5f1e8;

    font-size: clamp(45px, 6vw, 90px);

    font-weight: 400;

    letter-spacing: -3px;

    margin-bottom: 70px;
}


/* =========================================================
   5. SELECTED WORK
   ========================================================= */

.work {
    background: #090909;
}

.project-grid {
    display: grid;

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

    gap: 85px 35px;
}

.project {
    display: block;

    width: 100%;

    color: inherit;

    text-decoration: none;

    cursor: pointer;
}


/* =========================================================
   6. PROJECT VIDEO / IMAGE
   ========================================================= */

.project-image {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #151515;

    margin-bottom: 22px;
}

.project-image video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

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

    transform: scale(1);

    transition:
        transform 1s cubic-bezier(.2, .7, .2, 1),
        filter 0.5s ease;
}

.project:hover .project-image video {
    transform: scale(1.045);
}


/* =========================================================
   7. PROJECT HOVER
   ========================================================= */

.project-hover {
    position: absolute;

    inset: 0;

    z-index: 3;

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

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

    opacity: 0;

    transition:
        opacity 0.4s ease,
        background 0.4s ease;
}

.project-hover span {
    color: #ffffff;

    font-size: 10px;

    letter-spacing: 4px;

    padding: 16px 22px;

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

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

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    transform: translateY(10px);

    transition: transform 0.4s ease;
}

.project:hover .project-hover {
    opacity: 1;

    background: rgba(0, 0, 0, 0.35);
}

.project:hover .project-hover span {
    transform: translateY(0);
}


/* =========================================================
   8. PROJECT INFORMATION
   ========================================================= */

.project-info {
    display: flex;

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

    gap: 20px;
}

.project h3 {
    color: #f5f1e8;

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

    letter-spacing: 2.5px;

    margin-bottom: 9px;

    transition: color 0.3s ease;
}

.project:hover h3 {
    color: #c99a4b;
}

.project p {
    color: #777;

    font-size: 12px;

    letter-spacing: 0.5px;

    line-height: 1.5;
}

.project-number {
    color: #555;

    font-size: 10px;

    letter-spacing: 3px;
}


/* =========================================================
   9. ABOUT
   ========================================================= */

.about {
    background: #111111;
}

.about-text {
    max-width: 1050px;

    color: #d5d1ca;

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

    line-height: 1.25;

    letter-spacing: -1px;
}


/* =========================================================
   10. SERVICES
   ========================================================= */

.services {
    background: #090909;
}

.service-list {
    width: 100%;
}

.service-list p {
    color: #f5f1e8;

    font-size: clamp(30px, 5vw, 65px);

    padding: 26px 0;

    border-bottom: 1px solid #262626;

    transition:
        padding-left 0.35s ease,
        color 0.35s ease;
}

.service-list p:first-child {
    border-top: 1px solid #262626;
}

.service-list p:hover {
    padding-left: 20px;

    color: #c99a4b;
}


/* =========================================================
   11. CONTACT
   ========================================================= */

.contact {
    min-height: 80vh;

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

    background: #c99a4b;

    color: #090909;
}

.contact .section-number {
    color: #090909;
}

.contact-small {
    color: #090909;

    font-size: 10px;

    letter-spacing: 5px;
}

.contact h2 {
    color: #090909;

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

    font-weight: 500;

    line-height: 0.85;

    letter-spacing: -6px;

    margin: 30px 0 50px;
}

.contact-link {
    width: fit-content;

    color: #090909;

    text-decoration: none;

    font-size: 12px;

    letter-spacing: 4px;

    padding-bottom: 8px;

    border-bottom: 1px solid #090909;

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

.contact-link:hover {
    opacity: 0.6;

    transform: translateX(5px);
}


/* =========================================================
   12. FOOTER
   ========================================================= */

footer {
    display: flex;

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

    padding: 35px 8%;

    background: #070707;

    color: #666;

    font-size: 9px;

    letter-spacing: 2.5px;
}


/* =========================================================
   13. SCROLL REVEAL
   ========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(45px);

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

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   14. SUBTLE FILM GRAIN
   ========================================================= */

body::after {
    content: "";

    position: fixed;

    inset: 0;

    z-index: 9999;

    pointer-events: none;

    opacity: 0.012;

    background-image:
        repeating-radial-gradient(
            circle at 20% 30%,
            #ffffff 0,
            transparent 1px,
            transparent 3px
        );
}


/* =========================================================
   15. CATEGORY PAGES
   Weddings / Commercials / Events / Tourism / Interviews
   ========================================================= */

.wedding-page {
    min-height: 100vh;

    background: #080808;

    color: #f5f1e8;
}


/* CATEGORY NAV */

.wedding-page .subpage-nav {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 125px;

    padding: 0 6%;

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

    z-index: 1000;
}

.wedding-page .subpage-nav .logo {
    color: #f5f1e8;

    text-decoration: none;

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

    letter-spacing: 4px;
}


/* =========================================================
   16. CATEGORY HERO
   ========================================================= */

.portfolio-hero {
    position: relative;

    min-height: 78vh;

    padding: 180px 8% 90px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(201, 154, 75, 0.13),
            transparent 35%
        ),
        #080808;
}

.portfolio-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: 80px;
    right: -120px;

    border-radius: 50%;

    background: rgba(201, 154, 75, 0.05);

    filter: blur(100px);

    pointer-events: none;
}

.portfolio-hero::after {
    content: "";

    position: absolute;

    left: 8%;
    right: 8%;
    bottom: 0;

    height: 1px;

    background: #252525;
}

.portfolio-hero .small-title {
    position: relative;

    z-index: 2;

    margin-bottom: 30px;
}

.portfolio-hero h1 {
    position: relative;

    z-index: 2;

    color: #f5f1e8;

    font-size: clamp(72px, 11vw, 165px);

    font-weight: 400;

    line-height: 0.82;

    letter-spacing: -7px;

    max-width: 1300px;
}

.portfolio-intro {
    position: relative;

    z-index: 2;

    color: #999;

    font-size: 14px;

    letter-spacing: 2px;

    line-height: 1.7;

    margin-top: 45px;
}


/* =========================================================
   17. CATEGORY FILM GALLERY
   ========================================================= */

.film-gallery {
    width: 100%;

    padding: 120px 8% 50px;

    background: #080808;
}

.film-item {
    width: 100%;
    max-width: 1450px;

    margin: 0 auto 140px;
}


/* =========================================================
   18. CATEGORY VIDEO
   ========================================================= */

.film-video {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #121212;

    cursor: pointer;
}

.film-video > video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    display: block;

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

    transform: scale(1);

    transition: transform 1.1s cubic-bezier(.2, .7, .2, 1);
}

.film-video::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.40),
            rgba(0, 0, 0, 0.02) 60%
        );

    pointer-events: none;

    transition: background 0.5s ease;
}

.film-video:hover > video {
    transform: scale(1.035);
}

.film-video:hover::after {
    background: rgba(0, 0, 0, 0.32);
}


/* =========================================================
   19. VIEW FILM BUTTON
   IMPORTANT: THIS BUTTON IS CLICKABLE
   ========================================================= */

button.film-overlay,
.film-overlay {
    position: absolute;

    inset: 0;

    z-index: 5;

    width: 100%;
    height: 100%;

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

    padding: 0;

    border: 0;

    background: transparent;

    opacity: 0;

    cursor: pointer;

    pointer-events: auto;

    transition:
        opacity 0.4s ease,
        background 0.4s ease;
}

.film-overlay span {
    color: #ffffff;

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

    letter-spacing: 5px;

    padding: 17px 24px;

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

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

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    transform: translateY(12px);

    transition:
        transform 0.4s ease,
        background 0.3s ease;
}

.film-video:hover .film-overlay {
    opacity: 1;

    background: rgba(0, 0, 0, 0.30);
}

.film-video:hover .film-overlay span {
    transform: translateY(0);
}


/* =========================================================
   20. FILM INFORMATION
   ========================================================= */

.film-details {
    position: relative;

    display: flex;

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

    padding-top: 30px;
}

.film-details::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 45px;
    height: 1px;

    background: #c99a4b;
}

.film-details h2 {
    color: #f5f1e8;

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

    font-weight: 400;

    letter-spacing: -1px;

    line-height: 1.1;

    margin: 0 0 10px;
}

.film-details p {
    color: #777;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 3px;

    line-height: 1.5;
}

.film-number {
    color: #c99a4b;

    font-size: 10px;

    letter-spacing: 3px;

    padding-top: 8px;
}


/* =========================================================
   21. BACK TO WORK
   ========================================================= */

.back-to-work {
    padding: 20px 8% 130px !important;

    background: #080808;
}

.back-to-work a {
    display: inline-block;

    color: #f5f1e8;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 4px;

    padding-bottom: 9px;

    border-bottom: 1px solid #c99a4b;

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

.back-to-work a:hover {
    color: #c99a4b;

    transform: translateX(-5px);
}


/* =========================================================
   22. VERTICAL CATEGORY VIDEO
   ========================================================= */

.film-video.vertical-video {
    width: min(100%, 500px);

    aspect-ratio: 9 / 16;

    margin-left: auto;
    margin-right: auto;
}

.film-video.vertical-video > video {
    object-fit: cover;
}


/* =========================================================
   23. INTERVIEW HOMEPAGE VIDEO
   ========================================================= */

.project-image.interview-vertical {
    aspect-ratio: 4 / 3;

    background: #111;

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

.project-image.interview-vertical video {
    width: 100%;
    height: 100%;

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


/* =========================================================
   24. FULLSCREEN WEDDING FILM PLAYER
   ========================================================= */

.film-player {
    position: fixed;

    inset: 0;

    z-index: 20000;

    width: 100%;
    height: 100vh;
    height: 100dvh;

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

    padding: 60px;

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

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

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


/* JAVASCRIPT ADDS .active */

.film-player.active {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}


/* ACTUAL FULL WEDDING VIDEO */

.film-player > video {
    position: relative;

    z-index: 20001;

    display: block;

    width: 100%;
    height: auto;

    max-width: 1400px;
    max-height: 85vh;

    object-fit: contain;

    background: #000;
}


/* CLOSE X */

.film-player-close {
    position: absolute;

    top: 25px;
    right: 35px;

    z-index: 20002;

    width: 45px;
    height: 45px;

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

    padding: 0;

    border: 0;

    background: transparent;

    color: #f5f1e8;

    font-size: 42px;
    font-weight: 200;

    line-height: 1;

    cursor: pointer;

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

.film-player-close:hover {
    opacity: 0.6;

    transform: rotate(90deg);
}


/* =========================================================
   25. HAMBURGER MENU
   ========================================================= */

.menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
}


/* =========================================================
   26. TABLET
   ========================================================= */

@media (max-width: 950px) {

    nav {
        height: 110px;
    }

    .logo {
        font-size: 14px;

        letter-spacing: 3px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .hero,
    section,
    .portfolio-hero,
    .film-gallery {
        padding-left: 6%;
        padding-right: 6%;
    }

    .portfolio-hero::after {
        left: 6%;
        right: 6%;
    }

}


/* =========================================================
   27. MOBILE
   ========================================================= */

@media (max-width: 700px) {


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

    nav,
    .wedding-page .subpage-nav {
        height: 82px;

        padding: 0 22px;
    }

    nav {
        z-index: 1000;
    }

    nav.scrolled {
        position: fixed;

        height: 70px;

        padding: 0 22px;
    }

    .logo,
    .wedding-page .subpage-nav .logo {
        font-size: 10px;

        letter-spacing: 3px;
    }

    .nav-links {
        display: none;
    }


    /* =========================
       HAMBURGER
       ========================= */

    .menu-toggle {
        position: relative;

        z-index: 1002;

        width: 34px;
        height: 30px;

        display: flex;

        flex-direction: column;

        justify-content: center;

        gap: 6px;

        padding: 0;

        background: transparent;

        border: none;

        cursor: pointer;
    }

    .menu-toggle span {
        display: block;

        width: 100%;
        height: 1px;

        background: #f5f1e8;

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

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


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

    .mobile-menu {
        position: fixed;

        top: 0;
        left: 0;

        z-index: 1001;

        width: 100%;
        height: 100dvh;

        padding: 125px 25px 35px;

        display: flex;

        flex-direction: column;

        justify-content: space-between;

        background: #090909;

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

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

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }

    .mobile-menu-links {
        display: flex;

        flex-direction: column;
    }

    .mobile-menu-links a {
        display: flex;

        align-items: center;

        gap: 18px;

        color: #f5f1e8;

        text-decoration: none;

        font-size: clamp(38px, 12vw, 58px);

        font-weight: 400;

        line-height: 1;

        letter-spacing: -2px;

        padding: 20px 0;

        border-bottom: 1px solid #222;
    }

    .mobile-menu-links a:first-child {
        border-top: 1px solid #222;
    }

    .mobile-menu-links a span {
        min-width: 25px;

        color: #c99a4b;

        font-size: 8px;

        letter-spacing: 2px;
    }

    .mobile-menu-footer {
        color: #666;

        font-size: 8px;

        line-height: 1.8;

        letter-spacing: 2px;
    }

    body.menu-open {
        overflow: hidden;
    }


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

    .hero {
        width: 100%;

        height: 100svh;
        min-height: 620px;

        padding: 0 22px;

        display: flex;
        align-items: center;
    }

    .hero-video {
        width: 100%;
        height: 100%;
    }

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

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

    .hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.62) 0%,
                rgba(0, 0, 0, 0.22) 100%
            ),
            linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.72) 0%,
                rgba(0, 0, 0, 0.05) 75%
            );
    }

    .hero-content {
        width: 100%;
        max-width: 100%;

        padding-top: 45px;
    }

    .hero .small-title {
        margin-bottom: 22px;

        font-size: 8px;

        letter-spacing: 3px;

        line-height: 1.5;
    }

    .hero h1 {
        max-width: 100%;

        font-size: clamp(52px, 16vw, 76px);

        line-height: 0.88;

        letter-spacing: -3px;
    }

    .tagline {
        margin-top: 25px;

        font-size: 11px;

        letter-spacing: 2px;

        line-height: 1.5;
    }

    .view-work {
        margin-top: 38px;

        padding-bottom: 7px;

        font-size: 8px;

        letter-spacing: 3px;
    }


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

    section {
        padding: 80px 22px;
    }

    .section-number {
        margin-bottom: 15px;

        font-size: 9px;
    }

    section h2 {
        margin-bottom: 45px;

        font-size: 43px;

        letter-spacing: -2px;
    }


    /* =========================
       PROJECT GRID
       ========================= */

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

        gap: 55px;
    }

    .project {
        width: 100%;
    }

    .project-image {
        width: 100%;

        aspect-ratio: 4 / 3;

        margin-bottom: 17px;
    }

    .project-image video {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    .project-hover {
        display: none;
    }

    .project-info {
        gap: 15px;
    }

    .project h3 {
        margin-bottom: 6px;

        font-size: 12px;

        letter-spacing: 2px;
    }

    .project p {
        font-size: 11px;

        line-height: 1.5;
    }

    .project-number {
        font-size: 9px;
    }


    /* =========================
       INTERVIEW PORTRAIT PREVIEW
       ========================= */

    .project-image.interview-vertical {
        width: min(100%, 420px);

        aspect-ratio: 9 / 16;

        margin-left: auto;
        margin-right: auto;
    }

    .project-image.interview-vertical video {
        object-fit: cover;
    }


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

    .about {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .about-text {
        max-width: 100%;

        font-size: 27px;

        line-height: 1.3;

        letter-spacing: -0.5px;
    }


    /* =========================
       SERVICES
       ========================= */

    .service-list p {
        padding: 20px 0;

        font-size: 28px;

        line-height: 1.15;
    }

    .service-list p:hover {
        padding-left: 0;
    }


    /* =========================
       CONTACT
       ========================= */

    .contact {
        min-height: 65vh;

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

    .contact-small {
        font-size: 8px;

        letter-spacing: 3px;
    }

    .contact h2 {
        margin: 25px 0 40px;

        font-size: clamp(52px, 16vw, 78px);

        line-height: 0.88;

        letter-spacing: -3px;
    }

    .contact-link {
        font-size: 9px;

        letter-spacing: 3px;
    }


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

    footer {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

        padding: 30px 22px;

        font-size: 8px;

        line-height: 1.5;
    }


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

    .portfolio-hero {
        min-height: 60vh;

        padding: 125px 22px 55px;
    }

    .portfolio-hero::after {
        left: 22px;
        right: 22px;
    }

    .portfolio-hero .small-title {
        margin-bottom: 20px;

        font-size: 8px;

        letter-spacing: 3px;
    }

    .portfolio-hero h1 {
        font-size: clamp(52px, 16vw, 80px);

        line-height: 0.88;

        letter-spacing: -3px;

        overflow-wrap: normal;
        word-break: normal;
    }

    .portfolio-intro {
        max-width: 300px;

        margin-top: 25px;

        font-size: 11px;

        letter-spacing: 1.5px;

        line-height: 1.6;
    }


    /* =========================
       CATEGORY FILMS
       ========================= */

    .film-gallery {
        padding: 65px 22px 20px;
    }

    .film-item {
        width: 100%;

        margin-bottom: 80px;
    }

    .film-video {
        width: 100%;

        aspect-ratio: 4 / 3;
    }

    .film-video > video {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }


    /* IMPORTANT:
       VIEW FILM REMAINS VISIBLE ON PHONE */

    button.film-overlay,
    .film-video .film-overlay {
        display: flex;

        opacity: 1;

        pointer-events: auto;

        background: rgba(0, 0, 0, 0.15);
    }

    .film-overlay span {
        padding: 14px 18px;

        font-size: 9px;

        letter-spacing: 3px;

        transform: translateY(0);
    }


    /* =========================
       FILM INFORMATION
       ========================= */

    .film-details {
        padding-top: 22px;
    }

    .film-details::before {
        width: 35px;
    }

    .film-details h2 {
        margin-bottom: 8px;

        font-size: 23px;

        line-height: 1.1;
    }

    .film-details p {
        font-size: 8px;

        letter-spacing: 2px;
    }

    .film-number {
        padding-top: 5px;

        font-size: 8px;
    }


    /* =========================
       BACK BUTTON
       ========================= */

    .back-to-work {
        padding: 10px 22px 80px !important;
    }

    .back-to-work a {
        font-size: 8px;

        letter-spacing: 3px;
    }


    /* =========================
       VERTICAL CATEGORY VIDEO
       ========================= */

    .film-video.vertical-video {
        width: min(100%, 420px);

        aspect-ratio: 9 / 16;

        margin-left: auto;
        margin-right: auto;
    }


    /* =========================
       WEDDING FULLSCREEN PLAYER
       ========================= */

    .film-player {
        padding: 55px 12px 25px;
    }

    .film-player > video {
        width: 100%;
        height: auto;

        max-width: 100%;
        max-height: 82vh;

        object-fit: contain;
    }

    .film-player-close {
        top: 10px;
        right: 12px;

        width: 40px;
        height: 40px;

        font-size: 36px;
    }

}