:root {
            --bg-color: #F8F8F8;
            --text-primary: #1A1A1A; /* Slightly deeper luxury black */
            --text-secondary: #6B6B6B; /* Crisper gray */
            --border-light: rgba(26, 26, 26, 0.08);
            --white: #FFFFFF;
            --font-sans: 'Inter', sans-serif;
            --font-serif: 'Playfair Display', serif;
            --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-primary);
            font-family: var(--font-sans);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            line-height: 1.7; /* Beautiful editorial rhythm */
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        /* ------------------ */
        /* GLOBAL LAYOUT      */
        /* ------------------ */
        section {
            padding: 140px 6vw; /* Massive luxury breathing room */
            position: relative;
        }

        .container {
            max-width: 1280px; /* Concentrated reading width */
            margin: 0 auto;
            position: relative;
        }

        /* ------------------ */
        /* TYPOGRAPHY         */
        /* ------------------ */
        h1, h2, h3 {
            font-family: var(--font-serif);
            font-weight: 500;
            line-height: 1.05;
            letter-spacing: -2px;
            color: var(--text-primary);
        }

        .section-label {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .section-label svg {
            width: 14px;
            height: 14px;
            color: var(--text-primary);
        }

        .section-title {
            font-size: clamp(48px, 6vw, 72px);
            margin-bottom: 48px;
        }

        .section-title.center {
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        p {
            font-size: 16px;
            color: var(--text-secondary);
            font-weight: 400;
        }

        /* ------------------ */
        /* 1. NAV             */
        /* ------------------ */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 32px 6vw;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: var(--transition);
        }

        nav.scrolled {
            background: rgba(248, 248, 248, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-light);
            padding: 20px 6vw;
        }

        .nav-links {
            display: flex;
            gap: 48px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-links a {
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-secondary);
            position: relative;
            padding-bottom: 4px;
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

        .nav-cta {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid var(--text-primary);
            padding-bottom: 4px;
        }

        .nav-cta:hover {
            gap: 12px;
            padding-left: 4px;
            opacity: 0.7;
        }

        .mob-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 32px;
            height: 20px;
            position: relative;
            z-index: 1001;
            margin-left: auto;
        }

        .mob-menu-btn span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 1.5px;
            background: var(--text-primary);
            transition: var(--transition);
        }

        .mob-menu-btn span:nth-child(1) { top: 0; }
        .mob-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
        .mob-menu-btn span:nth-child(3) { bottom: 0; }

        /* ------------------ */
        /* 2. HERO            */
        /* ------------------ */
        .hero {
            background-color: #F0EFED;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 120px; /* Accounts for header */
            overflow: hidden;
            position: relative;
        }

        .hero-content {
            display: flex;
            width: 100%;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 3;
        }

        .hero-bg-img {
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 75%;
            object-fit: cover;
            object-position: 80% top;
            z-index: 1;
            mask-image: linear-gradient(to right, transparent 0%, black 18%), linear-gradient(to bottom, black 70%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%), linear-gradient(to bottom, black 70%, transparent 100%);
            mask-composite: intersect;
            -webkit-mask-composite: source-in; /* for multiple masks in webkit */
        }

        .hero-left {
            flex: 1;
            padding-right: 60px;
            position: relative;
        }

        .role-tag {
            position: absolute;
            left: -140px;
            top: 50%;
            transform: translateY(-50%) rotate(-90deg);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--text-secondary);
        }

        .hero-stats {
            display: flex;
            align-items: center;
            gap: 32px;
            margin-bottom: 48px;
            font-size: 13px;
            font-weight: 500;
        }

        .hero-stats span {
            display: flex;
            flex-direction: column;
            color: var(--text-secondary);
        }

        .hero-stats strong {
            color: var(--text-primary);
            font-size: 24px;
            font-weight: 600;
            letter-spacing: -0.5px;
            margin-bottom: 2px;
        }

        .stats-divider {
            width: 1px;
            height: 40px;
            background-color: var(--border-light);
        }

        .hero-title {
            font-size: clamp(80px, 11vw, 160px);
            margin-bottom: 24px;
            margin-left: -8px; /* Optical alignment for massive serif uppercase */
        }

        .hero-subtitle {
            font-size: clamp(18px, 2vw, 24px);
            color: var(--text-secondary);
            font-family: var(--font-serif);
            font-style: italic;
            max-width: 500px;
            line-height: 1.4;
        }

        .hero-scroll {
            position: absolute;
            bottom: -80px;
            left: 0;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 16px;
            color: var(--text-secondary);
        }

        .hero-scroll::before {
            content: '';
            width: 1px;
            height: 60px;
            background: var(--text-primary);
            display: block;
            opacity: 0.2;
        }

        /* ------------------ */
        /* 3. ABOUT ME        */
        /* ------------------ */
        .about-wrap {
            padding: 80px 6vw;
        }

        .about {
            background: var(--white);
            border-radius: 0; /* Luxury brutalist edge */
            padding: 120px 6vw;
            box-shadow: 0 40px 100px rgba(0,0,0,0.02);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 100px;
            align-items: center;
        }

        .about-left p {
            margin-bottom: 24px;
            font-size: 16px;
            line-height: 1.9;
            color: #555;
            max-width: 600px;
        }
        
        .section-badge {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #999;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .celebrity-quote {
            border-left: 2px solid #0A0A0A;
            padding-left: 20px;
            margin: 32px 0;
            font-size: 15px;
            color: #333;
            line-height: 1.8;
            font-style: italic;
        }

        .credentials-block {
            border-top: 1px solid #EBEBEB;
            padding-top: 40px;
            margin-top: 48px;
        }

        .cred-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #bbb;
            margin-bottom: 16px;
            font-weight: 600;
        }

        .cred-text {
            font-family: var(--font-sans);
            font-size: 13px;
            color: #444;
            line-height: 1.8;
        }
        
        .cred-text span {
            color: #ccc;
            margin: 0 8px;
        }

        .about-right {
            display: flex;
            flex-direction: column;
            gap: 16px;
            position: relative;
            min-width: 0;
        }

        .stat-card {
            border-radius: 12px;
            display: flex;
            max-width: 100%;
        }

        .stat-card.dark {
            background: #0A0A0A;
            padding: 48px 40px;
            flex-direction: column;
            color: #FFFFFF;
        }

        .stat-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #666;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .stat-number {
            font-family: var(--font-serif);
            font-size: 96px;
            font-weight: 300;
            line-height: 1;
            margin-bottom: 24px;
        }

        .stat-divider {
            width: 100%;
            height: 1px;
            background: #333;
            margin-bottom: 24px;
        }

        .stat-text {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #888;
            line-height: 1.6;
        }

        .stat-card.light {
            border: 1px solid #EBEBEB;
            padding: 24px 32px;
            align-items: center;
            gap: 16px;
        }

        .stat-number-small {
            font-family: var(--font-serif);
            font-size: 42px;
            color: #0A0A0A;
            line-height: 1;
            font-weight: 400;
        }

        .stat-text-small {
            font-size: 12px;
            color: #888;
            line-height: 1.4;
            text-transform: uppercase;
            letter-spacing: 1px;
        }


        /* ------------------ */
        /* 4. PORTFOLIO SLIDER*/
        /* ------------------ */
        .slider-section {
            padding-top: 140px;
            padding-bottom: 140px;
            overflow: hidden;
        }

        .slider-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
        }

        .slider-scroll {
            display: flex;
            gap: 40px;
            overflow-x: auto;
            padding-bottom: 60px;
            scrollbar-width: none;
            /* Snapping for mobile/tablets */
            scroll-snap-type: x mandatory;
        }
        .slider-scroll::-webkit-scrollbar {
            display: none;
        }

        .slide-item {
            flex: 0 0 calc(33.333% - 27px);
            min-width: 400px;
            cursor: pointer;
            scroll-snap-align: start;
        }

        .slide-img-wrapper {
            background: #E6E2DC;
            aspect-ratio: 4/5;
            position: relative;
            overflow: hidden;
            margin-bottom: 32px;
        }

        .slide-overlay {
            position: absolute;
            inset: 0;
            background: rgba(26, 26, 26, 0.4);
            opacity: 0;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slide-btn {
            width: 80px;
            height: 80px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: scale(0.8) translateY(20px);
            transition: var(--transition);
            color: var(--text-primary);
        }

        .slide-item:hover .slide-overlay {
            opacity: 1;
        }

        .slide-item:hover .slide-btn {
            transform: scale(1) translateY(0);
        }

        .slide-title {
            font-family: var(--font-sans);
            font-size: 20px;
            font-weight: 500;
            letter-spacing: -0.5px;
            margin-bottom: 8px;
        }

        .slide-tags {
            font-size: 13px;
            color: var(--text-secondary);
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ------------------ */
        /* 5. EXPERIENCE      */
        /* ------------------ */
        #services { padding-bottom: 80px; }
        
        .journey-grid { display: grid; grid-template-columns: 500px 1fr; gap: 120px; align-items: start; }
        
        .journey-left { opacity: 0; transform: translateY(20px); transition: all 0.8s ease 0.1s; display: flex; flex-direction: column; }
        .journey-grid.active .journey-left, #services.active .journey-left { opacity: 1; transform: translateY(0); }

        .journey-left p { font-size: 18px; margin-bottom: 48px; max-width: 440px; color: var(--text-secondary); line-height: 1.8; }
        
        .journey-stat { font-family: var(--font-serif); font-size: 96px; font-weight: 300; color: rgba(0,0,0,0.06); line-height: 1; margin-top: 48px; margin-bottom: 8px; }
        .journey-stat-label { font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: #BBBBBB; }
        .journey-line-prog { width: 1px; height: 80px; background: linear-gradient(to bottom, #DCDCDC, transparent); margin-top: 32px; }

        .timeline { position: relative; padding-left: 40px; }

        .timeline-item { position: relative; border-bottom: 1px solid #F0F0F0; padding-bottom: 32px; margin-bottom: 32px; transform: translateX(24px); opacity: 0; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), opacity 0.7s cubic-bezier(0.16,1,0.3,1); }
        .timeline-item.active { transform: translateX(0); opacity: 1; }
        .timeline-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .timeline-item:last-child .tl-line { display: none; }
        
        .tl-dot { position: absolute; left: -44.5px; top: 10px; width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid #0A0A0A; background: #F8F8F8; z-index: 2; box-sizing: border-box; }
        .timeline-item.tl-first .tl-dot { background: #0A0A0A; border-color: #0A0A0A; }
        .tl-line { position: absolute; left: -40px; top: 10px; width: 1px; height: calc(100% + 32px); background: #E8E8E8; z-index: 1; }

        .tl-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0; }

        .tl-role { font-family: var(--font-serif); font-size: 22px; font-weight: 400; color: #0A0A0A; letter-spacing: -0.5px; transition: 0.2s ease; }
        .tl-role:hover { color: #333; }

        .tl-date { font-family: 'Inter', sans-serif; font-size: 12px; color: #BBBBBB; font-weight: 400; letter-spacing: 1px; }
        .tl-date.current { background: #0A0A0A; color: #FFFFFF; font-size: 9px; text-transform: uppercase; letter-spacing: 2px; padding: 4px 12px; border-radius: 40px; margin-left: 16px; }

        .tl-location { color: #AAAAAA; font-size: 13px; margin-top: 4px; font-style: italic; margin-bottom: 20px; }

        .tl-tags { display: flex; gap: 8px; }

        .tl-tag { background: #F0F0EE; border: none; border-radius: 2px; padding: 5px 12px; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #888888; font-family: 'Inter', sans-serif; }


        /* ------------------ */
        /* 6. CTA BANNER      */
        /* ------------------ */
        .cta-wrap {
            padding: 0 6vw;
        }

        .cta-banner {
            background: var(--text-primary);
            color: var(--white);
            text-align: center;
            padding: 140px 6vw;
            border-radius: 0; /* Keep it stark and editorial */
            position: relative;
            overflow: hidden;
        }

        .cta-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" class="grain"/></svg>');
            opacity: 0.05;
            pointer-events: none;
        }

        .cta-label {
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 32px;
            color: rgba(255,255,255,0.6);
        }
        
        .cta-banner .section-title {
            color: var(--white);
            max-width: 800px;
            margin: 0 auto 32px;
        }

        .cta-text {
            margin: 0 auto 56px;
            font-size: 18px;
            max-width: 500px;
            color: rgba(255,255,255,0.8);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 18px 40px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 100px;
            text-transform: uppercase;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            background: transparent;
            color: var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--text-primary);
            border-color: var(--white);
        }


        /* ------------------ */
        /* 7. LATEST WORKS    */
        /* ------------------ */
        .works-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }

        .work-card {
            cursor: pointer;
        }

        .work-img-wrapper {
            background: #E6E2DC;
            height: 320px;
            position: relative;
            overflow: hidden;
            margin-bottom: 32px;
        }

        .work-img-wrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(26,26,26,0);
            transition: var(--transition);
        }

        .work-card:hover .work-img-wrapper::after {
            background: rgba(26,26,26,0.3);
        }

        .work-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            width: 80px;
            height: 80px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
            z-index: 2;
        }

        .work-card:hover .work-btn {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .work-card:hover .work-img-wrapper img {
            transform: scale(1.05); /* Soft zoom */
        }

        .link-text {
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: var(--transition);
        }
        
        .link-text span {
            color: var(--text-primary);
            border-bottom: 1px solid var(--text-primary);
            padding-bottom: 2px;
        }
        
        .link-text:hover {
            gap: 16px;
        }


        /* ------------------ */
        /* RESPONSIVE         */
        /* ------------------ */
        @media (max-width: 1024px) {
            section { padding: 100px 6vw; }
            .about-wrap, .cta-wrap { padding: 0 6vw 100px; }
            .about, .cta-banner { padding: 100px 6vw; }
            
            .hero-ghost { font-size: 24vw; }
            
            .about-grid { grid-template-columns: 1fr; gap: 60px; }
            .about-right { text-align: center; align-items: center; padding: 60px 40px; }
            .metric-icon { position: relative; top: 0; left: 0; margin-bottom: 16px; }
            
            .journey-grid { grid-template-columns: 1fr; gap: 80px; }
            
            .works-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            /* Mobile Spacing Formula */
            section { padding: 80px 24px; }
            .about-wrap, .cta-wrap { padding: 0 24px 80px; }
            .about, .cta-banner { padding: 80px 24px; }
            nav { padding: 24px; }
            nav.scrolled { padding: 16px 24px; }
            
            .nav-links, .nav-cta {
                display: none;
            }

            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                padding: 40px 24px;
                border-bottom: 1px solid var(--border-light);
                box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            }

            .mob-menu-btn { display: block; }
            .mob-menu-btn.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
            .mob-menu-btn.active span:nth-child(2) { opacity: 0; }
            .mob-menu-btn.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

            /* Hero Mobile Fixes */
            .hero {
                flex-direction: column;
                padding-top: 120px;
                padding-bottom: 60px;
                min-height: auto;
            }

            .hero-content {
                flex-direction: column-reverse;
                gap: 60px;
            }

            .hero-left {
                padding-right: 0;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .hero-subtitle { text-align: center; }

            .role-tag, .hero-scroll { display: none; }
            
            .hero-stats {
                gap: 24px;
            }
            .hero-stats strong { font-size: 20px; }

            .hero-bg-img {
                position: relative;
                width: 100%;
                height: 55vw;
                mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
                -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
                mask-composite: exclude;
                -webkit-mask-composite: source-over;
            }
            
            /* Sliders & Grids */
            .slider-header { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
            .slider-header .section-title { margin-bottom: 0; }
            
            .slider-scroll { 
                gap: 16px; 
                margin: 0 -24px; 
                padding: 0 24px 40px; 
            }
            .slide-item { min-width: 300px; }
            
            .journey-left { align-items: flex-start; text-align: left; display: flex; flex-direction: column; }
            .timeline { padding-left: 32px; width: 100%; }
            .tl-dot { left: -36.5px; }
            .tl-line { left: -32px; }
            
            .tl-header { flex-direction: column; gap: 8px; align-items: flex-start; }
            .tl-date.current { margin-left: 0; }
            .tl-date { margin-top: 0; font-size: 11px; color: #BBBBBB; }
            
            .works-grid { grid-template-columns: 1fr; gap: 60px; }
            
            footer {
                flex-direction: column-reverse;
                gap: 48px;
                text-align: center;
                align-items: center;
            }
            .footer-links {
                flex-direction: column;
                gap: 24px;
            }
            .footer-email {
                text-align: center;
            }
        }
    
        /* --- ANIMATIONS & PARALLAX --- */
        html { scroll-behavior: smooth; }

        /* Hero Animations */
        .hero-bg-wrapper {
            position: absolute;
            right: 0; top: 0; height: 100%; width: 75%;
            z-index: 1;
            transform: translateX(40px);
            animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
            opacity: 0; /* Fallback for the animation */
        }
        @keyframes slideInRight {
            to { transform: translateX(0); opacity: 1; }
        }
        
        /* Clear the absolute positioning from the img itself since wrapper has it */
        .hero-bg-wrapper .hero-bg-img {
            position: relative;
            width: 100%; height: 100%; right: auto; top: auto;
            transform: translateY(calc(var(--scrollY, 0px) * -0.15));
        }

        .hero-title {
            transform: translateY(calc(var(--scrollY, 0px) * -0.1));
        }

        .hero-ghost {
            position: absolute;
            left: 50%; top: 50%;
            font-size: 22vw;
            white-space: nowrap;
            color: var(--text-primary);
            font-family: var(--font-serif);
            font-weight: 500;
            z-index: 1;
            transform: translate(-50%, calc(-50% + (var(--scrollY, 0px) * -0.3)));
            opacity: 0;
            animation: fadeInGhost 1s ease forwards;
            animation-delay: 0.5s;
        }
        @keyframes fadeInGhost {
            to { opacity: 0.045; }
        }
        @keyframes fadeInGhost {
            to { opacity: 0.045; }
        }

        .hero-title .letter {
            display: inline-block;
            opacity: 0;
            transform: translateY(60px) rotateX(40deg);
            transform-origin: bottom center;
            animation: letterReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        .hero-title .letter:nth-child(1) { animation-delay: 0.30s; }
        .hero-title .letter:nth-child(2) { animation-delay: 0.38s; }
        .hero-title .letter:nth-child(3) { animation-delay: 0.46s; }
        .hero-title .letter:nth-child(4) { animation-delay: 0.54s; }
        .hero-title .letter:nth-child(5) { animation-delay: 0.62s; }

        @keyframes letterReveal {
            to { opacity: 1; transform: translateY(0) rotateX(0); }
        }

        .hero-subtitle {
            opacity: 0;
            animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 0.9s;
        }
        .hero-stats {
            opacity: 0;
            animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            animation-delay: 1.1s;
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Nav */
        nav {
            animation: fadeInNav 0.5s ease forwards;
            transition: all 0.4s ease;
        }
        @keyframes fadeInNav {
            from { opacity: 0; } to { opacity: 1; }
        }
        nav.scrolled {
            background: rgba(248,248,248,0.96);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #EBEBEB;
            box-shadow: 0 1px 0 rgba(0,0,0,0.04);
        }

        /* Reveal Classes */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        .stagger-1 { transition-delay: 0s; }
        .stagger-2 { transition-delay: 0.15s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.45s; }

        /* Marquee */
        .credentials-block { overflow: hidden; white-space: nowrap; }
        .marquee-track {
            display: inline-block;
            animation: marquee 25s linear infinite;
        }
        .marquee-track:hover { animation-play-state: paused; }
        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* Portfolio / Works Hover */
        .work-img-wrapper img, .slide-img-wrapper img, .work-img-wrapper, .slide-img-wrapper {
            transition: transform 0.6s ease;
        }
        .work-card:hover .work-img-wrapper, .slide-item:hover .slide-img-wrapper {
            transform: scale(1.04);
        }
        .slide-btn, .work-btn {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.3s ease;
        }
        .slide-overlay { opacity: 1 !important; background: rgba(0,0,0,0.0); transition: 0.3s; }
        .work-card:hover .slide-overlay, .slide-item:hover .slide-overlay {
            background: rgba(26,26,26,0.3);
        }
        .work-card:hover .work-btn, .slide-item:hover .slide-btn {
            opacity: 1;
            transform: scale(1);
        }

        /* CTA Banner Reveal */
        .cta-banner {
            clip-path: inset(0 100% 0 0);
            transition: clip-path 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .cta-banner.active {
            clip-path: inset(0 0% 0 0);
        }

        /* Timeline Reveal */
        .timeline::before {
            height: 0;
            bottom: auto;
            transition: height 1.2s ease;
        }
        .timeline.active::before {
            height: 100%;
        }
        .timeline-item {
            transform: translateX(30px);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .timeline-item.active {
            transform: translateX(0);
            opacity: 1;
        }

        /* Footer Email */
        .footer-email-link {
            transition: letter-spacing 0.4s ease;
            background-image: linear-gradient(currentColor, currentColor);
            background-position: 0% 100%;
            background-repeat: no-repeat;
            background-size: 0% 1px;
            padding-bottom: 4px;
        }
        .footer-email-link:hover {
            letter-spacing: 3px;
            background-size: 100% 1px;
        }

/* --- Split --- */

.services-section { background: #0A0A0A; padding: 120px 80px; opacity: 0; animation: fadeBg 0.5s ease forwards; }
        @keyframes fadeBg { to { opacity: 1; } }
        
        .sv-container { max-width: 1200px; margin: 0 auto; clear: both; }
        
        .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; }
        .services-header-left { display: flex; flex-direction: column; }
        
        .services-label { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: #555; margin-bottom: 16px; font-weight: 600; }
        .services-title { font-family: var(--font-serif); color: #FFFFFF; font-size: clamp(48px, 6vw, 80px); font-weight: 400; line-height: 1.05; margin: 0; opacity: 0; transform: translateY(40px); animation: titleSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation-delay: 0.2s; }
        @keyframes titleSlide { to { opacity: 1; transform: translateY(0); } }
        
        .accordion-container { display: flex; height: 500px; gap: 12px; margin-top: 48px; }
        
        .acc-panel { flex: 1; background: #111111; border: 1px solid #2a2a2a; border-radius: 12px; position: relative; overflow: hidden; transition: flex 0.7s cubic-bezier(0.16, 1, 0.3, 1), background 0.7s ease; cursor: pointer; min-width: 80px; }
        .acc-panel.active { flex: 3.5; background: #141414; }
        
        .acc-watermark { position: absolute; top: 32px; left: 28px; font-size: 96px; font-weight: 700; color: rgba(255,255,255,0.02); letter-spacing: -2px; pointer-events: none; font-family: var(--font-serif); line-height: 1; margin: 0; z-index: 1; opacity: 0; transition: opacity 0.5s ease; }
        .acc-panel.active .acc-watermark { opacity: 1; }
        
        /* Compressed Label */
        .acc-compressed { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 48px 0; transition: opacity 0.5s ease; opacity: 0; pointer-events: none; }
        /* Panel 2/3 labels fade in after 1.4s natively. We use a class or animation. */
        .acc-compressed.fade-delay { animation: compFade 0.5s ease forwards; animation-delay: 1.4s; }
        @keyframes compFade { to { opacity: 1; } }
        
        .acc-panel.active .acc-compressed { opacity: 0 !important; }
        
        .acc-comp-num { font-family: var(--font-serif); font-size: 13px; color: rgba(255,255,255,0.2); letter-spacing: 2px; }
        .acc-comp-label { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 12px; letter-spacing: 5px; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,0.5); white-space: nowrap; }
        
        /* Expanded Content */
        .acc-expanded { position: absolute; inset: 0; padding: 48px 40px; opacity: 0; transform: translateX(20px); transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); pointer-events: none; display: flex; flex-direction: column; justify-content: flex-start; z-index: 2; }
        .acc-panel.active .acc-expanded { opacity: 1; transform: translateX(0); pointer-events: auto; transition-delay: 0.15s; }
        
        .acc-icon { width: 44px; height: 44px; stroke: rgba(255,255,255,0.35); stroke-width: 1.2; position: absolute; top: 48px; right: 40px; z-index: 2; transition: transform 0.4s ease; transform: scale(1); }
        .acc-panel.active .acc-icon { transform: scale(1.1); }
        
        .acc-top { position: relative; z-index: 2; margin-bottom: 32px; }
        .acc-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; font-weight: 600; color: rgba(255,255,255,0.3); margin-bottom: 12px; }
        .acc-title { font-family: var(--font-serif); font-size: 32px; font-weight: 400; line-height: 1.15; color: #FFFFFF; letter-spacing: -0.5px; }
        
        .acc-list { position: relative; z-index: 2; margin-bottom: 24px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
        .acc-list div { font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; font-weight: 400; }
        
        .acc-divider { height: 1px; width: 0; background: rgba(255,255,255,0.1); margin: auto 0 24px; z-index: 2; position: relative; transition: width 0.6s ease; }
        .acc-panel.active .acc-divider { width: 100%; transition-delay: 0.6s; } /* panel divider lines draw in left to right */
        
        .acc-tagline { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: rgba(255,255,255,0.4); position: relative; z-index: 2; line-height: 1.4; }
        .acc-celeb-strip { font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.15); margin-top: 12px; position: relative; z-index: 2; }
        
        .acc-bottom-strip { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 32px; margin-top: 48px; display: flex; justify-content: space-between; align-items: center; }
        .abs-left { font-family: var(--font-serif); font-size: 16px; color: rgba(255,255,255,0.25); font-style: italic; opacity: 0; animation: fadeBg 1s ease forwards; animation-delay: 1.5s; }
        .abs-btn { border: 1px solid rgba(255,255,255,0.15); border-radius: 40px; padding: 14px 32px; font-size: 10px; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 2.5px; color: rgba(255,255,255,0.4); transition: 0.3s ease; text-decoration: none; font-weight: 600; opacity: 0; animation: fadeBg 1s ease forwards; animation-delay: 1.5s; }
        .abs-btn:hover { border-color: #FFFFFF; color: #FFFFFF; }
        
        @media (max-width: 900px) {
            .services-section { padding: 80px 24px; }
            .services-header { flex-direction: column; align-items: flex-start; gap: 24px; }
            .accordion-container { flex-direction: column; height: auto; gap: 16px; margin-top: 32px; }
            .acc-panel { flex: none !important; height: 72px; min-height: 72px; display: flex; justify-content: center; }
            .acc-panel.active { height: 380px; }
            .acc-compressed { flex-direction: row; padding: 0 24px; }
            .acc-comp-label { writing-mode: horizontal-tb; transform: none; }
            .acc-bottom-strip { flex-direction: column; gap: 24px; text-align: center; }
            .abs-btn { width: 100%; text-align: center; }
            .acc-list div:nth-child(n+3) { display: none; } /* Show first 2 lines only */
        }

/* --- Split --- */

.works-header-row {
                display: flex;
                flex-direction: column;
                align-items: center;
                border-bottom: 1px solid #E8E8E8;
                padding-bottom: 48px;
                margin-bottom: 60px;
            }
            .works-heading-large {
                font-family: var(--font-serif);
                font-size: clamp(56px, 8vw, 96px);
                font-weight: 400;
                color: var(--text-primary);
                margin: 0;
                line-height: 1;
                text-align: center;
            }
            
            .works-grid-new {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
            
            /* Staggered offset for middle card */
            .works-grid-new > .work-card-new:nth-child(2) {
                margin-top: 48px;
            }
            
            .work-card-new {
                display: flex;
                flex-direction: column;
                cursor: pointer;
                text-decoration: none;
            }
            
            .work-img-wrapper-new {
                background: #E6E2DC;
                position: relative;
                overflow: hidden;
                border-radius: 4px;
                aspect-ratio: 3/4;
            }
            
            .work-img-wrapper-new img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center top;
            }
            
            /* New Hover Overlay */
            .work-overlay-new {
                position: absolute;
                inset: 0;
                background: rgba(0,0,0,0.55);
                opacity: 0;
                transition: 0.5s ease;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .work-btn-new {
                width: 80px;
                height: 80px;
                background: var(--white);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transform: scale(0.8);
                transition: 0.4s ease;
                color: var(--text-primary);
            }
            
            .work-overlay-info {
                position: absolute;
                bottom: 28px;
                left: 28px;
                display: flex;
                flex-direction: column;
                gap: 4px;
                pointer-events: none;
            }
            
            .wo-title {
                color: #FFFFFF;
                font-family: var(--font-serif);
                font-size: 22px;
                transform: translateY(12px);
                opacity: 0;
                transition: 0.4s ease 0.1s;
                margin: 0;
            }
            
            .wo-tag {
                font-size: 10px;
                text-transform: uppercase;
                letter-spacing: 2px;
                color: rgba(255,255,255,0.6);
                transform: translateY(8px);
                opacity: 0;
                transition: 0.4s ease 0.15s;
                font-family: var(--font-sans);
            }
            
            /* Apply Hover State */
            .work-card-new:hover .work-overlay-new {
                opacity: 1;
            }
            .work-card-new:hover .work-btn-new {
                transform: scale(1);
            }
            .work-card-new:hover .wo-title,
            .work-card-new:hover .wo-tag {
                transform: translateY(0);
                opacity: 1;
            }
            
            /* Card Labels Below */
            .work-label-bottom {
                font-family: var(--font-serif);
                font-size: 18px;
                font-weight: 400;
                color: #0A0A0A;
                margin-top: 16px;
                margin-bottom: 4px;
            }
            
            .work-tag-bottom {
                font-family: var(--font-sans);
                font-size: 11px;
                text-transform: uppercase;
                letter-spacing: 2px;
                color: #999;
            }
            
            /* Bottom Row */
            .works-bottom-row {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 48px;
                border-top: 1px solid #EBEBEB;
                padding-top: 40px;
                margin-top: 60px;
            }
            
            .wb-link {
                font-size: 11px;
                text-transform: uppercase;
                letter-spacing: 3px;
                color: #999;
                text-decoration: none;
                transition: 0.3s;
            }
            .wb-link:hover {
                color: #0A0A0A;
                text-decoration: underline;
            }
            
            .wb-divider {
                width: 1px;
                height: 16px;
                background: #E0E0E0;
            }
            
            @media (max-width: 900px) {
                .works-grid-new {
                    grid-template-columns: 1fr;
                }
                .works-grid-new > .work-card-new:nth-child(2) {
                    margin-top: 0;
                }
                .works-bottom-row {
                    flex-direction: column;
                    gap: 24px;
                }
                .wb-divider {
                    display: none;
                }
            }

/* --- Split --- */

.vision-section {
            background: #0A0A0A;
            padding: 140px 80px;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transition: opacity 1s ease;
        }
        .vision-section.active { opacity: 1; }
        
        .vision-ghost {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            font-size: 22vw;
            font-weight: 700;
            color: rgba(255,255,255,0.025);
            white-space: nowrap;
            pointer-events: none;
            letter-spacing: -6px;
            font-family: var(--font-serif);
            opacity: 0;
            transition: opacity 2s ease 0.3s;
            z-index: 1;
        }
        .vision-section.active .vision-ghost { opacity: 1; }
        
        .vision-content { position: relative; z-index: 2; text-align: center; }
        
        .vision-label { font-family: 'Inter', sans-serif; font-size: 10px; text-transform: uppercase; letter-spacing: 4px; color: rgba(255,255,255,0.3); margin-bottom: 40px; opacity: 0; transform: translateY(20px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1) 0s; }
        .vision-section.active .vision-label { opacity: 1; transform: translateY(0); }
        
        .vision-heading { font-family: var(--font-serif); font-size: clamp(64px, 9vw, 120px); font-weight: 400; line-height: 0.95; letter-spacing: -3px; margin-bottom: 48px; display: flex; flex-direction: column; align-items: center; }
        
        .vision-line1 { color: #FFFFFF; opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1) 0.15s; }
        .vision-section.active .vision-line1 { opacity: 1; transform: translateY(0); }
        
        .vision-line2 { font-style: italic; color: rgba(255,255,255,0.7); opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1) 0.25s; }
        .vision-section.active .vision-line2 { opacity: 1; transform: translateY(0); }
        
        .vision-subtext { font-family: 'Inter', sans-serif; font-size: 15px; color: rgba(255,255,255,0.35); line-height: 1.9; max-width: 440px; margin: 0 auto 64px; opacity: 0; transition: opacity 1s ease 0.4s; }
        .vision-section.active .vision-subtext { opacity: 1; }
        
        .vision-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; opacity: 0; transform: scale(0.95); transition: all 0.8s cubic-bezier(0.16,1,0.3,1) 0.55s; }
        .vision-section.active .vision-btns { opacity: 1; transform: scale(1); }
        
        .v-btn-primary { display: inline-flex; align-items: center; background: #FFFFFF; color: #0A0A0A; border: none; border-radius: 40px; padding: 18px 48px; font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 3px; font-weight: 500; text-decoration: none; transition: 0.3s ease; }
        .v-btn-primary:hover { background: #F0F0F0; transform: translateY(-2px); }
        
        .v-btn-secondary { display: inline-flex; align-items: center; background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); border-radius: 40px; padding: 18px 48px; font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 3px; font-weight: 500; text-decoration: none; transition: 0.3s ease; }
        .v-btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: #FFFFFF; }
        
        .vision-phone { margin-top: 48px; font-family: var(--font-serif); font-size: clamp(28px, 4vw, 48px); color: rgba(255,255,255,0.15); letter-spacing: 4px; font-weight: 300; cursor: pointer; text-decoration: none; display: inline-block; transition: color 0.4s ease, opacity 1s ease 0.7s; opacity: 0; }
        .vision-phone:hover { color: rgba(255,255,255,0.5) !important; }
        .vision-section.active .vision-phone { opacity: 1; }
        
        .vision-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 40px; margin-top: 80px; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; }
        
        .vb-text { font-family: 'Inter', sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.2); }
        .vb-text a { color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.3s ease; }
        .vb-text a:hover { color: rgba(255,255,255,0.5); text-decoration: underline; text-underline-offset: 4px; }
        
        @media (max-width: 900px) {
            .vision-section { padding: 100px 32px; }
            .vision-btns { flex-direction: column; width: 100%; gap: 16px; margin: 0; }
            .v-btn-primary, .v-btn-secondary { width: 100%; justify-content: center; }
            .vision-phone { font-size: 28px; }
            .vision-bottom { flex-direction: column; gap: 16px; padding-top: 32px; justify-content: center; text-align: center; }
        }

/* --- Split --- */

.whatsapp-btn {
            position: fixed;
            bottom: 32px;
            right: 32px;
            z-index: 999;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37,211,102,0.4);
            transition: transform 0.3s ease;
        }
        .whatsapp-btn:hover {
            transform: scale(1.08);
        }
        @media (max-width: 900px) {
            .whatsapp-btn {
                bottom: 24px;
                right: 24px;
            }
        }

/* --- GLOBAL MOBILE MASTER OVERRIDES --- */
@media (max-width: 768px) {
    /* 8. GLOBAL MOBILE FIXES */
    html, body { overflow-x: hidden !important; width: 100% !important; }
    section { max-width: 100vw !important; overflow: hidden !important; }
    img { max-width: 100% !important; }

    /* 1. HERO MOBILE */
    .hero { min-height: 100svh !important; overflow: hidden !important; padding-top: 80px !important; padding-bottom: 0px !important; flex-direction: column !important; justify-content: flex-start !important; }
    .hero-content { flex-direction: column !important; gap: 0 !important; }
    
    .hero-bg-wrapper {
        position: relative !important;
        width: 100% !important;
        height: 65vw !important;
        max-height: 380px !important;
        transform: none !important;
        animation: none !important;
        opacity: 1 !important;
        margin-top: 0 !important;
        right: auto !important;
    }
    
    .hero-bg-wrapper .hero-bg-img {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center top !important;
        mask-image: linear-gradient(to bottom, black 60%, transparent 100%) !important;
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%) !important;
        mask-composite: unset !important;
        transform: none !important;
        top: auto !important; right: auto !important;
    }
    
    .hero-left {
        width: 100% !important;
        position: relative !important;
        z-index: 2 !important;
        padding: 32px 24px !important;
        background: #F8F8F8 !important;
        margin-top: -40px !important;
        text-align: left !important;
        align-items: flex-start !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .hero-title { font-size: 72px !important; margin-bottom: 16px !important; margin-left: 0 !important; }
    .hero-subtitle { font-size: 14px !important; text-align: left !important; }
    .hero-stats { gap: 24px !important; margin-bottom: 0 !important; }
    .role-tag, .hero-scroll { display: none !important; }
    .hero-ghost { font-size: 40vw !important; opacity: 0.04 !important; top: 10% !important; transform: translate(-50%, 0) !important; animation: none !important; }

    /* 2. CREDENTIALS MARQUEE */
    .credentials-block { overflow: hidden !important; width: 100% !important; }

    /* 3. ABOUT SECTION */
    .about-wrap, .about { padding: 60px 24px !important; }
    .about-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
    .about-left p { max-width: 100% !important; font-size: 15px !important; }
    .celebrity-quote { margin: 24px 0 !important; font-size: 14px !important; }
    .about-right, .stat-card { max-width: 100% !important; width: 100% !important; }

    /* 4. SERVICES ACCORDION MOBILE */
    .services-section { padding: 60px 24px !important; }
    .accordion-container { flex-direction: column !important; height: auto !important; gap: 0 !important; margin-top: 24px !important; }
    .acc-panel { 
        width: 100% !important; 
        min-height: 72px !important; 
        height: auto !important; 
        border-bottom: 1px solid rgba(255,255,255,0.08) !important; 
        border-right: none !important; border-left: none !important; border-top: none !important; 
        border-radius: 0 !important; 
        display: flex !important; 
        flex-direction: column !important; 
        transition: min-height 0.5s ease !important; 
        padding: 0 !important; 
        margin: 0 !important; 
        background: transparent !important; 
    }
    .acc-panel:last-child { border-bottom: none !important; }
    .acc-panel.active { min-height: auto !important; height: auto !important; }
    
    .acc-watermark, .acc-icon { display: none !important; }
    
    .acc-compressed { 
        position: relative !important; 
        flex-direction: row !important; 
        padding: 24px 0 !important; 
        opacity: 1 !important; 
        display: flex !important; 
        justify-content: flex-start !important; 
        align-items: center !important; 
        animation: none !important; 
        width: 100% !important; 
    }
    .acc-panel.active .acc-compressed { opacity: 1 !important; margin-bottom: -16px !important; padding-bottom: 0 !important; }
    
    .acc-comp-num { font-size: 13px !important; color: rgba(255,255,255,0.2) !important; margin-right: 16px !important; }
    .acc-comp-label { writing-mode: horizontal-tb !important; transform: none !important; font-size: 13px !important; color: rgba(255,255,255,0.5) !important; letter-spacing: 2px !important; margin-right: auto !important; }
    
    /* The '+' Icon */
    .acc-compressed::after {
        content: '+';
        color: rgba(255,255,255,0.5);
        font-size: 20px;
        font-weight: 300;
        transition: 0.3s ease;
    }
    .acc-panel.active .acc-compressed::after { content: '\2212'; /* Minus sign */ }

    .acc-expanded { 
        position: relative !important; 
        padding: 16px 0 32px 0 !important; 
        transform: none !important; 
        display: none !important; 
        flex-direction: column !important; 
        align-items: flex-start !important; 
        opacity: 1 !important; 
    }
    .acc-panel.active .acc-expanded { display: flex !important; pointer-events: auto !important; }
    
    .acc-cat { display: block !important; margin-bottom: 8px !important; }
    .acc-title { font-size: 28px !important; margin-bottom: 16px !important; line-height: 1.1 !important; }
    .acc-list div { font-size: 12px !important; color: rgba(255,255,255,0.6) !important; }
    .acc-tagline { font-size: 14px !important; margin-top: 16px !important; margin-bottom: 8px !important; }
    .acc-divider { margin: 16px 0 !important; width: 100% !important; }

    /* 5. EXPERIENCE SECTION */
    .journey-grid { grid-template-columns: 1fr !important; gap: 48px !important; padding-top: 60px !important; padding-bottom: 60px !important; }
    .journey-left { padding-bottom: 0 !important; align-items: flex-start !important; text-align: left !important; }
    .journey-stat { font-size: 80px !important; margin-top: 16px !important; font-family: var(--font-serif) !important; color: rgba(0,0,0,0.06) !important; }
    .journey-line-prog { display: none !important; } 
    .journey-right { padding-top: 0 !important; }
    .timeline { padding-left: 24px !important; width: 100% !important; border-left: none !important; }
    .tl-dot { left: -28.5px !important; }
    .tl-line { left: -24px !important; }

    /* 6. PORTFOLIO CARDS */
    .works-grid-new, .works-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
    .works-grid-new > .work-card-new:nth-child(2) { margin-top: 0 !important; }
    .work-img-wrapper-new { aspect-ratio: 4/3 !important; width: 100% !important; }

    /* 7. CTA SECTION */
    .vision-section, .cta-banner { padding: 80px 24px !important; }
    .vision-heading, .cta-banner .section-title { font-size: 52px !important; }
    .vision-subtext { text-align: center !important; }
    .vision-btns, .btn-outline { width: 100% !important; text-align: center !important; justify-content: center !important; }
    .v-btn-primary, .v-btn-secondary { width: 100% !important; justify-content: center !important; margin-bottom: 8px !important; }
    .vision-phone { font-size: 24px !important; letter-spacing: 2px !important; margin-top: 40px !important; display: block !important; text-align: center !important; }
    .vision-bottom { flex-direction: column !important; text-align: center !important; gap: 24px !important; }
}