    :root {
        --brand-black: #000000;
        --brand-white: #ffffff;
        --brand-gold: #8a6236;
        --brand-red: #d32f2f;
        --font-heading: 'Playfair Display', serif;
        --font-body: 'Montserrat', sans-serif;
    }

    body {
        font-family: var(--font-body);
        color: #333;
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    .brand-font {
        font-family: var(--font-heading);
        font-weight: 700;
    }

    /* Icone SVG Base */
    .bi {
        display: inline-block;
        vertical-align: -.125em;
        fill: currentColor;
        width: 1em;
        height: 1em;
    }

    /* Top Bar */
    .top-bar {
        background-color: var(--brand-white);
        color: #333;
        font-size: 0.75rem;
        padding: 8px 0;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-bottom: 1px solid #eee;
        position: relative;
        z-index: 1030;
    }

    .top-bar a {
        color: #333;
        text-decoration: none;
        transition: color 0.2s;
    }

    .top-bar a:hover {
        color: var(--brand-gold);
    }

    .top-bar .socials a {
        margin-left: 15px;
        font-size: 0.9rem;
        vertical-align: middle;
    }

    .top-bar .contacts a {
        margin-right: 15px;
    }

    .top-bar .languages a {
        margin: 0 5px;
    }

    /* Header */
    .header-main {
        background-color: var(--brand-white);
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        position: sticky;
        top: 0;
        z-index: 1020;
        width: 100%;
        transition: padding 0.3s ease, box-shadow 0.3s ease;
    }

    .header-main.scrolled {
        padding: 8px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .brand-logo-img {
        max-height: 45px;
        width: auto;
        display: block;
        transition: max-height 0.3s ease;
    }

    .header-main.scrolled .brand-logo-img {
        max-height: 35px;
    }



    /* Menu Links */
    .nav-link {
        color: #000 !important;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        padding: 10px 15px !important;
        position: relative;
        transition: color 0.3s ease;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 15px;
        right: 15px;
        height: 2px;
        background-color: var(--brand-red);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.3s ease;
    }

    .nav-link:hover {
        color: var(--brand-red) !important;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        transform: scaleX(1);
    }

    .dropdown-menu {
        border-radius: 0;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .dropdown-item {
        font-size: 0.75rem;
        padding: 10px 20px;
        text-transform: uppercase;
        font-weight: 500;
    }

    .dropdown-item:hover {
        background-color: #f8f8f8;
        color: var(--brand-red);
    }

    /* Slider */
    .carousel-item {
        height: 85vh;
        overflow: hidden;
        position: relative;
    }

    .carousel-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
        z-index: 1;
        pointer-events: none;
    }

    .carousel-item img {
        object-fit: cover;
        height: 100%;
        width: 100%;
        filter: brightness(0.9);
        transform: scale(1);
        transition: transform 0.5s ease-out;
    }

    .carousel-item.active img {
        transform: scale(1.1);
        transition: transform 6s linear;
    }

    /* --- FIX HERO MOBILE & DESKTOP --- */

@media all and (max-width: 480px){
  .carousel-item,   .carousel-item img {
      height: 25vh;
      max-height: 250px;
      overflow: hidden;
      position: relative;
  }

}

    .carousel-caption {
        bottom: 40%;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
        z-index: 10;
    }

    .carousel-caption h2 {
        font-size: 4rem;
        letter-spacing: 3px;
    }

    .btn-hero {
        border: 2px solid white;
        color: white;
        padding: 12px 40px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem;
        margin-top: 20px;
        background: transparent;
        transition: all 0.3s;
    }

    .btn-hero:hover {
        background: white;
        color: black;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
        background-size: 50%;
        z-index: 11;
    }


    /* Video Story */
    .video-story-section {
        background-color: #fff;
    }

    .video-col {
        position: relative;
        height: 600px;
        overflow: hidden;
        background-color: #000;
    }

    .video-player {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      /*  object-fit: cover;*/
        z-index: 0;
    }

    .video-cover-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        transition: opacity 0.5s ease;
    }

    .video-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .play-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: background 0.3s;
    }

    .play-btn {
        width: 100px;
        height: 100px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
        transition: all 0.4s ease;
        cursor: pointer;
        padding: 0;
    }

    .play-btn svg {
        width: 3.5rem;
        height: 3.5rem;
        color: rgba(255, 255, 255, 0.9);
        margin-left: 8px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

    .play-btn:hover {
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.3);
    }

    .hover-scale {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .hover-scale:hover {
        transform: scale(1.2);
        opacity: 1 !important;
    }

    .cover-hidden {
        opacity: 0;
        pointer-events: none;
    }

    .text-col {
        padding: 4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .subtitle {
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 0.85rem;
        color: var(--brand-gold);
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

    .story-title {
        font-family: var(--font-heading);
        font-size: 3rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }

    .story-text {
        font-family: 'Montserrat', sans-serif;
        font-weight: 300;
        line-height: 1.8;
        color: #666;
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    /* --- WALL SECTION 2 RIGHE (FLEX WRAP FIXED HEIGHT) --- */
    .wall-header {
        padding: 8rem 0rem;
        text-align: center;
    }

    /* Più aria all'header */
    .wall-scroll-wrapper {
        position: relative;
        padding: 0;
        overflow: hidden;
        width: 100%;
    }

    .masonry-horizontal {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: flex-start;

        /* ALTEZZA: (450px * 2 righe) = 900px. Gap è 0. */
        height: 900px;
        padding: 0;
        gap: 0;
        /* Zero gap for adjacency */
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    .masonry-horizontal::-webkit-scrollbar {
        display: none;
    }

    .masonry-item {
        width: 450px;
        /* Immagini più grandi */
        height: 450px;
        flex: 0 0 auto;
        position: relative;
        cursor: zoom-in;
        overflow: hidden;
        margin: 0;
    }

    .masonry-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        display: block;
    }

    .masonry-item:hover img {
        transform: scale(1.05);
    }

    .item-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
    }

    .masonry-item:hover .item-overlay {
        opacity: 1;
    }

    .wall-control {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(255, 255, 255, 0.8);
        border: none;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
    }

    .wall-control:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
    }

    .wall-control-prev {
        left: 30px;
    }

    .wall-control-next {
        right: 30px;
    }

    .wall-control.visible {
        display: flex;
    }

    /* Lightbox */
    .lightbox-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .lightbox-overlay.active {
        display: flex;
        opacity: 1;
    }

    .lightbox-content {
        position: relative;
        max-width: 85vw;
        max-height: 85vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lightbox-img {
        max-width: 100%;
        max-height: 85vh;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        transition: opacity 0.3s ease;
    }

    .lightbox-nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        color: rgba(255, 255, 255, 0.5);
        border: none;
        font-size: 3rem;
        padding: 20px;
        cursor: pointer;
        z-index: 10000;
        transition: all 0.3s ease;
    }

    .lightbox-nav-btn:hover {
        color: rgba(255, 255, 255, 1);
        transform: translateY(-50%) scale(1.1);
    }

    .lightbox-prev {
        left: -100px;
    }

    .lightbox-next {
        right: -100px;
    }

    .lightbox-close {
        position: absolute;
        top: -50px;
        right: -20px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 2rem;
        cursor: pointer;
        transition: 0.3s;
        z-index: 10001;
    }

    .lightbox-close:hover {
        color: white;
        transform: rotate(90deg);
    }

    .lightbox-caption {
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 100%;
        text-align: center;
        color: white;
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
        pointer-events: none;
        z-index: 10002;
    }

    /* Footer */
    footer {
        background-color: var(--brand-white);
        color: #333;
        padding: 30px 0;
        font-size: 0.85rem;
        border-top: 1px solid #eee;
        margin-top: 50px;
    }

    footer a {
        color: #555;
        text-decoration: none;
        margin-left: 20px;
        transition: 0.3s;
    }

    footer a:hover {
        color: var(--brand-black);
        text-decoration: underline;
    }

    @media (max-width: 991px) {
        .carousel-caption h2 {
            font-size: 2.5rem;
        }

        .nav-link:active {
            color: var(--brand-red) !important;
        }

        footer .d-flex {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        footer a {
            margin: 0 10px;
        }

        footer div:first-child {
            margin-bottom: 15px;
        }

        .video-col {
            height: 400px;
        }

        .text-col {
            padding: 3rem 1.5rem;
        }

        .story-title {
            font-size: 2.2rem;
        }

        /* Wall Mobile: 2 righe più piccole ma sempre adiacenti */
        /* 250px * 2 = 500px */
        .masonry-horizontal {
            height: 500px;
        }

        .masonry-item {
            width: 250px;
            height: 250px;
            flex: 0 0 auto;
        }

        .wall-control {
            display: none !important;
        }

        .lightbox-prev {
            left: 0;
            background: rgba(0, 0, 0, 0.3);
        }

        .lightbox-next {
            right: 0;
            background: rgba(0, 0, 0, 0.3);
        }
    }

    .navbar {
               width: 100%;
               padding: 0;
           }

           .navbar-container {
               position: relative;
               display: flex;
               align-items: center;
               justify-content: space-between;
           }

           /* Logo Centrale Assoluto */
           .navbar-brand {
               position: absolute;
               left: 50%;
               top: 50%;
               transform: translate(-50%, -50%);
               margin: 0;
               padding: 0;
               z-index: 10;
           }

           .brand-logo-img {
               max-height: 40px;
               width: auto;
               display: block;
           }

           /* Effetto Rollover Sottolineatura Rossa */
           .nav-link {
               font-size: 0.75rem;
               font-weight: 600;
               text-transform: uppercase;
               letter-spacing: 1.2px;
               color: var(--brand-black) !important;
               padding: 10px 15px !important;
               position: relative;
               transition: color 0.3s ease;
           }

           .nav-link::after {
               content: '';
               position: absolute;
               bottom: 5px;
               left: 15px;
               right: 15px;
               height: 2px;
               background-color: var(--brand-red);
               transform: scaleX(0);
               transform-origin: center;
               transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
           }

           .nav-link:hover::after,
           .nav-link.active::after {
               transform: scaleX(1);
           }

           .nav-link:hover {
               color: var(--brand-red) !important;
           }

           /* Navbar Desktop */
           @media (min-width: 992px) {
               .navbar-collapse {
                   display: flex !important;
                   justify-content: space-between;
                   width: 100%;
               }
               .nav-left, .nav-right {
                   flex: 1;
                   display: flex;
                   list-style: none;
                   padding: 0;
                   margin: 0;
               }
               .nav-left { justify-content: flex-end; margin-right: 100px; }
               .nav-right { justify-content: flex-start; margin-left: 100px; }
           }

           /* Mobile Layout */
                   @media (max-width: 991px) {
                       .navbar-toggler {
                           border: none;
                           padding: 10px;
                           position: relative;
                           z-index: 11;
                           /* Forza visibilità icona */
                           background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
                           background-repeat: no-repeat;
                           background-position: center;
                       }
                       .navbar-toggler-icon { display: none; } /* Usiamo il bg personalizzato sopra */

                       .navbar-collapse {
                           position: absolute;
                           top: 80px;
                           left: 0;
                           width: 100%;
                           background: white;
                           box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                           padding: 20px;
                           text-align: left; /* Voci a sinistra */
                       }
                       .nav-left, .nav-right {
                           flex-direction: column;
                       }
                       .nav-link {
                           padding: 15px 0 !important;
                           border-bottom: 1px solid #f5f5f5;
                       }
                       .nav-link::after {
                           left: 0;
                           right: auto;
                           width: 30px;
                           transform-origin: left;
                       }
                   }background-size: 100%;
}
