/* =========================================================
   SILVER SCREEN
   PREMIUM CINEMATIC PORTFOLIO
========================================================= */


/* =========================================================
   IMPORTS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: #f5f5f5;
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

section {
    position: relative;
}

.small {
    font-size: 11px;
    letter-spacing: 4px;
    color: #888;
    font-weight: 600;
}


/* =========================================================
   CINEMATIC GRAIN
========================================================= */

body::before {
    content: "";

    position: fixed;
    inset: 0;

    pointer-events: none;
    z-index: 1000;

    opacity: .035;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.7'/%3E%3C/svg%3E");
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    padding: 0 6vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 999;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.8),
            rgba(0,0,0,0)
        );

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}


/* LOGO */

.logo {
    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;

    letter-spacing: -1px;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease,
        border .35s ease;
}

.logo:hover {
    background: #fff;
    color: #000;

    border-color: #fff;

    transform: rotate(8deg) scale(1.08);
}


/* NAV LINKS */

.nav-links {
    display: flex;
    align-items: center;

    gap: 42px;
}

.nav-links a {
    position: relative;

    color: #888;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;

    transition:
        color .35s ease,
        transform .35s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -10px;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #fff;

    transform:
        translateX(-50%)
        scale(0);

    transition: transform .35s ease;
}

.nav-links a:hover {
    color: #fff;

    transform: translateY(-4px);
}

.nav-links a:hover::after {
    transform:
        translateX(-50%)
        scale(1);
}


/* =========================================================
   PARTICLES
========================================================= */

.particles {
    position: fixed;

    inset: 0;

    z-index: 0;

    pointer-events: none;

    opacity: .35;

    background-image:
        radial-gradient(
            circle,
            rgba(255,255,255,.45) 1px,
            transparent 1px
        );

    background-size: 140px 140px;

    animation: particlesMove 20s linear infinite;
}

@keyframes particlesMove {

    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-70px, -90px, 0);
    }
}


/* =========================================================
   HOME
========================================================= */

#scene {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding: 130px 8vw;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 50%,
            rgba(255,255,255,.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 20% 85%,
            rgba(255,255,255,.035),
            transparent 32%
        ),
        #050505;
}


/* HERO CONTENT */

.content {
    position: relative;

    z-index: 5;

    max-width: 680px;
}

.content .small {
    margin-bottom: 28px;
}

.content h1 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(75px, 12vw, 170px);

    line-height: .78;

    letter-spacing: -9px;

    font-weight: 800;

    margin-bottom: 38px;
}

.content h1 span {
    color: transparent;

    -webkit-text-stroke: 1px rgba(255,255,255,.65);
}

.role {
    font-size: 12px;

    letter-spacing: 5px;

    color: #aaa;

    margin-bottom: 20px;
}

.hero-description {
    max-width: 430px;

    color: #777;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   3D CAMERA
========================================================= */

.camera {
    position: absolute;

    width: 440px;
    height: 310px;

    right: 7%;
    top: 50%;

    z-index: 3;

    transform:
        translateY(-50%)
        perspective(1000px)
        rotateY(-18deg)
        rotateX(5deg);

    transform-style: preserve-3d;

    pointer-events: none;
}


/* CAMERA BODY */

.camera-body {
    position: absolute;

    width: 355px;
    height: 220px;

    left: 55px;
    top: 45px;

    border-radius: 25px;

    background:
        linear-gradient(
            145deg,
            #3b3b3b 0%,
            #202020 38%,
            #0c0c0c 100%
        );

    border: 1px solid rgba(255,255,255,.16);

    box-shadow:
        25px 35px 65px rgba(0,0,0,.85),
        inset 0 1px 1px rgba(255,255,255,.2),
        inset 0 -20px 30px rgba(0,0,0,.4);

    transform-style: preserve-3d;
}


/* CAMERA TOP */

.camera-top {
    position: absolute;

    width: 120px;
    height: 37px;

    top: -28px;
    left: 38px;

    border-radius: 11px 11px 4px 4px;

    background:
        linear-gradient(
            180deg,
            #303030,
            #111
        );

    border: 1px solid rgba(255,255,255,.13);

    box-shadow:
        inset 0 1px rgba(255,255,255,.12);
}


/* CAMERA BODY DETAIL */

.camera-body::before {
    content: "";

    position: absolute;

    width: 55px;
    height: 8px;

    right: 25px;
    bottom: 25px;

    border-radius: 10px;

    background: #101010;

    box-shadow:
        0 -15px 0 rgba(255,255,255,.035);
}


/* CAMERA BRAND */

.camera-body::after {
    content: "SILVER SCREEN";

    position: absolute;

    top: 25px;
    right: 25px;

    color: #777;

    font-size: 7px;
    font-weight: 600;

    letter-spacing: 3px;
}


/* CAMERA STATUS LIGHT */

.camera-top::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    right: 10px;
    top: 14px;

    border-radius: 50%;

    background: #777;

    box-shadow:
        0 0 12px rgba(255,255,255,.3);
}


/* =========================================================
   CAMERA LENS
========================================================= */

.lens {
    position: absolute;

    width: 160px;
    height: 160px;

    left: -70px;
    top: 30px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #020202 0 18%,
            #222 19% 27%,
            #050505 28% 43%,
            #303030 44% 50%,
            #080808 51% 69%,
            #242424 70% 76%,
            #050505 77%
        );

    border: 8px solid #151515;

    box-shadow:
        0 0 0 1px rgba(255,255,255,.18),
        15px 20px 45px rgba(0,0,0,.85),
        inset 0 0 30px rgba(255,255,255,.08);

    transform:
        translateZ(25px);

    transform-style: preserve-3d;
}


/* LENS GLASS */

.lens::after {
    content: "";

    position: absolute;

    inset: 22px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(255,255,255,.28),
            transparent 8%
        ),
        radial-gradient(
            circle at 65% 65%,
            rgba(255,255,255,.04),
            transparent 35%
        ),
        #010101;

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        inset 0 0 28px rgba(255,255,255,.12);
}


/* INNER LENS */

.lens-inner {
    position: absolute;

    z-index: 5;

    width: 38px;
    height: 38px;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    transform:
        translate(-50%, -50%)
        translateZ(12px);

    background:
        radial-gradient(
            circle at 35% 30%,
            #333,
            #000 58%
        );

    border: 1px solid rgba(255,255,255,.18);

    box-shadow:
        0 0 20px rgba(255,255,255,.08),
        inset 0 0 12px rgba(255,255,255,.12);
}


/* =========================================================
   WORK
========================================================= */

#work {
    min-height: 100vh;

    padding: 150px 8vw;

    background: #070707;
}


/* SECTION HEADING */

.section-heading {
    display: grid;

    grid-template-columns: 100px 1fr;

    gap: 35px;

    margin-bottom: 90px;
}

.section-number {
    color: #555;

    font-size: 12px;

    letter-spacing: 2px;
}

.section-heading h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(65px, 9vw, 130px);

    line-height: .82;

    letter-spacing: -7px;

    font-weight: 800;
}

.section-heading h2 span {
    color: transparent;

    -webkit-text-stroke: 1px #777;
}

.section-text {
    max-width: 520px;

    margin-top: 35px;

    color: #777;

    font-size: 14px;

    line-height: 1.8;
}


/* WORK GRID */

.work-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}


/* WORK CARD */

.work-card {
    position: relative;

    height: 430px;

    overflow: hidden;

    border-radius: 20px;

    background:
        radial-gradient(
            circle at 75% 25%,
            #303030,
            transparent 25%
        ),
        linear-gradient(
            145deg,
            #191919,
            #050505
        );

    border: 1px solid rgba(255,255,255,.09);

    cursor: pointer;

    transform-style: preserve-3d;

    transition:
        border .4s ease,
        box-shadow .4s ease;
}

.work-card:hover {
    border-color: rgba(255,255,255,.3);

    box-shadow:
        0 30px 70px rgba(0,0,0,.55);
}


/* LIGHT SWEEP */

.work-card::before {
    content: "";

    position: absolute;

    inset: -50%;

    background:
        linear-gradient(
            120deg,
            transparent 35%,
            rgba(255,255,255,.09),
            transparent 65%
        );

    transform:
        translateX(-60%)
        rotate(10deg);

    transition: .8s ease;
}

.work-card:hover::before {
    transform:
        translateX(60%)
        rotate(10deg);
}


/* DARK GRADIENT */

.work-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.92),
            transparent 60%
        );
}


/* PROJECT NUMBER */

.project-number {
    position: absolute;

    top: 25px;
    right: 25px;

    z-index: 5;

    color: #777;

    font-size: 11px;

    letter-spacing: 2px;
}


/* WORK OVERLAY */

.work-overlay {
    position: absolute;

    inset: 0;

    z-index: 6;

    transform: translateZ(30px);
}


/* WORK INFO */

.work-info {
    position: absolute;

    left: 30px;
    bottom: 30px;
}

.work-info p {
    color: #888;

    font-size: 10px;

    letter-spacing: 3px;

    margin-bottom: 13px;
}

.work-info h3 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(32px, 4vw, 55px);

    line-height: .9;

    letter-spacing: -3px;

    margin-bottom: 18px;
}

.work-info span {
    color: #666;

    font-size: 10px;

    letter-spacing: 2px;
}


/* PLAY BUTTON */

.play-icon {
    position: absolute;

    right: 30px;
    bottom: 30px;

    width: 60px;
    height: 60px;

    border: 1px solid rgba(255,255,255,.3);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;

    transition:
        background .4s ease,
        color .4s ease,
        transform .4s ease;
}

.work-card:hover .play-icon {
    background: #fff;

    color: #000;

    transform:
        scale(1.12)
        rotate(10deg);
}


/* =========================================================
   ABOUT
========================================================= */

#about {
    background: #050505;

    padding-bottom: 150px;
}


/* ABOUT HERO */

.about-hero {
    min-height: 80vh;

    padding: 150px 8vw;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    border-bottom: 1px solid rgba(255,255,255,.08);

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255,255,255,.07),
            transparent 30%
        );
}

.about-meta {
    display: flex;

    justify-content: space-between;

    margin-bottom: 80px;

    color: #555;

    font-size: 10px;

    letter-spacing: 3px;
}

.about-hero h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(70px, 12vw, 170px);

    line-height: .78;

    letter-spacing: -9px;

    font-weight: 800;
}

.about-hero h2 span {
    color: transparent;

    -webkit-text-stroke: 1px #888;
}


/* =========================================================
   ABOUT INTRO
========================================================= */

.about-intro {
    display: grid;

    grid-template-columns: 25% 1fr;

    gap: 50px;

    padding: 140px 8vw;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.about-label p {
    color: #666;

    font-size: 10px;

    letter-spacing: 3px;
}

.about-copy {
    max-width: 800px;
}

.about-lead {
    font-family: "Manrope", sans-serif;

    max-width: 750px;

    color: #eee !important;

    font-size: clamp(30px, 4vw, 55px);

    line-height: 1.1;

    letter-spacing: -2px;

    margin-bottom: 50px;
}

.about-copy > p:not(.about-lead) {
    max-width: 700px;

    color: #777;

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 28px;
}


/* =========================================================
   CREATIVE PROCESS
========================================================= */

.creative-section {
    display: grid;

    grid-template-columns: 40% 1fr;

    gap: 80px;

    padding: 140px 8vw;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.creative-title > p {
    color: #666;

    font-size: 10px;

    letter-spacing: 3px;
}

.creative-title h3 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(40px, 5vw, 75px);

    line-height: .9;

    letter-spacing: -4px;

    margin-top: 30px;
}

.creative-title h3 span {
    color: transparent;

    -webkit-text-stroke: 1px #777;
}


/* PROCESS LIST */

.process-list {
    border-top: 1px solid rgba(255,255,255,.12);
}

.process-item {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 30px;

    padding: 35px 0;

    border-bottom: 1px solid rgba(255,255,255,.1);

    transition:
        padding .4s ease,
        background .4s ease;
}

.process-item:hover {
    padding-left: 15px;
}

.process-item > span {
    color: #555;

    font-size: 11px;
}

.process-item h4 {
    font-family: "Manrope", sans-serif;

    font-size: 20px;

    letter-spacing: 1px;

    margin-bottom: 10px;
}

.process-item p {
    max-width: 500px;

    color: #666;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   EQUIPMENT
========================================================= */

.equipment-section {
    padding: 140px 8vw;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.equipment-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 70px;
}

.equipment-header p {
    color: #666;

    font-size: 10px;

    letter-spacing: 3px;
}

.equipment-header h3 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(45px, 6vw, 90px);

    line-height: .85;

    letter-spacing: -5px;

    margin-top: 25px;
}

.equipment-header h3 span {
    color: transparent;

    -webkit-text-stroke: 1px #777;
}

.equipment-intro {
    max-width: 350px;

    color: #666 !important;

    font-size: 13px !important;

    line-height: 1.8;

    letter-spacing: normal !important;
}


/* EQUIPMENT GRID */

.equipment-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255,255,255,.12);
    border-left: 1px solid rgba(255,255,255,.12);
}


/* EQUIPMENT CARD */

.equipment-card {
    position: relative;

    min-height: 230px;

    padding: 30px;

    overflow: hidden;

    border-right: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);

    transition:
        background .4s ease,
        transform .4s ease;
}

.equipment-card::before {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    background: rgba(255,255,255,.05);

    filter: blur(25px);

    transition: .5s ease;
}

.equipment-card:hover {
    background: #0d0d0d;

    transform: translateY(-5px);
}

.equipment-card:hover::before {
    transform: scale(1.8);
}


/* EQUIPMENT NUMBER */

.equipment-card > span {
    display: block;

    color: #555;

    font-size: 10px;

    margin-bottom: 35px;
}


/* EQUIPMENT TYPE */

.equipment-card small {
    color: #666;

    font-size: 9px;

    letter-spacing: 3px;
}


/* EQUIPMENT TITLE */

.equipment-card h4 {
    position: relative;

    z-index: 2;

    font-family: "Manrope", sans-serif;

    font-size: 20px;

    letter-spacing: -1px;

    margin: 12px 0;
}


/* EQUIPMENT DESCRIPTION */

.equipment-card p {
    position: relative;

    z-index: 2;

    max-width: 220px;

    color: #666;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   ABOUT STATEMENT
========================================================= */

.about-statement {
    min-height: 70vh;

    padding: 150px 8vw;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.06),
            transparent 45%
        );
}

.about-statement p {
    color: #666;

    font-size: 10px;

    letter-spacing: 5px;

    margin-bottom: 35px;
}

.about-statement h3 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(50px, 9vw, 125px);

    line-height: .82;

    letter-spacing: -7px;
}

.about-statement h3 span {
    color: transparent;

    -webkit-text-stroke: 1px #777;
}


/* =========================================================
   CONTACT
========================================================= */

#contact {
    min-height: 100vh;

    padding: 150px 8vw;

    display: flex;

    align-items: center;

    background:
        radial-gradient(
            circle at 70% 50%,
            rgba(255,255,255,.08),
            transparent 30%
        ),
        #070707;
}

.contact-container {
    width: 100%;

    display: grid;

    grid-template-columns: 100px 1fr;

    gap: 40px;
}

.contact-number {
    color: #555;

    font-size: 12px;

    letter-spacing: 2px;
}

.contact-content h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(70px, 11vw, 160px);

    line-height: .8;

    letter-spacing: -8px;

    margin: 30px 0 45px;
}

.contact-content h2 span {
    color: transparent;

    -webkit-text-stroke: 1px #777;
}

.contact-text {
    max-width: 500px;

    color: #777;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 45px;
}


/* CONTACT BUTTONS */

.contact-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.contact-btn {
    min-height: 55px;

    padding: 0 28px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.25);

    font-size: 10px;

    letter-spacing: 2px;

    transition:
        background .4s ease,
        color .4s ease,
        transform .4s ease,
        border .4s ease;
}

.contact-btn:hover {
    background: #fff;

    color: #000;

    border-color: #fff;

    transform: translateY(-5px);
}

.contact-btn.secondary {
    color: #999;

    border-color: rgba(255,255,255,.1);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    padding: 80px 8vw 30px;

    background: #030303;

    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-top {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    padding-bottom: 80px;
}

.footer-brand {
    display: flex;

    align-items: center;

    gap: 20px;
}

.footer-logo {
    width: 55px;
    height: 55px;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-family: "Manrope", sans-serif;

    font-weight: 800;
}

.footer-brand h3 {
    font-family: "Manrope", sans-serif;

    font-size: 28px;

    letter-spacing: -1px;
}

.footer-top > p {
    color: #555;

    font-size: 9px;

    line-height: 1.8;

    letter-spacing: 2px;

    text-align: right;
}


/* FOOTER BOTTOM */

.footer-bottom {
    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.08);

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.footer-bottom p,
.footer-bottom a {
    color: #555;

    font-size: 9px;

    letter-spacing: 2px;
}

.footer-bottom a {
    transition: color .3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .camera {
        right: -80px;

        opacity: .55;

        transform:
            translateY(-50%)
            scale(.8)
            perspective(1000px)
            rotateY(-18deg)
            rotateX(5deg);
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .creative-section {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-intro {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 650px) {

    /* NAV */

    .navbar {
        height: 75px;

        padding: 0 6vw;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .nav-links {
        gap: 14px;
    }

    .nav-links a {
        font-size: 8px;

        letter-spacing: 1.5px;
    }


    /* HOME */

    #scene {
        min-height: 100svh;

        padding: 120px 7vw;
    }

    .content h1 {
        font-size: 70px;

        letter-spacing: -5px;
    }

    .role {
        font-size: 9px;

        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 13px;

        max-width: 300px;
    }


    /* CAMERA */

    .camera {
        width: 350px;
        height: 250px;

        right: -155px;
        top: 64%;

        opacity: .4;

        transform:
            translateY(-50%)
            scale(.68)
            perspective(1000px)
            rotateY(-18deg)
            rotateX(5deg);
    }


    /* WORK */

    #work {
        padding: 110px 7vw;
    }

    .section-heading {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .section-heading h2 {
        font-size: 65px;

        letter-spacing: -5px;
    }

    .work-card {
        height: 350px;
    }


    /* ABOUT HERO */

    .about-hero {
        min-height: 75vh;

        padding: 120px 7vw;
    }

    .about-meta {
        margin-bottom: 60px;
    }

    .about-hero h2 {
        font-size: 65px;

        letter-spacing: -5px;
    }


    /* ABOUT */

    .about-intro,
    .creative-section,
    .equipment-section {
        padding: 100px 7vw;
    }

    .about-lead {
        font-size: 32px;

        letter-spacing: -1.5px;
    }


    /* EQUIPMENT */

    .equipment-header {
        display: block;
    }

    .equipment-intro {
        margin-top: 35px;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .equipment-card {
        min-height: 200px;
    }


    /* ABOUT STATEMENT */

    .about-statement {
        min-height: 60vh;

        padding: 100px 7vw;
    }

    .about-statement h3 {
        font-size: 55px;

        letter-spacing: -5px;
    }


    /* CONTACT */

    #contact {
        padding: 120px 7vw;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-content h2 {
        font-size: 65px;

        letter-spacing: -5px;
    }

    .contact-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .contact-btn {
        width: 100%;
    }


    /* FOOTER */

    footer {
        padding: 70px 7vw 25px;
    }

    .footer-top {
        display: block;

        padding-bottom: 50px;
    }

    .footer-top > p {
        margin-top: 30px;

        text-align: left;
    }

    .footer-bottom {
        display: grid;

        gap: 15px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;
    }
}/* ===== CINEMATIC SCROLL REVEAL ===== */

.reveal-hidden {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(8px);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.9s ease;
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}/* ===============================
   VIDEO POPUP
================================ */

.video-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.92);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    z-index: 99999;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;

    backdrop-filter: blur(12px);
}


.video-modal.active {
    opacity: 1;
    visibility: visible;
}


.video-box {
    position: relative;

    width: min(90vw, 1100px);
    max-height: 90vh;

    transform: scale(0.85);

    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


.video-modal.active .video-box {
    transform: scale(1);
}


.video-box video {
    display: block;

    width: 100%;
    max-height: 85vh;

    object-fit: contain;

    background: #000;

    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.8);
}


.video-close {
    position: absolute;

    top: -55px;
    right: 0;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.3);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: white;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    z-index: 10;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.video-close:hover {
    background: rgba(255, 255, 255, 0.18);

    transform: rotate(90deg);
}


.work-card {
    cursor: pointer;
}


@media (max-width: 700px) {

    .video-box {
        width: 94vw;
    }

    .video-box video {
        max-height: 75vh;
    }

    .video-close {
        top: -50px;
    }

}