        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --sea-deep: #2c5f7f;
            --sea-medium: #5b9aa8;
            --sea-light: #a8d0d9;
            --sea-pale: #d8e8ec;
            --sand: #f5ecd9;
            --sand-light: #faf6ed;
            --foam: #ffffff;
            --text-dark: #2a3f4a;
            --text-medium: #5a6c75;
        }
        
        body { font-family: 'Lato', sans-serif; color: var(--text-dark); line-height: 1.7; background: var(--foam); }
        h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 500; color: var(--sea-deep); }
        
        .navbar { background: var(--foam); box-shadow: 0 2px 12px rgba(44, 95, 127, 0.08); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--sea-pale); }
        .navbar-content { max-width: 1200px; margin: 0 auto; padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
        .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo-icon { font-size: 32px; color: var(--sea-medium); }
        .logo-text { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; color: var(--sea-deep); }
        .nav-links { display: flex; gap: 28px; list-style: none; }
        .nav-links a { text-decoration: none; color: var(--text-medium); font-weight: 400; font-size: 14px; transition: color 0.3s; position: relative; padding: 8px 0; }
        .nav-links a:hover, .nav-links a.active { color: var(--sea-deep); }
        .nav-links a.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--sea-medium); border-radius: 2px; }
        
        .navbar-right { display: flex; align-items: center; gap: 12px; }
        
        
        /* Language Selector with Flags */
        .lang-selector { display: flex; align-items: center; gap: 6px; background: var(--sea-pale); padding: 4px; border-radius: 30px; }
        .lang-btn { 
            background: transparent; border: none; cursor: pointer; padding: 6px 10px; 
            border-radius: 20px; display: flex; align-items: center; gap: 6px; 
            transition: all 0.3s; font-size: 13px; font-weight: 600; color: var(--text-medium);
        }
        .lang-btn.active { background: var(--foam); color: var(--sea-deep); box-shadow: 0 2px 6px rgba(44, 95, 127, 0.15); }
        .lang-btn:hover:not(.active) { background: rgba(255,255,255,0.5); }
        .flag-svg { width: 22px; height: 16px; border-radius: 2px; display: block; flex-shrink: 0; }
        
        .book-btn { background: var(--sea-medium); color: white; padding: 10px 22px; border-radius: 30px; text-decoration: none; font-weight: 500; transition: all 0.3s; font-size: 13px; white-space: nowrap; }
        .book-btn:hover { background: var(--sea-deep); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(44, 95, 127, 0.3); }
        .mobile-menu-btn { display: none; background: none; border: none; font-size: 24px; color: var(--sea-deep); cursor: pointer; }
        
        .hero { 
            background: linear-gradient(135deg, #a8d0d9 0%, #d8e8ec 50%, #faf6ed 100%); 
            padding: 24px 24px 100px; 
            position: relative; 
            overflow: hidden; 
            min-height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Animated Waves - Full section background - SEAMLESS LOOP */
        .waves-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            line-height: 0;
            pointer-events: none;
        }
        .wave-layer {
            position: absolute;
            width: 200%;
            left: 0;
            height: 120px;
            /* GPU acceleration per fluidità */
            will-change: transform;
            transform: translateZ(0);
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
        }
        /* Onda - grande, arriva a metà sezione */
        .wave-layer-2 {
            bottom: 0;
            opacity: 1;
            height: 50%;
            animation: wave-flow-reverse 12s linear infinite;
            filter: drop-shadow(0 -4px 8px rgba(44, 95, 127, 0.15));
        }
        
        /* Seamless loop - il pattern si ripete esattamente al 50% */
        @keyframes wave-flow {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }
        @keyframes wave-flow-reverse {
            0% { transform: translate3d(-50%, 0, 0); }
            100% { transform: translate3d(0, 0, 0); }
        }
        
        /* Floating bubbles - GLOBAL on entire site */
        .bubbles-global {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            pointer-events: none;
            z-index: 1;
        }
        .bubble {
            position: absolute;
            bottom: -100px;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(168, 208, 217, 0.4) 60%, rgba(168, 208, 217, 0.25));
            border: 1.5px solid rgba(168, 208, 217, 0.5);
            border-radius: 50%;
            opacity: 0;
            animation: rise 18s infinite ease-in;
            will-change: transform, opacity;
            box-shadow: 
                inset 0 0 10px rgba(255, 255, 255, 0.5),
                0 0 6px rgba(168, 208, 217, 0.2);
        }
        .bubble:nth-child(1) { width: 35px; height: 35px; left: 8%; animation-duration: 16s; animation-delay: 0s; }
        .bubble:nth-child(2) { width: 18px; height: 18px; left: 18%; animation-duration: 12s; animation-delay: 3s; }
        .bubble:nth-child(3) { width: 45px; height: 45px; left: 30%; animation-duration: 20s; animation-delay: 6s; }
        .bubble:nth-child(4) { width: 25px; height: 25px; left: 42%; animation-duration: 14s; animation-delay: 2s; }
        .bubble:nth-child(5) { width: 20px; height: 20px; left: 55%; animation-duration: 15s; animation-delay: 5s; }
        .bubble:nth-child(6) { width: 40px; height: 40px; left: 68%; animation-duration: 18s; animation-delay: 8s; }
        .bubble:nth-child(7) { width: 30px; height: 30px; left: 80%; animation-duration: 13s; animation-delay: 4s; }
        .bubble:nth-child(8) { width: 22px; height: 22px; left: 92%; animation-duration: 16s; animation-delay: 9s; }
        .bubble:nth-child(9) { width: 28px; height: 28px; left: 3%; animation-duration: 14s; animation-delay: 7s; }
        .bubble:nth-child(10) { width: 32px; height: 32px; left: 50%; animation-duration: 19s; animation-delay: 11s; }
        .bubble:nth-child(11) { width: 24px; height: 24px; left: 12%; animation-duration: 17s; animation-delay: 1s; }
        .bubble:nth-child(12) { width: 38px; height: 38px; left: 25%; animation-duration: 15s; animation-delay: 10s; }
        .bubble:nth-child(13) { width: 16px; height: 16px; left: 38%; animation-duration: 11s; animation-delay: 6s; }
        .bubble:nth-child(14) { width: 28px; height: 28px; left: 62%; animation-duration: 16s; animation-delay: 12s; }
        .bubble:nth-child(15) { width: 21px; height: 21px; left: 75%; animation-duration: 14s; animation-delay: 0s; }
        
        @keyframes rise {
            0% {
                bottom: -100px;
                transform: translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 0.55;
            }
            50% {
                transform: translateX(40px);
                opacity: 0.5;
            }
            90% {
                opacity: 0.4;
            }
            100% {
                bottom: 110%;
                transform: translateX(-30px);
                opacity: 0;
            }
        }
        
        .hero-content { 
            max-width: 1200px; 
            margin: 0 auto; 
            text-align: center; 
            position: relative; 
            z-index: 2; 
        }
        
        /* Welcome Sign Image - Sticker style */
        .welcome-sign-container {
            margin-bottom: 12px;
            display: inline-block;
            animation: gentle-swing 4s ease-in-out infinite;
            transform-origin: top center;
            cursor: pointer;
            position: relative;
            z-index: 3;
        }
        .welcome-sign {
            max-width: 320px;
            width: 100%;
            height: auto;
            filter: 
                drop-shadow(0 10px 20px rgba(44, 95, 127, 0.4))
                drop-shadow(0 5px 10px rgba(44, 95, 127, 0.25));
            transition: all 0.4s ease;
        }
        .welcome-sign-container:hover .welcome-sign {
            filter: 
                drop-shadow(0 12px 20px rgba(44, 95, 127, 0.5))
                drop-shadow(0 6px 10px rgba(44, 95, 127, 0.3));
            transform: scale(1.05);
        }
        .welcome-sign-container:hover {
            animation-play-state: paused;
        }
        
        @keyframes gentle-swing {
            0% { transform: rotate(-3deg) translateY(0); }
            25% { transform: rotate(0deg) translateY(-3px); }
            50% { transform: rotate(3deg) translateY(0); }
            75% { transform: rotate(0deg) translateY(-3px); }
            100% { transform: rotate(-3deg) translateY(0); }
        }
        
        .hero h1 { font-size: 42px; color: var(--sea-deep); margin-bottom: 6px; font-weight: 600; letter-spacing: -1px; }
        .hero .location { font-size: 16px; color: var(--sea-medium); font-style: italic; margin-bottom: 4px; font-family: 'Playfair Display', serif; }
        .hero .address { font-size: 13px; color: var(--text-medium); margin-bottom: 12px; letter-spacing: 1px; }
        .hero .family-tag { display: inline-block; background: rgba(255, 255, 255, 0.85); padding: 6px 20px; border-radius: 30px; color: var(--sea-deep); font-weight: 500; font-size: 12px; letter-spacing: 2px; border: 2px solid var(--sea-light); margin-bottom: 14px; backdrop-filter: blur(10px); }
        .hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
        .social-btn { width: 42px; height: 42px; border-radius: 50%; background: var(--foam); display: flex; align-items: center; justify-content: center; color: var(--sea-medium); font-size: 18px; text-decoration: none; transition: all 0.3s; box-shadow: 0 2px 8px rgba(44, 95, 127, 0.1); }
        .social-btn:hover { background: var(--sea-medium); color: white; transform: translateY(-3px); }
        .btn-primary { background: var(--sea-medium); color: white; padding: 12px 28px; border-radius: 30px; text-decoration: none; font-weight: 500; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; }
        .btn-primary:hover { background: var(--sea-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(44, 95, 127, 0.3); }
        
        section { padding: 80px 24px; }
        .section-container { max-width: 1100px; margin: 0 auto; }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h2 { font-size: 42px; margin-bottom: 16px; }
        .section-subtitle { display: inline-block; color: var(--sea-medium); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; margin-bottom: 12px; }
        .divider { width: 60px; height: 3px; background: var(--sea-light); margin: 16px auto; border-radius: 2px; }
        
        .description-section { background: var(--foam); }
        .desc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
        .desc-image { height: 400px; background: linear-gradient(135deg, var(--sea-light) 0%, var(--sea-medium) 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--foam); font-size: 80px; position: relative; overflow: hidden; }
        .desc-text h3 { font-size: 32px; margin-bottom: 20px; }
        .desc-text p { color: var(--text-medium); margin-bottom: 16px; font-size: 16px; }
        
        .apartment-section { background: var(--foam); }
        .apartment-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; }
        .feature-card { background: var(--foam); padding: 32px 24px; border-radius: 16px; text-align: center; box-shadow: 0 4px 20px rgba(44, 95, 127, 0.08); transition: all 0.3s; border: 1px solid var(--sea-pale); }
        .feature-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(44, 95, 127, 0.15); }
        .feature-icon { width: 64px; height: 64px; background: var(--sea-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--sea-deep); font-size: 24px; }
        .feature-card h4 { color: var(--sea-deep); font-size: 18px; margin-bottom: 8px; font-family: 'Playfair Display', serif; }
        .feature-card p { color: var(--text-medium); font-size: 14px; }
        .apartment-description { background: var(--foam); padding: 40px; border-radius: 16px; margin-top: 48px; border-left: 4px solid var(--sea-medium); box-shadow: 0 4px 20px rgba(44, 95, 127, 0.06); }
        .apartment-description p { color: var(--text-medium); margin-bottom: 16px; }
        
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 48px; }
        .gallery-item { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--sea-pale), var(--sea-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--sea-deep); font-size: 36px; cursor: pointer; transition: all 0.3s; overflow: hidden; position: relative; }
        .gallery-item:hover { transform: scale(1.03); box-shadow: 0 8px 20px rgba(44, 95, 127, 0.2); }
        
        /* Real Photo Gallery */
        .photo-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 12px;
            margin-top: 48px;
        }
        .gallery-item-real {
            aspect-ratio: 1;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            box-shadow: 0 2px 8px rgba(44, 95, 127, 0.1);
            transition: all 0.3s;
        }
        .gallery-item-real::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(44, 95, 127, 0) 60%, rgba(44, 95, 127, 0.3) 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .gallery-item-real:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(44, 95, 127, 0.25);
        }
        .gallery-item-real:hover::after {
            opacity: 1;
        }
        .gallery-item-real img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .gallery-item-real:hover img {
            transform: scale(1.05);
        }
        
        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(20, 35, 45, 0.95);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
            animation: fadeIn 0.3s;
        }
        .lightbox.active {
            display: flex;
        }
        .lightbox-img {
            max-width: 90%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 48px;
            cursor: pointer;
            line-height: 1;
            font-weight: 300;
            transition: transform 0.3s;
            z-index: 10000;
        }
        .lightbox-close:hover {
            transform: rotate(90deg);
        }
        .lightbox-prev, .lightbox-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 32px;
            cursor: pointer;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s;
            user-select: none;
        }
        .lightbox-prev:hover, .lightbox-next:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-50%) scale(1.1);
        }
        .lightbox-prev { left: 20px; }
        .lightbox-next { right: 20px; }
        .lightbox-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @media (max-width: 768px) {
            .photo-gallery { grid-template-columns: repeat(2, 1fr); }
            .lightbox-prev, .lightbox-next { font-size: 24px; padding: 10px 14px; }
        }
        
        /* Instagram Gallery Style (kept for button) */
        .instagram-gallery { 
            margin-top: 48px; 
            background: var(--foam); 
            border-radius: 20px; 
            padding: 32px; 
            box-shadow: 0 4px 20px rgba(44, 95, 127, 0.08);
            border: 1px solid var(--sea-pale);
        }
        .instagram-header { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            margin-bottom: 24px; 
            padding-bottom: 24px; 
            border-bottom: 1px solid var(--sea-pale);
            flex-wrap: wrap;
            gap: 16px;
        }
        .instagram-profile { 
            display: flex; 
            align-items: center; 
            gap: 16px; 
        }
        .instagram-avatar { 
            width: 64px; 
            height: 64px; 
            border-radius: 50%; 
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            color: white; 
            font-size: 28px; 
            flex-shrink: 0;
        }
        .instagram-info h4 { 
            font-size: 18px; 
            color: var(--sea-deep); 
            margin-bottom: 4px; 
            font-family: 'Playfair Display', serif;
        }
        .instagram-info p { 
            color: var(--text-medium); 
            font-size: 14px; 
            margin: 0;
        }
        .instagram-follow-btn { 
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
            color: white; 
            padding: 10px 24px; 
            border-radius: 30px; 
            text-decoration: none; 
            font-weight: 500; 
            font-size: 14px; 
            display: inline-flex; 
            align-items: center; 
            gap: 8px; 
            transition: all 0.3s;
        }
        .instagram-follow-btn:hover { 
            transform: translateY(-2px); 
            box-shadow: 0 6px 16px rgba(220, 39, 67, 0.3);
        }
        .instagram-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 8px; 
        }
        .instagram-item { 
            aspect-ratio: 1; 
            border-radius: 8px; 
            overflow: hidden; 
            position: relative; 
            cursor: pointer; 
            display: block;
            text-decoration: none;
        }
        .instagram-placeholder { 
            width: 100%; 
            height: 100%; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            color: white; 
            font-size: 36px;
            transition: all 0.3s;
        }
        .instagram-overlay { 
            position: absolute; 
            inset: 0; 
            background: linear-gradient(45deg, rgba(240, 148, 51, 0.85), rgba(188, 24, 136, 0.85)); 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            color: white; 
            font-size: 36px; 
            opacity: 0; 
            transition: opacity 0.3s;
        }
        .instagram-item:hover .instagram-overlay { 
            opacity: 1; 
        }
        .instagram-item:hover .instagram-placeholder { 
            transform: scale(1.1); 
        }
        .btn-instagram { 
            display: inline-flex; 
            align-items: center; 
            gap: 10px; 
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
            color: white; 
            padding: 14px 36px; 
            border-radius: 30px; 
            text-decoration: none; 
            font-weight: 500; 
            font-size: 15px; 
            transition: all 0.3s;
        }
        .btn-instagram:hover { 
            transform: translateY(-2px); 
            box-shadow: 0 8px 24px rgba(220, 39, 67, 0.4);
        }
        @media (max-width: 768px) {
            .instagram-grid { grid-template-columns: repeat(2, 1fr); }
        }
        
        .where-section { background: var(--foam); }
        .destinations { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
        .destination-card { background: var(--foam); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 16px rgba(44, 95, 127, 0.08); transition: all 0.3s; border: 1px solid var(--sea-pale); }
        .destination-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(44, 95, 127, 0.15); }
        .destination-image { height: 160px; display: flex; align-items: center; justify-content: center; color: var(--foam); font-size: 48px; }
        .destination-image.sea { background: linear-gradient(135deg, #5b9aa8 0%, #2c5f7f 100%); }
        .destination-image.cities { background: linear-gradient(135deg, #c9a87c 0%, #8b6f47 100%); }
        .destination-image.villages { background: linear-gradient(135deg, #a8c090 0%, #6b8e5a 100%); }
        .destination-image.wine { background: linear-gradient(135deg, #b07c8e 0%, #6b4358 100%); }
        .destination-content { padding: 24px; }
        .destination-content h4 { font-size: 20px; margin-bottom: 8px; color: var(--sea-deep); }
        .destination-content p { color: var(--text-medium); font-size: 14px; }
        
        .reviews-section { background: var(--foam); }
        .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
        .review-card { background: var(--foam); padding: 32px; border-radius: 16px; box-shadow: 0 4px 20px rgba(44, 95, 127, 0.08); position: relative; }
        .review-card::before { content: '"'; position: absolute; top: 12px; left: 24px; font-size: 72px; color: var(--sea-pale); font-family: 'Playfair Display', serif; line-height: 1; }
        .review-stars { color: #f4b942; margin-bottom: 16px; position: relative; z-index: 1; }
        .review-text { color: var(--text-medium); font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; line-height: 1.7; }
        .review-author { display: flex; align-items: center; gap: 12px; }
        .author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--sea-pale); display: flex; align-items: center; justify-content: center; color: var(--sea-deep); font-weight: 600; font-size: 16px; }
        .author-name { color: var(--sea-deep); font-weight: 600; font-size: 15px; }
        .author-info { color: var(--text-medium); font-size: 13px; }
        
        .contacts-section { background: var(--foam); }
        .contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
        .contact-info h3 { font-size: 26px; margin-bottom: 24px; }
        .contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--sea-pale); }
        .contact-item:last-child { border-bottom: none; }
        .contact-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--sea-pale); display: flex; align-items: center; justify-content: center; color: var(--sea-deep); font-size: 16px; flex-shrink: 0; }
        .contact-details strong { display: block; color: var(--sea-deep); font-size: 14px; margin-bottom: 4px; font-weight: 600; }
        .contact-details a, .contact-details span { color: var(--text-medium); text-decoration: none; display: block; font-size: 15px; transition: color 0.3s; }
        .contact-details a:hover { color: var(--sea-medium); }
        
        footer { background: var(--sea-deep); color: var(--sea-pale); padding: 48px 24px 24px; }
        .footer-content { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 32px; }
        .footer-section h4 { color: var(--foam); margin-bottom: 16px; font-family: 'Playfair Display', serif; font-size: 18px; }
        .footer-section p, .footer-section a { color: var(--sea-pale); font-size: 14px; text-decoration: none; display: block; margin-bottom: 8px; line-height: 1.8; }
        .footer-section a:hover { color: var(--foam); }
        .footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: var(--sea-light); max-width: 1100px; margin: 0 auto; }
        
        .whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; text-decoration: none; box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); z-index: 99; transition: all 0.3s; }
        .whatsapp-float:hover { transform: scale(1.1) rotate(5deg); }
        
        @media (max-width: 1100px) {
            .nav-links { gap: 18px; }
            .nav-links a { font-size: 13px; }
        }
        
        @media (max-width: 968px) {
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }
            .nav-links.active { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--foam); flex-direction: column; padding: 16px; gap: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
            .hero { padding: 20px 20px 60px; min-height: auto; }
            .hero h1 { font-size: 34px; }
            .welcome-sign { max-width: 240px; }
            .section-header h2 { font-size: 32px; }
            .desc-grid, .contacts-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-content { grid-template-columns: 1fr; gap: 24px; }
            section { padding: 60px 20px; }
            .book-btn { display: none; }
        }

        /* Mobile: riduce il padding della navbar e il gap degli elementi a destra
           in modo che il pulsante hamburger non esca fuori dallo schermo */
        @media (max-width: 640px) {
            .navbar-content { padding: 14px 12px; gap: 8px; }
            .navbar-right { gap: 8px; }
            .logo-text { font-size: 18px; }
            .logo { gap: 8px; }
            .logo-icon { font-size: 26px; }
            .lang-btn { padding: 4px 8px; font-size: 12px; gap: 4px; }
            .flag-svg { width: 18px; height: 13px; }
            .lang-selector { gap: 2px; padding: 3px; }
            .mobile-menu-btn { font-size: 22px; padding: 0; margin-left: 2px; }
        }

        /* Schermi molto stretti (es. iPhone SE) */
        @media (max-width: 380px) {
            .navbar-content { padding: 12px 10px; gap: 6px; }
            .navbar-right { gap: 6px; }
            .logo-text { font-size: 16px; }
            .lang-btn { padding: 4px 6px; font-size: 11px; }
            .flag-svg { width: 16px; height: 12px; }
        }
        
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
        .floating { animation: float 4s ease-in-out infinite; }
    </style>

        /* Mini-hero con onda animata per le pagine secondarie
           Stesso aspetto della .hero della home: fascia celeste con gradiente,
           onda bianca animata in basso (decoro), titolo centrato sopra l'onda. */
        .page-wave-hero {
            background: linear-gradient(135deg, #a8d0d9 0%, #d8e8ec 50%, #faf6ed 100%);
            padding: 60px 24px 80px;
            margin: 0;
            position: relative;
            overflow: hidden;
            min-height: 280px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* Onda animata in basso, decoro (stessa altezza dell'onda della home) */
        .page-wave-hero .wave-layer-2 {
            height: 50%;
        }
        /* Rende trasparente il riempimento bianco dell'onda nelle pagine secondarie
           così non copre il gradiente di sfondo e i contenuti restano leggibili.
           Si conserva il tratto colorato dell'onda (effetto decorativo). */
        .page-wave-hero .wave-layer-2 path[fill="#ffffff"],
        .page-wave-hero .wave-layer-2 path[fill="#fff"],
        .page-wave-hero .wave-layer-2 path[fill="white"] {
            fill: transparent;
        }
        /* Contenuto centrato sopra l'onda */
        .page-wave-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .page-wave-hero-content .section-subtitle {
            display: inline-block;
            color: var(--sea-medium);
            font-size: 13px;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 500;
            margin-bottom: 12px;
        }
        .page-wave-hero-content h1 {
            font-family: 'Playfair Display', serif;
            color: var(--sea-deep);
            font-size: 42px;
            font-weight: 600;
            margin: 0 0 12px;
            letter-spacing: -1px;
        }
        .page-wave-hero-content .divider {
            width: 60px;
            height: 3px;
            background: var(--sea-light);
            margin: 12px auto;
            border-radius: 2px;
        }
        .page-wave-hero-content p {
            color: var(--text-medium);
            font-size: 16px;
            margin-top: 12px;
        }
        @media (max-width: 968px) {
            .page-wave-hero { padding: 40px 20px 70px; min-height: 220px; }
            .page-wave-hero-content h1 { font-size: 32px; }
            .page-wave-hero-content p { font-size: 14px; }
        }

        /* MOBILE: l'onda decorativa va spostata in basso e ridotta in altezza
           perché su schermi stretti tende a sovrapporsi al testo sottostante.
           La ancoriamo in fondo alla hero così resta nella zona libera. */
        @media (max-width: 640px) {
            .page-wave-hero {
                padding: 30px 16px 50px;
                min-height: 260px;
            }
            .page-wave-hero .waves-container {
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 60px;
                overflow: hidden;
                pointer-events: none;
            }
            .page-wave-hero .wave-layer-2 {
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                height: 100%;
            }
            .page-wave-hero-content {
                padding-bottom: 20px;
            }
            .page-wave-hero-content h1 { font-size: 28px; }
        }
