<style>

        :root {
            --primary: #D16707;
            --primary-dark: #ff303f;
            --dark: #1e272e;
            --light: #D16707;
            --white: #ffffff;
            --instagram: #e1306c;
            --facebook: #1877f2;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', 'Segoe UI', sans-serif; }
        body { background-color: #e69351; color: #1e272e; line-height: 1.6; padding-bottom: 80px; }

        /* --- TICKER / BARRA NOTIZIE SCORREVOLE --- */
        .news-ticker {
            background: #1e272e;
            color: #ffffff;
            font-size: 1.85rem;
            padding: 8px 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }
        .ticker-content {
            display: inline-block;
            animation: ticker 20s linear infinite;
        }
        .ticker-content span {
            margin-right: 50px;
        }
        .ticker-content i { color: #D16707; margin-right: 8px; }
        @keyframes ticker {
            0% { transform: translate3d(0, 0, 0); }
            100% { transform: translate3d(-50%, 0, 0); }
        }

        /* --- HEADER --- */
        .site-header {
            /* background: rgba(252, 251, 220, 0.95); */
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #eee;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo { font-size: 2.2rem; font-weight: 800; color: #1e272e; letter-spacing: -0.5px; }
        .logo span { color: #D16707; }
        
        .desktop-nav { display: none; gap: 25px; align-items: center; }
        .desktop-nav a { text-decoration: none; color: #1e272e; font-weight: 600; font-size: 1.2rem; transition: color 0.2s; }
        .desktop-nav a:hover { color: #D16707; }
        
        .btn-cta {
            background: #D16707;
            color: #ffffff;
            padding: 10px 22px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: transform 0.2s, background 0.2s;
            box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
        }
        .btn-cta:hover { transform: translateY(-2px); background: var#ff303f; }

        @media(min-width: 768px) {
            .desktop-nav { display: flex; }
            .mobile-only { display: none !important; }
        }

        /* --- HERO DINAMICO --- */
        .hero-dynamic {
            padding: 50px 20px;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            align-items: center;
            background-color: #e69351;
        }
        .hero-text h1 {
            font-size: 2.2rem;
            line-height: 1.1;
            font-weight: 900;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        .hero-text h1 span { color: #D16707; }
        .hero-text p { font-size: 1.1rem; color: #ffffff; margin-bottom: 30px; }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #ffeaa7;
            color: #564c4c;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .hero-card-preview {
            background: linear-gradient(135deg, #2d3436, #1e272e);
            border-radius: 24px;
            padding: 30px;
            color: #ffffff;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
        }
        .hero-card-preview::after {
            content: '\f09d';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: -20px;
            bottom: -30px;
            font-size: 10rem;
            color: rgba(255,255,255,0.03);
        }

        @media(min-width: 768px) {
            .hero-dynamic { grid-template-columns: 1.2fr 1fr; padding: 80px 20px; }
            .hero-text h1 { font-size: 3.5rem; }
        }

        /* --- SEZIONE SOCIAL WALL (BENTO GRID) --- */
        .social-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 20px;
        }
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 30px;
        }
        .section-header h2 { font-size: 2rem; font-weight: 800; letter-spacing: -0.5px; }
        .section-header p { color: #666; font-size: 0.95rem; }

        /* Storie Orizzontali Dinamiche */
        .stories-row {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding-bottom: 15px;
            margin-bottom: 30px;
            scrollbar-width: none;
        }
        .stories-row::-webkit-scrollbar { display: none; }
        
        .story-bubble {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            flex-shrink: 0;
        }
        .story-ring {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            padding: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }
        .story-bubble:hover .story-ring { transform: scale(1.05); }
        .story-ring img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid #ffffff;
            object-fit: cover;
        }
        .story-bubble span { font-size: 0.75rem; font-weight: 600; color: #555; }

        /* Bento Grid per i Post */
        .bento-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        @media(min-width: 768px) {
            .bento-grid {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: repeat(2, auto);
            }
            .bento-item.large {
                grid-column: span 2;
                grid-row: span 2;
            }
        }

        .bento-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            border: 1px solid rgba(0,0,0,0.04);
            display: flex;
            flex-direction: column;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        }

        .bento-card-header {
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.85rem;
            font-weight: 600;
        }
        .badge-insta { color: var(--instagram); }
        .badge-fb { color: var(--facebook); }

        .bento-media {
            width: 100%;
            overflow: hidden;
            background: #eee;
        }
        .bento-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s;
        }
        .bento-card:hover .bento-media img { transform: scale(1.03); }

        .bento-body {
            padding: 20px;
            font-size: 0.95rem;
            color: #444;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .bento-footer {
            margin-top: 15px;
            font-size: 0.8rem;
            color: #999;
            display: flex;
            gap: 15px;
        }

        /* --- BOTTOM NAV MOBILE (Ottimizzata) --- */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 65px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
            z-index: 1001;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #eee;
        }
        .bottom-nav-item {
            background: none;
            border: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #888;
            font-size: 0.7rem;
            font-weight: 600;
            width: 20%;
            cursor: pointer;
            transition: color 0.2s;
        }
        .bottom-nav-item i { font-size: 1.25rem; margin-bottom: 2px; }
        .bottom-nav-item.active, .bottom-nav-item:hover { color: #D16707; }

        /* --- DRAWER LATERALE --- */
        .mobile-drawer {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 350px;
            height: 100%;
            background: #ffffff;
            z-index: 1003;
            transition: right 0.35s cubic-bezier(0.1, 1, 0.1, 1);
            padding: 30px;
            display: flex;
            flex-direction: column;
            box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        }
        .mobile-drawer.open { right: 0; }
        .drawer-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(4px);
            z-index: 1002;
            visibility: hidden;
            opacity: 0;
            transition: all 0.3s;
        }
        .drawer-overlay.active { visibility: visible; opacity: 1; }
        .drawer-close { background: none; border: none; font-size: 1.5rem; align-self: flex-end; cursor: pointer; color: #1e272e; }
        .drawer-links { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
        .drawer-links a { text-decoration: none; color: #1e272e; font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; gap: 15px; }
        .drawer-links a i { color: #D16707; width: 25px; }
        
        
        .banner-container {
            max-width: 900px;
            height: 400px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        /* Contenitore delle slide */
        .slides-wrapper {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        /* Singola immagine */
        .slide {
            min-width: 100%;
            height: 100%;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Mantiene le proporzioni senza distorcere */
        }

        /* Pulsanti di navigazione Avanti / Indietro */
        .btn-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 12px 18px;
            cursor: pointer;
            font-size: 20px;
            border-radius: 50%;
            user-select: none;
            transition: background-color 0.3s;
        }

        .btn-nav:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .prev { left: 15px; }
        .next { right: 15px; }

        /* Messaggio se non ci sono immagini */
        .no-images {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            background: #e0e0e0;
            color: #555;
        }
    </style>