:root {
    --bg-color: #050505;
    --text-color: #F8FAFC;
    --accent: #22D3EE;
    --muted: #64748B;
    --border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* TEXT REVEAL UTILITIES */
.word-mask {
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    margin-right: 0.2em;
    padding-bottom: 0.1em;
}

.word-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.reveal-element.revealed .word-inner {
    transform: translateY(0);
}

.reveal-element.revealed .word-mask:nth-child(1) .word-inner {
    transition-delay: 0.05s;
}

.reveal-element.revealed .word-mask:nth-child(2) .word-inner {
    transition-delay: 0.1s;
}

.reveal-element.revealed .word-mask:nth-child(3) .word-inner {
    transition-delay: 0.15s;
}

.reveal-element.revealed .word-mask:nth-child(4) .word-inner {
    transition-delay: 0.2s;
}

.reveal-element.revealed .word-mask:nth-child(5) .word-inner {
    transition-delay: 0.25s;
}

.reveal-element.revealed .word-mask:nth-child(6) .word-inner {
    transition-delay: 0.3s;
}


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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.container-full {
    max-width: 100%;
    padding: 0 4rem;
}

/* Header */
.editorial-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    /*mix-blend-mode: difference;*/
    /* Removing difference mode to allow background col */
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle separation */
    transition: var(--transition);
}

.flex-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-box {
    width: 50px;
    height: 50px;
    background: white;
    /* Keep logo white */
    color: black;
    /* mix-blend-mode: difference; Removed */
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 4px;
    /* Slight round */
}

.studio-label {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-item {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 4px;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--accent);
    transition: var(--transition);
}

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

.nav-status {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    border-left: 1px solid var(--border);
    padding-left: 1rem;
    margin-left: 1rem;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    color: white;
}

/* Hero Section */
.hero-editorial {
    padding: 220px 0 100px;
    min-height: 90vh;
}

.hero-top-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.tag-outline {
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-small-text {
    font-size: 0.8rem;
    color: var(--muted);
    text-align: right;
    line-height: 1.5;
}

.massive-text {
    font-size: 10vw;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 4rem;
}

.cyan-text {
    color: var(--accent);
}

.hero-bottom-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
}

.intro-p {
    max-width: 500px;
    font-size: 1.25rem;
    color: var(--muted);
    line-height: 1.4;
}

.btn-circular {
    width: 150px;
    height: 150px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.btn-circular:hover {
    background: white;
    color: black;
    transform: scale(1.1);
}

.btn-text {
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 900;
}

.btn-icon {
    font-size: 1.5rem;
    margin-top: 5px;
}

/* View All Projects Button */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    /* Start white for better visibility */
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-view-all:hover {
    background: white;
    color: black;
    border-color: white;
    transform: translateY(-2px);
}

.btn-view-all span {
    transition: transform 0.4s ease;
    display: inline-block;
}

.btn-view-all:hover span {
    transform: translateX(5px);
}

/* Marquee */
.marquee-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    padding-right: 2rem;
    color: rgba(255, 255, 255, 0.2);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Work Section */
.work-section {
    padding: 150px 0;
}

.work-header {
    margin-bottom: 6rem;
}

.sub-massive-text {
    font-size: 5vw;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.work-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-item {
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    color: var(--muted);
}

.filter-item:hover,
.filter-item.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(34, 211, 238, 0.05);
}

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.work-item {
    cursor: pointer;
}

.work-img-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    background: #111;
    border-radius: 4px;
    /* More Swiss/Editorial: less rounded */
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

/* Parallax on Images (Reverted) */
.work-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    filter: grayscale(100%);
}

/* Fix for Hover + Parallax Conflict */
.work-item:hover .work-img-wrap img {
    transform: scale(1.05);
    /* Just scale, no translateY */
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    filter: grayscale(0%);
}

.work-info h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}



.work-info p {
    color: var(--muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
}

/* Method Section - Editorial Refinement */
.method-section {
    padding: 200px 0;
    /* More generous spacing */
    position: relative;
    background: #000;
    overflow: hidden;
}

.method-container {
    position: relative;
    padding-left: 4rem;
    /* More padding */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    /* Centered but with offset */
}

/* Cleaner, thinner timeline */
.timeline-line {
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle base line */
}

.timeline-progress {
    width: 100%;
    height: 0%;
    background: var(--accent);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
    /* Softer glow */
    transition: height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.method-step {
    position: relative;
    padding: 6rem 0;
    /* Increase vertical breathing room */
    opacity: 0.2;
    /* Darker inactive state for contrast */
    transform: translateY(40px);
    /* Slide up effect instead of left */
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    gap: 6rem;
    align-items: baseline;
}

.method-step.step-active {
    opacity: 1;
    transform: translateY(0);
}

.step-marker {
    position: absolute;
    left: -3rem;
    top: 6.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    /* Hidden marker geometry, just the dot */
    height: 0;
}

/* Minimalist Dot */
.step-dot {
    width: 8px;
    height: 8px;
    background: #333;
    border: none;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
    position: absolute;
    left: 1rem;
    /* On the line */
}

.step-active .step-dot {
    background: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--accent);
}

/* Editorial Numbers */
.step-num {
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    color: var(--muted);
    position: relative;
    top: -2px;
}

.step-active .step-num {
    color: var(--accent);
}

/* Massive Editorial Typography */
.step-content h3 {
    font-size: 4rem;
    /* Much larger */
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: white;
}

.step-content p {
    font-size: 1.5rem;
    /* Larger body text */
    color: var(--muted);
    max-width: 500px;
    line-height: 1.4;
    font-weight: 500;
}

.step-content p {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.5;
}

/* About Section */
.about-editorial {
    padding: 150px 0;
    border-top: 1px solid var(--border);
}

.grid-split {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8rem;
    align-items: center;
}

.mood-box {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 4px;
    overflow: hidden;
    background: #111;
}

.mood-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.2);
}

.tag-small {
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 3rem;
}

.capabilities {
    list-style: none;
    margin-top: 4rem;
}

.capabilities li {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.capabilities span {
    font-size: 0.7rem;
    color: var(--muted);
}

/* Contact Section */
.contact-editorial {
    padding: 150px 0;
    background: #000;
}

.cta-massive-wrap {
    margin-bottom: 80px;
}

.contact-intro {
    font-size: 1.5rem;
    color: var(--muted);
    max-width: 600px;
    margin-top: 2rem;
}

/* Editorial Form */
.editorial-form {
    margin-bottom: 100px;
    max-width: 900px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
}

.input-group input,
.input-group select,
.input-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    color: white;
    font-family: var(--font-main);
    font-size: 1.25rem;
    border-radius: 0;
    outline: none;
    transition: var(--transition);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-bottom-color: var(--accent);
}

.input-group textarea {
    min-height: 100px;
    resize: none;
}

.btn-giant-submit {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    cursor: pointer;
    font-family: var(--font-main);
    text-transform: uppercase;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
    transition: var(--transition);
    margin-top: 2rem;
    width: 100%;
    text-align: left;
}

.btn-giant-submit:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
    padding-left: 2rem;
}

.contact-footer {
    display: flex;
    gap: 8rem;
    border-top: 1px solid var(--border);
    padding-top: 4rem;
}


.contact-col h4 {
    text-transform: uppercase;
    font-size: 0.7rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.contact-col p,
.contact-col a {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    text-decoration: none;
    color: white;
    margin-bottom: 0.5rem;
}

/* Final Footer */
.final-footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
}

.flex-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
}

/* Responsive */
/* Responsive */
@media (max-width: 968px) {

    .container,
    .container-full {
        padding: 0 1.5rem;
    }

    .massive-text {
        font-size: 12vw;
        /* Reduced from 15vw */
        word-break: break-word;
    }

    .hero-bottom-info {
        flex-direction: column;
        gap: 3rem;
        align-items: flex-start;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .grid-split {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-editorial {
        padding: 80px 0;
    }

    .method-step {
        flex-direction: column;
        gap: 1.5rem;
        padding: 3rem 0;
    }

    .step-content h3 {
        font-size: 3rem;
        word-break: break-word;
    }

    .step-marker {
        position: static;
        width: auto;
        height: auto;
        justify-content: flex-start;
        margin-bottom: 0.5rem;
    }

    .step-dot {
        display: none;
        /* Simplify for mobile, just use numbers */
    }

    .timeline-line {
        display: none;
        /* Hide vertical line on mobile */
    }

    .section-title {
        font-size: 12vw;
        word-break: break-word;
    }

    .capabilities li {
        font-size: 1rem;
        gap: 1rem;
    }

    .flex-nav {
        height: auto;
        flex-wrap: wrap;
        padding: 1rem 1.5rem;
        background: rgba(5, 5, 5, 0.95);
        /* Ensure visibility */
    }

    .nav-menu {
        display: flex;
        /* Show menu */
        width: 100%;
        justify-content: flex-start;
        /* Don't spread */
        gap: 2rem;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1rem;
    }

    .nav-item {
        font-size: 0.8rem;
        /* Smaller font */
    }

    .nav-status {
        display: none;
        /* Hide status */
    }

    .sub-massive-text {
        font-size: 10vw;
        word-break: break-word;
    }

    .section-title {
        font-size: 10vw;
        /* Reduced */
        word-break: break-word;
    }

    .step-content h3 {
        font-size: 2.5rem;
        /* Reduced */
        word-break: break-word;
    }

    .logo-wrap {
        width: 100%;
        justify-content: flex-start;
        /* Keep logo and label together */
    }

    /* Contact Form Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .input-group input,
    .input-group textarea {
        font-size: 1rem;
    }

    .btn-giant-submit {
        font-size: 1.2rem;
    }

    /* Header Fix for Home */
    .editorial-header {
        background: #050505 !important;
        /* Force solid background on mobile */
        backdrop-filter: none;
    }
}


/* Custom Cursor Styles */
.custom-cursor {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    /* Ensure on top of everything */
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border 0.3s, transform 0.1s;
    mix-blend-mode: difference;
    /* Critical for visibility over text */
}

.cursor-active {
    width: 40px !important;
    height: 40px !important;
    background: transparent !important;
    border: 1px solid white !important;
    mix-blend-mode: normal !important;
}

/* Specific for light backgrounds if needed (e.g. white marquee) */
/* But header is dark, so white ring is perfect. */

.cursor-text {
    font-size: 10px;
    font-weight: 900;
    color: white;
    /* Text inside cursor becomes white */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    white-space: nowrap;
    display: none;
    /* Only for work items */
}

.work-item:hover~.custom-cursor .cursor-text,
.custom-cursor .cursor-text {
    display: block;
    align-items: center;
    justify-content: center;
}

.project-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
}

.project-hero-content {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    color: white;
}

.project-client {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.95);
}

.project-title {
    font-size: 6vw;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    text-shadow: 0 10px 50px rgba(0, 0, 0, 1), 0 4px 15px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.project-section {
    padding: 150px 0;
}

.project-challenge {
    max-width: 800px;
    margin: 0 auto;
}

.challenge-p {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 500;
    color: white;
}

.project-synergy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.synergy-text {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.synergy-gallery {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.synergy-img {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.synergy-img img {
    width: 100%;
    display: block;
}

.project-impact {
    background: #111;
    padding: 100px 0;
    margin-top: 100px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

/* Next Project Nav */
.next-project-nav {
    margin-bottom: 4rem;
    overflow: hidden;
}

.next-project-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 0;
    text-decoration: none;
    color: white;
    background: transparent;
    transition: background 0.4s ease;
}

.next-project-link:hover {
    background: #111;
}

.next-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 1rem;
}

.next-title {
    font-size: 5vw;
    font-weight: 900;
    margin: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.next-project-link:hover .next-title {
    transform: translateX(20px);
    color: var(--accent);
}

.arrow-icon {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.next-project-link:hover .arrow-icon {
    transform: translateX(10px);
}

/* Updated Impact Metrics */
.impact-item h4 {
    font-size: 6rem;
    /* Massive Scale */
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}


.impact-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 1px;
}

.project-cta {
    padding: 150px 0;
    text-align: center;
}

.cta-title {
    font-size: 4vw;
    font-weight: 900;
    margin-bottom: 2rem;
}

/* Mobile Responsive Adjustments for Project Page */

/* Tablet Specific Adjustments (769px - 1024px) */
@media (max-width: 1024px) {

    .container,
    .container-full {
        padding: 0 2rem;
    }

    .massive-text {
        font-size: 10vw;
        /* Safe size for tablet */
        word-break: break-word;
    }

    .project-title {
        font-size: 8vw;
        word-break: break-word;
        line-height: 1.1;
    }

    .impact-grid {
        gap: 2rem;
    }

    .impact-item h4 {
        font-size: 4rem;
        /* Reduce from 6rem */
    }

    .project-synergy {
        gap: 3rem;
    }

    .cta-title {
        font-size: 6vw;
    }

    .next-title {
        font-size: 6vw;
    }

    .logo-wrap {
        justify-content: flex-start;
        gap: 1rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    .container,
    .container-full {
        padding: 0 1.5rem;
        /* Ensure padding prevents cut off */
    }

    /* Mobile Menu - Visible and Horizontal Scroll or Stacked */
    .nav-menu {
        display: flex;
        gap: 2rem;
        margin-top: 1rem;
        width: 100%;
        justify-content: flex-start;
        /* Don't spread */
    }

    .logo-wrap {
        width: 100%;
        justify-content: flex-start;
        /* Keep logo and label together */
    }

    .flex-nav {
        padding: 1rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        background: rgba(5, 5, 5, 0.95);
    }

    .nav-status {
        display: none;
    }

    .project-hero-content {
        left: 1.5rem;
        bottom: 4rem;
        right: 1.5rem;
    }

    .project-title {
        font-size: 10vw;
        /* Drastically reduced */
        line-height: 1.1;
        word-break: break-word;
    }

    .project-synergy {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .synergy-text {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .project-impact {
        padding: 80px 0;
        width: 100%;
        /* Ensure full width */
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .impact-item h4 {
        font-size: 3rem;
        /* Reduced */
    }

    .next-title {
        font-size: 8vw;
        word-break: break-word;
    }

    .cta-title {
        font-size: 8vw;
        word-break: break-word;
    }

    .challenge-p,
    .intro-p {
        font-size: 1.1rem;
        /* Smaller body text */
        line-height: 1.5;
        max-width: 100%;
        word-wrap: break-word;
    }

    /* Disable hover effects */
    .next-project-link:hover {
        background: transparent;
    }

    .next-project-link:hover .next-title {
        transform: none;
        color: white;
    }

    .next-project-link:hover .arrow-icon {
        transform: none;
    }
}

/* Premium Reveal Animations */
.reveal-element {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    /* Deep slide up + subtle scale */
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Specific Staggers for Grids */
.work-item.reveal-element {
    transition-delay: 0.1s;
}

.work-item:nth-child(2).reveal-element {
    transition-delay: 0.2s;
}

.work-item:nth-child(3).reveal-element {
    transition-delay: 0.3s;
}

.work-item:nth-child(4).reveal-element {
    transition-delay: 0.4s;
}

.impact-item.reveal-element:nth-child(1) {
    transition-delay: 0.1s;
}

.impact-item.reveal-element:nth-child(2) {
    transition-delay: 0.2s;
}

.impact-item.reveal-element:nth-child(3) {
    transition-delay: 0.3s;
}

/* Luxurious Image Reveal - Zoom Out Blur */
.synergy-img.reveal-element img,
.project-hero img.reveal-element,
.project-hero.reveal-element img {
    transform: scale(1.1);
    filter: blur(10px);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1), filter 1.5s ease-out;
    will-change: transform, filter;
}

.synergy-img.revealed img,
.project-hero.revealed img {
    transform: scale(1);
    filter: blur(0);
}

/* Smooth Text Stagger */
.massive-text.revealed {
    transition-delay: 0.1s;
}

.project-title.revealed {
    transition-delay: 0.1s;
}

.intro-p.revealed {
    transition-delay: 0.3s;
}

.section-title.revealed {
    transition-delay: 0.1s;
}

.form-row.revealed {
    transition-delay: 0.2s;
}