        html.lenis, html.lenis body {
            height: auto;
        }
        .lenis-smooth {
            scroll-behavior: auto !important;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            /*background-color: #d1c7bd;*/
        	background-color: #fff;
            color: #111;
            font-family: Helvetica, Arial, sans-serif;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Fixed Navigation Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 30px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            font-size: 0.85rem;
            font-weight: bold;
            letter-spacing: 1px;
            pointer-events: none;
        }
        header a { color: #000; text-decoration: none; pointer-events: auto; }

        /* ==========================================================================
           MAIN CONTENT GALLERY (1 και 2 εικόνες)
           ========================================================================== */
        .main-gallery {
            width: 100%;
            padding: 140px 40px 100px 40px;
            
            max-width: 1600px;
            margin: 0 auto;
        	display: flex;
        	flex-direction: column;
        	align-content: center;
        	justify-content: center;
        }

      /*  .hero-title-section {
            
            padding: 40px 0px 80px 0px;
            font-size: clamp(2.5rem, 6vw, 6rem);
            line-height: 0.99;
            font-weight: 700;
            letter-spacing: -0.06em;
            max-width: 1200px;
        }*/

   

        .project-media-box {
            background-color: #141414;
            border-radius: 10px;
           
            display: flex;
            align-items: center;
            justify-content: center;
          /*  color: #444;
            font-size: 1rem;
            letter-spacing: 2px;
            text-transform: uppercase;*/
        }
    .full-row {display:flex;flex-direction:row;row-gap: 10px;
    column-gap: 10px;
        flex-wrap: wrap;
    align-content: center;
    justify-content:flex-start;}
	.full-row a {display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
    padding: 50px 20px;
    text-decoration: none;
    color: black;
    font-size: 25px;
    letter-spacing: -0.05em;
    font-weight: 600;}

    .media-full {width:98.7%;}
    .media-half {width:49%;}
    .media-third {width:32.5%;}
    .media-66 {width:65.5%}
			
        /* ==========================================================================
           FIXED HANDLE (Οι 3 τελείες - Μένουν ΠΑΝΤΑ στην οθόνη)
           ========================================================================== */
        .drawer-handle {
            position: fixed;
            top: 50%;
            right: 460px; /* Όσο είναι το πλάτος του ανοιχτού drawer */
            transform: translateY(-50%);
            background-color: #111111;
            color: #fff;
            width: 40px;
            height: 80px;
            border-radius: 10px 0 0 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            letter-spacing: -2px;
            user-select: none;
            z-index: 1000; /* Πάνω από το drawer */
            border-left: 1px solid #222;
            border-top: 1px solid #222;
            border-bottom: 1px solid #222;
            
            /* Ακολουθεί την κίνηση του drawer */
            transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1); 
        }

        /* Όταν το drawer κλείνει, οι τελείες κολλάνε στη δεξιά άκρη της οθόνης */
        .drawer-handle.is-closed {
            right: 0px;
        }

        /* ==========================================================================
           INFO DRAWER PANEL
           ========================================================================== */
        .info-drawer {
            position: fixed;
            top: 0;
            right: 0;
            width: 460px;
            max-width: 85vw;
            height: 100vh;
            background-color: #111111;
            color: #fff;
            z-index: 999;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            overflow-y: auto; 
            
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .info-drawer.is-closed {
            transform: translateX(100%);
        }

        /* Εσωτερικό Content */
        .drawer-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 40px;
            letter-spacing: -0.02em;
        }
        .drawer-meta-section {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-bottom: 50px;
        }
        .meta-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            border-bottom: 1px solid #1c1c1c;
            padding-bottom: 12px;
        }
        .meta-label { color: #555; text-transform: uppercase; font-size: 0.75rem; font-weight: bold; }
        .meta-value { text-align: right; color: #ccc; line-height: 1.5; }
        
        .drawer-description {
            font-size: 1rem;
            line-height: 1.6;
            color: #ccc;
            border-top: 1px solid #1c1c1c;
            padding-top: 30px;
        }

        @media (max-width: 768px) {
        /*    .main-gallery { grid-template-columns: 1fr; gap: 20px; padding: 100px 20px; }
            .hero-title-section, .media-half, .media-full { grid-column: span 1; }
            .media-half, .media-full { height: 50vh; }*/
        .main-gallery {padding:100px 20px;}
        .drawer-title { font-size: 2rem;}
        .info-drawer { width: 70vw; padding: 60px 30px;}
        .drawer-handle { right: 70vw; }
        .media-full {width:98.7%;}
        .media-half {width:98.7%;}
        .media-third {width:98.7%;}
        .media-66 {width:98.7%}
        
		}