:root{
            --bg: #191629;
            --card: #242435;
            --muted: #ffffff;
            --accent: #008cff;
            --accent-2: #66b8ff;
            --shadow: 0 10px 30px rgba(0,140,255,0.07);
            font-family: "Quicksand", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
            color: var(--muted);
            --radius: 12px;
            --gap: 20px;
    
        }
        *{box-sizing:border-box}
        html,body{height:100%}
        body{
            margin:0;
            background:#0f0e1a;
            padding:28px;
            -webkit-font-smoothing:antialiased;
            -moz-osx-font-smoothing:grayscale;
            line-height:1.45;
        }

        .wrap{
            max-width:1100px;
            margin:0 auto;
            display:flex;
            flex-direction:column;
            gap:var(--gap);
        }

        /* Header / hero */
        header.hero{
            /* background:linear-gradient(135deg,var(--accent),var(--accent-2)); */
            color:#071727;
            padding:22px;
            border-radius:16px;
            box-shadow:var(--shadow);
            border:1px solid rgba(255,255,255,0.06);
        }
        header .hero-inner{
            display:flex;
            flex-direction:row;
            align-items:center;
            gap:18px;
        }
        header .title{
            margin:0;
            font-size:clamp(20px,4vw,28px);
            font-weight:700;
            letter-spacing:0.2px;
        }
        header .subtitle{
            margin:6px 0 0 0;
            font-size:14px;
            opacity: 0.95;
            color: var(--muted);
        }

        /* Grid layout */
        main.grid{
            display:grid;
            grid-template-columns: 1fr 360px;
            gap:24px;
        }
        @media (max-width:920px){
            main.grid{grid-template-columns:1fr}
        }

        .card{
            background:var(--card);
            padding:18px;
            border-radius:var(--radius);
            box-shadow:var(--shadow);
            border:1px solid rgba(209,209,209,0.04);
            color:var(--muted);
            margin: 18px;
        }

        h1,h2{margin:0 0 10px 0;color:var(--muted)}
        h1{font-size:20px;font-weight:700}
        h2{font-size:16px;font-weight:600}
        p{margin:0 0 12px 0;color:var(--muted);font-size:14px}

        .objectives{
            display:flex;
            gap:10px;
            flex-wrap:wrap;
            margin-top:8px;
        }
        .chip{
            background:linear-gradient(180deg,rgba(0,140,255,0.08),rgba(102,184,255,0.04));
            padding:8px 10px;border-radius:999px;font-weight:600;font-size:13px;color:var(--muted);
            border:1px solid rgba(209,209,209,0.03);
        }

        .art-direction{
            display:grid;
            grid-template-columns:repeat(2,1fr);
            gap:10px;
            margin-top:12px;
        }
        .swatch{
            height:72px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-weight:700;
            color:#071727;font-size:13px;
            box-shadow:inset 0 -20px 30px rgba(0,0,0,0.06);
        }

        table{width:100%;border-collapse:collapse;margin-top:10px;font-size:14px;color:var(--muted)}
        th,td{padding:8px;text-align:left;border-bottom:1px dashed rgba(209,209,209,0.04)}
        th{font-weight:700;color:var(--muted)}

        /* Menu list (interactive) */
        .menu-list{display:grid;gap:12px;margin-top:8px}
        .menu-item{
            display:grid;
            grid-template-columns:76px 1fr auto;
            gap:12px;
            align-items:start;
            padding:12px;
            border-radius:12px;
            background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.03));
            border:1px solid rgba(209,209,209,0.03);
            transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
        }
        .menu-item:hover{
            transform:translateY(-4px);
            box-shadow:0 14px 30px rgba(0,140,255,0.06);
        }
        .menu-item:focus-within{
            outline:2px solid rgba(102,184,255,0.18);
            outline-offset:4px;
        }

        .thumb{
            width:76px;height:58px;border-radius:8px;
            background:linear-gradient(135deg,var(--accent-2),var(--accent));
            flex-shrink:0;display:flex;align-items:center;justify-content:center;font-weight:700;color:#081427;
            box-shadow:0 6px 12px rgba(0,140,255,0.06);
            font-size:13px;
            text-align:center;padding:6px;
        }
        .meta{flex:1}
        .meta h3{margin:0;font-size:15px;color:var(--muted);font-weight:700}
        .meta p{margin:6px 0 0 0;font-size:13px;color:rgba(209,209,209,0.92)}

        .toggle{
            background:transparent;border:0;padding:8px 10px;border-radius:10px;font-weight:700;
            background:linear-gradient(180deg, rgba(0,140,255,0.04), rgba(102,184,255,0.02));
            color:var(--muted);cursor:pointer;font-size:13px;
            transition:transform .12s ease, background .12s ease;
        }
        .toggle:active{transform:translateY(1px)}
        .toggle:focus{outline:2px solid rgba(102,184,255,0.18);outline-offset:3px}

        /* Ingredients reveal */
        .ingredients{
            grid-column:1 / -1;
            overflow:hidden;
            max-height:0;
            padding:0 12px;
            margin-top:0;
            opacity:0;
            transform:translateY(-6px) scale(0.995);
            transition:max-height .32s cubic-bezier(.2,.9,.2,1), opacity .28s ease, transform .28s ease, padding .22s ease;
            color:var(--muted);font-size:13px;
            background:linear-gradient(180deg, rgba(0,140,255,0.02), transparent);
            border-radius:8px;
        }
        .ingredients.open{
            max-height:380px;
            padding:10px 12px;
            margin-top:8px;
            opacity:1;
            transform:translateY(0) scale(1);
        }
        .ingredients ul{margin:0;padding-left:18px}
        .ingredients li{margin:6px 0}

        footer{font-size:13px;color:rgba(209,209,209,0.9);text-align:center;padding:18px 0}

        /* Accessibility / reduced motion */
        @media (prefers-reduced-motion: reduce){
            .menu-item,.toggle,.ingredients{transition:none}
        }