Append path segments to the URL
MutUri path(String path) { if (path.isEmpty) return this; final parts = path.split('/').where((p) => p.isNotEmpty); _paths.addAll(parts); return this; }