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

:root {
    --bg: #070707;
    --panel: #101010;
    --text: #f5f5f5;
    --muted: #999;
    --line: #262626
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden
}

body:before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 75% 15%, rgba(255, 255, 255, .07), transparent 28%), radial-gradient(circle at 15% 75%, rgba(255, 255, 255, .04), transparent 25%);
    pointer-events: none;
    z-index: -2
}

.noise {
    position: fixed;
    inset: 0;
    opacity: .035;
    pointer-events: none;
    z-index: 20;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E")
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 78px;
    padding: 0 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 15;
    background: linear-gradient(180deg, rgba(7, 7, 7, .95), rgba(7, 7, 7, 0))
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600
}

.nav nav {
    display: flex;
    gap: 32px;
    font-size: 13px;
    color: #aaa
}

.nav nav a:hover {
    color: #fff
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    font-size: 24px
}

.hero {
    min-height: 100vh;
    padding: 140px 8vw 80px;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    align-items: center;
    gap: 50px
}

.eyebrow {
    font-size: 10px;
    letter-spacing: .18em;
    color: #666;
    margin-bottom: 25px
}

.hero h1 {
    font-size: clamp(48px, 8vw, 105px);
    line-height: .92;
    letter-spacing: -.055em;
    max-width: 900px
}

.hero h1 em,
.contact h2 em {
    font-family: Georgia, serif;
    font-weight: 400
}

.hero-text {
    max-width: 560px;
    color: #777;
    line-height: 1.7;
    margin: 30px 0
}

.btn {
    display: inline-block;
    border: 1px solid #444;
    padding: 15px 22px;
    border-radius: 30px;
    font-size: 12px;
    transition: .3s
}

.btn:hover {
    background: #fff;
    color: #000
}

/* =========================================
   CREATIVE EDITING CARD
========================================= */

.glass-card {
    height: 460px;
    border: 1px solid #333;
    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, .10),
            rgba(255, 255, 255, .015)
        );

    backdrop-filter: blur(14px);

    padding: 28px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    position: relative;
    overflow: hidden;

    transform: rotateY(-14deg) rotateX(7deg);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .8);

    transition: transform .5s ease;
}


/* subtle light */

.glass-card::before {
    content: "";
    position: absolute;

    width: 180px;
    height: 180px;

    top: -80px;
    right: -60px;

    background: radial-gradient(
        circle,
        rgba(255,255,255,.12),
        transparent 70%
    );

    pointer-events: none;
}


/* top information */

.card-top {
    display: flex;
    justify-content: space-between;

    color: #666;

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


/* main content */

.card-content {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* RAW → FINAL */

.raw-final {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 22px;

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

    color: #777;
}

.raw-final .arrow {
    color: #aaa;
    font-size: 14px;
}


/* play button */

.play-circle {
    position: absolute;

    right: 5px;
    top: 0;

    width: 58px;
    height: 58px;

    border: 1px solid #444;
    border-radius: 50%;

    display: grid;
    place-items: center;

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

    transition: .35s ease;
}

.play-circle span {
    font-size: 15px;
    margin-left: 2px;
    color: #fff;
}

.glass-card:hover .play-circle {
    transform: scale(1.12);
    background: rgba(255,255,255,.10);
}


/* CREATE IMPACT */

.glass-card strong {
    font-size: clamp(42px, 5vw, 68px);

    line-height: .85;

    letter-spacing: -.055em;

    font-weight: 600;
}

.glass-card strong em {
    font-family: Georgia, serif;
    font-weight: 400;
    color: #aaa;
}


/* timeline */

.timeline {
    width: 100%;
    margin-top: 15px;
}


.timeline-label {
    display: flex;
    justify-content: space-between;

    color: #555;

    font-size: 8px;

    letter-spacing: .16em;

    margin-bottom: 9px;
}


/* timeline line */

.timeline-track {
    height: 38px;

    display: flex;

    gap: 3px;

    border-top: 1px solid #333;
    border-bottom: 1px solid #333;

    padding: 6px 0;
}


/* video clips */

.clip {
    height: 100%;

    border-radius: 3px;

    background:
        linear-gradient(
            90deg,
            #222,
            #555,
            #292929
        );

    position: relative;

    overflow: hidden;
}


/* fake video frames */

.clip::after {
    content: "";

    position: absolute;

    inset: 5px;

    border-left: 1px solid #777;
    border-right: 1px solid #444;

    opacity: .4;
}


.clip-1 {
    width: 18%;
}

.clip-2 {
    width: 25%;
}

.clip-3 {
    width: 13%;
}

.clip-4 {
    width: 22%;
}

.clip-5 {
    width: 22%;
}


/* editing labels */

.timeline-tools {
    display: flex;

    gap: 18px;

    margin-top: 9px;

    color: #555;

    font-size: 8px;

    letter-spacing: .15em;
}


/* bottom */

.glass-card > small {
    color: #666;

    font-size: 9px;

    letter-spacing: .2em;
}


/* hover */

.glass-card:hover {
    transform:
        rotateY(-8deg)
        rotateX(4deg)
        translateY(-8px);
}

.glass-card span,
.glass-card small {
    color: #777;
    font-size: 10px;
    letter-spacing: .2em
}

.glass-card strong {
    font-size: clamp(40px, 5vw, 70px);
    line-height: .85;
    letter-spacing: -.05em
}

.section {
    padding: 120px 8vw;
    border-top: 1px solid var(--line)
}

.section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 70px
}

.section h2 {
    font-size: clamp(40px, 6vw, 80px);
    line-height: .95;
    letter-spacing: -.05em
}

.section-head p {
    color: #777;
    line-height: 1.8;
    max-width: 550px
}

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

.stats div {
    padding: 35px 0;
    border-bottom: 1px solid var(--line)
}

.stats div+div {
    padding-left: 30px;
    border-left: 1px solid var(--line)
}

.stats b {
    display: block;
    font-size: 50px
}

.stats span {
    color: #666;
    font-size: 12px
}

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

.service {
    padding: 38px 25px 42px 0;
    border-bottom: 1px solid var(--line);
    transition: .35s;
    position: relative
}

.service:nth-child(even) {
    padding-left: 25px;
    border-left: 1px solid var(--line)
}

.service:last-child {
    grid-column: 1/-1
}

.service span {
    color: #555;
    font-size: 10px;
    letter-spacing: .15em
}

.service h3 {
    font-size: clamp(28px, 3vw, 43px);
    margin: 32px 0 14px
}

.service p {
    color: #777;
    line-height: 1.7;
    max-width: 600px
}

.service:hover {
    transform: translateX(8px);
    background: #0b0b0b
}

.service:hover h3 {
    color: #fff
}

.contact-links a {
    font-size: 20px;
    color: #aaa
}

.contact-links a:hover {
    color: #fff
}

footer {
    padding: 30px 8vw;
    border-top: 1px solid var(--line);
    color: #555;
    font-size: 11px
}

.cursor-glow {
    position: fixed;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .07), transparent 65%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: .8s
}

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

.service-page {
    padding: 140px 8vw 100px
}

.back {
    color: #777;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 50px
}

.back:hover {
    color: #fff
}

.service-hero {
    border-bottom: 1px solid var(--line);
    padding-bottom: 70px;
    margin-bottom: 70px
}

.service-hero h1 {
    font-size: clamp(55px, 9vw, 120px);
    line-height: .9;
    letter-spacing: -.06em
}

.service-hero p {
    max-width: 650px;
    color: #777;
    line-height: 1.7;
    margin-top: 30px
}

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

.project-card {
    background: #0d0d0d;
    border: 1px solid #292929;
    border-radius: 18px;
    overflow: hidden;
    transition: .35s
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: #555
}

.project-video {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    display: block;
    background: #050505
}

.project-info {
    padding: 22px
}

.project-info span {
    font-size: 10px;
    color: #666;
    letter-spacing: .15em
}

.project-info h2 {
    font-size: 23px;
    margin-top: 10px
}

.service-contact {
    margin-top: 100px;
    padding-top: 50px;
    border-top: 1px solid var(--line)
}

@media(max-width:800px) {
    .nav nav {
        display: none
    }

    .nav nav.open {
        display: flex;
        position: absolute;
        top: 70px;
        left: 6vw;
        right: 6vw;
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        background: #0d0d0d;
        border: 1px solid #333
    }

    .menu-btn {
        display: block
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 120px
    }

   .glass-card {
    height: 360px;
    padding: 24px;
    transform: none;
}

.glass-card:hover {
    transform: translateY(-5px);
}

.glass-card strong {
    font-size: 48px;
}

.play-circle {
    width: 50px;
    height: 50px;
}
    .section-head {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .stats {
        grid-template-columns: 1fr
    }

    .stats div+div {
        padding-left: 0;
        border-left: 0
    }

    .service-grid,
    .project-grid {
        grid-template-columns: 1fr
    }

    .service:nth-child(even) {
        padding-left: 0;
        border-left: 0
    }

    .service:last-child {
        grid-column: auto
    }

    .project-card {
        max-width: 420px;
        margin: auto
    }

    .intro-image {
    max-width: 300px;
    margin-top: 30px;
    }

    .intro-image img {
    height: 360px;
    }
}

/* =========================================
   LOGO
========================================= */

.brand img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}


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

.intro-image {
    width: 100%;
    max-width: 360px;
    margin-top: 35px;
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 430px;
    display: block;

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

    border-radius: 20px;
    border: 1px solid #292929;

    filter: grayscale(100%);
    transition: .5s ease;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .5);
}

.intro-image img:hover {
    filter: grayscale(0%);
    transform: translateY(-6px);
    border-color: #555;
}


/* =========================================
   EYE-CATCHING CONTACT SECTION
   ONLY CONTACT SECTION
========================================= */

.contact {
    position: relative;
    overflow: hidden;
}

/* Top */

.contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;
}

.contact-header .eyebrow {
    margin-bottom: 0;
}

.contact-status {
    font-size: 9px;
    letter-spacing: .16em;
    color: #777;
}

.contact-status::first-letter {
    color: #aaa;
}

/* Main layout */

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Heading */

.contact-title h2 {
    font-size: clamp(48px, 6vw, 85px);
    line-height: .9;
    letter-spacing: -.055em;
    margin-bottom: 30px;
}

.contact-title h2 em {
    font-family: Georgia, serif;
    font-weight: 400;
    color: #aaa;
}

.contact-title p {
    max-width: 430px;
    color: #666;
    line-height: 1.8;
    font-size: 13px;
}

/* Contact links */

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #292929;
}

/* Individual item */

.contact-item {
    display: grid;
    grid-template-columns: 45px 1fr 35px;
    align-items: center;
    gap: 15px;

    padding: 24px 0;

    border-bottom: 1px solid #292929;

    color: #aaa;

    transition:
        background .35s ease,
        padding .35s ease,
        color .35s ease;
}

.contact-number {
    font-size: 9px;
    letter-spacing: .15em;
    color: #555;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact-item small {
    font-size: 8px;
    letter-spacing: .18em;
    color: #555;
}

.contact-item strong {
    font-size: 15px;
    font-weight: 500;
    color: #aaa;
}

.contact-arrow {
    font-size: 20px;
    color: #555;
    transition: .35s ease;
}

/* Hover */

.contact-item:hover {
    padding-left: 15px;
    padding-right: 15px;
    background: rgba(255, 255, 255, .035);
    color: #fff;
}

.contact-item:hover strong {
    color: #fff;
}

.contact-item:hover .contact-arrow {
    color: #fff;
    transform: translate(4px, -4px);
}

.contact-item:hover .contact-number,
.contact-item:hover small {
    color: #777;
}

/* Bottom line */

.contact-bottom {
    margin-top: 90px;
    padding-top: 20px;

    border-top: 1px solid #292929;

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

    color: #444;

    font-size: 8px;
    letter-spacing: .18em;
}

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

@media(max-width:800px) {

    .contact-header {
        margin-bottom: 50px;
    }

    .contact-status {
        font-size: 8px;
    }

    .contact-main {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-title h2 {
        font-size: 52px;
    }

    .contact-title p {
        font-size: 12px;
    }

    .contact-item {
        grid-template-columns: 35px 1fr 25px;
    }

    .contact-item strong {
        font-size: 13px;
        word-break: break-word;
    }

    .contact-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 60px;
    }
}


/* =========================================
   INSTAGRAM REEL STYLE VIDEO
   ONLY VIDEO FULLSCREEN STYLE
========================================= */

/* Vertical videos */

.project-video {
    background: #000;
}

/* When video enters fullscreen */

.project-video:fullscreen {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    background: #000;
}

/* Chrome / Edge / Firefox */

.project-video:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    background: #000;
}

/* Vertical Reel */

.reel-video:fullscreen {
    width: auto;
    height: 100vh;
    max-width: 100vw;
    object-fit: contain;
    margin: auto;
    display: block;
    background: #000;
}

.reel-video:-webkit-full-screen {
    width: auto;
    height: 100vh;
    max-width: 100vw;
    object-fit: contain;
    margin: auto;
    display: block;
    background: #000;
}

/* =========================================
   YOUTUBE VIDEO - HORIZONTAL FRAME
   ONLY 2ND MOTION GRAPHICS VIDEO
========================================= */

.youtube-video {
    aspect-ratio: 16 / 9 !important;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #000;
    display: block;
}

/* =========================================
   FIX MOTION GRAPHICS VIDEO CARD HEIGHT
========================================= */

.project-grid {
    align-items: start;
}

.project-card {
    align-self: start;
    height: fit-content;
}

.youtube-video {
    aspect-ratio: 16 / 9 !important;
    min-height: 300px;
    object-fit: cover;
}