:root {
    --bg-color: #0b0b0b;
    --text-color: #ffffff;
    --accent-color: #f3f3f3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(20px, 4vw, 30px) clamp(20px, 5vw, 50px);
    z-index: 100;
}

.logo {
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: -1px;
    cursor: pointer;
}

.desktop-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.desktop-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

/* --- OVERLAY MENU --- */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    color: #000000;
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    transform: translateY(-100%);
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.overlay-menu.active {
    transform: translateY(0);
}

.overlay-nav a {
    color: #000000;
    text-decoration: none;
    font-size: clamp(2.5rem, 8vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    display: inline-block;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-color);
    text-align: center;
}

.image-container {
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; opacity: 0.3; pointer-events: none; 
}

.image-container video {
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(100%) brightness(0.8);
}

.bg-text, .fg-text {
    position: relative; 
    font-size: clamp(3rem, 15vw, 15rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.9;
    z-index: 5; 
}

.fg-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.5); 
}

/* --- MARQUEE --- */
.marquee {
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    padding: clamp(20px, 5vw, 40px) 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content span {
    font-size: clamp(3rem, 12vw, 10rem);
    font-weight: 900;
    padding-right: 50px;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- SERVICES SECTION --- */
.services {
    display: flex;
    flex-wrap: wrap; 
    width: 100%;
    min-height: 100vh;
    background-color: #0b0b0b;
    position: relative;
    z-index: 10;
}

.services-left {
    flex: 1 1 50%;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
}

.services-left img, .services-left video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.services-right {
    flex: 1 1 50%;
    min-height: 100vh;
    padding: clamp(40px, 10%, 100px) 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #0b0b0b;
    box-sizing: border-box;
}

.services-header {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    font-size: clamp(1.8rem, 4.5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    line-height: 1;
    text-transform: uppercase;
}

.services-list li a {
    color: #fff !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.services-list li a:hover {
    opacity: 0.6;
}

/* --- CLIENTS GIANT SECTION --- */
.clients-giant {
    width: 100%;
    background-color: #000;
    padding: 120px 0;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.client-giant-row {
    position: relative;
    width: 100%;
    min-height: 200px;
    cursor: pointer;
    border-bottom: 1px solid #222;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: transparent;
}

.row-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #ffffff;
    transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

.client-giant-row:hover .row-bg {
    height: 100%;
}

.row-content {
    position: relative;
    z-index: 5;
    width: 100%;
    padding: 40px 5vw;
    display: grid;
    grid-template-columns: 1.8fr 2fr 0.5fr; 
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
}

.left-brand {
    display: flex;
    align-items: center;
    gap: clamp(15px, 3vw, 40px);
    min-width: 0; 
}

.brand-name {
    font-size: clamp(1.8rem, 4vw, 3.5rem); 
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -1px;
    line-height: 1;
    white-space: normal;
    transition: all 0.5s ease;
}

.client-giant-row:hover .brand-name {
    color: #000000;
    transform: translateX(15px);
}

.logo-box {
    flex-shrink: 0;
    width: clamp(50px, 6vw, 80px);
    height: clamp(50px, 6vw, 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.client-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
    filter: invert(1);
    transition: filter 0.3s ease;
}

.client-giant-row:hover .logo-box { opacity: 1; }
.client-giant-row:hover .client-img { filter: invert(0); }

.service-text {
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 1.6;
    color: #888888;
    margin: 0;
    transition: color 0.4s ease;
}

.client-giant-row:hover .service-text {
    color: #222222;
}

.right-meta {
    display: flex;
    justify-content: flex-end;
}

.dynamic-text {
    font-size: 1rem;
    font-weight: 700;
    color: #444444;
    transition: color 0.3s ease;
}

.client-giant-row:hover .dynamic-text { color: #000000; }

.service-link {
    color: inherit !important;
    text-decoration: none !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    display: inline-block !important; 
    width: 100% !important;
}

/* --- CONTACT SECTION --- */
.contact-main {
    padding: 100px 5%;
    text-align: center;
    background: #000;
    position: relative;
    z-index: 10;
}

.big-mail {
    font-size: clamp(1.5rem, 8vw, 7rem);
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    word-break: break-all; 
    line-height: 0.9;
}

/* --- REVEAL ANIMATIONS SAFEGUARD --- */
.reveal-item {
    opacity: 1 !important;
    transform: none !important;
}

/* --- GLOBAL RESPONSIVE OVERRIDES --- */

@media (max-width: 1100px) {
    .services-left {
        flex: 1 1 100%;
        height: 45vh;
        position: relative;
    }
    .services-right {
        flex: 1 1 100%;
        padding: 80px 40px;
        min-height: auto;
    }
    .row-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 20px;
    }
    .right-meta { display: none; }
}

@media (max-width: 768px) {
    .desktop-menu, .hero-details, .badge-container {
        display: none; 
    }
    nav { padding: 20px; }
    
    .bg-text, .fg-text { font-size: 20vw; }
    
    .services-list li { font-size: 2.2rem; }

    .row-content { 
        grid-template-columns: 1fr; 
        padding: 40px 5vw;
        gap: 15px;
    }
    .brand-name { font-size: 2.2rem; transform: none !important; }
    .logo-box { opacity: 1; width: 60px; height: 60px; }
}

.spacer {
    height: 20vh;
}

/* --- STUDIO FOOTER --- */
.studio-footer {
    width: 100%;
    padding: 100px 5vw;
    background-color: #000000;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    margin-bottom: 60px;
}

/* Footer Grid Logic */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    width: 100%;
}

.footer-logo {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
}

.reg-mark {
    color: #444;
    margin-left: -2px;
    font-size: 0.5em;
    vertical-align: top;
}

.footer-subtext {
    display: block;
    color: #444;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 10px;
    text-transform: none;
    letter-spacing: 0;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-label {
    font-size: 0.75rem;
    color: #555;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.foot-lnk {
    font-size: 0.9rem;
    color: #888;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.foot-lnk:hover {
    color: #ffffff;
    padding-left: 5px; 
}

.location-text {
    font-size: 0.85rem;
    color: #444;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-top: 80px;
}

.copyright, .footer-cta {
    font-size: 0.8rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.footer-cta:hover {
    color: #fff;
}

/* --- FOOTER RESPONSIVENESS --- */

/* Tablets */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .studio-footer {
        padding: 80px 8vw;
    }

    .footer-grid {
        grid-template-columns: 1fr; 
        gap: 50px;
    }

    .footer-logo {
        font-size: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start; 
        gap: 25px;
        text-align: left;
    }

    .footer-cta {
        font-weight: 800;
        color: #fff;
    }
}
      .big-mail {
    
    font-size: clamp(1.5rem, 7.5vw, 6.5rem); 
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
    word-wrap: break-word; 
    display: block;
    width: 100%;
    transition: 0.4s ease;
}

@media (max-width: 480px) {
    .big-mail {
        letter-spacing: 0px;
        word-break: break-all; 
    }
}

        .big-mail:hover {
            color: #444; 
        }

        .info-label {
            display: block;
            font-size: 0.75rem;
            color: #555;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .info-value {
            font-size: 1.2rem;
            color: #fff;
            text-decoration: none;
            font-weight: 400;
            display: block;
            transition: color 0.3s ease;
        }

        .info-value.underline {
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .info-value:hover {
            color: #888;
        }

        /* Mobile Breakpoint */
        @media (max-width: 768px) {
            .info-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .big-mail {
                font-size: 2.5rem;
            }
        }
           .about-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: start;
        }

        /* Fluid Typography - Scales between a min and max size automatically */
        .responsive-h2 {
            font-size: clamp(2.2rem, 8vw, 4.5rem); 
            font-weight: 900;
            line-height: 0.95;
            text-transform: uppercase;
            letter-spacing: -2px;
            color: #fff;
            margin-bottom: 30px;
        }

        .responsive-p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            line-height: 1.6;
            color: #888;
            max-width: 500px;
        }

        .philosophy-list {
            border-left: 1px solid #222;
            padding-left: 40px;
        }

        .philo-item { margin-bottom: 50px; }
        .philo-num { font-family: monospace; color: #fff; font-size: 0.8rem; display: block; margin-bottom: 10px; }
        .philo-title { font-size: 1.4rem; font-weight: 900; color: #fff; text-transform: uppercase; margin-bottom: 10px; }
        .philo-desc { color: #666; font-size: 0.95rem; line-height: 1.5; }

        .about-cta {
            display: inline-block;
            padding: 18px 35px;
            border: 1px solid #fff;
            color: #fff;
            text-decoration: none;
            font-weight: 900;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: 0.3s;
        }

        .about-cta:hover {
            background: #fff;
            color: #000;
        }

        /* MOBILE FIXES */
        @media (max-width: 900px) {
            .about-grid {
                grid-template-columns: 1fr; /* Stack vertically */
                gap: 50px;
            }
            .philosophy-list {
                border-left: none;
                padding-left: 0;
                border-top: 1px solid #222;
                padding-top: 50px;
            }
            .responsive-h2 {
                letter-spacing: -1px; /* Tighter for small screens */
            }
        }

        * { box-sizing: border-box; }
html, body { overflow-x: hidden; width: 100%; position: relative; }
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 40px 8vw;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        mix-blend-mode: difference;
    }

    .logo {
        font-size: 1.6rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        color: #fff;
    }

    .logo span {
        font-size: 1rem;
        vertical-align: super;
        margin-left: 2px;
    }

    .nav-links {
        display: flex;
        gap: 30px;
    }

    .nav-links a {
        text-decoration: none;
        color: #fff;
        font-size: 0.9rem;
        font-weight: 900; /* Bold weight like the video */
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: 0.2s;
    }

    .nav-links a:hover {
        opacity: 0.5; /* Subtle fade on hover */
    }

    @media (max-width: 768px) {
        nav { padding: 20px 5vw; }
        .nav-links { gap: 15px; }
        .nav-links a { font-size: 0.7rem; }
    }