    <style>
        /* RESET & BASE STYLES */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', sans-serif;
            background: #000;
            color: #fff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* HEADER */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 15px 0;
            background: rgba(0,0,0,0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            z-index: 1000;
            transition: background 0.3s ease;
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-link {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        .header-logo {
            width: 22px;
            height: 22px;
            display: block;
            transition: opacity 0.3s ease;
        }
        .header-logo-text {
            font-size: 16px;
            font-weight: 200;
            letter-spacing: 2px;
            color: white;
            text-transform: uppercase;
            margin-top: 2px;
            transition: all 0.3s ease;
            opacity: 0.8;
        }
        .logo-link:hover .header-logo-text {
            opacity: 1;
            color: #ccc;
        }
        .logo-link:hover .header-logo {
            opacity: 0.9;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 50px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: #ccc;
        }
        
        /* HERO SECTION */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 60px;
            position: relative;
            background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
        }
        .hero-content {
            max-width: 900px;
            padding: 0 40px;
            z-index: 2;
        }
        .main-logo {
            width: 80px;
            margin: 0 auto 25px;
            display: block;
            opacity: 0;
            animation: fadeInUp 1.2s ease 0.1s forwards;
        }
        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 200;
            letter-spacing: 8px;
            margin-bottom: 15px;
            opacity: 0;
            animation: fadeInUp 1.2s ease 0.2s forwards;
            line-height: 1;
        }
        .hero-subtitle {
            font-size: 1.1rem;
            font-weight: 300;
            letter-spacing: 3px;
            opacity: 0.8;
            margin-bottom: 50px;
            opacity: 0;
            animation: fadeInUp 1.2s ease 0.3s forwards;
        }
        .cta-button {
            display: inline-block;
            padding: 18px 50px;
            background: transparent;
            border: 1px solid #fff;
            color: #fff;
            text-decoration: none;
            font-size: 12px;
            letter-spacing: 2px;
            font-weight: 500;
            text-transform: uppercase;
            transition: all 0.4s ease;
            opacity: 0;
            animation: fadeInUp 1.2s ease 0.6s forwards;
        }
        .cta-button:hover {
            background: #fff;
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }
        
        /* ANIMATIONS */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* GALLERY SECTION */
        .gallery {
            padding: 120px 60px;
            background: #000;
        }
        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
        }
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 80px;
            font-weight: 200;
            letter-spacing: 4px;
            text-transform: uppercase;
        }
        
        /* NSFW FILTER */
        .nsfw-filter {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .nsfw-toggle-container {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 12px 24px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .nsfw-toggle-container:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        .nsfw-icon {
            width: 24px;
            height: 24px;
            opacity: 1;
            transition: all 0.3s ease;
            filter: brightness(1);
        }
        
        .nsfw-toggle-text {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #fff;
            transition: all 0.3s ease;
        }
        
        .nsfw-toggle-container.inactive {
            background: rgba(255, 255, 255, 0.02);
            border-color: rgba(255, 255, 255, 0.05);
        }
        
        .nsfw-toggle-container.inactive .nsfw-icon {
            opacity: 0.4;
            filter: brightness(0.6) grayscale(100%);
        }
        
        .nsfw-toggle-container.inactive .nsfw-toggle-text {
            opacity: 0.5;
            color: #999;
        }
        
        /* CATEGORY BAR STYLES */
        .category-bar {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 140px;
            flex-wrap: wrap;
        }
        .category-item {
            position: relative;
            width: 150px;
            height: 150px;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .category-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(70%);
            transition: filter 0.3s ease;
        }
        .category-item span {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            color: #fff;
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 0.8px;
            text-shadow: 0 2px 6px rgba(0,0,0,0.9);
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            text-align: center;
            max-width: 90%;
        }
        .category-item:hover {
            transform: translateY(-5px) scale(1.05);
        }
        .category-item:hover img {
            filter: brightness(100%);
        }
        .category-item.active {
            transform: translateY(-5px) scale(1.05);
        }
        .category-item.active img {
            filter: brightness(100%);
        }
        .category-item.active span {
            color: #fff;
            text-shadow: 0 0 12px rgba(255,255,255,0.6);
        }
        
        /* NSFW TAGS */
        .nsfw-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: rgba(255, 0, 0, 0.7);
            color: white;
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 10px;
            font-weight: bold;
            letter-spacing: 1px;
            text-transform: uppercase;
            z-index: 2;
        }
        .nsfw-blur {
            filter: blur(15px);
            transition: filter 0.3s ease;
        }
        .nsfw-blur:hover {
            filter: blur(0);
        }
        .gallery-grid {
            columns: 4;
            column-gap: 30px;
            margin-bottom: 40px;
        }
        .gallery-item {
            break-inside: avoid;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            background: #111;
            border-radius: 8px;
        }
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        }
        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: all 0.4s ease;
            loading: lazy;
        }
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        .photo-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            color: white;
            padding: 40px 20px 20px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }
        .gallery-item:hover .photo-overlay {
            transform: translateY(0);
        }
        .photo-title {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }
        .photo-category {
            font-size: 12px;
            opacity: 0.7;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

/* Protezione immagini galleria */
.gallery-item img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}


/* Protezione anche per il modal */
.modal img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
}

        /* ABOUT SECTION */
        .about {
            padding: 80px 60px;
            background: #000;
            position: relative;
            overflow: hidden;
            min-height: 70vh;
            display: flex;
            align-items: center;
        }
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(1px 1px at 25px 35px, rgba(255,255,255,0.1), transparent),
                radial-gradient(1px 1px at 45px 75px, rgba(255,255,255,0.08), transparent),
                radial-gradient(1px 1px at 95px 45px, rgba(255,255,255,0.06), transparent);
            background-repeat: repeat;
            background-size: 150px 80px;
            animation: float 25s infinite linear;
            z-index: 1;
            opacity: 0.3;
        }
        @keyframes float {
            0% { transform: translateY(0px) translateX(0px); }
            33% { transform: translateY(-8px) translateX(8px); }
            66% { transform: translateY(4px) translateX(-4px); }
            100% { transform: translateY(0px) translateX(0px); }
        }
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 0.7fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 3;
            width: 100%;
            animation: fadeInUp 1s ease-out;
        }
        .about-text {
            padding-right: 30px;
        }
        .about-text h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            margin-bottom: 40px;
            font-weight: 100;
            letter-spacing: 4px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #fff 0%, #e0e0e0 30%, #c0c0c0 70%, #a0a0a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            position: relative;
            animation: glow 3s ease-in-out infinite alternate;
        }
        @keyframes glow {
            from {
                text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
            }
            to {
                text-shadow: 0 0 15px rgba(255, 255, 255, 0.15), 0 0 25px rgba(255, 255, 255, 0.08);
            }
        }
        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
            animation: lineExpand 2s ease-out 0.5s forwards;
        }
        @keyframes lineExpand {
            to {
                width: 100px;
            }
        }
        .about-description {
            display: grid;
            gap: 25px;
            margin-bottom: 30px;
        }
        .about-description p {
            font-size: 1.2rem;
            font-weight: 300;
            line-height: 1.7;
            color: #e0e0e0;
            text-align: left;
            position: relative;
            padding-left: 25px;
            opacity: 0;
            animation: fadeInLeft 1s ease-out forwards;
        }
        .about-description p:first-child {
            animation-delay: 0.8s;
        }
        .about-description p:last-child {
            animation-delay: 1.2s;
        }
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        .about-description p:first-child::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -8px;
            font-size: 3rem;
            color: #666;
            font-family: serif;
            line-height: 1;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.5s forwards;
        }
        .about-description p:last-child::after {
            content: '"';
            position: absolute;
            right: -15px;
            bottom: -15px;
            font-size: 3rem;
            color: #666;
            font-family: serif;
            line-height: 1;
            opacity: 0;
            animation: fadeIn 1s ease-out 2s forwards;
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
        .about-visual {
            position: relative;
            height: 400px;
            width: 100%;
            max-width: 500px;
            margin-left: auto;
            aspect-ratio: 5/4;
        }
        .main-image {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            animation: imageAppear 1s ease-out 1s forwards;
        }
        @keyframes imageAppear {
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        .main-image:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 
                0 35px 80px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(255, 255, 255, 0.2);
        }
        .main-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            background: transparent;
            filter: grayscale(10%) contrast(1.1) brightness(1.03) saturate(1.05);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .main-image:hover img {
            filter: grayscale(0%) contrast(1.2) brightness(1.1) saturate(1.15);
            transform: scale(1.03);
        }
        
        /* FLOATING ELEMENTS */
        .floating-element {
            position: absolute;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 50%;
          
        }
        .floating-element-1 {
            top: -20px;
            right: -20px;
            width: 80px;
            height: 80px;
            animation: floatSlow 10s ease-in-out infinite;
        }
        .floating-element-2 {
            bottom: -30px;
            left: -30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
            animation: floatFast 8s ease-in-out infinite reverse;
        }
        .floating-element-3 {
            top: 50%;
            right: -60px;
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
            animation: floatSlow 12s ease-in-out infinite 2s;
        }
        @keyframes floatSlow {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(180deg); }
        }
        @keyframes floatFast {
            0%, 100% { transform: translateY(0px) translateX(0px); }
            25% { transform: translateY(-8px) translateX(8px); }
            75% { transform: translateY(8px) translateX(-4px); }
        }
        
        /* QUOTE SECTION */
        .quote-section {
            padding: 40px 60px 30px;
            background: #000;
        }
        .quote-container {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 0.8fr 1fr;
            gap: 35px;
            align-items: center;
        }
        .quote-video {
            display: flex;
            justify-content: center;
        }
        .philosophy-video {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255, 255, 255, 0.15);
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .philosophy-video:hover {
            transform: translateY(-8px) scale(1.03);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(255, 255, 255, 0.2);
        }
        .quote-content {
            padding-left: 15px;
        }
        .philosophy-quote {
            font-size: 1.4rem;
            font-style: italic;
            color: #e0e0e0;
            font-weight: 300;
            line-height: 1.4;
            letter-spacing: 0.8px;
            position: relative;
            margin: 0;
            text-align: left;
        }
        .philosophy-quote::before,
        .philosophy-quote::after {
            content: '"';
            font-size: 2.8rem;
            color: #666;
            font-family: serif;
            position: absolute;
            line-height: 1;
        }
        .philosophy-quote::before {
            left: -25px;
            top: -12px;
        }
        .philosophy-quote::after {
            right: -12px;
            bottom: -20px;
        }
        
        /* CONTACT SECTION */
        .contact {
            padding: 60px 60px 100px;
            background: #000;
            position: relative;
            overflow: hidden;
            min-height: 60vh;
            display: flex;
            align-items: center;
            border-top: 1px solid #222;
        }
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,0.1), transparent),
                radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.08), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.06), transparent);
            background-repeat: repeat;
            background-size: 150px 80px;
            animation: float 25s infinite linear;
            z-index: 1;
            opacity: 0.3;
        }
        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 3;
            width: 100%;
            animation: fadeInUp 1s ease-out;
        }
        .contact h2 {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            margin-bottom: 40px;
            font-weight: 100;
            letter-spacing: 4px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #fff 0%, #e0e0e0 30%, #c0c0c0 70%, #a0a0a0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            position: relative;
            animation: glow 3s ease-in-out infinite alternate;
            text-align: center;
        }
        .contact h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
            animation: lineExpand 2s ease-out 0.5s forwards;
        }
        .contact-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }
        .contact p {
            margin-bottom: 40px;
            color: #e0e0e0;
            line-height: 1.7;
            font-size: 1.2rem;
            font-weight: 300;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.8s forwards;
        }
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 1.2s forwards;
        }
        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            color: #fff;
            text-decoration: none;
            transition: all 0.4s ease;
            padding: 16px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .contact-item:hover {
            transform: translateY(-4px);
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        .contact-icon {
            width: 28px;
            height: 28px;
            opacity: 0.8;
            transition: all 0.4s ease;
        }
        .contact-item:hover .contact-icon {
            opacity: 1;
            transform: scale(1.08);
        }
        .contact-text {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }
        
        /* FOOTER */
        .footer {
            padding: 30px 60px;
            background: #000;
            text-align: center;
            border-top: 1px solid #222;
            margin-top: 0;
        }
        .footer p {
            color: #666;
            font-size: 11px;
            letter-spacing: 1px;
            font-weight: 300;
        }
        
        /* MODAL */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.95);
            backdrop-filter: blur(10px);
        }
        .modal-content {
            position: relative;
            margin: 5% auto;
            padding: 0;
            width: 90%;
            max-width: 1200px;
            height: 80%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .modal img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border-radius: 8px;
        }
        .close {
            position: absolute;
            top: -50px;
            right: 0;
            color: #fff;
            font-size: 35px;
            font-weight: 300;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        .close:hover {
            color: #ccc;
        }
        .modal-info {
            position: absolute;
            bottom: -80px;
            left: 0;
            right: 0;
            color: #fff;
            text-align: center;
        }
        .modal-title {
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .modal-category {
            font-size: 14px;
            opacity: 0.7;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .modal-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            font-size: 24px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        .modal-nav-button:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: translateY(-50%) scale(1.1);
        }
        .modal-prev {
            left: 20px;
        }
        .modal-next {
            right: 20px;
        }
        
        /* Mobile menu styles */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            cursor: pointer;
            padding: 10px;
            position: relative;
            width: 44px;
            height: 44px;
            border-radius: 8px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        .mobile-menu-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-1px);
        }
        .menu-icon {
            position: relative;
            width: 20px;
            height: 20px;
            margin: auto;
        }
        .menu-icon::before,
        .menu-icon::after {
            content: '';
            position: absolute;
            width: 4px;
            height: 4px;
            background: white;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        .menu-icon::before {
            top: 2px;
            left: 2px;
            box-shadow: 
                0 6px 0 white,
                0 12px 0 white,
                6px 0 0 white,
                6px 6px 0 white,
                6px 12px 0 white,
                12px 0 0 white,
                12px 6px 0 white,
                12px 12px 0 white;
        }
        .mobile-menu-btn.active .menu-icon::before {
            transform: rotate(45deg) scale(0.8);
            box-shadow: 
                0 0 0 white,
                0 0 0 white,
                0 0 0 white,
                0 0 0 white,
                0 0 0 white,
                0 0 0 white,
                0 0 0 white,
                0 0 0 white;
        }
        .mobile-menu-btn.active .menu-icon::after {
            content: '×';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: auto;
            height: auto;
            background: transparent;
            font-size: 18px;
            font-weight: 300;
            color: white;
        }
        
        /* RESPONSIVE DESIGN */
        @media (max-width: 1200px) {
            .gallery-grid {
                columns: 3;
                column-gap: 25px;
            }
            .about-container {
                gap: 50px;
            }
            .about-text {
                padding-right: 15px;
            }
            .about-visual {
                width: 100%;
                height: 400px;
            }
        }
        @media (max-width: 1024px) {
            .nav-container {
                padding: 0 40px;
            }
            .gallery {
                padding: 100px 40px;
            }
            .about {
                padding: 60px 40px;
            }
            .contact {
                padding: 50px 40px 80px;
            }
            .quote-section {
                padding: 35px 40px 25px;
            }
            .quote-container {
                gap: 40px;
            }
            .philosophy-video {
                width: 160px;
                height: 160px;
            }
            .philosophy-quote {
                font-size: 1.5rem;
            }
            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            .about-text {
                padding-right: 0;
            }
            .about-visual {
                width: 100%;
                max-width: 450px;
                height: 320px;
                margin: 0 auto;
            }
            .category-bar {
                margin-bottom: 100px;
            }
        }
        @media (max-width: 768px) {
            .header-logo-text {
                display: none;
            }
            .nav-container {
                padding: 0 20px;
            }
            .nav-links {
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                background: rgba(0,0,0,0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                gap: 20px;
                display: none;
                z-index: 999;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            .gallery {
                padding: 80px 20px;
            }
            .contact {
                padding: 50px 20px 70px;
            }
            .quote-section {
                padding: 30px 20px 20px;
            }
            .quote-container {
                grid-template-columns: 1fr;
                gap: 25px;
                text-align: center;
            }
            .quote-content {
                padding-left: 0;
            }
            .philosophy-video {
                width: 140px;
                height: 140px;
            }
            .philosophy-quote {
                font-size: 1.3rem;
                text-align: center;
            }
            .philosophy-quote::before,
            .philosophy-quote::after {
                position: relative;
                left: auto;
                right: auto;
                top: auto;
                bottom: auto;
                font-size: 2.5rem;
            }
            .philosophy-quote::before {
                margin-right: 8px;
            }
            .philosophy-quote::after {
                margin-left: 8px;
            }
            .gallery-grid {
                columns: 2;
                column-gap: 20px;
            }
            .about {
                padding: 60px 20px;
            }
            .about-description p {
                font-size: 1.1rem;
                padding-left: 20px;
            }
            .about-visual {
                width: 100%;
                max-width: 100%;
                height: 250px;
                margin-bottom: 30px;
                display: block !important;
                opacity: 1 !important;
                transform: none !important;
                animation: none !important;
            }
            .main-image {
                position: relative;
                height: 250px;
                opacity: 1 !important;
                transform: none !important;
                animation: none !important;
                border-radius: 12px;
            }
            .floating-element {
                display: none;
            }
            .close {
                position: fixed;
                top: 20px;
                right: 20px;
                z-index: 2001;
                font-size: 40px;
                background: rgba(0,0,0,0.7);
                width: 50px;
                height: 50px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .modal-content {
                margin: 10% auto 5%;
                height: 70%;
            }
            .modal-info {
                bottom: -60px;
            }
            .category-bar {
                margin-bottom: 80px;
                gap: 15px;
            }
            .category-item {
                width: 120px;
                height: 120px;
            }
            .category-item span {
                font-size: 11px;
                font-weight: 400;
                letter-spacing: 0.5px;
            }
        }
        @media (max-width: 480px) {
            .about-text h2 {
                letter-spacing: 2px;
            }
            .about-description p {
                font-size: 1rem;
            }
            .about-visual {
                height: 220px;
                max-width: 100%;
            }
            .main-image {
                height: 220px;
            }
            .contact-info {
                flex-direction: column;
                gap: 25px;
            }
            .philosophy-video {
                width: 120px;
                height: 120px;
            }
            .philosophy-quote {
                font-size: 1.1rem;
                line-height: 1.3;
            }
            .philosophy-quote::before,
            .philosophy-quote::after {
                font-size: 2.2rem;
            }
            .modal-nav-button {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            .modal-prev {
                left: 10px;
            }
            .modal-next {
                right: 10px;
            }
            .category-bar {
                margin-bottom: 60px;
            }
            .category-item {
                width: 100px;
                height: 100px;
            }
            .category-item span {
                font-size: 10px;
                bottom: 8px;
                font-weight: 400;
                letter-spacing: 0.3px;
            }
            .quote-section {
                padding: 25px 20px 15px;
            }
        }
    
.header-logo-text {
    height: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.logo-link:hover .header-logo-text {
    opacity: 1;
}
.hero-title {
    width: clamp(200px, 40vw, 600px);
    display: block;
    margin: 0 auto 15px;
    filter: brightness(0) invert(1);
    opacity: 0;
    animation: fadeInUp 1.2s ease 0.2s forwards;
}

</style>