// 🎯 reem_mapper.rs — Maps tone + intent to a REEM code string
pubfnmap_reem_code(tone:&str, intent:&str)-> String{// Example mapping logic — you can expand this with real logic later
format!("REEM-{}-{}", tone.to_uppercase(), intent.to_uppercase())}