 /*:root {
            --border-radius: 100px;
            --blue: #1c47ff;
            --green: #70f097;
            --black: #080808;
            --grey: #f5f5f5;
            --works: #c3c3c3;
            --linemenu: #d224de;
            --linebackgroundDark: #052331;
            --linebackgroundLight: #e1e1e4;
            --gutter: 3.125vw 8.25vw;
        }

       

       /* body {
            font-family: 'Syne', sans-serif;
            background: #03161e;
            color: #ffffff;
            font-size: 20px;
            overflow-x: hidden;
        }*/

        /* Header principale */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            z-index: 100;
            background: rgba(3, 22, 30, 0.9);
            backdrop-filter: blur(10px);
        }

        .location {
            font-size: 14px;
            color: var(--grey);
        }

        .page-title {
            font-size: 14px;
            font-weight: 400;
            color: var(--grey);
        }

        .menu-btn {
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--grey);
            position: relative;
        }

        /* Menu Laterale */
        .side-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 600px;
            height: 100vh;
            background: #fff;
            z-index: 999;
            transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: -10px 0 30px rgba(0,0,0,0.3);
        }

        .side-menu.active {
            right: 0;
        }

        .menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 40px;
            border-bottom: 1px solid #e0e0e0;
        }

        .menu-profile {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .menu-profile img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .profile-info h3 {
            font-size: 16px;
            font-weight: 600;
            color: #000;
            margin: 0;
        }

        .profile-status {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            color: #666;
            margin-top: 2px;
        }

        .profile-status::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--green);
            border-radius: 50%;
        }

        .menu-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #000;
            padding: 5px 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .menu-close:hover {
            opacity: 0.7;
        }

        .menu-items {
            padding: 0;
            margin: 0;
            list-style: none;
        }

        .menu-item-side {
            border-bottom: 1px solid #e0e0e0;
        }

        .menu-item-side a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 40px;
            text-decoration: none;
            color: #000;
            font-size: 32px;
            font-weight: 700;
            text-transform: uppercase;
            transition: background 0.3s ease;
            position: relative;
        }

        .menu-item-side a:hover {
            background: #f5f5f5;
        }

        .menu-item-side .item-number {
            font-size: 14px;
            color: #999;
        }

        .menu-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px 40px;
            border-top: 1px solid #e0e0e0;
            background: #fff;
        }

        .menu-social-links {
            display: flex;
            gap: 15px;
        }

        .menu-social-links a {
            padding: 12px 30px;
            border: 1px solid #000;
            border-radius: 50px;
            color: #000;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .menu-social-links a:hover {
            background: #000;
            color: #fff;
        }

        .sidebar-label {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background: #000;
            color: #fff;
            padding: 40px 15px;
            writing-mode: vertical-rl;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 50;
        }

        .sidebar-label:hover {
            padding-right: 20px;
        }

        /* Overlay */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 120px 40px 60px;
        }

        .main-title {
            font-size: clamp(60px, 12vw, 180px);
            font-weight: 900;
            line-height: 0.9;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            margin-bottom: 40px;
            overflow: hidden;
            color: var(--grey);
        }

        .title-line {
            display: block;
            opacity: 0;
            transform: translateY(100%);
            animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .title-line:nth-child(1) {
            animation-delay: 0.2s;
        }

        .title-line:nth-child(2) {
            animation-delay: 0.4s;
        }

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

        /* Navigation Menu */
        .nav-menu {
            display: flex;
            gap: 0;
            border: 1px solid var(--grey);
            margin-bottom: 60px;
            opacity: 0;
            animation: fadeIn 0.8s ease forwards 0.8s;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .nav-item {
            flex: 1;
            padding: 20px;
            text-align: center;
            border-right: 1px solid var(--grey);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            color: var(--grey);
        }

        .nav-item:last-child {
            border-right: none;
        }

        .nav-item:hover {
            background: var(--green);
            color: var(--black);
        }

        /* Content Section */
        .content-section {
            padding: 60px 40px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards 1s;
        }

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

        .availability {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .status-dot {
            width: 10px;
            height: 10px;
            background: var(--green);
            border-radius: 50%;
            animation: pulse 2s ease infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .tagline {
           /* font-size: clamp(28px, 4vw, 48px);*/
            font-size: clamp(28px, 4vw, 28px);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 55px;
            max-width: 800px;
            color: var(--grey);
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .social-btn {
            padding: 15px 40px;
            border: 1px solid var(--grey);
            border-radius: 50px;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            color: var(--grey);
            text-decoration: none;
            display: inline-block;
        }

        .social-btn:hover {
            background: var(--green);
            color: var(--black);
            transform: translateY(-2px);
        }

        /* Project Preview con scroll fade */
        .project-preview {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 250px;
            background: #000;
            padding: 10px;
            border-radius: 8px;
            opacity: 0;
            animation: slideInRight 0.8s ease forwards 1.2s;
            transition: opacity 0.3s ease;
            z-index: 90;
        }
         .project-image {
            width: 100%;
            height: 180px;
            background: linear-gradient(135deg, #ff6b00 0%, #ffa500 100%);
            border-radius: 4px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 20px;
            position: relative;
        }







        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .project-preview.fade-out {
            opacity: 0;
            pointer-events: none;
        }

        .project-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #fff;
            color: #000;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

       
/*questa è l'immagine del last project arancione, cambi qui il*/
        .cans {
            display: flex;
            gap: 10px;
            align-items: flex-end;
        }

        .can {
            width: 60px;
            height: 120px;
            background: linear-gradient(to right, #8b4513 0%, #ff8c00 50%, #8b4513 100%);
            border-radius: 8px 8px 4px 4px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .can:nth-child(2) {
            height: 150px;
        }

        .project-info {
            color: #fff;
            margin-top: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .project-name {
            font-size: 18px;
            font-weight: 600;
        }

        .project-tags {
            font-size: 12px;
            opacity: 0.7;
        }

        .project-preview:hover {
            transform: scale(1.02);
            cursor: pointer;
        }

        /* Video Popup */
        .video-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            animation: fadeInPopup 0.3s ease;
        }

        .video-popup.active {
            display: flex;
        }

        @keyframes fadeInPopup {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .video-container {
            position: relative;
            width: 90%;/*lavoro quando si apre il video sulla larghezza**/
            max-width: 1200px;
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            animation: scaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes scaleIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .video-container video {
            width: 100%;
            height: auto;
            display: block;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: #fff;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 300;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .close-btn:hover {
            transform: rotate(90deg);
            background: #f0f0f0;
        }

      

       

        .menu {
            padding: 3rem 0 10vh 0;
            position: relative;
            display: flex;
            flex-direction: column;
            text-align: right;
        }

        .menu__item {
            flex: none;
            display: flex;
            justify-content: flex-end;
            position: relative;
            padding: 0 2rem;
            margin: 1rem 0;
        }

        .menu__item-text {
            position: relative;
            cursor: pointer;
            padding: 0.5rem;
            display: block;
            overflow: hidden;
            font-size: 2.5em;
        }

        .menu__item-textinner {
            display: block;
            font-weight: 400;
            white-space: nowrap;
            -webkit-text-stroke: 1px var(--grey);
            -webkit-text-fill-color: #03161e;
            transition: all 0.3s ease;
        }

        .menu__item-textinner:hover {
            -webkit-text-fill-color: var(--grey);
        }

        .menu__item-sub {
            display: none;
            text-transform: uppercase;
            font-weight: bold;
            white-space: nowrap;
            align-items: center;
            position: relative;
            margin-left: 2rem;
            padding-left: 3rem;
            opacity: 0;
            transform: translateX(-1rem);
            transition: transform 0.3s, opacity 0.3s;
        }

        .menu__item:hover .menu__item-sub {
            color: var(--green);
            opacity: 1;
            transform: translateX(0);
            display: flex;
        }*/

        /* Approach Section */
        .four_clm {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .approach {
            position: relative;
            color: var(--grey);
        }

        .approach h1 {
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        .approach h3 {
            color: var(--green);
            margin-bottom: 0.5rem;
        }

       

        

        /* Responsive */
        @media (min-width: 768px) {
          
            .three_clm {
                flex-direction: row;
                justify-content: space-between;
            }

          

            .four_clm {
                flex-direction: row;
                justify-content: space-between;
            }

           

            .menu__item {
                padding-left: 25vw;
                justify-content: initial;
            }

            .menu__item-text {
                font-size: 4vw;
            }

            .menu__item-sub {
                display: flex;
            }
        }

        @media (max-width: 768px) {
           
       
        
            .hero {
                padding: 80px 5px 5px;
            }
            .content-section {
                padding: 40px 5px;
            }
            .header {
                padding: 20px 5px;
            }

            .main-title {
                font-size: 50px;
            }

            .project-preview {
                width: 280px;
                bottom: 20px;
                right: 20px;
            }

            .social-links {
                flex-direction: column;
            }

            .side-menu {
                max-width: 100%;
            }

            .menu-item-side a {
                font-size: 24px;
                padding: 25px 30px;
            }

            .menu-header {
                padding: 20px 30px;
            }

            .menu-footer {
                padding: 20px 30px;
            }

            .menu-social-links {
                flex-direction: column;
            }

            .menu-social-links a {
                text-align: center;
            }
        }
    