* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #0b0b0b;
    color: #ffffff;
    overflow-x: hidden;
}
.custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 15px; height: 15px;
    background-color: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cursor-text {
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s;
    text-transform: uppercase;
}
a:focus-visible, button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
    cursor: auto;
}
.custom-cursor.is-active {
    width: 80px; height: 80px;
    background-color: #fff;
    mix-blend-mode: normal;
}
.custom-cursor.is-active .cursor-text { opacity: 1; }
.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 30px 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000; 
    mix-blend-mode: difference;
}
.logo-container {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2.5rem;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    letter-spacing: -0.05em;
    line-height: 1;
    overflow: hidden; 
}
.logo-base { position: relative; z-index: 2; }
.logo-suffix { display: inline-block; white-space: nowrap; overflow: hidden; }
.logo-dot { display: inline-block; width: 0; opacity: 0; overflow: hidden; color: #888; }
.main-nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: opacity 0.3s;
}
.main-nav a:hover { opacity: 0.5; }
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    padding: 10px;
}
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-left: 5vw;
    overflow: hidden;
}
.bg-video {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%;
    z-index: -2;
    object-fit: cover;
}
.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: -1;
}
.hero-content { z-index: 10; width: 100%; padding-right: 5vw; }
.hero-title {
    font-size: clamp(2.2rem, 9vw, 10rem); 
    line-height: 0.9;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -2px;
    word-wrap: break-word;
}
.hero-subtitle {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 400px;
}
.text-content-section, .services-section {
    padding: 150px 5vw;
    background-color: #0b0b0b;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
}
.text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.sticky-column { position: sticky; top: 150px; }
.sticky-column .section-title { margin: 0; line-height: 1; }
.scrolling-column { max-width: 600px; }
.text-block { margin-bottom: 80px; }
.text-block h3 {
    font-size: 1.5rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: -1px; margin-bottom: 20px; color: #fff;
}
.text-block p {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.5; font-weight: 300; color: #b3b3b3;
}
.services-section { padding: 100px 5vw; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
}
.service-item {
    padding: 60px 40px 60px 0px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.05);
    transition: background-color 0.3s;
}
.service-item:nth-child(3n) { border-right: none; padding-right: 0; padding-left: 40px; }
.service-item:nth-child(3n-1) { padding-left: 20px; }
.service-number { display: block; font-size: 0.9rem; color: #555; margin-bottom: 20px; font-weight: 300; }
.service-item h3 { font-size: 1.6rem; font-weight: 700; text-transform: uppercase; line-height: 1.2; margin-bottom: 20px; color: #fff; transition: color 0.3s; }
.service-item p { font-size: 1rem; line-height: 1.6; color: #888; transition: color 0.3s; }
.service-item:hover h3 { color: #ccc; }
.service-item:hover p { color: #fff; }
.work-section { padding: 100px 5vw; background-color: #0b0b0b; }
.section-header {
    display: flex; justify-content: space-between; align-items: baseline;
    border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; margin-bottom: 80px;
}
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 80px 40px; }
.project-card.offset { margin-top: 150px; }
.project-card { display: block; text-decoration: none; color: #fff; cursor: pointer; }
.project-image-wrapper { width: 100%; aspect-ratio: 4 / 5; overflow: hidden; background-color: #1a1a1a; }
.project-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.project-card:hover .project-image-wrapper img { transform: scale(1.05); }
.project-info { padding-top: 20px; }
.project-category { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: #888; }
.project-title { font-size: 1.8rem; font-weight: 500; margin-top: 5px; transition: color 0.3s; }
.project-card:hover .project-title { color: #ccc; }
.about-section { padding: 150px 5vw; border-top: 1px solid rgba(255,255,255,0.05); }
.manifesto-text { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.1; font-weight: 500; max-width: 90%; margin-bottom: 80px; }
.manifesto-text .highlight { font-style: italic; color: #888; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; }
.about-info p { font-size: 1.2rem; line-height: 1.6; max-width: 500px; color: #ccc; }
.capabilities ul { list-style: none; }
.capabilities li { font-size: 1.5rem; margin-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 5px; }
.site-footer { background-color: #0b0b0b; padding: 100px 5vw 40px 5vw; color: #fff; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { margin-bottom: 100px; }
.footer-label { display: block; font-size: 1rem; text-transform: uppercase; color: #888; margin-bottom: 20px; }
.big-contact { font-size: clamp(3rem, 8vw, 7rem); font-weight: 700; text-decoration: none; color: #fff; transition: color 0.3s; word-break: break-all; }
.big-contact:hover {
    color: #666;
}
.footer-bottom { display: flex; justify-content: space-between; align-items: flex-end; font-size: 0.9rem; color: #666; }
.footer-socials { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-socials a { color: #fff; text-decoration: none; text-transform: uppercase; transition: opacity 0.3s;}
.footer-socials a:hover {
    opacity: 0.5;
}
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background-color: #0b0b0b;
    z-index: 900; 
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 30px;
}
.mobile-link {
    font-size: 2.5rem; 
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    opacity: 0; 
    transform: translateY(30px); 
}
::selection {
    background-color: #e2e2e2;
    color: #0b0b0b;
}
::-moz-selection {
    background-color: #e2e2e2;
    color: #0b0b0b;
}
@media (min-width: 1024px) {
    body, a, button {
        cursor: none; 
    }
}
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.05); padding-left: 0; }
    .service-item:nth-child(2n) { border-right: none; padding-left: 40px; }
}
@media (max-width: 768px) {
    .main-nav { display: none; }
    .menu-toggle { display: block; }
    .hero-section { padding-left: 20px; }
    .hero-content { padding-right: 20px; }
    .hero-title {
        font-size: 8vw; 
        letter-spacing: -1px;
    }
    .text-content-section, .services-section, .work-section, .about-section, .site-footer {
        padding: 80px 20px;
    }
    .project-details, .project-gallery { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    } 
    .project-hero, .project-main-video, .project-details, .project-gallery, .next-project { 
        padding-left: 20px; 
        padding-right: 20px; 
    }
    .text-grid, .work-grid, .about-grid, .services-grid { grid-template-columns: 1fr; gap: 60px; }
    .sticky-column { position: relative; top: 0; }
    .project-card.offset { margin-top: 0; }
    .service-item { padding: 40px 0; border-right: none !important; padding-left: 0 !important; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 40px; }
}
.project-hero {
    padding: 180px 5vw 60px 5vw;
    background-color: #0b0b0b;
}
.project-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}
.project-hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}
.project-main-video {
    padding: 0 5vw 100px 5vw;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: #000;
}
.project-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 0 5vw 100px 5vw;
}
.project-description h2, .project-credits h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 30px;
}
.project-description p {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 300;
    color: #ccc;
}
.credits-list {
    list-style: none;
}
.credits-list li {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    color: #fff;
}
.credits-list li span {
    color: #888;
}
.project-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 5vw 100px 5vw;
}
.gallery-image img {
    width: 100%;
    height: auto;
    display: block;
}
.next-project {
    display: block;
    background-color: #1a1a1a;
    padding: 100px 5vw;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s;
}
.next-project:hover {
    background-color: #222;
}
.next-label {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}
.next-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
}