        /* ========================================
           PRONTISSSIMO BRAND VARIABLES
           Basato su Brand Book 2026
        ======================================== */
        :root {
            /* Palette Brand */
            --taupe-grey: #605453;
            --sage-green: #619A35;
            --burnt-tangerine: #D4311F;
            
            /* Palette Grafica */
            --fern: #3F6D35;
            --light-apricot: #FFE9C0;
            --carrot-orange: #F39325;
            --magenta-bloom: #C2435E;
            
            /* Utility */
            --white: #FFFFFF;
            --off-white: #FAFAFA;
            --text-dark: #2D2926;
            
            /* Typography */
            --font-primary: 'Barlow Semi Condensed', sans-serif;
            
            /* Spacing */
            --section-padding: clamp(60px, 10vw, 120px);
        }

        /* ========================================
           RESET & BASE
        ======================================== */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            font-weight: 400;
            color: var(--taupe-grey);
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ========================================
           TYPOGRAPHY
        ======================================== */
        h1, h2, h3, h4 {
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
        }

        h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
        }

        h3 {
            font-size: clamp(1.25rem, 2.5vw, 1.75rem);
            font-weight: 600;
        }

        p {
            font-size: clamp(1rem, 1.2vw, 1.125rem);
        }

        .text-sage { color: var(--sage-green); }
        .text-burnt { color: var(--burnt-tangerine); }
        .text-fern { color: var(--fern); }
        .text-orange { color: var(--carrot-orange); }
        .text-white { color: var(--white); }

        /* ========================================
           LAYOUT UTILITIES
        ======================================== */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
		
		.hidden {
		  display: none;
		}		

        .section {
            padding: var(--section-padding) 0;
        }

        /* ========================================
           DECORATIVE S ELEMENT (Brand Element)
        ======================================== */
        .s-decoration {
            position: absolute;
            font-family: Georgia, serif;
            font-weight: bold;
            font-style: italic;
            font-size: 35vw;
            line-height: 1;
            opacity: 0.05;
            pointer-events: none;
            user-select: none;
            z-index: 0;
        }

        /* ========================================
           HEADER / NAVIGATION
        ======================================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(96, 84, 83, 0.1);
            transition: all 0.3s ease;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        /* Logo primario con sfondo Taupe Grey */
        .logo-primary {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--taupe-grey);
            padding: 10px 20px;
            border-radius: 8px;
            height: 50px;
        }

        .logo-primary svg {
            height: 30px;
            width: auto;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--sage-green);
        }

        .nav-cta {
            background: var(--burnt-tangerine);
            color: var(--white) !important;
            padding: 12px 24px;
            border-radius: 4px;
            transition: transform 0.3s ease, background 0.3s ease !important;
        }

        .nav-cta:hover {
            background: var(--fern) !important;
            transform: translateY(-2px);
        }

        /* Mobile menu */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--taupe-grey);
            margin: 6px 0;
            transition: all 0.3s ease;
        }

        /* ========================================
           HERO SECTION
        ======================================== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(63, 109, 53, 0.08) 0%, rgba(255, 233, 192, 0.4) 50%, rgba(255, 255, 255, 0.9) 100%);
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 55%;
            height: 100%;
            background: url('images/hero-bg.jpg') center/cover no-repeat;
            opacity: 0.15;
            z-index: 0;
        }

        .hero .s-decoration {
            right: -10%;
            top: 5%;
            color: var(--sage-green);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text {
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-tagline {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--sage-green);
            margin-bottom: 16px;
        }

        .hero h1 {
            color: var(--taupe-grey);
            margin-bottom: 24px;
        }

        .hero h1 span {
            display: block;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 1.5vw, 1.35rem);
            color: var(--taupe-grey);
            margin-bottom: 40px;
            max-width: 500px;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            font-family: var(--font-primary);
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-radius: 4px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--burnt-tangerine);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--fern);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 49, 31, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--taupe-grey);
            border: 2px solid var(--taupe-grey);
        }

        .btn-secondary:hover {
            background: var(--taupe-grey);
            color: var(--white);
        }

        .hero-visual {
            position: relative;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(96, 84, 83, 0.25);
        }

        .hero-image-wrapper::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background: var(--carrot-orange);
            border-radius: 50%;
            z-index: -1;
        }

        .hero-image {
            width: 100%;
            aspect-ratio: 16/11;
            object-fit: contain;
            background: #f3f3f3;
        }

        .hero-badge {
            position: absolute;
            bottom: -20px;
            left: 30px;
            background: var(--burnt-tangerine);
            color: var(--white);
            padding: 20px 28px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(212, 49, 31, 0.4);
        }

        .hero-badge-number {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1;
        }

        .hero-badge-text {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* ========================================
           VANTAGGI SECTION
        ======================================== */
        .vantaggi {
            background: var(--white);
            position: relative;
        }

        .vantaggi-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .vantaggi-header h2 {
            color: var(--taupe-grey);
        }

        .vantaggi-header p {
            max-width: 600px;
            margin: 0 auto;
            color: var(--taupe-grey);
        }

        .vantaggi-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .vantaggio-card {
            background: var(--off-white);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .vantaggio-card:hover {
            transform: translateY(-8px);
            border-color: var(--sage-green);
            box-shadow: 0 20px 40px rgba(97, 154, 53, 0.15);
        }

        .vantaggio-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--light-apricot);
        }

        .vantaggio-icon svg {
            width: 40px;
            height: 40px;
            stroke: var(--carrot-orange);
            stroke-width: 2;
            fill: none;
        }

        .vantaggio-card h3 {
            color: var(--fern);
            margin-bottom: 12px;
        }

        .vantaggio-card p {
            color: var(--taupe-grey);
            font-size: 0.95rem;
        }

        /* ========================================
           SISTEMA SECTION
        ======================================== */
        .sistema {
            background: var(--fern);
            position: relative;
            overflow: hidden;
        }

        .sistema .s-decoration {
            left: -15%;
            bottom: -10%;
            color: var(--white);
            opacity: 0.08;
        }

        .sistema-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .sistema-text h2 {
            color: var(--white);
        }

        .sistema-text > p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
            margin-bottom: 40px;
        }

        .sistema-features {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .sistema-feature {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .feature-number {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: var(--carrot-orange);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.25rem;
        }

        .feature-content h4 {
            color: var(--light-apricot);
            font-size: 1.15rem;
            margin-bottom: 4px;
        }

        .feature-content p {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.95rem;
        }

        .sistema-visual {
            position: relative;
        }

        .sistema-image-stack {
            position: relative;
        }

        .sistema-image-main {
            border-radius: 16px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .sistema-image-main img {
            width: 100%;
            aspect-ratio: 16/11;
            object-fit: contain;
            background: #f3f3f3;
        }

        .sistema-image-float {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 200px;
            background: var(--light-apricot);
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            padding: 24px;
            text-align: center;
        }

        .sistema-image-float span {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--fern);
            display: block;
        }

        .sistema-image-float small {
            color: var(--taupe-grey);
            font-size: 0.85rem;
            margin-top: 4px;
            display: block;
        }

        /* ========================================
           CORNER SECTION
        ======================================== */
        .corner {
            background: var(--light-apricot);
            position: relative;
        }

        .corner-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .corner-header h2 {
            color: var(--taupe-grey);
        }

        .corner-showcase {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 30px;
        }

        .corner-main {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(96, 84, 83, 0.15);
        }

        .corner-main-image {
            overflow: hidden;
        }

        .corner-main-image img {
            width: 100%;
            aspect-ratio: 16/10;
            object-fit: contain;
            background: #f3f3f3;
            object-position: center top;
            transition: transform 0.5s ease;
        }

        .corner-main:hover .corner-main-image img {
            transform: scale(1.03);
        }

        .corner-main-content {
            padding: 30px;
        }

        .corner-main-content h3 {
            color: var(--fern);
            margin-bottom: 12px;
        }

        .corner-main-content p {
            color: var(--taupe-grey);
        }

        .corner-side {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .corner-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(96, 84, 83, 0.1);
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .corner-card-image {
            overflow: hidden;
            flex-shrink: 0;
        }

        .corner-card-image img {
            width: 100%;
            height: 180px;
            object-fit: contain;
            background: #f3f3f3;
            transition: transform 0.5s ease;
        }

        .corner-card:hover .corner-card-image img {
            transform: scale(1.05);
        }

        .corner-card-content {
            padding: 20px;
            flex-grow: 1;
        }

        .corner-card-content h4 {
            color: var(--taupe-grey);
            font-size: 1rem;
            margin-bottom: 4px;
        }

        .corner-card-content p {
            color: var(--taupe-grey);
            opacity: 0.75;
            font-size: 0.9rem;
        }

        /* ========================================
           NUMERI / STATS SECTION
        ======================================== */
        .numeri {
            background: var(--taupe-grey);
            padding: 80px 0;
        }

        .numeri-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }

        .numero-item {
            color: var(--white);
        }

        .numero-value {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: var(--carrot-orange);
            line-height: 1;
            margin-bottom: 8px;
        }

        .numero-label {
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            opacity: 0.85;
        }

        /* ========================================
           CTA SECTION
        ======================================== */
        .cta-section {
            background: linear-gradient(135deg, var(--burnt-tangerine) 0%, #e8523f 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section .s-decoration {
            right: -5%;
            top: -20%;
            color: var(--white);
            opacity: 0.1;
            font-size: 40vw;
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-content h2 {
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-content p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-white {
            background: var(--white);
            color: var(--burnt-tangerine);
        }

        .btn-white:hover {
            background: var(--light-apricot);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-outline-white {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline-white:hover {
            background: var(--white);
            color: var(--burnt-tangerine);
        }

        /* ========================================
           FOOTER
        ======================================== */
        .footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-brand .logo-primary {
            width: fit-content;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .footer-tagline {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--sage-green);
        }

        .footer-col h4 {
            color: var(--white);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 12px;
        }

        .footer-col a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-col a:hover {
            color: var(--carrot-orange);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            margin-left: 24px;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--white);
        }

        /* ========================================
           RESPONSIVE
        ======================================== */
        @media (max-width: 1024px) {
            .hero-content,
            .sistema-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-visual {
                order: -1;
            }

            .vantaggi-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .corner-showcase {
                grid-template-columns: 1fr;
            }

            .numeri-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .vantaggi-grid {
                grid-template-columns: 1fr;
            }

            .hero-ctas {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            .sistema-image-float {
                position: relative;
                bottom: 0;
                right: 0;
                width: 100%;
                margin-top: 20px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand {
                align-items: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .footer-legal a {
                margin: 0 12px;
            }
        }

        /* ========================================
           ANIMATIONS
        ======================================== */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .hero-badge {
            animation: float 3s ease-in-out infinite;
        }

        /* Scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
    
        /* ========================================
           HERO PILLS
        ======================================== */
        .hero-pills{
            display:flex;
            flex-wrap:wrap;
            gap:10px;
            margin: 18px 0 26px;
        }
        .hero-pills span{
            padding: 10px 14px;
            /*border-radius: 999px;*/
            /*background: rgba(255,255,255,0.75);*/
            /*border: 1px solid rgba(96,84,83,0.14);*/
            color: var(--taupe-grey);
            font-weight: 600;
            font-size: 0.95rem;
            backdrop-filter: blur(10px);
        }

        /* ========================================
           FOOD FIRST
        ======================================== */
        .food{
            background: linear-gradient(135deg, rgba(255,233,192,0.60) 0%, rgba(255,255,255,0.95) 65%);
            overflow:hidden;
        }
        .food-grid-top{
    display:grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items:start;
}
.food-left{
}
.food-right{
    display:grid;
    gap: 18px;
}
.food-bottom{
    margin-top: 18px;
}
.food-bottom .food-list{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.food-hero{
            position:relative;
            border-radius: 18px;
            overflow:hidden;
            box-shadow: 0 22px 55px rgba(96,84,83,0.18);
            background:#fff;
            min-height: 520px;
        }
        .food-hero-img{
            width:100%;
            height:100%;
            object-fit:cover;
            display:block;
            transform: scale(1.02);
            filter:saturate(1.05);
        }

        .food-slideshow{
            position:absolute;
            inset:0;
        }
        .food-slideshow .slide{
            position:absolute;
            inset:0;
            background-size:cover;
            background-position:center;
            opacity:0;
            transition: opacity 1s ease-in-out;
            transform: scale(1.02);
            filter:saturate(1.05);
        }
        .food-slideshow .slide.active{
            opacity:1;
        }

        .food-hero-overlay{
            z-index:2;
            position:absolute;
            inset: auto 0 0 0;
            /* lower the content area to match the reference layout */
            padding: 22px 28px 26px;
            color:#fff;
            background: linear-gradient(180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.70) 78%);
        }
        .food-pill{
            display:inline-flex;
            align-items:center;
            gap:8px;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(255,255,255,0.18);
            border: 1px solid rgba(255,255,255,0.25);
            backdrop-filter: blur(8px);
            font-weight: 700;
            margin-bottom: 14px;
        }

        .food-pill.lowered{
            margin-bottom: 10px;
            transform: translateY(12px);
        }
        .food-description{
            margin: 0 0 18px;
            max-width: 46ch;
            font-size: 1.05rem;
            line-height: 1.45;
            opacity: 0.95;
        }
        .food-hero-overlay h3{
            font-size: clamp(1.7rem, 2.6vw, 2.3rem);
            margin:0 0 10px;
            line-height:1.1;
        }
        .food-hero-overlay p{
            margin:0 0 18px;
            
            opacity:0.92;
            max-width: 48ch;
        }
        .food-badges{
            display:flex;
            flex-wrap:wrap;
            gap: 12px;
            align-items:center;
        }
        .food-badge-strong{
            display:flex;
            align-items:center;
            gap:10px;
            padding: 10px 14px;
            border-radius: 14px;
            background: rgba(255,255,255,0.18);
            border: 1px solid rgba(255,255,255,0.25);
            backdrop-filter: blur(8px);
            font-weight: 800;
        }
        .food-badge-strong .n{
            width: 34px; height:34px;
            border-radius: 12px;
            background: rgba(243,147,37,0.95);
            color:#1f1408;
            display:flex;
            align-items:center;
            justify-content:center;
            font-weight: 900;
        }
        .food-badge{
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.22);
            backdrop-filter: blur(8px);
            font-weight: 700;
        }
        .food-side{
            display:grid;
            gap: 18px;
        }
        .food-list{
            list-style:none;
            padding:0;
            margin:0;
            display:grid;
            gap: 12px;
        }
        .food-list li{
            background: var(--off-white);
            border-radius: 14px;
            padding: 16px;
            border: 1px solid rgba(96,84,83,0.12);
        }
        .food-list li strong{ display:block; margin-bottom: 4px; }
        .food-list li span{ color: var(--taupe-grey); display:block; line-height:1.45; }

        .food-media{
            display:grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }
        .food-media-card{
            background:#fff;
            border-radius: 14px;
            overflow:hidden;
            border: 1px solid rgba(96,84,83,0.12);
            box-shadow: 0 18px 44px rgba(96,84,83,0.14);
        }
        .food-media-card img{
            width:100%;
            height: 170px;
            object-fit: contain;
            background: #f3f3f3;
            display:block;
        }
        .food-media-caption{
            padding: 14px;
        }
        .food-media-caption strong{ display:block; margin-bottom: 2px; }
        .food-media-caption span{ color: var(--taupe-grey); font-size: 0.95rem; }

        .food-ctas{
            display:flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        @media (max-width: 980px){
            .food-grid-top{ grid-template-columns: 1fr; }
            .food-bottom .food-list{ grid-template-columns: 1fr; }
            .food-hero{ min-height: 460px; }
            .food-media-card img{ height: 200px; }
        }

    

/* Brand logos (from Brand Book) */
.brand-logo{height:42px;width:auto;display:block;}
@media (max-width:768px){.brand-logo{height:38px;}}
.footer-logo{height:52px;width:auto;display:block;}

/* Language switch */
.lang-switch{display:flex;gap:10px;align-items:center;margin-left:12px}
.lang-btn{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:10px;
  border:1px solid rgba(96,84,83,0.18);background:rgba(255,255,255,0.75);text-decoration:none;
  transition:transform .15s ease, box-shadow .15s ease}
.lang-btn img{width:22px;height:16px;display:block;border-radius:3px;box-shadow:0 2px 6px rgba(0,0,0,.12)}
.lang-btn:hover{transform:translateY(-1px);box-shadow:0 10px 22px rgba(0,0,0,0.10)}
.lang-btn.active{outline:2px solid rgba(97,154,53,0.45)}
.catalog-btn{display:inline-flex;align-items:center;justify-content:center;height:34px;padding:0 12px;border-radius:999px;
  border:1px solid rgba(96,84,83,0.18);background:rgba(255,255,255,0.85);text-decoration:none;
  font-weight:800;font-size:13px;letter-spacing:.2px;color:rgba(42,36,34,.92);transition:transform .15s ease, box-shadow .15s ease}
.catalog-btn:hover{transform:translateY(-1px);box-shadow:0 10px 22px rgba(0,0,0,0.10)}
@media(max-width:860px){
	.lang-switch{position:absolute;right:65px;top:20px;margin-left:0}
	.catalog-btn{display:none;position:absolute;right:170px;top:20px}
	#menu-mobile{position:absolute;right:30px;top:60px;background:#ffffff;transition: all 0.3s ease;width:150px; box-shadow:0 10px 22px rgba(0,0,0,0.10); text-align:right;}
	#menu-mobile li {border:1px solid rgba(96,84,83,0.12);  list-style-type:none;}
	/*#menu-mobile li:hover {background-color: rgba(97,154,53,0.45)}*/
	#menu-mobile li a {display:block; padding:6px}
	#menu-mobile li a:hover {background-color: rgba(97,154,53,0.45)}
	
}

/* Catalog section */
.catalog-section{padding-top:30px}
.catalog-card{display:flex;flex-wrap:wrap;gap:18px;align-items:center;justify-content:space-between;
  background:rgba(255,255,255,0.82);border:1px solid rgba(96,84,83,0.12);border-radius:16px;
  padding:18px 18px;box-shadow:0 18px 40px rgba(96,84,83,0.12)}
.catalog-card h2{margin:0 0 6px}
.catalog-card p{margin:0;color:rgba(42,36,34,.78);max-width:70ch}
.catalog-actions{display:flex;gap:12px;flex-wrap:wrap}


/* Catalog section */
.catalog-section{padding-top:30px}
.catalog-card{display:flex;flex-wrap:wrap;gap:18px;align-items:center;justify-content:space-between;
  background:rgba(255,255,255,0.82);border:1px solid rgba(96,84,83,0.12);border-radius:16px;
  padding:18px 18px;box-shadow:0 18px 40px rgba(96,84,83,0.12)}
.catalog-card h2{margin:0 0 6px}
.catalog-card p{margin:0;color:rgba(42,36,34,.78);max-width:70ch}
.catalog-actions{display:flex;gap:12px;flex-wrap:wrap}
