        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cormorant Garamond', serif;
            line-height: 1.8;
            color: #2c3e50;
            background: #ffffff;
            overflow-x: hidden;
        }

        header {
            background: white;
            color: #634e42;
            padding: 4rem 2rem 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                90deg,
                transparent,
                transparent 40px,
                #f5ebe0 40px,
                #f5ebe0 100px
            );
            z-index: 0;
        }

        @keyframes floatPattern {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        header::after {
            display: none;
        }

        @keyframes waveMove {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-20px); }
        }

        header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 6rem;
            margin-bottom: 1rem;
            font-weight: 400;
            letter-spacing: 12px;
            position: relative;
            z-index: 1;
            animation: fadeInDown 1s ease-out;
        }

        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
            animation: fadeInDown 1s ease-out;
        }

        .logo-container img {
            height: 280px;
            width: auto;
            max-width: 90%;
            filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.2));
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        header p {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.6rem;
            font-weight: 300;
            color: #634e42;
            opacity: 0.8;
            letter-spacing: 6px;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        nav {
            background: rgba(255, 255, 255, 0.98);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            backdrop-filter: blur(10px);
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0;
            max-width: 1400px;
            margin: 0 auto;
        }

        nav li {
            position: relative;
            overflow: hidden;
        }

        nav a {
            font-family: 'Montserrat', sans-serif;
            color: #634e42;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.4s ease;
            padding: 2rem 2.5rem;
            display: block;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 500;
            position: relative;
        }

        nav li::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #f4a261, #e9c46a);
            transform: translateX(-50%);
            transition: width 0.4s ease;
        }

        nav a::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(42, 157, 143, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        nav a:hover::after {
            width: 200px;
            height: 200px;
        }

        nav li:hover::before {
            width: 80%;
        }

        nav a:hover {
            color: #8b6f47;
        }

        section {
            padding: 8rem 4rem;
            max-width: 1400px;
            margin: 0 auto;
            opacity: 0;
            animation: fadeIn 1s ease-out forwards;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        section:nth-child(even) {
            background: linear-gradient(135deg, #faf8f3 0%, #f9f6f0 100%);
        }

        h2 {
            font-family: 'Playfair Display', serif;
            color: #634e42;
            font-size: 4rem;
            margin-bottom: 1.5rem;
            text-align: center;
            font-weight: 400;
            letter-spacing: 4px;
            position: relative;
            padding-bottom: 2rem;
            animation: slideIn 0.8s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #f4a261, #e9c46a);
            animation: expandLine 1s ease-out 0.5s forwards;
        }

        @keyframes expandLine {
            to { width: 100px; }
        }

        .subtitle {
            font-family: 'Cormorant Garamond', serif;
            text-align: center;
            color: #666;
            font-size: 1.3rem;
            margin-bottom: 4rem;
            font-weight: 400;
            letter-spacing: 2px;
            font-style: italic;
            animation: fadeIn 1s ease-out 0.6s both;
        }

        .pasticceria-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            margin-top: 4rem;
        }

        .pasticceria-text {
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .pasticceria-text h3 {
            font-family: 'Playfair Display', serif;
            color: #634e42;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            font-weight: 400;
            letter-spacing: 2px;
        }

        .pasticceria-text p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #4a5568;
            line-height: 2;
        }

        .pasticceria-image {
            background: linear-gradient(135deg, #2e8b9e 0%, #57a9b8 100%);
            height: 550px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: rgba(255,255,255,0.7);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
            animation: slideInRight 1s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .pasticceria-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { opacity: 0; }
            100% { opacity: 0; }
        }

        .storia-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3.5rem;
            margin-top: 4rem;
        }

        .storia-item {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            animation: scaleIn 0.6s ease-out backwards;
        }

        .storia-item:nth-child(1) { animation-delay: 0.2s; }
        .storia-item:nth-child(2) { animation-delay: 0.4s; }
        .storia-item:nth-child(3) { animation-delay: 0.6s; }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .storia-item:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        .storia-image {
            background: linear-gradient(135deg, #2e8b9e 0%, #57a9b8 100%);
            height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.7);
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }

        .storia-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.2) 0%, transparent 60%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .storia-text {
            padding: 2.5rem;
            text-align: center;
        }

        .storia-text h3 {
            font-family: 'Playfair Display', serif;
            color: #634e42;
            margin-bottom: 1.2rem;
            font-size: 1.6rem;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .storia-text p {
            font-family: 'Cormorant Garamond', serif;
            color: #666;
            font-size: 1.15rem;
            line-height: 1.9;
        }

        .menu-button {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, #634e42 0%, #8b6f47 100%);
            color: white;
            border: none;
            padding: 1.8rem 5rem;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            display: block;
            margin: 0 auto;
            box-shadow: 0 15px 40px rgba(99,78,66,0.3);
            transition: all 0.4s ease;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 500;
            position: relative;
            overflow: hidden;
        }

        .menu-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .menu-button:hover::before {
            width: 400px;
            height: 400px;
        }

        .menu-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(99,78,66,0.4);
        }

        .menu-gallery {
            display: none;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }

        .menu-gallery.active {
            display: grid;
        }

        .menu-item {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 0.6s ease-out backwards;
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }

        .menu-item:nth-child(1) { animation-delay: 0.05s; }
        .menu-item:nth-child(2) { animation-delay: 0.1s; }
        .menu-item:nth-child(3) { animation-delay: 0.15s; }
        .menu-item:nth-child(4) { animation-delay: 0.2s; }
        .menu-item:nth-child(5) { animation-delay: 0.25s; }
        .menu-item:nth-child(6) { animation-delay: 0.3s; }
        .menu-item:nth-child(7) { animation-delay: 0.35s; }
        .menu-item:nth-child(8) { animation-delay: 0.4s; }
        .menu-item:nth-child(9) { animation-delay: 0.45s; }
        .menu-item:nth-child(10) { animation-delay: 0.5s; }
        .menu-item:nth-child(11) { animation-delay: 0.55s; }
        .menu-item:nth-child(12) { animation-delay: 0.6s; }
        .menu-item:nth-child(13) { animation-delay: 0.65s; }
        .menu-item:nth-child(14) { animation-delay: 0.7s; }
        .menu-item:nth-child(15) { animation-delay: 0.75s; }
        .menu-item:nth-child(16) { animation-delay: 0.8s; }

        .menu-item:hover {
            transform: translateY(-12px) rotate(1deg);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .menu-item-image {
            background-color: #f5ebe0;
            height: 260px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.9);
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }

        .menu-item-image img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
        }

        .menu-item-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.8s ease;
        }

        .menu-item:hover .menu-item-image::after {
            transform: translateX(100%);
        }

        .menu-item-title {
            font-family: 'Playfair Display', serif;
            padding: 1.5rem 1.5rem;
            text-align: center;
            font-weight: 500;
            color: #634e42;
            font-size: 1.2rem;
            letter-spacing: 1px;
            min-height: 92px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contatti-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            text-align: center;
            margin-top: 4rem;
        }

        .contatti-item {
            background: white;
            padding: 3.5rem 2rem;
            border-radius: 8px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            animation: fadeInUp 0.6s ease-out backwards;
            position: relative;
            overflow: hidden;
        }

        .contatti-item:nth-child(1) { animation-delay: 0.1s; }
        .contatti-item:nth-child(2) { animation-delay: 0.2s; }
        .contatti-item:nth-child(3) { animation-delay: 0.3s; }
        .contatti-item:nth-child(4) { animation-delay: 0.4s; }

        .contatti-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #f4a261, #e9c46a);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .contatti-item:hover::before {
            transform: scaleX(1);
        }

        .contatti-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 45px rgba(0,0,0,0.12);
        }

        .contatti-item h3 {
            font-family: 'Playfair Display', serif;
            color: #634e42;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .contatti-item p {
            font-family: 'Cormorant Garamond', serif;
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .recensioni {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
            max-width: 1000px;
            margin: 4rem auto 0;
        }

        .recensione {
            background: white;
            padding: 3.5rem;
            border-radius: 8px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.06);
            border-left: 5px solid #e9c46a;
            transition: all 0.4s ease;
            animation: slideInLeft 0.6s ease-out backwards;
            position: relative;
        }

        .recensione:nth-child(1) { animation-delay: 0.2s; }
        .recensione:nth-child(2) { animation-delay: 0.4s; }
        .recensione:nth-child(3) { animation-delay: 0.6s; }

        .recensione::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-family: 'Playfair Display', serif;
            font-size: 6rem;
            color: rgba(233, 196, 106, 0.2);
            line-height: 1;
        }

        .recensione:hover {
            transform: translateX(12px);
            box-shadow: 0 18px 45px rgba(0,0,0,0.12);
        }

        .recensione-header {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            margin-bottom: 1.8rem;
            position: relative;
            z-index: 1;
        }

        .recensione-nome {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: #634e42;
            font-size: 1.4rem;
            letter-spacing: 0.5px;
        }

        .recensione-stelle {
            color: #f4a261;
            font-size: 1.2rem;
        }

        .recensione p {
            font-family: 'Cormorant Garamond', serif;
            color: #555;
            font-size: 1.15rem;
            line-height: 2;
            font-style: italic;
            position: relative;
            z-index: 1;
        }

        footer {
            background: linear-gradient(135deg, #634e42 0%, #8b6f47 100%);
            color: rgba(255,255,255,0.95);
            text-align: center;
            padding: 4rem 2rem;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            animation: floatPattern 40s linear infinite;
        }

        footer p {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 300;
            position: relative;
            z-index: 1;
        }

        .lemon-accent {
            display: inline-block;
            font-size: 1.8rem;
            margin-left: 0.5rem;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* MODAL GALLERIA MENU */
        .menu-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(99, 78, 66, 0.85);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 2rem;
            backdrop-filter: blur(5px);
        }

        .menu-modal-overlay.active {
            display: flex;
            animation: overlayFadeIn 0.4s ease-out;
        }

        @keyframes overlayFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .menu-modal-content {
            background: white;
            border-radius: 12px;
            max-width: 900px;
            width: 100%;
            max-height: 85vh;
            overflow: hidden;
            position: relative;
            box-shadow: 0 30px 80px rgba(0,0,0,0.4);
            animation: modalPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            flex-direction: column;
        }

        @keyframes modalPop {
            from {
                opacity: 0;
                transform: scale(0.7) translateY(40px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .menu-modal-header {
            font-family: 'Playfair Display', serif;
            color: #634e42;
            font-size: 2rem;
            text-align: center;
            padding: 1.8rem 3rem 1.2rem;
            letter-spacing: 1px;
            border-bottom: 2px solid #f5ebe0;
        }

        .menu-modal-image-wrap {
            overflow: auto;
            padding: 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .menu-modal-image-wrap img {
            max-width: 100%;
            max-height: 65vh;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 8px;
            animation: imageReveal 0.6s ease-out 0.2s backwards;
        }

        @keyframes imageReveal {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .menu-modal-close {
            position: absolute;
            top: 1.2rem;
            right: 1.5rem;
            background: #634e42;
            color: white;
            border: none;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            font-size: 1.4rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 2;
        }

        .menu-modal-close:hover {
            background: #8b6f47;
            transform: rotate(90deg);
        }

        /* SELETTORE LINGUA */
        .language-selector {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 105;
            background: rgba(255, 255, 255, 0.9);
            padding: 8px 16px;
            border-radius: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(99, 78, 66, 0.12);
            transition: all 0.3s ease;
        }

        .language-selector:hover {
            box-shadow: 0 6px 20px rgba(99, 78, 66, 0.1);
            transform: translateY(-1px);
        }

        .lang-btn {
            background: none;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            color: #8b6f47;
            cursor: pointer;
            padding: 2px 4px;
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }

        .lang-btn:hover {
            color: #634e42;
        }

        .lang-btn.active {
            color: #634e42;
            font-weight: 700;
            border-bottom: 2px solid #e9c46a;
        }

        .lang-separator {
            color: rgba(99, 78, 66, 0.2);
            font-size: 0.8rem;
            user-select: none;
        }

        @media (max-width: 1200px) {
            .pasticceria-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }

            .storia-grid {
                grid-template-columns: 1fr;
            }

            .menu-gallery {
                grid-template-columns: repeat(2, 1fr);
            }

            .contatti-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 3rem 1rem 2rem;
            }

            .logo-container img {
                height: 180px;
            }

            header p {
                font-size: 1.1rem;
                letter-spacing: 3px;
            }

            h2 {
                font-size: 2.2rem;
                letter-spacing: 2px;
                padding-bottom: 1.5rem;
            }

            .subtitle {
                font-size: 1.1rem;
                margin-bottom: 2.5rem;
            }

            section {
                padding: 4rem 1.2rem;
            }

            nav a {
                padding: 1rem 1.2rem;
                font-size: 0.8rem;
                letter-spacing: 1px;
            }

            .pasticceria-content {
                gap: 2.5rem;
                margin-top: 2rem;
            }

            .pasticceria-text h3 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .pasticceria-text p {
                font-size: 1.1rem;
                line-height: 1.8;
                margin-bottom: 1.2rem;
            }

            .menu-gallery {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2rem;
            }

            .menu-item-image {
                height: 200px;
            }

            .menu-item-title {
                font-size: 1.1rem;
                min-height: 70px;
                padding: 1rem;
            }

            .menu-button {
                padding: 1.2rem 3rem;
                font-size: 0.95rem;
            }

            .contatti-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 2rem;
            }

            .contatti-item {
                padding: 2rem 1.5rem;
            }

            .recensioni {
                margin-top: 2.5rem;
            }

            .recensione {
                padding: 2.5rem 1.5rem;
            }

            .recensione::before {
                font-size: 4rem;
                top: 10px;
                left: 10px;
            }

            .recensione-nome {
                font-size: 1.2rem;
            }

            .recensione p {
                font-size: 1.05rem;
                line-height: 1.8;
            }

            footer {
                padding: 2.5rem 1rem;
            }

            /* Modal galleria per smartphone */
            .menu-modal-overlay {
                padding: 0.75rem;
            }

            .menu-modal-content {
                max-height: 90vh;
            }

            .menu-modal-header {
                font-size: 1.4rem;
                padding: 1.2rem 2.5rem 0.8rem;
            }

            .menu-modal-image-wrap {
                padding: 1rem;
            }

            .menu-modal-image-wrap img {
                max-height: 55vh;
            }

            .menu-modal-close {
                top: 0.8rem;
                right: 0.8rem;
                width: 36px;
                height: 36px;
                font-size: 1.1rem;
            }

            /* Selettore lingua per smartphone */
            .language-selector {
                top: 10px;
                left: 10px;
                padding: 6px 12px;
            }

            .lang-btn {
                font-size: 0.75rem;
            }
        }
